Merge branch 'master' into av/multiplatform-merge-master

This commit is contained in:
Avently
2023-07-21 15:47:51 +07:00
47 changed files with 3310 additions and 396 deletions

View File

@@ -95,7 +95,7 @@ class AppDelegate: NSObject, UIApplicationDelegate {
}
func applicationWillTerminate(_ application: UIApplication) {
logger.debug("AppDelegate: applicationWillTerminate")
logger.debug("DEBUGGING: AppDelegate: applicationWillTerminate")
ChatModel.shared.filesToDelete.forEach {
removeFile($0)
}

View File

@@ -179,10 +179,13 @@ struct ContentView: View {
}
private func runAuthenticate() {
logger.debug("DEBUGGING: runAuthenticate")
if !prefPerformLA {
userAuthorized = true
} else {
logger.debug("DEBUGGING: before dismissAllSheets")
dismissAllSheets(animated: false) {
logger.debug("DEBUGGING: in dismissAllSheets callback")
chatModel.chatId = nil
justAuthenticate()
}
@@ -193,7 +196,7 @@ struct ContentView: View {
userAuthorized = false
let laMode = privacyLocalAuthModeDefault.get()
authenticate(reason: NSLocalizedString("Unlock app", comment: "authentication reason"), selfDestruct: true) { laResult in
logger.debug("authenticate callback: \(String(describing: laResult))")
logger.debug("DEBUGGING: authenticate callback: \(String(describing: laResult))")
switch (laResult) {
case .success:
userAuthorized = true

View File

@@ -76,9 +76,11 @@ private func _chatSuspended() {
}
func activateChat(appState: AppState = .active) {
logger.debug("DEBUGGING: activateChat")
suspendLockQueue.sync {
appStateGroupDefault.set(appState)
if ChatModel.ok { apiActivateChat() }
logger.debug("DEBUGGING: activateChat: after apiActivateChat")
}
}
@@ -95,10 +97,14 @@ func initChatAndMigrate(refreshInvitations: Bool = true) {
}
func startChatAndActivate() {
logger.debug("DEBUGGING: startChatAndActivate")
if ChatModel.shared.chatRunning == true {
ChatReceiver.shared.start()
logger.debug("DEBUGGING: startChatAndActivate: after ChatReceiver.shared.start")
}
if .active != appStateGroupDefault.get() {
logger.debug("DEBUGGING: startChatAndActivate: before activateChat")
activateChat()
logger.debug("DEBUGGING: startChatAndActivate: after activateChat")
}
}

View File

@@ -37,7 +37,7 @@ struct LocalAuthRequest {
}
func authenticate(title: LocalizedStringKey? = nil, reason: String, selfDestruct: Bool = false, completed: @escaping (LAResult) -> Void) {
logger.debug("authenticate")
logger.debug("DEBUGGING: authenticate")
switch privacyLocalAuthModeDefault.get() {
case .system: systemAuthenticate(reason, completed)
case .passcode:
@@ -58,21 +58,24 @@ func authenticate(title: LocalizedStringKey? = nil, reason: String, selfDestruct
}
func systemAuthenticate(_ reason: String, _ completed: @escaping (LAResult) -> Void) {
logger.debug("DEBUGGING: systemAuthenticate")
let laContext = LAContext()
var authAvailabilityError: NSError?
if laContext.canEvaluatePolicy(.deviceOwnerAuthentication, error: &authAvailabilityError) {
logger.debug("DEBUGGING: systemAuthenticate: canEvaluatePolicy callback")
laContext.evaluatePolicy(.deviceOwnerAuthentication, localizedReason: reason) { success, authError in
logger.debug("DEBUGGING: systemAuthenticate evaluatePolicy callback")
DispatchQueue.main.async {
if success {
completed(LAResult.success)
} else {
logger.error("authentication error: \(authError.debugDescription)")
logger.error("DEBUGGING: systemAuthenticate authentication error: \(authError.debugDescription)")
completed(LAResult.failed(authError: authError?.localizedDescription))
}
}
}
} else {
logger.error("authentication availability error: \(authAvailabilityError.debugDescription)")
logger.error("DEBUGGING: authentication availability error: \(authAvailabilityError.debugDescription)")
completed(LAResult.unavailable(authError: authAvailabilityError?.localizedDescription))
}
}

View File

@@ -14,9 +14,9 @@ struct NotificationsView: View {
@State private var notificationMode: NotificationsMode = ChatModel.shared.notificationMode
@State private var showAlert: NotificationAlert?
@State private var legacyDatabase = dbContainerGroupDefault.get() == .documents
@AppStorage(DEFAULT_DEVELOPER_TOOLS) private var developerTools = false
@AppStorage(GROUP_DEFAULT_NTF_ENABLE_LOCAL, store: groupDefaults) private var ntfEnableLocal = false
@AppStorage(GROUP_DEFAULT_NTF_ENABLE_PERIODIC, store: groupDefaults) private var ntfEnablePeriodic = false
// @AppStorage(DEFAULT_DEVELOPER_TOOLS) private var developerTools = false
// @AppStorage(GROUP_DEFAULT_NTF_ENABLE_LOCAL, store: groupDefaults) private var ntfEnableLocal = false
// @AppStorage(GROUP_DEFAULT_NTF_ENABLE_PERIODIC, store: groupDefaults) private var ntfEnablePeriodic = false
var body: some View {
List {
@@ -89,12 +89,12 @@ struct NotificationsView: View {
}
}
if developerTools {
Section(String("Experimental")) {
Toggle(String("Always enable local"), isOn: $ntfEnableLocal)
Toggle(String("Always enable periodic"), isOn: $ntfEnablePeriodic)
}
}
// if developerTools {
// Section(String("Experimental")) {
// Toggle(String("Always enable local"), isOn: $ntfEnableLocal)
// Toggle(String("Always enable periodic"), isOn: $ntfEnablePeriodic)
// }
// }
}
.disabled(legacyDatabase)
}

View File

@@ -74,6 +74,7 @@
</trans-unit>
<trans-unit id="%@ at %@:" xml:space="preserve">
<source>%1$@ at %2$@:</source>
<target>%1$@ na %2$@:</target>
<note>copied message info, &lt;sender&gt; at &lt;time&gt;</note>
</trans-unit>
<trans-unit id="%@ is connected!" xml:space="preserve">
@@ -305,6 +306,9 @@
<source>- more stable message delivery.
- a bit better groups.
- and more!</source>
<target>- více stabilní doručování zpráv.
- o trochu lepší skupiny.
- a více!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="- voice messages up to 5 minutes.&#10;- custom time to disappear.&#10;- editing history." xml:space="preserve">
@@ -385,6 +389,7 @@
</trans-unit>
<trans-unit id="A few more things" xml:space="preserve">
<source>A few more things</source>
<target>Ještě pár věcí</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="A new contact" xml:space="preserve">
@@ -416,14 +421,17 @@
</trans-unit>
<trans-unit id="Abort" xml:space="preserve">
<source>Abort</source>
<target>Přerušit</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Abort changing address" xml:space="preserve">
<source>Abort changing address</source>
<target>Přerušit změnu adresy</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Abort changing address?" xml:space="preserve">
<source>Abort changing address?</source>
<target>Přerušit změnu adresy?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="About SimpleX" xml:space="preserve">
@@ -509,6 +517,7 @@
</trans-unit>
<trans-unit id="Address change will be aborted. Old receiving address will be used." xml:space="preserve">
<source>Address change will be aborted. Old receiving address will be used.</source>
<target>Změna adresy bude přerušena. Budou použity staré přijímací adresy.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Admins can create the links to join groups." xml:space="preserve">
@@ -603,6 +612,7 @@
</trans-unit>
<trans-unit id="Allow to send files and media." xml:space="preserve">
<source>Allow to send files and media.</source>
<target>Povolit odesílání souborů a médii.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Allow to send voice messages." xml:space="preserve">
@@ -1143,6 +1153,7 @@
</trans-unit>
<trans-unit id="Contacts" xml:space="preserve">
<source>Contacts</source>
<target>Kontakty</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Contacts can mark messages for deletion; you will be able to view them." xml:space="preserve">
@@ -1540,10 +1551,12 @@
</trans-unit>
<trans-unit id="Delivery receipts are disabled!" xml:space="preserve">
<source>Delivery receipts are disabled!</source>
<target>Potvrzení o doručení jsou vypnuté!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Delivery receipts!" xml:space="preserve">
<source>Delivery receipts!</source>
<target>Potvrzení o doručení!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Description" xml:space="preserve">
@@ -1593,6 +1606,7 @@
</trans-unit>
<trans-unit id="Disable (keep overrides)" xml:space="preserve">
<source>Disable (keep overrides)</source>
<target>Vypnout (zachovat přepsání)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disable SimpleX Lock" xml:space="preserve">
@@ -1602,6 +1616,7 @@
</trans-unit>
<trans-unit id="Disable for all" xml:space="preserve">
<source>Disable for all</source>
<target>Vypnout pro všechny</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disappearing message" xml:space="preserve">
@@ -1666,6 +1681,7 @@
</trans-unit>
<trans-unit id="Don't enable" xml:space="preserve">
<source>Don't enable</source>
<target>Nepovolovat</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Don't show again" xml:space="preserve">
@@ -1710,6 +1726,7 @@
</trans-unit>
<trans-unit id="Enable (keep overrides)" xml:space="preserve">
<source>Enable (keep overrides)</source>
<target>Povolit (zachovat přepsání)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable SimpleX Lock" xml:space="preserve">
@@ -1729,6 +1746,7 @@
</trans-unit>
<trans-unit id="Enable for all" xml:space="preserve">
<source>Enable for all</source>
<target>Povolit pro všechny</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable instant notifications?" xml:space="preserve">
@@ -1848,6 +1866,7 @@
</trans-unit>
<trans-unit id="Error aborting address change" xml:space="preserve">
<source>Error aborting address change</source>
<target>Chyba přerušení změny adresy</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error accepting contact request" xml:space="preserve">
@@ -1942,6 +1961,7 @@
</trans-unit>
<trans-unit id="Error enabling delivery receipts!" xml:space="preserve">
<source>Error enabling delivery receipts!</source>
<target>Chyba povolení potvrzení o doručení!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error enabling notifications" xml:space="preserve">
@@ -2045,6 +2065,7 @@
</trans-unit>
<trans-unit id="Error synchronizing connection" xml:space="preserve">
<source>Error synchronizing connection</source>
<target>Chyba synchronizace připojení</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error updating group link" xml:space="preserve">
@@ -2089,6 +2110,7 @@
</trans-unit>
<trans-unit id="Even when disabled in the conversation." xml:space="preserve">
<source>Even when disabled in the conversation.</source>
<target>I při vypnutí v konverzaci.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Exit without saving" xml:space="preserve">
@@ -2128,6 +2150,7 @@
</trans-unit>
<trans-unit id="Favorite" xml:space="preserve">
<source>Favorite</source>
<target>Oblíbené</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="File will be deleted from servers." xml:space="preserve">
@@ -2157,18 +2180,22 @@
</trans-unit>
<trans-unit id="Files and media" xml:space="preserve">
<source>Files and media</source>
<target>Soubory a média</target>
<note>chat feature</note>
</trans-unit>
<trans-unit id="Files and media are prohibited in this group." xml:space="preserve">
<source>Files and media are prohibited in this group.</source>
<target>Soubory a média jsou zakázány v této skupině.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Files and media prohibited!" xml:space="preserve">
<source>Files and media prohibited!</source>
<target>Soubory a média jsou zakázány!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Filter unread and favorite chats." xml:space="preserve">
<source>Filter unread and favorite chats.</source>
<target>Filtrovat nepřečtené a oblíbené chaty.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Finally, we have them! 🚀" xml:space="preserve">
@@ -2178,30 +2205,37 @@
</trans-unit>
<trans-unit id="Find chats faster" xml:space="preserve">
<source>Find chats faster</source>
<target>Najděte chaty rychleji</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix" xml:space="preserve">
<source>Fix</source>
<target>Opravit</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix connection" xml:space="preserve">
<source>Fix connection</source>
<target>Opravit připojení</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix connection?" xml:space="preserve">
<source>Fix connection?</source>
<target>Opravit připojení?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix encryption after restoring backups." xml:space="preserve">
<source>Fix encryption after restoring backups.</source>
<target>Opravit šifrování po obnovení zálohy.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix not supported by contact" xml:space="preserve">
<source>Fix not supported by contact</source>
<target>Opravit nepodporované kontaktem</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix not supported by group member" xml:space="preserve">
<source>Fix not supported by group member</source>
<target>Opravit nepodporované členem skupiny</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="For console" xml:space="preserve">
@@ -2311,6 +2345,7 @@
</trans-unit>
<trans-unit id="Group members can send files and media." xml:space="preserve">
<source>Group members can send files and media.</source>
<target>Členové skupiny mohou posílat soubory a média.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Group members can send voice messages." xml:space="preserve">
@@ -2510,6 +2545,7 @@
</trans-unit>
<trans-unit id="In reply to" xml:space="preserve">
<source>In reply to</source>
<target>V odpovědi na</target>
<note>copied message info</note>
</trans-unit>
<trans-unit id="Incognito" xml:space="preserve">
@@ -2697,6 +2733,7 @@
</trans-unit>
<trans-unit id="Keep your connections" xml:space="preserve">
<source>Keep your connections</source>
<target>Zachovat vaše připojení</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="KeyChain error" xml:space="preserve">
@@ -2791,6 +2828,7 @@
</trans-unit>
<trans-unit id="Make one message disappear" xml:space="preserve">
<source>Make one message disappear</source>
<target>Nechat jednu zprávu zmizet</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Make profile private!" xml:space="preserve">
@@ -2865,6 +2903,7 @@
</trans-unit>
<trans-unit id="Message delivery receipts!" xml:space="preserve">
<source>Message delivery receipts!</source>
<target>Potvrzení o doručení zprávy!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Message draft" xml:space="preserve">
@@ -3059,6 +3098,7 @@
</trans-unit>
<trans-unit id="No filtered chats" xml:space="preserve">
<source>No filtered chats</source>
<target>Žádné filtrované chaty</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="No group!" xml:space="preserve">
@@ -3068,6 +3108,7 @@
</trans-unit>
<trans-unit id="No history" xml:space="preserve">
<source>No history</source>
<target>Žádná historie</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="No permission to record voice message" xml:space="preserve">
@@ -3156,6 +3197,7 @@
</trans-unit>
<trans-unit id="Only group owners can enable files and media." xml:space="preserve">
<source>Only group owners can enable files and media.</source>
<target>Pouze majitelé skupiny mohou povolit soubory a média.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Only group owners can enable voice messages." xml:space="preserve">
@@ -3480,6 +3522,7 @@
</trans-unit>
<trans-unit id="Prohibit sending files and media." xml:space="preserve">
<source>Prohibit sending files and media.</source>
<target>Zakázat odesílání souborů a médií.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Prohibit sending voice messages." xml:space="preserve">
@@ -3659,14 +3702,17 @@
</trans-unit>
<trans-unit id="Renegotiate" xml:space="preserve">
<source>Renegotiate</source>
<target>Znovu vyjednat</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Renegotiate encryption" xml:space="preserve">
<source>Renegotiate encryption</source>
<target>Znovu vyjednat šifrování</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Renegotiate encryption?" xml:space="preserve">
<source>Renegotiate encryption?</source>
<target>Znovu vyjednat šifrování?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Reply" xml:space="preserve">
@@ -3965,6 +4011,7 @@
</trans-unit>
<trans-unit id="Send receipts" xml:space="preserve">
<source>Send receipts</source>
<target>Odeslat potvrzení</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Send them from gallery or custom keyboards." xml:space="preserve">
@@ -3984,10 +4031,12 @@
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts in all visible chat profiles." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts in all visible chat profiles.</source>
<target>Odesílání potvrzení o doručení bude povoleno pro všechny kontakty ve všech viditelných chat profilech.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts.</source>
<target>Odesílání potvrzení o doručení bude povoleno pro všechny kontakty.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending file will be stopped." xml:space="preserve">
@@ -3997,10 +4046,12 @@
</trans-unit>
<trans-unit id="Sending receipts is disabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is disabled for %lld contacts</source>
<target>Odesílání potvrzení o doručení je vypnuto pro %lld kontakty</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending receipts is enabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is enabled for %lld contacts</source>
<target>Odesílání potvrzení o doručení je povoleno pro %lld kontakty</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending via" xml:space="preserve">
@@ -4442,6 +4493,7 @@ Může se to stát kvůli nějaké chybě, nebo pokud je spojení kompromitován
</trans-unit>
<trans-unit id="The encryption is working and the new encryption agreement is not required. It may result in connection errors!" xml:space="preserve">
<source>The encryption is working and the new encryption agreement is not required. It may result in connection errors!</source>
<target>Šifrování funguje a nové povolení šifrování není vyžadováno. To může vyvolat chybu v připojení!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="The group is fully decentralized it is visible only to the members." xml:space="preserve">
@@ -4510,10 +4562,12 @@ Může se to stát kvůli nějaké chybě, nebo pokud je spojení kompromitován
</trans-unit>
<trans-unit id="These settings are for your current profile **%@**." xml:space="preserve">
<source>These settings are for your current profile **%@**.</source>
<target>Toto nastavení je pro váš aktuální profil **%@**.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="They can be overridden in contact settings" xml:space="preserve">
<source>They can be overridden in contact settings</source>
<target>Mohou být přepsány v nastavení kontaktů</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="This action cannot be undone - all received and sent files and media will be deleted. Low resolution pictures will remain." xml:space="preserve">
@@ -4645,6 +4699,7 @@ Před zapnutím této funkce budete vyzváni k dokončení ověření.</target>
</trans-unit>
<trans-unit id="Unfav." xml:space="preserve">
<source>Unfav.</source>
<target>Odobl.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Unhide" xml:space="preserve">
@@ -4996,10 +5051,12 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu
</trans-unit>
<trans-unit id="You can enable later via Settings" xml:space="preserve">
<source>You can enable later via Settings</source>
<target>Můžete povolit později v Nastavení</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can enable them later via app Privacy &amp; Security settings." xml:space="preserve">
<source>You can enable them later via app Privacy &amp; Security settings.</source>
<target>Můžete je povolit později v nastavení Soukromí &amp; Bezpečnosti aplikace</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can hide or mute a user profile - swipe it to the right." xml:space="preserve">
@@ -5340,10 +5397,12 @@ Servery SimpleX nevidí váš profil.</target>
</trans-unit>
<trans-unit id="agreeing encryption for %@…" xml:space="preserve">
<source>agreeing encryption for %@…</source>
<target>povoluji šifrování pro %@…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="agreeing encryption…" xml:space="preserve">
<source>agreeing encryption…</source>
<target>povoluji šifrování…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="always" xml:space="preserve">
@@ -5408,10 +5467,12 @@ Servery SimpleX nevidí váš profil.</target>
</trans-unit>
<trans-unit id="changing address for %@…" xml:space="preserve">
<source>changing address for %@…</source>
<target>změna adresy pro %@…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="changing address…" xml:space="preserve">
<source>changing address…</source>
<target>změna adresy…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="colored" xml:space="preserve">
@@ -5569,34 +5630,42 @@ Servery SimpleX nevidí váš profil.</target>
</trans-unit>
<trans-unit id="encryption agreed" xml:space="preserve">
<source>encryption agreed</source>
<target>šifrování povoleno</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption agreed for %@" xml:space="preserve">
<source>encryption agreed for %@</source>
<target>šifrování povoleno pro %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption ok" xml:space="preserve">
<source>encryption ok</source>
<target>šifrování ok</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption ok for %@" xml:space="preserve">
<source>encryption ok for %@</source>
<target>šifrování ok pro %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation allowed" xml:space="preserve">
<source>encryption re-negotiation allowed</source>
<target>opětovné vyjednávání šifrování povoleno</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation allowed for %@" xml:space="preserve">
<source>encryption re-negotiation allowed for %@</source>
<target>opětovné vyjednávání šifrování povoleno pro %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation required" xml:space="preserve">
<source>encryption re-negotiation required</source>
<target>vyžadováno opětovné vyjednávání šifrování</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation required for %@" xml:space="preserve">
<source>encryption re-negotiation required for %@</source>
<target>vyžadováno opětovné vyjednávání šifrování pro %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="ended" xml:space="preserve">
@@ -5872,6 +5941,7 @@ Servery SimpleX nevidí váš profil.</target>
</trans-unit>
<trans-unit id="security code changed" xml:space="preserve">
<source>security code changed</source>
<target>bezpečnostní kód změněn</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="starting…" xml:space="preserve">

View File

@@ -306,6 +306,9 @@
<source>- more stable message delivery.
- a bit better groups.
- and more!</source>
<target>- stabilere Zustellung von Nachrichten.
- ein bisschen verbesserte Gruppen.
- und mehr!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="- voice messages up to 5 minutes.&#10;- custom time to disappear.&#10;- editing history." xml:space="preserve">
@@ -386,6 +389,7 @@
</trans-unit>
<trans-unit id="A few more things" xml:space="preserve">
<source>A few more things</source>
<target>Ein paar weitere Dinge</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="A new contact" xml:space="preserve">
@@ -1602,6 +1606,7 @@
</trans-unit>
<trans-unit id="Disable (keep overrides)" xml:space="preserve">
<source>Disable (keep overrides)</source>
<target>Deaktivieren (vorgenommene Einstellungen bleiben erhalten)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disable SimpleX Lock" xml:space="preserve">
@@ -1611,6 +1616,7 @@
</trans-unit>
<trans-unit id="Disable for all" xml:space="preserve">
<source>Disable for all</source>
<target>Für Alle deaktivieren</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disappearing message" xml:space="preserve">
@@ -1675,6 +1681,7 @@
</trans-unit>
<trans-unit id="Don't enable" xml:space="preserve">
<source>Don't enable</source>
<target>Nicht aktivieren</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Don't show again" xml:space="preserve">
@@ -1719,6 +1726,7 @@
</trans-unit>
<trans-unit id="Enable (keep overrides)" xml:space="preserve">
<source>Enable (keep overrides)</source>
<target>Aktivieren (vorgenommene Einstellungen bleiben erhalten)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable SimpleX Lock" xml:space="preserve">
@@ -1738,6 +1746,7 @@
</trans-unit>
<trans-unit id="Enable for all" xml:space="preserve">
<source>Enable for all</source>
<target>Für Alle aktivieren</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable instant notifications?" xml:space="preserve">
@@ -1952,6 +1961,7 @@
</trans-unit>
<trans-unit id="Error enabling delivery receipts!" xml:space="preserve">
<source>Error enabling delivery receipts!</source>
<target>Fehler beim Aktivieren der Empfangsbestätigungen!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error enabling notifications" xml:space="preserve">
@@ -2036,6 +2046,7 @@
</trans-unit>
<trans-unit id="Error setting delivery receipts!" xml:space="preserve">
<source>Error setting delivery receipts!</source>
<target>Fehler beim Setzen der Empfangsbestätigungen!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error starting chat" xml:space="preserve">
@@ -2100,6 +2111,7 @@
</trans-unit>
<trans-unit id="Even when disabled in the conversation." xml:space="preserve">
<source>Even when disabled in the conversation.</source>
<target>Auch wenn sie im Chat deaktiviert sind.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Exit without saving" xml:space="preserve">
@@ -2184,6 +2196,7 @@
</trans-unit>
<trans-unit id="Filter unread and favorite chats." xml:space="preserve">
<source>Filter unread and favorite chats.</source>
<target>Nach ungelesenen und favorisierten Chats filtern.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Finally, we have them! 🚀" xml:space="preserve">
@@ -2193,6 +2206,7 @@
</trans-unit>
<trans-unit id="Find chats faster" xml:space="preserve">
<source>Find chats faster</source>
<target>Chats schneller finden</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix" xml:space="preserve">
@@ -2212,6 +2226,7 @@
</trans-unit>
<trans-unit id="Fix encryption after restoring backups." xml:space="preserve">
<source>Fix encryption after restoring backups.</source>
<target>Reparatur der Verschlüsselung nach wiedereinspielen von Backups.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix not supported by contact" xml:space="preserve">
@@ -2719,6 +2734,7 @@
</trans-unit>
<trans-unit id="Keep your connections" xml:space="preserve">
<source>Keep your connections</source>
<target>Ihre Verbindungen beibehalten</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="KeyChain error" xml:space="preserve">
@@ -2813,6 +2829,7 @@
</trans-unit>
<trans-unit id="Make one message disappear" xml:space="preserve">
<source>Make one message disappear</source>
<target>Eine verschwindende Nachricht verfassen</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Make profile private!" xml:space="preserve">
@@ -2887,6 +2904,7 @@
</trans-unit>
<trans-unit id="Message delivery receipts!" xml:space="preserve">
<source>Message delivery receipts!</source>
<target>Empfangsbestätigungen für Nachrichten!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Message draft" xml:space="preserve">
@@ -4020,10 +4038,12 @@
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts in all visible chat profiles." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts in all visible chat profiles.</source>
<target>Das Senden von Empfangsbestätigungen an alle Kontakte in allen sichtbaren Chat-Profilen wird aktiviert.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts.</source>
<target>Das Senden von Empfangsbestätigungen an alle Kontakte wird aktiviert.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending file will be stopped." xml:space="preserve">
@@ -4033,10 +4053,12 @@
</trans-unit>
<trans-unit id="Sending receipts is disabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is disabled for %lld contacts</source>
<target>Das Senden von Empfangsbestätigungen an %lld Kontakte ist deaktiviert</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending receipts is enabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is enabled for %lld contacts</source>
<target>Das Senden von Empfangsbestätigungen an %lld Kontakte ist aktiviert</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending via" xml:space="preserve">
@@ -4518,6 +4540,7 @@ Dies kann passieren, wenn es einen Fehler gegeben hat oder die Verbindung kompro
</trans-unit>
<trans-unit id="The second tick we missed! ✅" xml:space="preserve">
<source>The second tick we missed! ✅</source>
<target>Das zweite Häkchen, welches wir vermisst haben! ✅</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="The sender will NOT be notified" xml:space="preserve">
@@ -5036,11 +5059,12 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s
</trans-unit>
<trans-unit id="You can enable later via Settings" xml:space="preserve">
<source>You can enable later via Settings</source>
<target>Sie können diese später in den Einstellungen aktivieren</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can enable them later via app Privacy &amp; Security settings." xml:space="preserve">
<source>You can enable them later via app Privacy &amp; Security settings.</source>
<target>Diese können später in den Datenschutz &amp; Sicherheits-Einstellungen durch Sie aktiviert werden.</target>
<target>Sie können diese später in den Datenschutz &amp; Sicherheits-Einstellungen der App aktivieren.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can hide or mute a user profile - swipe it to the right." xml:space="preserve">

View File

@@ -99,7 +99,7 @@
</trans-unit>
<trans-unit id="%@ wants to connect!" xml:space="preserve">
<source>%@ wants to connect!</source>
<target>%@ ¡quiere conectar!</target>
<target>¡ %@ quiere contactar!</target>
<note>notification title</note>
</trans-unit>
<trans-unit id="%@:" xml:space="preserve">
@@ -306,6 +306,9 @@
<source>- more stable message delivery.
- a bit better groups.
- and more!</source>
<target>- entrega de mensajes más estable.
- grupos un poco mejores.
- ¡y más!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="- voice messages up to 5 minutes.&#10;- custom time to disappear.&#10;- editing history." xml:space="preserve">
@@ -380,12 +383,13 @@
<trans-unit id="&lt;p&gt;Hi!&lt;/p&gt;&#10;&lt;p&gt;&lt;a href=&quot;%@&quot;&gt;Connect to me via SimpleX Chat&lt;/a&gt;&lt;/p&gt;" xml:space="preserve">
<source>&lt;p&gt;Hi!&lt;/p&gt;
&lt;p&gt;&lt;a href="%@"&gt;Connect to me via SimpleX Chat&lt;/a&gt;&lt;/p&gt;</source>
<target>&lt;p&gt;Hola!&lt;/p&gt;
<target>&lt;p&gt;¡Hola!&lt;/p&gt;
&lt;p&gt;&lt;a href="%@"&gt; Conecta conmigo a través de SimpleX Chat&lt;/a&gt;&lt;/p&gt;</target>
<note>email text</note>
</trans-unit>
<trans-unit id="A few more things" xml:space="preserve">
<source>A few more things</source>
<target>Algunas cosas más</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="A new contact" xml:space="preserve">
@@ -405,13 +409,13 @@
</trans-unit>
<trans-unit id="A separate TCP connection will be used **for each chat profile you have in the app**." xml:space="preserve">
<source>A separate TCP connection will be used **for each chat profile you have in the app**.</source>
<target>Se utilizará una conexión TCP independiente **por cada perfil que tengas en la aplicación**.</target>
<target>Se usará una conexión TCP independiente **por cada perfil que tengas en la aplicación**.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="A separate TCP connection will be used **for each contact and group member**.&#10;**Please note**: if you have many connections, your battery and traffic consumption can be substantially higher and some connections may fail." xml:space="preserve">
<source>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.</source>
<target>Se utilizará una conexión TCP independiente **por cada contacto y miembro de grupo**.
<target>Se usará una conexión TCP independiente **por cada contacto y miembro de grupo**.
**Atención**: si tienes muchas conexiones, tu consumo de batería y tráfico pueden ser sustancialmente mayores y algunas conexiones pueden fallar.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
@@ -1084,12 +1088,12 @@
</trans-unit>
<trans-unit id="Connection error" xml:space="preserve">
<source>Connection error</source>
<target>Error de conexión</target>
<target>Error conexión</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Connection error (AUTH)" xml:space="preserve">
<source>Connection error (AUTH)</source>
<target>Error de conexión (Autenticación)</target>
<target>Error conexión (Autenticación)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Connection request" xml:space="preserve">
@@ -1293,7 +1297,7 @@
</trans-unit>
<trans-unit id="Database error" xml:space="preserve">
<source>Database error</source>
<target>Error de la base de datos</target>
<target>Error base de datos</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Database is encrypted using a random passphrase, you can change it." xml:space="preserve">
@@ -1357,7 +1361,7 @@
</trans-unit>
<trans-unit id="Decryption error" xml:space="preserve">
<source>Decryption error</source>
<target>Error de descifrado</target>
<target>Error descifrado</target>
<note>message decrypt error item</note>
</trans-unit>
<trans-unit id="Delete" xml:space="preserve">
@@ -1547,12 +1551,12 @@
</trans-unit>
<trans-unit id="Delivery receipts are disabled!" xml:space="preserve">
<source>Delivery receipts are disabled!</source>
<target>¡Los justificantes de entrega están desactivados!</target>
<target>¡Las confirmaciones de entrega están desactivadas!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Delivery receipts!" xml:space="preserve">
<source>Delivery receipts!</source>
<target>¡Justificantes de entrega!</target>
<target>¡Confirmación de entrega!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Description" xml:space="preserve">
@@ -1602,6 +1606,7 @@
</trans-unit>
<trans-unit id="Disable (keep overrides)" xml:space="preserve">
<source>Disable (keep overrides)</source>
<target>Desactivar (mantener anulaciones)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disable SimpleX Lock" xml:space="preserve">
@@ -1611,6 +1616,7 @@
</trans-unit>
<trans-unit id="Disable for all" xml:space="preserve">
<source>Disable for all</source>
<target>Desactivar para todos</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disappearing message" xml:space="preserve">
@@ -1675,6 +1681,7 @@
</trans-unit>
<trans-unit id="Don't enable" xml:space="preserve">
<source>Don't enable</source>
<target>No activar</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Don't show again" xml:space="preserve">
@@ -1719,6 +1726,7 @@
</trans-unit>
<trans-unit id="Enable (keep overrides)" xml:space="preserve">
<source>Enable (keep overrides)</source>
<target>Activar (conservar anulaciones)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable SimpleX Lock" xml:space="preserve">
@@ -1738,6 +1746,7 @@
</trans-unit>
<trans-unit id="Enable for all" xml:space="preserve">
<source>Enable for all</source>
<target>Activar para todos</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable instant notifications?" xml:space="preserve">
@@ -1792,17 +1801,17 @@
</trans-unit>
<trans-unit id="Encrypted message: database error" xml:space="preserve">
<source>Encrypted message: database error</source>
<target>Mensaje cifrado: error en base de datos</target>
<target>Mensaje cifrado: error base de datos</target>
<note>notification</note>
</trans-unit>
<trans-unit id="Encrypted message: database migration error" xml:space="preserve">
<source>Encrypted message: database migration error</source>
<target>Mensaje cifrado: error de migración de base de datos</target>
<target>Mensaje cifrado: error migración base de datos</target>
<note>notification</note>
</trans-unit>
<trans-unit id="Encrypted message: keychain error" xml:space="preserve">
<source>Encrypted message: keychain error</source>
<target>Mensaje cifrado: error en Keychain</target>
<target>Mensaje cifrado: error Keychain</target>
<note>notification</note>
</trans-unit>
<trans-unit id="Encrypted message: no passphrase" xml:space="preserve">
@@ -1857,17 +1866,17 @@
</trans-unit>
<trans-unit id="Error aborting address change" xml:space="preserve">
<source>Error aborting address change</source>
<target>Error al cancelar el cambio de dirección</target>
<target>Error al cancelar cambio de dirección</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error accepting contact request" xml:space="preserve">
<source>Error accepting contact request</source>
<target>Error aceptando la solicitud del contacto</target>
<target>Error al aceptar solicitud del contacto</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error accessing database file" xml:space="preserve">
<source>Error accessing database file</source>
<target>Error de acceso al archivo de base de datos</target>
<target>Error al acceder al archivo de la base de datos</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error adding member(s)" xml:space="preserve">
@@ -1877,12 +1886,12 @@
</trans-unit>
<trans-unit id="Error changing address" xml:space="preserve">
<source>Error changing address</source>
<target>Error cambiando la dirección</target>
<target>Error al cambiar dirección</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error changing role" xml:space="preserve">
<source>Error changing role</source>
<target>Error cambiando rol</target>
<target>Error al cambiar rol</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error changing setting" xml:space="preserve">
@@ -1892,12 +1901,12 @@
</trans-unit>
<trans-unit id="Error creating address" xml:space="preserve">
<source>Error creating address</source>
<target>Error creando dirección</target>
<target>Error al crear dirección</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error creating group" xml:space="preserve">
<source>Error creating group</source>
<target>Error creando grupo</target>
<target>Error al crear grupo</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error creating group link" xml:space="preserve">
@@ -1907,76 +1916,77 @@
</trans-unit>
<trans-unit id="Error creating profile!" xml:space="preserve">
<source>Error creating profile!</source>
<target>Error creando perfil!</target>
<target>¡Error al crear perfil!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error deleting chat database" xml:space="preserve">
<source>Error deleting chat database</source>
<target>Error eliminando la base de datos</target>
<target>Error al eliminar base de datos</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error deleting chat!" xml:space="preserve">
<source>Error deleting chat!</source>
<target>¡Error eliminando chat!</target>
<target>¡Error al eliminar chat!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error deleting connection" xml:space="preserve">
<source>Error deleting connection</source>
<target>Error eliminando conexión</target>
<target>Error al eliminar conexión</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error deleting contact" xml:space="preserve">
<source>Error deleting contact</source>
<target>Error eliminando contacto</target>
<target>Error al eliminar contacto</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error deleting database" xml:space="preserve">
<source>Error deleting database</source>
<target>Error eliminando base de datos</target>
<target>Error al eliminar base de datos</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error deleting old database" xml:space="preserve">
<source>Error deleting old database</source>
<target>Error eliminando base de datos antigua</target>
<target>Error al eliminar base de datos antigua</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error deleting token" xml:space="preserve">
<source>Error deleting token</source>
<target>Error eliminando token</target>
<target>Error al eliminar token</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error deleting user profile" xml:space="preserve">
<source>Error deleting user profile</source>
<target>Error eliminando perfil de usuario</target>
<target>Error al eliminar perfil</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error enabling delivery receipts!" xml:space="preserve">
<source>Error enabling delivery receipts!</source>
<target>¡Error al activar confirmaciones de entrega!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error enabling notifications" xml:space="preserve">
<source>Error enabling notifications</source>
<target>Error activando notificaciones</target>
<target>Error al activar notificaciones</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error encrypting database" xml:space="preserve">
<source>Error encrypting database</source>
<target>Error cifrando la base de datos</target>
<target>Error al cifrar base de datos</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error exporting chat database" xml:space="preserve">
<source>Error exporting chat database</source>
<target>Error exportando la base de datos</target>
<target>Error al exportar base de datos</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error importing chat database" xml:space="preserve">
<source>Error importing chat database</source>
<target>Error importando la base de datos</target>
<target>Error al importar base de datos</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error joining group" xml:space="preserve">
<source>Error joining group</source>
<target>Error uniéndose al grupo</target>
<target>Error al unirse al grupo</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error loading %@ servers" xml:space="preserve">
@@ -1986,42 +1996,42 @@
</trans-unit>
<trans-unit id="Error receiving file" xml:space="preserve">
<source>Error receiving file</source>
<target>Error recibiendo archivo</target>
<target>Error al recibir archivo</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error removing member" xml:space="preserve">
<source>Error removing member</source>
<target>Error eliminando miembro</target>
<target>Error al eliminar miembro</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error saving %@ servers" xml:space="preserve">
<source>Error saving %@ servers</source>
<target>Error guardando servidores %@</target>
<target>Error al guardar servidores %@</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error saving ICE servers" xml:space="preserve">
<source>Error saving ICE servers</source>
<target>Error guardando servidores ICE</target>
<target>Error al guardar servidores ICE</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error saving group profile" xml:space="preserve">
<source>Error saving group profile</source>
<target>Error guardando perfil de grupo</target>
<target>Error al guardar perfil de grupo</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error saving passcode" xml:space="preserve">
<source>Error saving passcode</source>
<target>Error al guardar el código de acceso</target>
<target>Error al guardar código de acceso</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error saving passphrase to keychain" xml:space="preserve">
<source>Error saving passphrase to keychain</source>
<target>Error guardando contraseña en Keychain</target>
<target>Error al guardar contraseña en Keychain</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error saving user password" xml:space="preserve">
<source>Error saving user password</source>
<target>Error guardando la contraseña de usuario</target>
<target>Error al guardar contraseña de usuario</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error sending email" xml:space="preserve">
@@ -2031,26 +2041,27 @@
</trans-unit>
<trans-unit id="Error sending message" xml:space="preserve">
<source>Error sending message</source>
<target>Error enviando mensaje</target>
<target>Error al enviar mensaje</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error setting delivery receipts!" xml:space="preserve">
<source>Error setting delivery receipts!</source>
<target>¡Error al configurar confirmaciones de entrega!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error starting chat" xml:space="preserve">
<source>Error starting chat</source>
<target>Error iniciando chat</target>
<target>Error al iniciar Chat</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error stopping chat" xml:space="preserve">
<source>Error stopping chat</source>
<target>Error deteniendo Chat</target>
<target>Error al detener Chat</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error switching profile!" xml:space="preserve">
<source>Error switching profile!</source>
<target>¡Error cambiando perfil!</target>
<target>¡Error al cambiar perfil!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error synchronizing connection" xml:space="preserve">
@@ -2060,22 +2071,22 @@
</trans-unit>
<trans-unit id="Error updating group link" xml:space="preserve">
<source>Error updating group link</source>
<target>Error actualizando el enlace de grupo</target>
<target>Error al actualizar enlace de grupo</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error updating message" xml:space="preserve">
<source>Error updating message</source>
<target>Error actualizando mensaje</target>
<target>Error al actualizar mensaje</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error updating settings" xml:space="preserve">
<source>Error updating settings</source>
<target>Error actualizando configuración</target>
<target>Error al actualizar configuración</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error updating user privacy" xml:space="preserve">
<source>Error updating user privacy</source>
<target>Error actualizando la privacidad de usuario</target>
<target>Error al actualizar privacidad de usuario</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error: " xml:space="preserve">
@@ -2100,6 +2111,7 @@
</trans-unit>
<trans-unit id="Even when disabled in the conversation." xml:space="preserve">
<source>Even when disabled in the conversation.</source>
<target>Incluso si está desactivado para la conversación.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Exit without saving" xml:space="preserve">
@@ -2114,7 +2126,7 @@
</trans-unit>
<trans-unit id="Export error:" xml:space="preserve">
<source>Export error:</source>
<target>Error exportando:</target>
<target>Error al exportar:</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Exported database archive." xml:space="preserve">
@@ -2124,12 +2136,12 @@
</trans-unit>
<trans-unit id="Exporting database archive…" xml:space="preserve">
<source>Exporting database archive…</source>
<target>Exportando archivo de base de datos…</target>
<target>Exportando base de datos…</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Failed to remove passphrase" xml:space="preserve">
<source>Failed to remove passphrase</source>
<target>Error eliminando la contraseña</target>
<target>Error al eliminar la contraseña</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fast and no wait until the sender is online!" xml:space="preserve">
@@ -2154,7 +2166,7 @@
</trans-unit>
<trans-unit id="File will be received when your contact is online, please wait or check later!" xml:space="preserve">
<source>File will be received when your contact is online, please wait or check later!</source>
<target>El archivo se recibirá cuando tu contacto esté en línea, por favor espera o compruébalo más tarde.</target>
<target>El archivo se recibirá cuando tu contacto esté en línea, ¡por favor espera o compruébalo más tarde!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="File: %@" xml:space="preserve">
@@ -2184,6 +2196,7 @@
</trans-unit>
<trans-unit id="Filter unread and favorite chats." xml:space="preserve">
<source>Filter unread and favorite chats.</source>
<target>Filtrar chats no leídos y favoritos.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Finally, we have them! 🚀" xml:space="preserve">
@@ -2193,6 +2206,7 @@
</trans-unit>
<trans-unit id="Find chats faster" xml:space="preserve">
<source>Find chats faster</source>
<target>Encontrar chats mas rápido</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix" xml:space="preserve">
@@ -2207,11 +2221,12 @@
</trans-unit>
<trans-unit id="Fix connection?" xml:space="preserve">
<source>Fix connection?</source>
<target>Reparar problemas de conexión ?</target>
<target>¿Reparar conexión?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix encryption after restoring backups." xml:space="preserve">
<source>Fix encryption after restoring backups.</source>
<target>Reparar el cifrado tras restaurar copias de seguridad.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix not supported by contact" xml:space="preserve">
@@ -2491,7 +2506,7 @@
</trans-unit>
<trans-unit id="Image will be received when your contact is online, please wait or check later!" xml:space="preserve">
<source>Image will be received when your contact is online, please wait or check later!</source>
<target>La imagen se recibirá cuando tu contacto esté en línea, por favor espera o compruébalo más tarde.</target>
<target>La imagen se recibirá cuando tu contacto esté en línea, ¡por favor espera o compruébalo más tarde!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Immediately" xml:space="preserve">
@@ -2684,7 +2699,7 @@
</trans-unit>
<trans-unit id="It seems like you are already connected via this link. If it is not the case, there was an error (%@)." xml:space="preserve">
<source>It seems like you are already connected via this link. If it is not the case, there was an error (%@).</source>
<target>Parece que ya está conectado mediante este enlace. Si no es así ha habido un error (%@).</target>
<target>Parece que ya estás conectado mediante este enlace. Si no es así ha habido un error (%@).</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Italian interface" xml:space="preserve">
@@ -2719,16 +2734,17 @@
</trans-unit>
<trans-unit id="Keep your connections" xml:space="preserve">
<source>Keep your connections</source>
<target>Mantén tus conexiones</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="KeyChain error" xml:space="preserve">
<source>KeyChain error</source>
<target>Error en Keychain</target>
<target>Error Keychain</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Keychain error" xml:space="preserve">
<source>Keychain error</source>
<target>Error en Keychain</target>
<target>Error Keychain</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="LIVE" xml:space="preserve">
@@ -2813,6 +2829,7 @@
</trans-unit>
<trans-unit id="Make one message disappear" xml:space="preserve">
<source>Make one message disappear</source>
<target>Escribir un mensaje temporal</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Make profile private!" xml:space="preserve">
@@ -2887,6 +2904,7 @@
</trans-unit>
<trans-unit id="Message delivery receipts!" xml:space="preserve">
<source>Message delivery receipts!</source>
<target>¡Confirmación de entrega de mensajes!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Message draft" xml:space="preserve">
@@ -2926,7 +2944,7 @@
</trans-unit>
<trans-unit id="Migrating database archive…" xml:space="preserve">
<source>Migrating database archive…</source>
<target>Migrando archivo de base de datos…</target>
<target>Migrando base de datos…</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Migration error:" xml:space="preserve">
@@ -3081,7 +3099,7 @@
</trans-unit>
<trans-unit id="No filtered chats" xml:space="preserve">
<source>No filtered chats</source>
<target>Ningún chat filtrado</target>
<target>Sin chats filtrados</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="No group!" xml:space="preserve">
@@ -3345,7 +3363,7 @@
</trans-unit>
<trans-unit id="Permanent decryption error" xml:space="preserve">
<source>Permanent decryption error</source>
<target>Error de descifrado permanente</target>
<target>Error permanente descifrado</target>
<note>message decrypt error item</note>
</trans-unit>
<trans-unit id="Please ask your contact to enable sending voice messages." xml:space="preserve">
@@ -3505,7 +3523,7 @@
</trans-unit>
<trans-unit id="Prohibit sending files and media." xml:space="preserve">
<source>Prohibit sending files and media.</source>
<target>Prohibir el envío de archivos y multimedia.</target>
<target>No permitir el envío de archivos y multimedia.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Prohibit sending voice messages." xml:space="preserve">
@@ -3545,7 +3563,7 @@
</trans-unit>
<trans-unit id="React…" xml:space="preserve">
<source>React…</source>
<target>Reaccione…</target>
<target>Reacciona…</target>
<note>chat item menu</note>
</trans-unit>
<trans-unit id="Read" xml:space="preserve">
@@ -3660,7 +3678,7 @@
</trans-unit>
<trans-unit id="Relay server is only used if necessary. Another party can observe your IP address." xml:space="preserve">
<source>Relay server is only used if necessary. Another party can observe your IP address.</source>
<target>El servidor de retransmisión sólo se utiliza en caso necesario. Un tercero podría ver tu dirección IP.</target>
<target>El servidor de retransmisión sólo se usará en caso necesario. Un tercero podría ver tu dirección IP.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Relay server protects your IP address, but it can observe the duration of the call." xml:space="preserve">
@@ -3735,7 +3753,7 @@
</trans-unit>
<trans-unit id="Restart the app to use imported chat database" xml:space="preserve">
<source>Restart the app to use imported chat database</source>
<target>Reinicia la aplicación para utilizar la base de datos de chats importada</target>
<target>Reinicia la aplicación para usar la base de datos de chats importada</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Restore" xml:space="preserve">
@@ -3755,7 +3773,7 @@
</trans-unit>
<trans-unit id="Restore database error" xml:space="preserve">
<source>Restore database error</source>
<target>Error al restaurar la base de datos</target>
<target>Error al restaurar base de datos</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Reveal" xml:space="preserve">
@@ -3960,7 +3978,7 @@
</trans-unit>
<trans-unit id="Send delivery receipts to" xml:space="preserve">
<source>Send delivery receipts to</source>
<target>Enviar recibos de entrega a</target>
<target>Enviar confirmaciones de entrega a</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Send direct message" xml:space="preserve">
@@ -4000,7 +4018,7 @@
</trans-unit>
<trans-unit id="Send receipts" xml:space="preserve">
<source>Send receipts</source>
<target>Enviar recibos</target>
<target>Enviar confirmaciones</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Send them from gallery or custom keyboards." xml:space="preserve">
@@ -4020,10 +4038,12 @@
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts in all visible chat profiles." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts in all visible chat profiles.</source>
<target>El envío de confirmaciones de entrega se activará para todos los contactos en todos los perfiles visibles.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts.</source>
<target>El envío de confirmaciones de entrega se activará para todos los contactos.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending file will be stopped." xml:space="preserve">
@@ -4033,10 +4053,12 @@
</trans-unit>
<trans-unit id="Sending receipts is disabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is disabled for %lld contacts</source>
<target>El envío de confirmaciones está desactivado para %lld contactos</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending receipts is enabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is enabled for %lld contacts</source>
<target>El envío de confirmaciones está activado para %lld contactos</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending via" xml:space="preserve">
@@ -4478,7 +4500,7 @@ Puede ocurrir por algún bug o cuando la conexión está comprometida.</target>
</trans-unit>
<trans-unit id="The encryption is working and the new encryption agreement is not required. It may result in connection errors!" xml:space="preserve">
<source>The encryption is working and the new encryption agreement is not required. It may result in connection errors!</source>
<target>El cifrado funciona y el nuevo acuerdo de encriptación no es necesario. ¡Puede provocar errores de conexión!</target>
<target>El cifrado funciona y un cifrado nuevo no es necesario. ¡Podría dar lugar a errores de conexión!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="The group is fully decentralized it is visible only to the members." xml:space="preserve">
@@ -4518,6 +4540,7 @@ Puede ocurrir por algún bug o cuando la conexión está comprometida.</target>
</trans-unit>
<trans-unit id="The second tick we missed! ✅" xml:space="preserve">
<source>The second tick we missed! ✅</source>
<target>¡El doble check que nos faltaba! ✅</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="The sender will NOT be notified" xml:space="preserve">
@@ -4547,7 +4570,7 @@ Puede ocurrir por algún bug o cuando la conexión está comprometida.</target>
</trans-unit>
<trans-unit id="These settings are for your current profile **%@**." xml:space="preserve">
<source>These settings are for your current profile **%@**.</source>
<target>Estos ajustes son para tu perfil actual **%@**.</target>
<target>Esta configuración afecta a tu perfil actual **%@**.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="They can be overridden in contact settings" xml:space="preserve">
@@ -4602,7 +4625,7 @@ Puede ocurrir por algún bug o cuando la conexión está comprometida.</target>
</trans-unit>
<trans-unit id="To protect privacy, instead of user IDs used by all other platforms, SimpleX has identifiers for message queues, separate for each of your contacts." xml:space="preserve">
<source>To protect privacy, instead of user IDs used by all other platforms, SimpleX has identifiers for message queues, separate for each of your contacts.</source>
<target>Para proteger la privacidad, en lugar de los identificadores de usuario que utilizan el resto de plataformas, SimpleX dispone de identificadores para las colas de mensajes, independientes para cada uno de tus contactos.</target>
<target>Para proteger la privacidad, en lugar de los identificadores de usuario que usan el resto de plataformas, SimpleX dispone de identificadores para las colas de mensajes, independientes para cada uno de tus contactos.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="To protect timezone, image/voice files use UTC." xml:space="preserve">
@@ -4649,7 +4672,7 @@ Se te pedirá que completes la autenticación antes de activar esta función.</t
</trans-unit>
<trans-unit id="Trying to connect to the server used to receive messages from this contact." xml:space="preserve">
<source>Trying to connect to the server used to receive messages from this contact.</source>
<target>Intentando conectar con el servidor utilizado para recibir mensajes de este contacto.</target>
<target>Intentando conectar con el servidor usado para recibir mensajes de este contacto.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Turn off" xml:space="preserve">
@@ -4714,7 +4737,7 @@ Se te pedirá que completes la autenticación antes de activar esta función.</t
</trans-unit>
<trans-unit id="Unknown database error: %@" xml:space="preserve">
<source>Unknown database error: %@</source>
<target>Error desconocido en base de datos: %@</target>
<target>Error desconocido base de datos: %@</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Unknown error" xml:space="preserve">
@@ -4731,7 +4754,7 @@ Se te pedirá que completes la autenticación antes de activar esta función.</t
<source>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.</source>
<target>A menos que tu contacto haya eliminado la conexión o
que este enlace ya se haya utilizado, podría tratarse de un error. Por favor, notifícalo.
que este enlace ya se haya usado, podría ser un error. Por favor, notifícalo.
Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueba que tienes buena conexión de red.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
@@ -4837,7 +4860,7 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb
</trans-unit>
<trans-unit id="Using .onion hosts requires compatible VPN provider." xml:space="preserve">
<source>Using .onion hosts requires compatible VPN provider.</source>
<target>Utilizar hosts .onion requiere un proveedor VPN compatible.</target>
<target>Usar hosts .onion requiere un proveedor VPN compatible.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Using SimpleX Chat servers." xml:space="preserve">
@@ -5012,7 +5035,7 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb
</trans-unit>
<trans-unit id="You are connected to the server used to receive messages from this contact." xml:space="preserve">
<source>You are connected to the server used to receive messages from this contact.</source>
<target>Estás conectado al servidor utilizado para recibir mensajes de este contacto.</target>
<target>Estás conectado al servidor usado para recibir mensajes de este contacto.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You are invited to group" xml:space="preserve">
@@ -5037,11 +5060,12 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb
</trans-unit>
<trans-unit id="You can enable later via Settings" xml:space="preserve">
<source>You can enable later via Settings</source>
<target>Puedes activar más tarde en Configuración</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can enable them later via app Privacy &amp; Security settings." xml:space="preserve">
<source>You can enable them later via app Privacy &amp; Security settings.</source>
<target>Puedes activarlos más tarde a través de la aplicación en los ajustes de Privacidad y Seguridad.</target>
<target>Puedes activarlos más tarde en la configuración de Privacidad y Seguridad.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can hide or mute a user profile - swipe it to the right." xml:space="preserve">
@@ -5081,7 +5105,7 @@ Para conectarte, pide a tu contacto que cree otro enlace de conexión y comprueb
</trans-unit>
<trans-unit id="You can turn on SimpleX Lock via Settings." xml:space="preserve">
<source>You can turn on SimpleX Lock via Settings.</source>
<target>Puedes activar el Bloqueo SimpleX a través de Ajustes.</target>
<target>Puedes activar el Bloqueo SimpleX a través de Configuración.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can use markdown to format messages:" xml:space="preserve">
@@ -5382,12 +5406,12 @@ Los servidores de SimpleX no pueden ver tu perfil.</target>
</trans-unit>
<trans-unit id="agreeing encryption for %@…" xml:space="preserve">
<source>agreeing encryption for %@…</source>
<target>acordando la encriptación para %@…</target>
<target>acordando cifrado para %@…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="agreeing encryption…" xml:space="preserve">
<source>agreeing encryption…</source>
<target>acordando la encriptación…</target>
<target>acordando cifrado…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="always" xml:space="preserve">
@@ -5417,7 +5441,7 @@ Los servidores de SimpleX no pueden ver tu perfil.</target>
</trans-unit>
<trans-unit id="call error" xml:space="preserve">
<source>call error</source>
<target>error en la llamada</target>
<target>error en llamada</target>
<note>call status</note>
</trans-unit>
<trans-unit id="call in progress" xml:space="preserve">
@@ -5617,42 +5641,42 @@ Los servidores de SimpleX no pueden ver tu perfil.</target>
</trans-unit>
<trans-unit id="encryption agreed" xml:space="preserve">
<source>encryption agreed</source>
<target>encriptación acordada</target>
<target>cifrado acordado</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption agreed for %@" xml:space="preserve">
<source>encryption agreed for %@</source>
<target>encriptación acordada para %@</target>
<target>cifrado acordado para %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption ok" xml:space="preserve">
<source>encryption ok</source>
<target>encriptación ok</target>
<target>cifrado ok</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption ok for %@" xml:space="preserve">
<source>encryption ok for %@</source>
<target>encriptación ok para %@</target>
<target>cifrado ok para %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation allowed" xml:space="preserve">
<source>encryption re-negotiation allowed</source>
<target>renegociación de encriptación permitida</target>
<target>renegociación de cifrado permitida</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation allowed for %@" xml:space="preserve">
<source>encryption re-negotiation allowed for %@</source>
<target>renegociación de encriptación permitida para %@</target>
<target>renegociación de cifrado permitida para %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation required" xml:space="preserve">
<source>encryption re-negotiation required</source>
<target>se requiere renegociación de la encriptación</target>
<target>se requiere renegociar el cifrado</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation required for %@" xml:space="preserve">
<source>encryption re-negotiation required for %@</source>
<target>se requiere renegociación de la encriptación para %@</target>
<target>se requiere renegociar el cifrado para %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="ended" xml:space="preserve">

View File

@@ -306,6 +306,9 @@
<source>- more stable message delivery.
- a bit better groups.
- and more!</source>
<target>- une diffusion plus stable des messages.
- des groupes un peu plus performants.
- et bien d'autres choses encore !</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="- voice messages up to 5 minutes.&#10;- custom time to disappear.&#10;- editing history." xml:space="preserve">
@@ -386,6 +389,7 @@
</trans-unit>
<trans-unit id="A few more things" xml:space="preserve">
<source>A few more things</source>
<target>Encore quelques points</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="A new contact" xml:space="preserve">
@@ -1602,6 +1606,7 @@
</trans-unit>
<trans-unit id="Disable (keep overrides)" xml:space="preserve">
<source>Disable (keep overrides)</source>
<target>Désactiver (conserver les remplacements)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disable SimpleX Lock" xml:space="preserve">
@@ -1611,6 +1616,7 @@
</trans-unit>
<trans-unit id="Disable for all" xml:space="preserve">
<source>Disable for all</source>
<target>Désactiver pour tous</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disappearing message" xml:space="preserve">
@@ -1675,6 +1681,7 @@
</trans-unit>
<trans-unit id="Don't enable" xml:space="preserve">
<source>Don't enable</source>
<target>Ne pas activer</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Don't show again" xml:space="preserve">
@@ -1719,6 +1726,7 @@
</trans-unit>
<trans-unit id="Enable (keep overrides)" xml:space="preserve">
<source>Enable (keep overrides)</source>
<target>Activer (conserver les remplacements)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable SimpleX Lock" xml:space="preserve">
@@ -1738,6 +1746,7 @@
</trans-unit>
<trans-unit id="Enable for all" xml:space="preserve">
<source>Enable for all</source>
<target>Activer pour tous</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable instant notifications?" xml:space="preserve">
@@ -1952,6 +1961,7 @@
</trans-unit>
<trans-unit id="Error enabling delivery receipts!" xml:space="preserve">
<source>Error enabling delivery receipts!</source>
<target>Erreur lors de l'activation des accusés de réception!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error enabling notifications" xml:space="preserve">
@@ -2036,6 +2046,7 @@
</trans-unit>
<trans-unit id="Error setting delivery receipts!" xml:space="preserve">
<source>Error setting delivery receipts!</source>
<target>Erreur lors de la configuration des accusés de réception !</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error starting chat" xml:space="preserve">
@@ -2100,6 +2111,7 @@
</trans-unit>
<trans-unit id="Even when disabled in the conversation." xml:space="preserve">
<source>Even when disabled in the conversation.</source>
<target>Même s'il est désactivé dans la conversation.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Exit without saving" xml:space="preserve">
@@ -2184,6 +2196,7 @@
</trans-unit>
<trans-unit id="Filter unread and favorite chats." xml:space="preserve">
<source>Filter unread and favorite chats.</source>
<target>Filtrer les messages non lus et favoris.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Finally, we have them! 🚀" xml:space="preserve">
@@ -2193,6 +2206,7 @@
</trans-unit>
<trans-unit id="Find chats faster" xml:space="preserve">
<source>Find chats faster</source>
<target>Trouver des messages plus rapidement</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix" xml:space="preserve">
@@ -2212,6 +2226,7 @@
</trans-unit>
<trans-unit id="Fix encryption after restoring backups." xml:space="preserve">
<source>Fix encryption after restoring backups.</source>
<target>Réparer le chiffrement après la restauration des sauvegardes.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix not supported by contact" xml:space="preserve">
@@ -2719,6 +2734,7 @@
</trans-unit>
<trans-unit id="Keep your connections" xml:space="preserve">
<source>Keep your connections</source>
<target>Conserver vos connexions</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="KeyChain error" xml:space="preserve">
@@ -2813,6 +2829,7 @@
</trans-unit>
<trans-unit id="Make one message disappear" xml:space="preserve">
<source>Make one message disappear</source>
<target>Rendre un message éphémère</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Make profile private!" xml:space="preserve">
@@ -2887,6 +2904,7 @@
</trans-unit>
<trans-unit id="Message delivery receipts!" xml:space="preserve">
<source>Message delivery receipts!</source>
<target>Accusés de réception des messages !</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Message draft" xml:space="preserve">
@@ -4020,10 +4038,12 @@
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts in all visible chat profiles." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts in all visible chat profiles.</source>
<target>L'envoi d'accusés de réception sera activé pour tous les contacts dans tous les profils de chat visibles.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts.</source>
<target>L'envoi d'accusés de réception sera activé pour tous les contacts.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending file will be stopped." xml:space="preserve">
@@ -4033,10 +4053,12 @@
</trans-unit>
<trans-unit id="Sending receipts is disabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is disabled for %lld contacts</source>
<target>L'envoi d'accusés de réception est désactivé pour %lld contacts</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending receipts is enabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is enabled for %lld contacts</source>
<target>L'envoi d'accusés de réception est activé pour %lld contacts</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending via" xml:space="preserve">
@@ -4518,6 +4540,7 @@ Cela peut se produire en raison d'un bug ou lorsque la connexion est compromise.
</trans-unit>
<trans-unit id="The second tick we missed! ✅" xml:space="preserve">
<source>The second tick we missed! ✅</source>
<target>Le deuxième coche que nous avons manqué ! ✅</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="The sender will NOT be notified" xml:space="preserve">
@@ -5036,6 +5059,7 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien
</trans-unit>
<trans-unit id="You can enable later via Settings" xml:space="preserve">
<source>You can enable later via Settings</source>
<target>Vous pouvez l'activer ultérieurement via Paramètres</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can enable them later via app Privacy &amp; Security settings." xml:space="preserve">
@@ -5386,7 +5410,7 @@ Les serveurs SimpleX ne peuvent pas voir votre profil.</target>
</trans-unit>
<trans-unit id="agreeing encryption…" xml:space="preserve">
<source>agreeing encryption…</source>
<target>acceptant le chiffrement…</target>
<target>accord sur le chiffrement…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="always" xml:space="preserve">

View File

@@ -74,6 +74,7 @@
</trans-unit>
<trans-unit id="%@ at %@:" xml:space="preserve">
<source>%1$@ at %2$@:</source>
<target>%1$@ alle %2$@:</target>
<note>copied message info, &lt;sender&gt; at &lt;time&gt;</note>
</trans-unit>
<trans-unit id="%@ is connected!" xml:space="preserve">
@@ -305,6 +306,9 @@
<source>- more stable message delivery.
- a bit better groups.
- and more!</source>
<target>- recapito dei messaggi più stabile.
- gruppi un po' migliorati.
- e altro ancora!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="- voice messages up to 5 minutes.&#10;- custom time to disappear.&#10;- editing history." xml:space="preserve">
@@ -385,6 +389,7 @@
</trans-unit>
<trans-unit id="A few more things" xml:space="preserve">
<source>A few more things</source>
<target>Qualche altra cosa</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="A new contact" xml:space="preserve">
@@ -1148,6 +1153,7 @@
</trans-unit>
<trans-unit id="Contacts" xml:space="preserve">
<source>Contacts</source>
<target>Contatti</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Contacts can mark messages for deletion; you will be able to view them." xml:space="preserve">
@@ -1545,10 +1551,12 @@
</trans-unit>
<trans-unit id="Delivery receipts are disabled!" xml:space="preserve">
<source>Delivery receipts are disabled!</source>
<target>Le ricevute di consegna sono disattivate!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Delivery receipts!" xml:space="preserve">
<source>Delivery receipts!</source>
<target>Ricevute di consegna!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Description" xml:space="preserve">
@@ -1598,6 +1606,7 @@
</trans-unit>
<trans-unit id="Disable (keep overrides)" xml:space="preserve">
<source>Disable (keep overrides)</source>
<target>Disattiva (mantieni sostituzioni)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disable SimpleX Lock" xml:space="preserve">
@@ -1607,6 +1616,7 @@
</trans-unit>
<trans-unit id="Disable for all" xml:space="preserve">
<source>Disable for all</source>
<target>Disattiva per tutti</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disappearing message" xml:space="preserve">
@@ -1671,6 +1681,7 @@
</trans-unit>
<trans-unit id="Don't enable" xml:space="preserve">
<source>Don't enable</source>
<target>Non attivare</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Don't show again" xml:space="preserve">
@@ -1715,6 +1726,7 @@
</trans-unit>
<trans-unit id="Enable (keep overrides)" xml:space="preserve">
<source>Enable (keep overrides)</source>
<target>Attiva (mantieni sostituzioni)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable SimpleX Lock" xml:space="preserve">
@@ -1734,6 +1746,7 @@
</trans-unit>
<trans-unit id="Enable for all" xml:space="preserve">
<source>Enable for all</source>
<target>Attiva per tutti</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable instant notifications?" xml:space="preserve">
@@ -1948,6 +1961,7 @@
</trans-unit>
<trans-unit id="Error enabling delivery receipts!" xml:space="preserve">
<source>Error enabling delivery receipts!</source>
<target>Errore nell'attivazione delle ricevute di consegna!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error enabling notifications" xml:space="preserve">
@@ -2032,6 +2046,7 @@
</trans-unit>
<trans-unit id="Error setting delivery receipts!" xml:space="preserve">
<source>Error setting delivery receipts!</source>
<target>Errore nell'impostazione delle ricevute di consegna!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error starting chat" xml:space="preserve">
@@ -2051,6 +2066,7 @@
</trans-unit>
<trans-unit id="Error synchronizing connection" xml:space="preserve">
<source>Error synchronizing connection</source>
<target>Errore nella sincronizzazione della connessione</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error updating group link" xml:space="preserve">
@@ -2095,6 +2111,7 @@
</trans-unit>
<trans-unit id="Even when disabled in the conversation." xml:space="preserve">
<source>Even when disabled in the conversation.</source>
<target>Anche quando disattivato nella conversazione.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Exit without saving" xml:space="preserve">
@@ -2179,6 +2196,7 @@
</trans-unit>
<trans-unit id="Filter unread and favorite chats." xml:space="preserve">
<source>Filter unread and favorite chats.</source>
<target>Filtra le chat non lette e preferite.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Finally, we have them! 🚀" xml:space="preserve">
@@ -2188,30 +2206,37 @@
</trans-unit>
<trans-unit id="Find chats faster" xml:space="preserve">
<source>Find chats faster</source>
<target>Trova le chat più velocemente</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix" xml:space="preserve">
<source>Fix</source>
<target>Correggi</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix connection" xml:space="preserve">
<source>Fix connection</source>
<target>Correggi connessione</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix connection?" xml:space="preserve">
<source>Fix connection?</source>
<target>Correggere la connessione?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix encryption after restoring backups." xml:space="preserve">
<source>Fix encryption after restoring backups.</source>
<target>Correggi la crittografia dopo il ripristino dei backup.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix not supported by contact" xml:space="preserve">
<source>Fix not supported by contact</source>
<target>Correzione non supportata dal contatto</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix not supported by group member" xml:space="preserve">
<source>Fix not supported by group member</source>
<target>Correzione non supportata dal membro del gruppo</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="For console" xml:space="preserve">
@@ -2521,6 +2546,7 @@
</trans-unit>
<trans-unit id="In reply to" xml:space="preserve">
<source>In reply to</source>
<target>In risposta a</target>
<note>copied message info</note>
</trans-unit>
<trans-unit id="Incognito" xml:space="preserve">
@@ -2708,6 +2734,7 @@
</trans-unit>
<trans-unit id="Keep your connections" xml:space="preserve">
<source>Keep your connections</source>
<target>Mantieni le tue connessioni</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="KeyChain error" xml:space="preserve">
@@ -2802,6 +2829,7 @@
</trans-unit>
<trans-unit id="Make one message disappear" xml:space="preserve">
<source>Make one message disappear</source>
<target>Fai sparire un messaggio</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Make profile private!" xml:space="preserve">
@@ -2876,6 +2904,7 @@
</trans-unit>
<trans-unit id="Message delivery receipts!" xml:space="preserve">
<source>Message delivery receipts!</source>
<target>Ricevute di consegna dei messaggi!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Message draft" xml:space="preserve">
@@ -3080,6 +3109,7 @@
</trans-unit>
<trans-unit id="No history" xml:space="preserve">
<source>No history</source>
<target>Nessuna cronologia</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="No permission to record voice message" xml:space="preserve">
@@ -3518,6 +3548,7 @@
</trans-unit>
<trans-unit id="Protocol timeout per KB" xml:space="preserve">
<source>Protocol timeout per KB</source>
<target>Scadenza del protocollo per KB</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Push notifications" xml:space="preserve">
@@ -3532,6 +3563,7 @@
</trans-unit>
<trans-unit id="React…" xml:space="preserve">
<source>React…</source>
<target>Reagisci…</target>
<note>chat item menu</note>
</trans-unit>
<trans-unit id="Read" xml:space="preserve">
@@ -3606,10 +3638,12 @@
</trans-unit>
<trans-unit id="Reconnect all connected servers to force message delivery. It uses additional traffic." xml:space="preserve">
<source>Reconnect all connected servers to force message delivery. It uses additional traffic.</source>
<target>Riconnetti tutti i server connessi per imporre il recapito dei messaggi. Utilizza traffico aggiuntivo.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Reconnect servers?" xml:space="preserve">
<source>Reconnect servers?</source>
<target>Riconnettere i server?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Record updated at" xml:space="preserve">
@@ -3674,14 +3708,17 @@
</trans-unit>
<trans-unit id="Renegotiate" xml:space="preserve">
<source>Renegotiate</source>
<target>Rinegoziare</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Renegotiate encryption" xml:space="preserve">
<source>Renegotiate encryption</source>
<target>Rinegoziare crittografia</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Renegotiate encryption?" xml:space="preserve">
<source>Renegotiate encryption?</source>
<target>Rinegoziare la crittografia?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Reply" xml:space="preserve">
@@ -3941,6 +3978,7 @@
</trans-unit>
<trans-unit id="Send delivery receipts to" xml:space="preserve">
<source>Send delivery receipts to</source>
<target>Invia ricevute di consegna a</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Send direct message" xml:space="preserve">
@@ -3980,6 +4018,7 @@
</trans-unit>
<trans-unit id="Send receipts" xml:space="preserve">
<source>Send receipts</source>
<target>Invia ricevute</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Send them from gallery or custom keyboards." xml:space="preserve">
@@ -3999,10 +4038,12 @@
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts in all visible chat profiles." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts in all visible chat profiles.</source>
<target>L'invio delle ricevute di consegna sarà attivo per tutti i contatti in tutti i profili di chat visibili.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts.</source>
<target>L'invio delle ricevute di consegna sarà attivo per tutti i contatti.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending file will be stopped." xml:space="preserve">
@@ -4012,10 +4053,12 @@
</trans-unit>
<trans-unit id="Sending receipts is disabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is disabled for %lld contacts</source>
<target>L'invio di ricevute è disattivato per %lld contatti</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending receipts is enabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is enabled for %lld contacts</source>
<target>L'invio di ricevute è attivo per %lld contatti</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending via" xml:space="preserve">
@@ -4457,6 +4500,7 @@ Può accadere a causa di qualche bug o quando la connessione è compromessa.</ta
</trans-unit>
<trans-unit id="The encryption is working and the new encryption agreement is not required. It may result in connection errors!" xml:space="preserve">
<source>The encryption is working and the new encryption agreement is not required. It may result in connection errors!</source>
<target>La crittografia funziona e il nuovo accordo sulla crittografia non è richiesto. Potrebbero verificarsi errori di connessione!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="The group is fully decentralized it is visible only to the members." xml:space="preserve">
@@ -4496,6 +4540,7 @@ Può accadere a causa di qualche bug o quando la connessione è compromessa.</ta
</trans-unit>
<trans-unit id="The second tick we missed! ✅" xml:space="preserve">
<source>The second tick we missed! ✅</source>
<target>Il secondo segno di spunta che ci mancava! ✅</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="The sender will NOT be notified" xml:space="preserve">
@@ -4525,10 +4570,12 @@ Può accadere a causa di qualche bug o quando la connessione è compromessa.</ta
</trans-unit>
<trans-unit id="These settings are for your current profile **%@**." xml:space="preserve">
<source>These settings are for your current profile **%@**.</source>
<target>Queste impostazioni sono per il tuo profilo attuale **%@**.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="They can be overridden in contact settings" xml:space="preserve">
<source>They can be overridden in contact settings</source>
<target>Possono essere sovrascritte nelle impostazioni dei contatti</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="This action cannot be undone - all received and sent files and media will be deleted. Low resolution pictures will remain." xml:space="preserve">
@@ -5012,10 +5059,12 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e
</trans-unit>
<trans-unit id="You can enable later via Settings" xml:space="preserve">
<source>You can enable later via Settings</source>
<target>Puoi attivarle più tardi nelle impostazioni</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can enable them later via app Privacy &amp; Security settings." xml:space="preserve">
<source>You can enable them later via app Privacy &amp; Security settings.</source>
<target>Puoi attivarle più tardi nelle impostazioni di privacy e sicurezza dell'app.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can hide or mute a user profile - swipe it to the right." xml:space="preserve">
@@ -5356,10 +5405,12 @@ I server di SimpleX non possono vedere il tuo profilo.</target>
</trans-unit>
<trans-unit id="agreeing encryption for %@…" xml:space="preserve">
<source>agreeing encryption for %@…</source>
<target>concordando la crittografia per %@…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="agreeing encryption…" xml:space="preserve">
<source>agreeing encryption…</source>
<target>concordando la crittografia…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="always" xml:space="preserve">
@@ -5424,10 +5475,12 @@ I server di SimpleX non possono vedere il tuo profilo.</target>
</trans-unit>
<trans-unit id="changing address for %@…" xml:space="preserve">
<source>changing address for %@…</source>
<target>cambio indirizzo per %@…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="changing address…" xml:space="preserve">
<source>changing address…</source>
<target>cambio indirizzo…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="colored" xml:space="preserve">
@@ -5532,10 +5585,12 @@ I server di SimpleX non possono vedere il tuo profilo.</target>
</trans-unit>
<trans-unit id="default (no)" xml:space="preserve">
<source>default (no)</source>
<target>predefinito (no)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="default (yes)" xml:space="preserve">
<source>default (yes)</source>
<target>predefinito (sì)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="deleted" xml:space="preserve">
@@ -5585,34 +5640,42 @@ I server di SimpleX non possono vedere il tuo profilo.</target>
</trans-unit>
<trans-unit id="encryption agreed" xml:space="preserve">
<source>encryption agreed</source>
<target>crittografia concordata</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption agreed for %@" xml:space="preserve">
<source>encryption agreed for %@</source>
<target>crittografia concordata per %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption ok" xml:space="preserve">
<source>encryption ok</source>
<target>crittografia ok</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption ok for %@" xml:space="preserve">
<source>encryption ok for %@</source>
<target>crittografia ok per %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation allowed" xml:space="preserve">
<source>encryption re-negotiation allowed</source>
<target>rinegoziazione della crittografia consentita</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation allowed for %@" xml:space="preserve">
<source>encryption re-negotiation allowed for %@</source>
<target>rinegoziazione della crittografia consentita per %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation required" xml:space="preserve">
<source>encryption re-negotiation required</source>
<target>richiesta rinegoziazione della crittografia</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation required for %@" xml:space="preserve">
<source>encryption re-negotiation required for %@</source>
<target>richiesta rinegoziazione della crittografia per %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="ended" xml:space="preserve">
@@ -5888,6 +5951,7 @@ I server di SimpleX non possono vedere il tuo profilo.</target>
</trans-unit>
<trans-unit id="security code changed" xml:space="preserve">
<source>security code changed</source>
<target>codice di sicurezza modificato</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="starting…" xml:space="preserve">

View File

@@ -306,6 +306,9 @@
<source>- more stable message delivery.
- a bit better groups.
- and more!</source>
<target>- stabielere berichtbezorging.
- een beetje betere groepen.
- en meer!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="- voice messages up to 5 minutes.&#10;- custom time to disappear.&#10;- editing history." xml:space="preserve">
@@ -386,6 +389,7 @@
</trans-unit>
<trans-unit id="A few more things" xml:space="preserve">
<source>A few more things</source>
<target>Nog een paar dingen</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="A new contact" xml:space="preserve">
@@ -1602,6 +1606,7 @@
</trans-unit>
<trans-unit id="Disable (keep overrides)" xml:space="preserve">
<source>Disable (keep overrides)</source>
<target>Uitschakelen (overschrijvingen behouden)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disable SimpleX Lock" xml:space="preserve">
@@ -1611,6 +1616,7 @@
</trans-unit>
<trans-unit id="Disable for all" xml:space="preserve">
<source>Disable for all</source>
<target>Uitschakelen voor iedereen</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disappearing message" xml:space="preserve">
@@ -1675,6 +1681,7 @@
</trans-unit>
<trans-unit id="Don't enable" xml:space="preserve">
<source>Don't enable</source>
<target>Niet inschakelen</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Don't show again" xml:space="preserve">
@@ -1719,6 +1726,7 @@
</trans-unit>
<trans-unit id="Enable (keep overrides)" xml:space="preserve">
<source>Enable (keep overrides)</source>
<target>Inschakelen (overschrijvingen behouden)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable SimpleX Lock" xml:space="preserve">
@@ -1738,6 +1746,7 @@
</trans-unit>
<trans-unit id="Enable for all" xml:space="preserve">
<source>Enable for all</source>
<target>Inschakelen voor iedereen</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable instant notifications?" xml:space="preserve">
@@ -1952,6 +1961,7 @@
</trans-unit>
<trans-unit id="Error enabling delivery receipts!" xml:space="preserve">
<source>Error enabling delivery receipts!</source>
<target>Fout bij het inschakelen van ontvangstbevestiging!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error enabling notifications" xml:space="preserve">
@@ -2036,6 +2046,7 @@
</trans-unit>
<trans-unit id="Error setting delivery receipts!" xml:space="preserve">
<source>Error setting delivery receipts!</source>
<target>Fout bij het instellen van ontvangstbevestiging!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error starting chat" xml:space="preserve">
@@ -2100,6 +2111,7 @@
</trans-unit>
<trans-unit id="Even when disabled in the conversation." xml:space="preserve">
<source>Even when disabled in the conversation.</source>
<target>Zelfs wanneer uitgeschakeld in het gesprek.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Exit without saving" xml:space="preserve">
@@ -2184,6 +2196,7 @@
</trans-unit>
<trans-unit id="Filter unread and favorite chats." xml:space="preserve">
<source>Filter unread and favorite chats.</source>
<target>Filter ongelezen en favoriete chats.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Finally, we have them! 🚀" xml:space="preserve">
@@ -2193,6 +2206,7 @@
</trans-unit>
<trans-unit id="Find chats faster" xml:space="preserve">
<source>Find chats faster</source>
<target>Vind gesprekken sneller</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix" xml:space="preserve">
@@ -2212,6 +2226,7 @@
</trans-unit>
<trans-unit id="Fix encryption after restoring backups." xml:space="preserve">
<source>Fix encryption after restoring backups.</source>
<target>Repareer versleuteling na het herstellen van back-ups.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix not supported by contact" xml:space="preserve">
@@ -2719,6 +2734,7 @@
</trans-unit>
<trans-unit id="Keep your connections" xml:space="preserve">
<source>Keep your connections</source>
<target>Behoud uw verbindingen</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="KeyChain error" xml:space="preserve">
@@ -2813,6 +2829,7 @@
</trans-unit>
<trans-unit id="Make one message disappear" xml:space="preserve">
<source>Make one message disappear</source>
<target>Eén bericht laten verdwijnen</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Make profile private!" xml:space="preserve">
@@ -2887,6 +2904,7 @@
</trans-unit>
<trans-unit id="Message delivery receipts!" xml:space="preserve">
<source>Message delivery receipts!</source>
<target>Ontvangstbevestiging voor berichten!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Message draft" xml:space="preserve">
@@ -4020,10 +4038,12 @@
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts in all visible chat profiles." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts in all visible chat profiles.</source>
<target>Het verzenden van ontvangstbevestiging wordt ingeschakeld voor alle contacten in alle zichtbare chatprofielen.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts.</source>
<target>Het verzenden van ontvangstbevestiging wordt ingeschakeld voor alle contactpersonen.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending file will be stopped." xml:space="preserve">
@@ -4033,10 +4053,12 @@
</trans-unit>
<trans-unit id="Sending receipts is disabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is disabled for %lld contacts</source>
<target>Het verzenden van ontvangstbevestiging is uitgeschakeld voor %lld-contactpersonen</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending receipts is enabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is enabled for %lld contacts</source>
<target>Het verzenden van ontvangstbevestiging is ingeschakeld voor %lld-contactpersonen</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending via" xml:space="preserve">
@@ -4518,6 +4540,7 @@ Het kan gebeuren vanwege een bug of wanneer de verbinding is aangetast.</target>
</trans-unit>
<trans-unit id="The second tick we missed! ✅" xml:space="preserve">
<source>The second tick we missed! ✅</source>
<target>De tweede vink die we gemist hebben! ✅</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="The sender will NOT be notified" xml:space="preserve">
@@ -5036,6 +5059,7 @@ Om verbinding te maken, vraagt u uw contactpersoon om een andere verbinding link
</trans-unit>
<trans-unit id="You can enable later via Settings" xml:space="preserve">
<source>You can enable later via Settings</source>
<target>U kunt later inschakelen via Instellingen</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can enable them later via app Privacy &amp; Security settings." xml:space="preserve">
@@ -5130,7 +5154,7 @@ Om verbinding te maken, vraagt u uw contactpersoon om een andere verbinding link
</trans-unit>
<trans-unit id="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." xml:space="preserve">
<source>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.</source>
<target>U mag de meest recente versie van uw chat database ALLEEN op één apparaat gebruiken, anders ontvangt u mogelijk geen berichten meer van sommige contacten.</target>
<target>U mag ALLEEN de meest recente versie van uw chat database op één apparaat gebruiken, anders ontvangt u mogelijk geen berichten meer van sommige contacten.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You need to allow your contact to send voice messages to be able to send them." xml:space="preserve">

View File

@@ -74,6 +74,7 @@
</trans-unit>
<trans-unit id="%@ at %@:" xml:space="preserve">
<source>%1$@ at %2$@:</source>
<target>%1$@ o %2$@:</target>
<note>copied message info, &lt;sender&gt; at &lt;time&gt;</note>
</trans-unit>
<trans-unit id="%@ is connected!" xml:space="preserve">
@@ -305,6 +306,9 @@
<source>- more stable message delivery.
- a bit better groups.
- and more!</source>
<target>- bardziej stabilne dostarczanie wiadomości.
- nieco lepsze grupy.
- i więcej!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="- voice messages up to 5 minutes.&#10;- custom time to disappear.&#10;- editing history." xml:space="preserve">
@@ -385,6 +389,7 @@
</trans-unit>
<trans-unit id="A few more things" xml:space="preserve">
<source>A few more things</source>
<target>Jeszcze kilka rzeczy</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="A new contact" xml:space="preserve">
@@ -1148,6 +1153,7 @@
</trans-unit>
<trans-unit id="Contacts" xml:space="preserve">
<source>Contacts</source>
<target>Kontakty</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Contacts can mark messages for deletion; you will be able to view them." xml:space="preserve">
@@ -1545,10 +1551,12 @@
</trans-unit>
<trans-unit id="Delivery receipts are disabled!" xml:space="preserve">
<source>Delivery receipts are disabled!</source>
<target>Potwierdzenia dostawy są wyłączone!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Delivery receipts!" xml:space="preserve">
<source>Delivery receipts!</source>
<target>Potwierdzenia dostawy!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Description" xml:space="preserve">
@@ -1598,6 +1606,7 @@
</trans-unit>
<trans-unit id="Disable (keep overrides)" xml:space="preserve">
<source>Disable (keep overrides)</source>
<target>Wyłącz (zachowaj nadpisania)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disable SimpleX Lock" xml:space="preserve">
@@ -1607,6 +1616,7 @@
</trans-unit>
<trans-unit id="Disable for all" xml:space="preserve">
<source>Disable for all</source>
<target>Wyłącz dla wszystkich</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disappearing message" xml:space="preserve">
@@ -1671,6 +1681,7 @@
</trans-unit>
<trans-unit id="Don't enable" xml:space="preserve">
<source>Don't enable</source>
<target>Nie włączaj</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Don't show again" xml:space="preserve">
@@ -1715,6 +1726,7 @@
</trans-unit>
<trans-unit id="Enable (keep overrides)" xml:space="preserve">
<source>Enable (keep overrides)</source>
<target>Włącz (zachowaj nadpisania)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable SimpleX Lock" xml:space="preserve">
@@ -1734,6 +1746,7 @@
</trans-unit>
<trans-unit id="Enable for all" xml:space="preserve">
<source>Enable for all</source>
<target>Włącz dla wszystkich</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable instant notifications?" xml:space="preserve">
@@ -1948,6 +1961,7 @@
</trans-unit>
<trans-unit id="Error enabling delivery receipts!" xml:space="preserve">
<source>Error enabling delivery receipts!</source>
<target>Błąd włączania potwierdzeń dostawy!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error enabling notifications" xml:space="preserve">
@@ -2032,6 +2046,7 @@
</trans-unit>
<trans-unit id="Error setting delivery receipts!" xml:space="preserve">
<source>Error setting delivery receipts!</source>
<target>Błąd ustawiania potwierdzeń dostawy!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error starting chat" xml:space="preserve">
@@ -2051,6 +2066,7 @@
</trans-unit>
<trans-unit id="Error synchronizing connection" xml:space="preserve">
<source>Error synchronizing connection</source>
<target>Błąd synchronizacji połączenia</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error updating group link" xml:space="preserve">
@@ -2095,6 +2111,7 @@
</trans-unit>
<trans-unit id="Even when disabled in the conversation." xml:space="preserve">
<source>Even when disabled in the conversation.</source>
<target>Nawet po wyłączeniu w rozmowie.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Exit without saving" xml:space="preserve">
@@ -2179,6 +2196,7 @@
</trans-unit>
<trans-unit id="Filter unread and favorite chats." xml:space="preserve">
<source>Filter unread and favorite chats.</source>
<target>Filtruj nieprzeczytane i ulubione czaty.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Finally, we have them! 🚀" xml:space="preserve">
@@ -2188,30 +2206,37 @@
</trans-unit>
<trans-unit id="Find chats faster" xml:space="preserve">
<source>Find chats faster</source>
<target>Szybciej znajduj czaty</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix" xml:space="preserve">
<source>Fix</source>
<target>Napraw</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix connection" xml:space="preserve">
<source>Fix connection</source>
<target>Napraw połączenie</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix connection?" xml:space="preserve">
<source>Fix connection?</source>
<target>Naprawić połączenie?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix encryption after restoring backups." xml:space="preserve">
<source>Fix encryption after restoring backups.</source>
<target>Napraw szyfrowanie po przywróceniu kopii zapasowych.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix not supported by contact" xml:space="preserve">
<source>Fix not supported by contact</source>
<target>Naprawa nie jest obsługiwana przez kontakt</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix not supported by group member" xml:space="preserve">
<source>Fix not supported by group member</source>
<target>Naprawa nie jest obsługiwana przez członka grupy</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="For console" xml:space="preserve">
@@ -2521,6 +2546,7 @@
</trans-unit>
<trans-unit id="In reply to" xml:space="preserve">
<source>In reply to</source>
<target>W odpowiedzi na</target>
<note>copied message info</note>
</trans-unit>
<trans-unit id="Incognito" xml:space="preserve">
@@ -2708,6 +2734,7 @@
</trans-unit>
<trans-unit id="Keep your connections" xml:space="preserve">
<source>Keep your connections</source>
<target>Zachowaj swoje połączenia</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="KeyChain error" xml:space="preserve">
@@ -2802,6 +2829,7 @@
</trans-unit>
<trans-unit id="Make one message disappear" xml:space="preserve">
<source>Make one message disappear</source>
<target>Spraw, aby jedna wiadomość zniknęła</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Make profile private!" xml:space="preserve">
@@ -2876,6 +2904,7 @@
</trans-unit>
<trans-unit id="Message delivery receipts!" xml:space="preserve">
<source>Message delivery receipts!</source>
<target>Potwierdzenia dostarczenia wiadomości!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Message draft" xml:space="preserve">
@@ -3080,6 +3109,7 @@
</trans-unit>
<trans-unit id="No history" xml:space="preserve">
<source>No history</source>
<target>Brak historii</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="No permission to record voice message" xml:space="preserve">
@@ -3518,6 +3548,7 @@
</trans-unit>
<trans-unit id="Protocol timeout per KB" xml:space="preserve">
<source>Protocol timeout per KB</source>
<target>Limit czasu protokołu na KB</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Push notifications" xml:space="preserve">
@@ -3532,6 +3563,7 @@
</trans-unit>
<trans-unit id="React…" xml:space="preserve">
<source>React…</source>
<target>Reaguj…</target>
<note>chat item menu</note>
</trans-unit>
<trans-unit id="Read" xml:space="preserve">
@@ -3606,10 +3638,12 @@
</trans-unit>
<trans-unit id="Reconnect all connected servers to force message delivery. It uses additional traffic." xml:space="preserve">
<source>Reconnect all connected servers to force message delivery. It uses additional traffic.</source>
<target>Połącz ponownie wszystkie połączone serwery, aby wymusić dostarczanie wiadomości. Wykorzystuje dodatkowy ruch.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Reconnect servers?" xml:space="preserve">
<source>Reconnect servers?</source>
<target>Ponownie połączyć serwery?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Record updated at" xml:space="preserve">
@@ -3674,14 +3708,17 @@
</trans-unit>
<trans-unit id="Renegotiate" xml:space="preserve">
<source>Renegotiate</source>
<target>Renegocjuj</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Renegotiate encryption" xml:space="preserve">
<source>Renegotiate encryption</source>
<target>Renegocjuj szyfrowanie</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Renegotiate encryption?" xml:space="preserve">
<source>Renegotiate encryption?</source>
<target>Renegocjować szyfrowanie?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Reply" xml:space="preserve">
@@ -3941,6 +3978,7 @@
</trans-unit>
<trans-unit id="Send delivery receipts to" xml:space="preserve">
<source>Send delivery receipts to</source>
<target>Wyślij potwierdzenia dostawy do</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Send direct message" xml:space="preserve">
@@ -3980,6 +4018,7 @@
</trans-unit>
<trans-unit id="Send receipts" xml:space="preserve">
<source>Send receipts</source>
<target>Wyślij potwierdzenia</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Send them from gallery or custom keyboards." xml:space="preserve">
@@ -3999,10 +4038,12 @@
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts in all visible chat profiles." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts in all visible chat profiles.</source>
<target>Wysyłanie potwierdzeń dostawy zostanie włączone dla wszystkich kontaktów we wszystkich widocznych profilach czatu.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts.</source>
<target>Wysyłanie potwierdzeń dostawy zostanie włączone dla wszystkich kontaktów.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending file will be stopped." xml:space="preserve">
@@ -4012,10 +4053,12 @@
</trans-unit>
<trans-unit id="Sending receipts is disabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is disabled for %lld contacts</source>
<target>Wysyłanie potwierdzeń jest wyłączone dla %lld kontaktów</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending receipts is enabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is enabled for %lld contacts</source>
<target>Wysyłanie potwierdzeń jest włączone dla %lld kontaktów</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending via" xml:space="preserve">
@@ -4457,6 +4500,7 @@ Może się to zdarzyć z powodu jakiegoś błędu lub gdy połączenie jest skom
</trans-unit>
<trans-unit id="The encryption is working and the new encryption agreement is not required. It may result in connection errors!" xml:space="preserve">
<source>The encryption is working and the new encryption agreement is not required. It may result in connection errors!</source>
<target>Szyfrowanie działa, a nowe uzgodnienie szyfrowania nie jest wymagane. Może to spowodować błędy w połączeniu!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="The group is fully decentralized it is visible only to the members." xml:space="preserve">
@@ -4496,6 +4540,7 @@ Może się to zdarzyć z powodu jakiegoś błędu lub gdy połączenie jest skom
</trans-unit>
<trans-unit id="The second tick we missed! ✅" xml:space="preserve">
<source>The second tick we missed! ✅</source>
<target>Drugi tik, który przegapiliśmy! ✅</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="The sender will NOT be notified" xml:space="preserve">
@@ -4525,10 +4570,12 @@ Może się to zdarzyć z powodu jakiegoś błędu lub gdy połączenie jest skom
</trans-unit>
<trans-unit id="These settings are for your current profile **%@**." xml:space="preserve">
<source>These settings are for your current profile **%@**.</source>
<target>Te ustawienia dotyczą Twojego bieżącego profilu **%@**.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="They can be overridden in contact settings" xml:space="preserve">
<source>They can be overridden in contact settings</source>
<target>Można je nadpisać w ustawieniach kontaktu</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="This action cannot be undone - all received and sent files and media will be deleted. Low resolution pictures will remain." xml:space="preserve">
@@ -5012,10 +5059,12 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc
</trans-unit>
<trans-unit id="You can enable later via Settings" xml:space="preserve">
<source>You can enable later via Settings</source>
<target>Możesz włączyć później w Ustawieniach</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can enable them later via app Privacy &amp; Security settings." xml:space="preserve">
<source>You can enable them later via app Privacy &amp; Security settings.</source>
<target>Możesz je włączyć później w ustawieniach Prywatności i Bezpieczeństwa aplikacji.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can hide or mute a user profile - swipe it to the right." xml:space="preserve">
@@ -5356,10 +5405,12 @@ Serwery SimpleX nie mogą zobaczyć Twojego profilu.</target>
</trans-unit>
<trans-unit id="agreeing encryption for %@…" xml:space="preserve">
<source>agreeing encryption for %@…</source>
<target>uzgadnianie szyfrowania dla %@…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="agreeing encryption…" xml:space="preserve">
<source>agreeing encryption…</source>
<target>uzgadnianie szyfrowania…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="always" xml:space="preserve">
@@ -5424,10 +5475,12 @@ Serwery SimpleX nie mogą zobaczyć Twojego profilu.</target>
</trans-unit>
<trans-unit id="changing address for %@…" xml:space="preserve">
<source>changing address for %@…</source>
<target>zmienienie adresu dla %@…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="changing address…" xml:space="preserve">
<source>changing address…</source>
<target>zmiana adresu…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="colored" xml:space="preserve">
@@ -5532,10 +5585,12 @@ Serwery SimpleX nie mogą zobaczyć Twojego profilu.</target>
</trans-unit>
<trans-unit id="default (no)" xml:space="preserve">
<source>default (no)</source>
<target>domyślnie (nie)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="default (yes)" xml:space="preserve">
<source>default (yes)</source>
<target>domyślnie (tak)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="deleted" xml:space="preserve">
@@ -5585,34 +5640,42 @@ Serwery SimpleX nie mogą zobaczyć Twojego profilu.</target>
</trans-unit>
<trans-unit id="encryption agreed" xml:space="preserve">
<source>encryption agreed</source>
<target>uzgodniono szyfrowanie</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption agreed for %@" xml:space="preserve">
<source>encryption agreed for %@</source>
<target>uzgodniono szyfrowanie dla %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption ok" xml:space="preserve">
<source>encryption ok</source>
<target>szyfrowanie ok</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption ok for %@" xml:space="preserve">
<source>encryption ok for %@</source>
<target>szyfrowanie ok dla %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation allowed" xml:space="preserve">
<source>encryption re-negotiation allowed</source>
<target>renegocjacja szyfrowania dozwolona</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation allowed for %@" xml:space="preserve">
<source>encryption re-negotiation allowed for %@</source>
<target>renegocjacja szyfrowania dozwolona dla %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation required" xml:space="preserve">
<source>encryption re-negotiation required</source>
<target>renegocjacja szyfrowania wymagana</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation required for %@" xml:space="preserve">
<source>encryption re-negotiation required for %@</source>
<target>renegocjacja szyfrowania wymagana dla %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="ended" xml:space="preserve">
@@ -5888,6 +5951,7 @@ Serwery SimpleX nie mogą zobaczyć Twojego profilu.</target>
</trans-unit>
<trans-unit id="security code changed" xml:space="preserve">
<source>security code changed</source>
<target>kod bezpieczeństwa zmieniony</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="starting…" xml:space="preserve">

View File

@@ -74,6 +74,7 @@
</trans-unit>
<trans-unit id="%@ at %@:" xml:space="preserve">
<source>%1$@ at %2$@:</source>
<target>%1$@ в %2$@:</target>
<note>copied message info, &lt;sender&gt; at &lt;time&gt;</note>
</trans-unit>
<trans-unit id="%@ is connected!" xml:space="preserve">
@@ -305,6 +306,9 @@
<source>- more stable message delivery.
- a bit better groups.
- and more!</source>
<target>- более стабильная доставка сообщений.
- немного улучшенные группы.
- и прочее!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="- voice messages up to 5 minutes.&#10;- custom time to disappear.&#10;- editing history." xml:space="preserve">
@@ -385,6 +389,7 @@
</trans-unit>
<trans-unit id="A few more things" xml:space="preserve">
<source>A few more things</source>
<target>Еще несколько изменений</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="A new contact" xml:space="preserve">
@@ -416,14 +421,17 @@
</trans-unit>
<trans-unit id="Abort" xml:space="preserve">
<source>Abort</source>
<target>Прекратить</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Abort changing address" xml:space="preserve">
<source>Abort changing address</source>
<target>Прекратить изменение адреса</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Abort changing address?" xml:space="preserve">
<source>Abort changing address?</source>
<target>Прекратить изменение адреса?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="About SimpleX" xml:space="preserve">
@@ -509,6 +517,7 @@
</trans-unit>
<trans-unit id="Address change will be aborted. Old receiving address will be used." xml:space="preserve">
<source>Address change will be aborted. Old receiving address will be used.</source>
<target>Изменение адреса будет прекращено. Будет использоваться старый адрес.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Admins can create the links to join groups." xml:space="preserve">
@@ -603,6 +612,7 @@
</trans-unit>
<trans-unit id="Allow to send files and media." xml:space="preserve">
<source>Allow to send files and media.</source>
<target>Разрешить посылать файлы и медиа.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Allow to send voice messages." xml:space="preserve">
@@ -1143,6 +1153,7 @@
</trans-unit>
<trans-unit id="Contacts" xml:space="preserve">
<source>Contacts</source>
<target>Контакты</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Contacts can mark messages for deletion; you will be able to view them." xml:space="preserve">
@@ -1540,10 +1551,12 @@
</trans-unit>
<trans-unit id="Delivery receipts are disabled!" xml:space="preserve">
<source>Delivery receipts are disabled!</source>
<target>Отчёты о доставке выключены!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Delivery receipts!" xml:space="preserve">
<source>Delivery receipts!</source>
<target>Отчёты о доставке!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Description" xml:space="preserve">
@@ -1593,6 +1606,7 @@
</trans-unit>
<trans-unit id="Disable (keep overrides)" xml:space="preserve">
<source>Disable (keep overrides)</source>
<target>Выключить (кроме исключений)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disable SimpleX Lock" xml:space="preserve">
@@ -1602,6 +1616,7 @@
</trans-unit>
<trans-unit id="Disable for all" xml:space="preserve">
<source>Disable for all</source>
<target>Выключить для всех</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Disappearing message" xml:space="preserve">
@@ -1666,6 +1681,7 @@
</trans-unit>
<trans-unit id="Don't enable" xml:space="preserve">
<source>Don't enable</source>
<target>Не включать</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Don't show again" xml:space="preserve">
@@ -1710,6 +1726,7 @@
</trans-unit>
<trans-unit id="Enable (keep overrides)" xml:space="preserve">
<source>Enable (keep overrides)</source>
<target>Включить (кроме исключений)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable SimpleX Lock" xml:space="preserve">
@@ -1729,6 +1746,7 @@
</trans-unit>
<trans-unit id="Enable for all" xml:space="preserve">
<source>Enable for all</source>
<target>Включить для всех</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Enable instant notifications?" xml:space="preserve">
@@ -1848,6 +1866,7 @@
</trans-unit>
<trans-unit id="Error aborting address change" xml:space="preserve">
<source>Error aborting address change</source>
<target>Ошибка при прекращении изменения адреса</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error accepting contact request" xml:space="preserve">
@@ -1942,6 +1961,7 @@
</trans-unit>
<trans-unit id="Error enabling delivery receipts!" xml:space="preserve">
<source>Error enabling delivery receipts!</source>
<target>Ошибка при включении отчётов о доставке!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error enabling notifications" xml:space="preserve">
@@ -2026,6 +2046,7 @@
</trans-unit>
<trans-unit id="Error setting delivery receipts!" xml:space="preserve">
<source>Error setting delivery receipts!</source>
<target>Ошибка настроек отчётов о доставке!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error starting chat" xml:space="preserve">
@@ -2045,6 +2066,7 @@
</trans-unit>
<trans-unit id="Error synchronizing connection" xml:space="preserve">
<source>Error synchronizing connection</source>
<target>Ошибка синхронизации соединения</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Error updating group link" xml:space="preserve">
@@ -2089,6 +2111,7 @@
</trans-unit>
<trans-unit id="Even when disabled in the conversation." xml:space="preserve">
<source>Even when disabled in the conversation.</source>
<target>Даже когда они выключены в разговоре.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Exit without saving" xml:space="preserve">
@@ -2128,6 +2151,7 @@
</trans-unit>
<trans-unit id="Favorite" xml:space="preserve">
<source>Favorite</source>
<target>Избранный</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="File will be deleted from servers." xml:space="preserve">
@@ -2157,18 +2181,22 @@
</trans-unit>
<trans-unit id="Files and media" xml:space="preserve">
<source>Files and media</source>
<target>Файлы и медиа</target>
<note>chat feature</note>
</trans-unit>
<trans-unit id="Files and media are prohibited in this group." xml:space="preserve">
<source>Files and media are prohibited in this group.</source>
<target>Файлы и медиа запрещены в этой группе.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Files and media prohibited!" xml:space="preserve">
<source>Files and media prohibited!</source>
<target>Файлы и медиа запрещены!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Filter unread and favorite chats." xml:space="preserve">
<source>Filter unread and favorite chats.</source>
<target>Фильтровать непрочитанные и избранные чаты.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Finally, we have them! 🚀" xml:space="preserve">
@@ -2178,30 +2206,37 @@
</trans-unit>
<trans-unit id="Find chats faster" xml:space="preserve">
<source>Find chats faster</source>
<target>Быстро найти чаты</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix" xml:space="preserve">
<source>Fix</source>
<target>Починить</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix connection" xml:space="preserve">
<source>Fix connection</source>
<target>Починить соединение</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix connection?" xml:space="preserve">
<source>Fix connection?</source>
<target>Починить соединение?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix encryption after restoring backups." xml:space="preserve">
<source>Fix encryption after restoring backups.</source>
<target>Починить шифрование после восстановления из бэкапа.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix not supported by contact" xml:space="preserve">
<source>Fix not supported by contact</source>
<target>Починка не поддерживается контактом</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Fix not supported by group member" xml:space="preserve">
<source>Fix not supported by group member</source>
<target>Починка не поддерживается членом группы</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="For console" xml:space="preserve">
@@ -2311,6 +2346,7 @@
</trans-unit>
<trans-unit id="Group members can send files and media." xml:space="preserve">
<source>Group members can send files and media.</source>
<target>Члены группы могут слать файлы и медиа.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Group members can send voice messages." xml:space="preserve">
@@ -2510,6 +2546,7 @@
</trans-unit>
<trans-unit id="In reply to" xml:space="preserve">
<source>In reply to</source>
<target>В ответ на</target>
<note>copied message info</note>
</trans-unit>
<trans-unit id="Incognito" xml:space="preserve">
@@ -2697,6 +2734,7 @@
</trans-unit>
<trans-unit id="Keep your connections" xml:space="preserve">
<source>Keep your connections</source>
<target>Сохраните Ваши соединения</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="KeyChain error" xml:space="preserve">
@@ -2791,6 +2829,7 @@
</trans-unit>
<trans-unit id="Make one message disappear" xml:space="preserve">
<source>Make one message disappear</source>
<target>Одно исчезающее сообщение</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Make profile private!" xml:space="preserve">
@@ -2865,6 +2904,7 @@
</trans-unit>
<trans-unit id="Message delivery receipts!" xml:space="preserve">
<source>Message delivery receipts!</source>
<target>Отчеты о доставке сообщений!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Message draft" xml:space="preserve">
@@ -3059,6 +3099,7 @@
</trans-unit>
<trans-unit id="No filtered chats" xml:space="preserve">
<source>No filtered chats</source>
<target>Нет отфильтрованных разговоров</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="No group!" xml:space="preserve">
@@ -3068,6 +3109,7 @@
</trans-unit>
<trans-unit id="No history" xml:space="preserve">
<source>No history</source>
<target>Нет истории</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="No permission to record voice message" xml:space="preserve">
@@ -3156,6 +3198,7 @@
</trans-unit>
<trans-unit id="Only group owners can enable files and media." xml:space="preserve">
<source>Only group owners can enable files and media.</source>
<target>Только владельцы группы могут разрешить файлы и медиа.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Only group owners can enable voice messages." xml:space="preserve">
@@ -3480,6 +3523,7 @@
</trans-unit>
<trans-unit id="Prohibit sending files and media." xml:space="preserve">
<source>Prohibit sending files and media.</source>
<target>Запретить слать файлы и медиа.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Prohibit sending voice messages." xml:space="preserve">
@@ -3504,6 +3548,7 @@
</trans-unit>
<trans-unit id="Protocol timeout per KB" xml:space="preserve">
<source>Protocol timeout per KB</source>
<target>Таймаут протокола на KB</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Push notifications" xml:space="preserve">
@@ -3518,6 +3563,7 @@
</trans-unit>
<trans-unit id="React…" xml:space="preserve">
<source>React…</source>
<target>Реакция…</target>
<note>chat item menu</note>
</trans-unit>
<trans-unit id="Read" xml:space="preserve">
@@ -3572,6 +3618,7 @@
</trans-unit>
<trans-unit id="Receiving address will be changed to a different server. Address change will complete after sender comes online." xml:space="preserve">
<source>Receiving address will be changed to a different server. Address change will complete after sender comes online.</source>
<target>Адрес получения сообщений будет перемещён на другой сервер. Изменение адреса завершится после того как отправитель будет онлайн.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Receiving file will be stopped." xml:space="preserve">
@@ -3591,10 +3638,12 @@
</trans-unit>
<trans-unit id="Reconnect all connected servers to force message delivery. It uses additional traffic." xml:space="preserve">
<source>Reconnect all connected servers to force message delivery. It uses additional traffic.</source>
<target>Повторно подключите все серверы, чтобы принудительно доставить сообщения. Используется дополнительный трафик.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Reconnect servers?" xml:space="preserve">
<source>Reconnect servers?</source>
<target>Переподключить серверы?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Record updated at" xml:space="preserve">
@@ -3659,14 +3708,17 @@
</trans-unit>
<trans-unit id="Renegotiate" xml:space="preserve">
<source>Renegotiate</source>
<target>Пересогласовать</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Renegotiate encryption" xml:space="preserve">
<source>Renegotiate encryption</source>
<target>Пересогласовать шифрование</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Renegotiate encryption?" xml:space="preserve">
<source>Renegotiate encryption?</source>
<target>Пересогласовать шифрование?</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Reply" xml:space="preserve">
@@ -3926,6 +3978,7 @@
</trans-unit>
<trans-unit id="Send delivery receipts to" xml:space="preserve">
<source>Send delivery receipts to</source>
<target>Отправка отчётов о доставке</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Send direct message" xml:space="preserve">
@@ -3965,6 +4018,7 @@
</trans-unit>
<trans-unit id="Send receipts" xml:space="preserve">
<source>Send receipts</source>
<target>Отправлять отчёты о доставке</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Send them from gallery or custom keyboards." xml:space="preserve">
@@ -3984,10 +4038,12 @@
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts in all visible chat profiles." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts in all visible chat profiles.</source>
<target>Отправка отчётов о доставке будет включена для всех контактов во всех видимых профилях чата.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending delivery receipts will be enabled for all contacts." xml:space="preserve">
<source>Sending delivery receipts will be enabled for all contacts.</source>
<target>Отправка отчётов о доставке будет включена для всех контактов.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending file will be stopped." xml:space="preserve">
@@ -3997,10 +4053,12 @@
</trans-unit>
<trans-unit id="Sending receipts is disabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is disabled for %lld contacts</source>
<target>Отправка отчётов о доставке выключена для %lld контактов</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending receipts is enabled for %lld contacts" xml:space="preserve">
<source>Sending receipts is enabled for %lld contacts</source>
<target>Отправка отчётов о доставке включена для %lld контактов</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Sending via" xml:space="preserve">
@@ -4225,6 +4283,7 @@
</trans-unit>
<trans-unit id="Some non-fatal errors occurred during import - you may see Chat console for more details." xml:space="preserve">
<source>Some non-fatal errors occurred during import - you may see Chat console for more details.</source>
<target>Во время импорта произошли некоторые ошибки - для получения более подробной информации вы можете обратиться к консоли.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Somebody" xml:space="preserve">
@@ -4441,6 +4500,7 @@ It can happen because of some bug or when the connection is compromised.</source
</trans-unit>
<trans-unit id="The encryption is working and the new encryption agreement is not required. It may result in connection errors!" xml:space="preserve">
<source>The encryption is working and the new encryption agreement is not required. It may result in connection errors!</source>
<target>Шифрование работает, и новое соглашение не требуется. Это может привести к ошибкам соединения!</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="The group is fully decentralized it is visible only to the members." xml:space="preserve">
@@ -4480,6 +4540,7 @@ It can happen because of some bug or when the connection is compromised.</source
</trans-unit>
<trans-unit id="The second tick we missed! ✅" xml:space="preserve">
<source>The second tick we missed! ✅</source>
<target>Вторая галочка - знать, что доставлено! ✅</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="The sender will NOT be notified" xml:space="preserve">
@@ -4509,10 +4570,12 @@ It can happen because of some bug or when the connection is compromised.</source
</trans-unit>
<trans-unit id="These settings are for your current profile **%@**." xml:space="preserve">
<source>These settings are for your current profile **%@**.</source>
<target>Установки для Вашего активного профиля **%@**.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="They can be overridden in contact settings" xml:space="preserve">
<source>They can be overridden in contact settings</source>
<target>Они могут быть переопределены в настройках контактов</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="This action cannot be undone - all received and sent files and media will be deleted. Low resolution pictures will remain." xml:space="preserve">
@@ -4644,6 +4707,7 @@ You will be prompted to complete authentication before this feature is enabled.<
</trans-unit>
<trans-unit id="Unfav." xml:space="preserve">
<source>Unfav.</source>
<target>Не избр.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="Unhide" xml:space="preserve">
@@ -4995,10 +5059,12 @@ To connect, please ask your contact to create another connection link and check
</trans-unit>
<trans-unit id="You can enable later via Settings" xml:space="preserve">
<source>You can enable later via Settings</source>
<target>Вы можете включить их позже в Настройках</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can enable them later via app Privacy &amp; Security settings." xml:space="preserve">
<source>You can enable them later via app Privacy &amp; Security settings.</source>
<target>Вы можете включить их позже в настройках Конфиденциальности.</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="You can hide or mute a user profile - swipe it to the right." xml:space="preserve">
@@ -5339,10 +5405,12 @@ SimpleX серверы не могут получить доступ к Ваше
</trans-unit>
<trans-unit id="agreeing encryption for %@…" xml:space="preserve">
<source>agreeing encryption for %@…</source>
<target>шифрование согласовывается для %@…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="agreeing encryption…" xml:space="preserve">
<source>agreeing encryption…</source>
<target>шифрование согласовывается…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="always" xml:space="preserve">
@@ -5407,10 +5475,12 @@ SimpleX серверы не могут получить доступ к Ваше
</trans-unit>
<trans-unit id="changing address for %@…" xml:space="preserve">
<source>changing address for %@…</source>
<target>смена адреса для %@…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="changing address…" xml:space="preserve">
<source>changing address…</source>
<target>смена адреса…</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="colored" xml:space="preserve">
@@ -5515,10 +5585,12 @@ SimpleX серверы не могут получить доступ к Ваше
</trans-unit>
<trans-unit id="default (no)" xml:space="preserve">
<source>default (no)</source>
<target>по умолчанию (нет)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="default (yes)" xml:space="preserve">
<source>default (yes)</source>
<target>по умолчанию (да)</target>
<note>No comment provided by engineer.</note>
</trans-unit>
<trans-unit id="deleted" xml:space="preserve">
@@ -5568,34 +5640,42 @@ SimpleX серверы не могут получить доступ к Ваше
</trans-unit>
<trans-unit id="encryption agreed" xml:space="preserve">
<source>encryption agreed</source>
<target>шифрование согласовано</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption agreed for %@" xml:space="preserve">
<source>encryption agreed for %@</source>
<target>шифрование согласовано для %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption ok" xml:space="preserve">
<source>encryption ok</source>
<target>шифрование работает</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption ok for %@" xml:space="preserve">
<source>encryption ok for %@</source>
<target>шифрование работает для %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation allowed" xml:space="preserve">
<source>encryption re-negotiation allowed</source>
<target>новое соглашение о шифровании разрешено</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation allowed for %@" xml:space="preserve">
<source>encryption re-negotiation allowed for %@</source>
<target>новое соглашение о шифровании разрешено для %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation required" xml:space="preserve">
<source>encryption re-negotiation required</source>
<target>требуется новое соглашение о шифровании</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="encryption re-negotiation required for %@" xml:space="preserve">
<source>encryption re-negotiation required for %@</source>
<target>требуется новое соглашение о шифровании для %@</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="ended" xml:space="preserve">
@@ -5780,6 +5860,7 @@ SimpleX серверы не могут получить доступ к Ваше
</trans-unit>
<trans-unit id="no text" xml:space="preserve">
<source>no text</source>
<target>нет текста</target>
<note>copied message info in history</note>
</trans-unit>
<trans-unit id="observer" xml:space="preserve">
@@ -5870,6 +5951,7 @@ SimpleX серверы не могут получить доступ к Ваше
</trans-unit>
<trans-unit id="security code changed" xml:space="preserve">
<source>security code changed</source>
<target>код безопасности изменился</target>
<note>chat item text</note>
</trans-unit>
<trans-unit id="starting…" xml:space="preserve">

View File

@@ -76,7 +76,7 @@ class NotificationService: UNNotificationServiceExtension {
var badgeCount: Int = 0
override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
logger.debug("NotificationService.didReceive")
logger.debug("DEBUGGING: NotificationService.didReceive")
if let ntf = request.content.mutableCopy() as? UNMutableNotificationContent {
setBestAttemptNtf(ntf)
}
@@ -149,7 +149,7 @@ class NotificationService: UNNotificationServiceExtension {
}
override func serviceExtensionTimeWillExpire() {
logger.debug("NotificationService.serviceExtensionTimeWillExpire")
logger.debug("DEBUGGING: NotificationService.serviceExtensionTimeWillExpire")
deliverBestAttemptNtf()
}

View File

@@ -68,11 +68,6 @@
5C93293129239BED0090FFF9 /* ProtocolServerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C93293029239BED0090FFF9 /* ProtocolServerView.swift */; };
5C93293F2928E0FD0090FFF9 /* AudioRecPlay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C93293E2928E0FD0090FFF9 /* AudioRecPlay.swift */; };
5C9329412929248A0090FFF9 /* ScanProtocolServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C9329402929248A0090FFF9 /* ScanProtocolServer.swift */; };
5C96CC292A6581E0006729D5 /* libHSsimplex-chat-5.2.0.2-31P8h1ZTCBQCHVWqC2oSIk.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C96CC242A6581E0006729D5 /* libHSsimplex-chat-5.2.0.2-31P8h1ZTCBQCHVWqC2oSIk.a */; };
5C96CC2A2A6581E0006729D5 /* libHSsimplex-chat-5.2.0.2-31P8h1ZTCBQCHVWqC2oSIk-ghc8.10.7.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C96CC252A6581E0006729D5 /* libHSsimplex-chat-5.2.0.2-31P8h1ZTCBQCHVWqC2oSIk-ghc8.10.7.a */; };
5C96CC2B2A6581E0006729D5 /* libffi.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C96CC262A6581E0006729D5 /* libffi.a */; };
5C96CC2C2A6581E0006729D5 /* libgmp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C96CC272A6581E0006729D5 /* libgmp.a */; };
5C96CC2D2A6581E0006729D5 /* libgmpxx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C96CC282A6581E0006729D5 /* libgmpxx.a */; };
5C971E1D27AEBEF600C8A3CE /* ChatInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C971E1C27AEBEF600C8A3CE /* ChatInfoView.swift */; };
5C971E2127AEBF8300C8A3CE /* ChatInfoImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C971E2027AEBF8300C8A3CE /* ChatInfoImage.swift */; };
5C9A5BDB2871E05400A5B906 /* SetNotificationsMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C9A5BDA2871E05400A5B906 /* SetNotificationsMode.swift */; };
@@ -142,6 +137,11 @@
5CE2BA97284537A800EC33A6 /* dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CE2BA96284537A800EC33A6 /* dummy.m */; };
5CE2BA9D284555F500EC33A6 /* SimpleX NSE.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 5CDCAD452818589900503DA2 /* SimpleX NSE.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
5CE2BAA62845617C00EC33A6 /* SimpleXChat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CE2BA682845308900EC33A6 /* SimpleXChat.framework */; platformFilter = ios; };
5CE381D72A69AE88004FB9E1 /* libHSsimplex-chat-5.2.0.3-9DDzk5dukPe6oTQ1CZlGPI.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CE381D22A69AE88004FB9E1 /* libHSsimplex-chat-5.2.0.3-9DDzk5dukPe6oTQ1CZlGPI.a */; };
5CE381D82A69AE88004FB9E1 /* libgmp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CE381D32A69AE88004FB9E1 /* libgmp.a */; };
5CE381D92A69AE88004FB9E1 /* libHSsimplex-chat-5.2.0.3-9DDzk5dukPe6oTQ1CZlGPI-ghc8.10.7.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CE381D42A69AE88004FB9E1 /* libHSsimplex-chat-5.2.0.3-9DDzk5dukPe6oTQ1CZlGPI-ghc8.10.7.a */; };
5CE381DA2A69AE88004FB9E1 /* libffi.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CE381D52A69AE88004FB9E1 /* libffi.a */; };
5CE381DB2A69AE88004FB9E1 /* libgmpxx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CE381D62A69AE88004FB9E1 /* libgmpxx.a */; };
5CE4407227ADB1D0007B033A /* Emoji.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CE4407127ADB1D0007B033A /* Emoji.swift */; };
5CE4407927ADB701007B033A /* EmojiItemView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CE4407827ADB701007B033A /* EmojiItemView.swift */; };
5CEACCE327DE9246000BD591 /* ComposeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CEACCE227DE9246000BD591 /* ComposeView.swift */; };
@@ -327,11 +327,6 @@
5C93293029239BED0090FFF9 /* ProtocolServerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProtocolServerView.swift; sourceTree = "<group>"; };
5C93293E2928E0FD0090FFF9 /* AudioRecPlay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AudioRecPlay.swift; sourceTree = "<group>"; };
5C9329402929248A0090FFF9 /* ScanProtocolServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScanProtocolServer.swift; sourceTree = "<group>"; };
5C96CC242A6581E0006729D5 /* libHSsimplex-chat-5.2.0.2-31P8h1ZTCBQCHVWqC2oSIk.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libHSsimplex-chat-5.2.0.2-31P8h1ZTCBQCHVWqC2oSIk.a"; sourceTree = "<group>"; };
5C96CC252A6581E0006729D5 /* libHSsimplex-chat-5.2.0.2-31P8h1ZTCBQCHVWqC2oSIk-ghc8.10.7.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libHSsimplex-chat-5.2.0.2-31P8h1ZTCBQCHVWqC2oSIk-ghc8.10.7.a"; sourceTree = "<group>"; };
5C96CC262A6581E0006729D5 /* libffi.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libffi.a; sourceTree = "<group>"; };
5C96CC272A6581E0006729D5 /* libgmp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libgmp.a; sourceTree = "<group>"; };
5C96CC282A6581E0006729D5 /* libgmpxx.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libgmpxx.a; sourceTree = "<group>"; };
5C971E1C27AEBEF600C8A3CE /* ChatInfoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatInfoView.swift; sourceTree = "<group>"; };
5C971E2027AEBF8300C8A3CE /* ChatInfoImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatInfoImage.swift; sourceTree = "<group>"; };
5C9A5BDA2871E05400A5B906 /* SetNotificationsMode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetNotificationsMode.swift; sourceTree = "<group>"; };
@@ -420,6 +415,11 @@
5CE2BA78284530CC00EC33A6 /* SimpleXChat.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = SimpleXChat.docc; sourceTree = "<group>"; };
5CE2BA8A2845332200EC33A6 /* SimpleX.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleX.h; sourceTree = "<group>"; };
5CE2BA96284537A800EC33A6 /* dummy.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = dummy.m; sourceTree = "<group>"; };
5CE381D22A69AE88004FB9E1 /* libHSsimplex-chat-5.2.0.3-9DDzk5dukPe6oTQ1CZlGPI.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libHSsimplex-chat-5.2.0.3-9DDzk5dukPe6oTQ1CZlGPI.a"; sourceTree = "<group>"; };
5CE381D32A69AE88004FB9E1 /* libgmp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libgmp.a; sourceTree = "<group>"; };
5CE381D42A69AE88004FB9E1 /* libHSsimplex-chat-5.2.0.3-9DDzk5dukPe6oTQ1CZlGPI-ghc8.10.7.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libHSsimplex-chat-5.2.0.3-9DDzk5dukPe6oTQ1CZlGPI-ghc8.10.7.a"; sourceTree = "<group>"; };
5CE381D52A69AE88004FB9E1 /* libffi.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libffi.a; sourceTree = "<group>"; };
5CE381D62A69AE88004FB9E1 /* libgmpxx.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libgmpxx.a; sourceTree = "<group>"; };
5CE4407127ADB1D0007B033A /* Emoji.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Emoji.swift; sourceTree = "<group>"; };
5CE4407827ADB701007B033A /* EmojiItemView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmojiItemView.swift; sourceTree = "<group>"; };
5CEACCE227DE9246000BD591 /* ComposeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeView.swift; sourceTree = "<group>"; };
@@ -501,13 +501,13 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5C96CC292A6581E0006729D5 /* libHSsimplex-chat-5.2.0.2-31P8h1ZTCBQCHVWqC2oSIk.a in Frameworks */,
5C96CC2A2A6581E0006729D5 /* libHSsimplex-chat-5.2.0.2-31P8h1ZTCBQCHVWqC2oSIk-ghc8.10.7.a in Frameworks */,
5CE2BA93284534B000EC33A6 /* libiconv.tbd in Frameworks */,
5C96CC2B2A6581E0006729D5 /* libffi.a in Frameworks */,
5C96CC2C2A6581E0006729D5 /* libgmp.a in Frameworks */,
5CE381DA2A69AE88004FB9E1 /* libffi.a in Frameworks */,
5CE2BA94284534BB00EC33A6 /* libz.tbd in Frameworks */,
5C96CC2D2A6581E0006729D5 /* libgmpxx.a in Frameworks */,
5CE381D82A69AE88004FB9E1 /* libgmp.a in Frameworks */,
5CE381D72A69AE88004FB9E1 /* libHSsimplex-chat-5.2.0.3-9DDzk5dukPe6oTQ1CZlGPI.a in Frameworks */,
5CE381D92A69AE88004FB9E1 /* libHSsimplex-chat-5.2.0.3-9DDzk5dukPe6oTQ1CZlGPI-ghc8.10.7.a in Frameworks */,
5CE381DB2A69AE88004FB9E1 /* libgmpxx.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -568,11 +568,11 @@
5C764E5C279C70B7000C6508 /* Libraries */ = {
isa = PBXGroup;
children = (
5C96CC262A6581E0006729D5 /* libffi.a */,
5C96CC272A6581E0006729D5 /* libgmp.a */,
5C96CC282A6581E0006729D5 /* libgmpxx.a */,
5C96CC252A6581E0006729D5 /* libHSsimplex-chat-5.2.0.2-31P8h1ZTCBQCHVWqC2oSIk-ghc8.10.7.a */,
5C96CC242A6581E0006729D5 /* libHSsimplex-chat-5.2.0.2-31P8h1ZTCBQCHVWqC2oSIk.a */,
5CE381D52A69AE88004FB9E1 /* libffi.a */,
5CE381D32A69AE88004FB9E1 /* libgmp.a */,
5CE381D62A69AE88004FB9E1 /* libgmpxx.a */,
5CE381D42A69AE88004FB9E1 /* libHSsimplex-chat-5.2.0.3-9DDzk5dukPe6oTQ1CZlGPI-ghc8.10.7.a */,
5CE381D22A69AE88004FB9E1 /* libHSsimplex-chat-5.2.0.3-9DDzk5dukPe6oTQ1CZlGPI.a */,
);
path = Libraries;
sourceTree = "<group>";
@@ -1478,7 +1478,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = "SimpleX (iOS).entitlements";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 155;
CURRENT_PROJECT_VERSION = 159;
DEVELOPMENT_TEAM = 5NN7GUYB6T;
ENABLE_BITCODE = NO;
ENABLE_PREVIEWS = YES;
@@ -1520,7 +1520,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = "SimpleX (iOS).entitlements";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 155;
CURRENT_PROJECT_VERSION = 159;
DEVELOPMENT_TEAM = 5NN7GUYB6T;
ENABLE_BITCODE = NO;
ENABLE_PREVIEWS = YES;
@@ -1600,7 +1600,7 @@
CODE_SIGN_ENTITLEMENTS = "SimpleX NSE/SimpleX NSE.entitlements";
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 155;
CURRENT_PROJECT_VERSION = 159;
DEVELOPMENT_TEAM = 5NN7GUYB6T;
ENABLE_BITCODE = NO;
GENERATE_INFOPLIST_FILE = YES;
@@ -1632,7 +1632,7 @@
CODE_SIGN_ENTITLEMENTS = "SimpleX NSE/SimpleX NSE.entitlements";
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 155;
CURRENT_PROJECT_VERSION = 159;
DEVELOPMENT_TEAM = 5NN7GUYB6T;
ENABLE_BITCODE = NO;
GENERATE_INFOPLIST_FILE = YES;
@@ -1664,7 +1664,7 @@
APPLICATION_EXTENSION_API_ONLY = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 71;
CURRENT_PROJECT_VERSION = 159;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 5NN7GUYB6T;
DYLIB_COMPATIBILITY_VERSION = 1;
@@ -1688,7 +1688,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Libraries/sim",
);
MARKETING_VERSION = 4.0;
MARKETING_VERSION = 5.2;
PRODUCT_BUNDLE_IDENTIFIER = chat.simplex.SimpleXChat;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
@@ -1710,7 +1710,7 @@
APPLICATION_EXTENSION_API_ONLY = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 71;
CURRENT_PROJECT_VERSION = 159;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 5NN7GUYB6T;
DYLIB_COMPATIBILITY_VERSION = 1;
@@ -1734,7 +1734,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Libraries/sim",
);
MARKETING_VERSION = 4.0;
MARKETING_VERSION = 5.2;
PRODUCT_BUNDLE_IDENTIFIER = chat.simplex.SimpleXChat;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;

View File

@@ -19,6 +19,9 @@
/* No comment provided by engineer. */
"_italic_" = "\\_kurzíva_";
/* No comment provided by engineer. */
"- more stable message delivery.\n- a bit better groups.\n- and more!" = "- více stabilní doručování zpráv.\n- o trochu lepší skupiny.\n- a více!";
/* No comment provided by engineer. */
"- voice messages up to 5 minutes.\n- custom time to disappear.\n- editing history." = "- 5 minutové hlasové zprávy.\n- vlastní čas mizení.\n- historie úprav.";
@@ -103,6 +106,9 @@
/* No comment provided by engineer. */
"%@ %@" = "%@ %@";
/* copied message info, <sender> at <time> */
"%@ at %@:" = "%1$@ na %2$@:";
/* notification title */
"%@ is connected!" = "%@ je připojen!";
@@ -232,6 +238,9 @@
/* No comment provided by engineer. */
"30 seconds" = "30 vteřin";
/* No comment provided by engineer. */
"A few more things" = "Ještě pár věcí";
/* notification title */
"A new contact" = "Nový kontakt";
@@ -247,6 +256,15 @@
/* 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." = "**pro každý kontakt a člena skupiny** bude použito samostatné připojení TCP.\n**Upozornění**: Pokud máte mnoho připojení, spotřeba baterie a provozu může být podstatně vyšší a některá připojení mohou selhat.";
/* No comment provided by engineer. */
"Abort" = "Přerušit";
/* No comment provided by engineer. */
"Abort changing address" = "Přerušit změnu adresy";
/* No comment provided by engineer. */
"Abort changing address?" = "Přerušit změnu adresy?";
/* No comment provided by engineer. */
"About SimpleX" = "O SimpleX";
@@ -302,6 +320,9 @@
/* No comment provided by engineer. */
"Address" = "Adresa";
/* No comment provided by engineer. */
"Address change will be aborted. Old receiving address will be used." = "Změna adresy bude přerušena. Budou použity staré přijímací adresy.";
/* member role */
"admin" = "správce";
@@ -311,6 +332,12 @@
/* No comment provided by engineer. */
"Advanced network settings" = "Pokročilá nastavení sítě";
/* chat item text */
"agreeing encryption for %@…" = "povoluji šifrování pro %@…";
/* chat item text */
"agreeing encryption…" = "povoluji šifrování…";
/* No comment provided by engineer. */
"All app data is deleted." = "Všechna data aplikace jsou smazána.";
@@ -359,6 +386,9 @@
/* No comment provided by engineer. */
"Allow to irreversibly delete sent messages." = "Povolit nevratné smazání odeslaných zpráv.";
/* No comment provided by engineer. */
"Allow to send files and media." = "Povolit odesílání souborů a médii.";
/* No comment provided by engineer. */
"Allow to send voice messages." = "Povolit odesílání hlasových zpráv.";
@@ -573,6 +603,12 @@
/* rcv group event chat item */
"changed your role to %@" = "změnil vaši roli na %@";
/* chat item text */
"changing address for %@…" = "změna adresy pro %@…";
/* chat item text */
"changing address…" = "změna adresy…";
/* No comment provided by engineer. */
"Chat archive" = "Chat se archivuje";
@@ -762,6 +798,9 @@
/* No comment provided by engineer. */
"Contact preferences" = "Předvolby kontaktů";
/* No comment provided by engineer. */
"Contacts" = "Kontakty";
/* No comment provided by engineer. */
"Contacts can mark messages for deletion; you will be able to view them." = "Kontakty mohou označit zprávy ke smazání; vy je budete moci zobrazit.";
@@ -1014,6 +1053,12 @@
/* rcv group event chat item */
"deleted group" = "odstraněna skupina";
/* No comment provided by engineer. */
"Delivery receipts are disabled!" = "Potvrzení o doručení jsou vypnuté!";
/* No comment provided by engineer. */
"Delivery receipts!" = "Potvrzení o doručení!";
/* No comment provided by engineer. */
"Description" = "Popis";
@@ -1047,6 +1092,12 @@
/* No comment provided by engineer. */
"Direct messages between members are prohibited in this group." = "Přímé zprávy mezi členy jsou v této skupině zakázány.";
/* No comment provided by engineer. */
"Disable (keep overrides)" = "Vypnout (zachovat přepsání)";
/* No comment provided by engineer. */
"Disable for all" = "Vypnout pro všechny";
/* authentication reason */
"Disable SimpleX Lock" = "Vypnutí zámku SimpleX";
@@ -1086,6 +1137,9 @@
/* No comment provided by engineer. */
"Don't create address" = "Nevytvářet adresu";
/* No comment provided by engineer. */
"Don't enable" = "Nepovolovat";
/* No comment provided by engineer. */
"Don't show again" = "Znovu neukazuj";
@@ -1116,9 +1170,15 @@
/* No comment provided by engineer. */
"Enable" = "Zapnout";
/* No comment provided by engineer. */
"Enable (keep overrides)" = "Povolit (zachovat přepsání)";
/* No comment provided by engineer. */
"Enable automatic message deletion?" = "Povolit automatické mazání zpráv?";
/* No comment provided by engineer. */
"Enable for all" = "Povolit pro všechny";
/* No comment provided by engineer. */
"Enable instant notifications?" = "Povolit okamžitá oznámení?";
@@ -1179,6 +1239,30 @@
/* notification */
"Encrypted message: unexpected error" = "Šifrovaná zpráva: neočekávaná chyba";
/* chat item text */
"encryption agreed" = "šifrování povoleno";
/* chat item text */
"encryption agreed for %@" = "šifrování povoleno pro %@";
/* chat item text */
"encryption ok" = "šifrování ok";
/* chat item text */
"encryption ok for %@" = "šifrování ok pro %@";
/* chat item text */
"encryption re-negotiation allowed" = "opětovné vyjednávání šifrování povoleno";
/* chat item text */
"encryption re-negotiation allowed for %@" = "opětovné vyjednávání šifrování povoleno pro %@";
/* chat item text */
"encryption re-negotiation required" = "vyžadováno opětovné vyjednávání šifrování";
/* chat item text */
"encryption re-negotiation required for %@" = "vyžadováno opětovné vyjednávání šifrování pro %@";
/* No comment provided by engineer. */
"ended" = "ukončeno";
@@ -1212,6 +1296,9 @@
/* No comment provided by engineer. */
"Error" = "Chyba";
/* No comment provided by engineer. */
"Error aborting address change" = "Chyba přerušení změny adresy";
/* No comment provided by engineer. */
"Error accepting contact request" = "Chyba při přijímání žádosti o kontakt";
@@ -1266,6 +1353,9 @@
/* No comment provided by engineer. */
"Error deleting user profile" = "Chyba mazání uživatelského profilu";
/* No comment provided by engineer. */
"Error enabling delivery receipts!" = "Chyba povolení potvrzení o doručení!";
/* No comment provided by engineer. */
"Error enabling notifications" = "Chyba při aktivaci oznámení";
@@ -1323,6 +1413,9 @@
/* No comment provided by engineer. */
"Error switching profile!" = "Chyba při přepínání profilu!";
/* No comment provided by engineer. */
"Error synchronizing connection" = "Chyba synchronizace připojení";
/* No comment provided by engineer. */
"Error updating group link" = "Chyba aktualizace odkazu skupiny";
@@ -1347,6 +1440,9 @@
/* No comment provided by engineer. */
"Error: URL is invalid" = "Chyba: Adresa URL je neplatná";
/* No comment provided by engineer. */
"Even when disabled in the conversation." = "I při vypnutí v konverzaci.";
/* No comment provided by engineer. */
"Exit without saving" = "Ukončit bez uložení";
@@ -1368,6 +1464,9 @@
/* No comment provided by engineer. */
"Fast and no wait until the sender is online!" = "Rychle a bez čekání, než bude odesílatel online!";
/* No comment provided by engineer. */
"Favorite" = "Oblíbené";
/* No comment provided by engineer. */
"File will be deleted from servers." = "Soubor bude smazán ze serverů.";
@@ -1383,9 +1482,42 @@
/* No comment provided by engineer. */
"Files & media" = "Soubory a média";
/* chat feature */
"Files and media" = "Soubory a média";
/* No comment provided by engineer. */
"Files and media are prohibited in this group." = "Soubory a média jsou zakázány v této skupině.";
/* No comment provided by engineer. */
"Files and media prohibited!" = "Soubory a média jsou zakázány!";
/* No comment provided by engineer. */
"Filter unread and favorite chats." = "Filtrovat nepřečtené a oblíbené chaty.";
/* No comment provided by engineer. */
"Finally, we have them! 🚀" = "Konečně je máme! 🚀";
/* No comment provided by engineer. */
"Find chats faster" = "Najděte chaty rychleji";
/* No comment provided by engineer. */
"Fix" = "Opravit";
/* No comment provided by engineer. */
"Fix connection" = "Opravit připojení";
/* No comment provided by engineer. */
"Fix connection?" = "Opravit připojení?";
/* No comment provided by engineer. */
"Fix encryption after restoring backups." = "Opravit šifrování po obnovení zálohy.";
/* No comment provided by engineer. */
"Fix not supported by contact" = "Opravit nepodporované kontaktem";
/* No comment provided by engineer. */
"Fix not supported by group member" = "Opravit nepodporované členem skupiny";
/* No comment provided by engineer. */
"For console" = "Pro konzoli";
@@ -1452,6 +1584,9 @@
/* No comment provided by engineer. */
"Group members can send disappearing messages." = "Členové skupiny mohou posílat mizící zprávy.";
/* No comment provided by engineer. */
"Group members can send files and media." = "Členové skupiny mohou posílat soubory a média.";
/* No comment provided by engineer. */
"Group members can send voice messages." = "Členové skupiny mohou posílat hlasové zprávy.";
@@ -1575,6 +1710,9 @@
/* No comment provided by engineer. */
"Improved server configuration" = "Vylepšená konfigurace serveru";
/* copied message info */
"In reply to" = "V odpovědi na";
/* No comment provided by engineer. */
"Incognito" = "Inkognito";
@@ -1728,6 +1866,9 @@
/* No comment provided by engineer. */
"Joining group" = "Připojení ke skupině";
/* No comment provided by engineer. */
"Keep your connections" = "Zachovat vaše připojení";
/* No comment provided by engineer. */
"Keychain error" = "Chyba klíčenky";
@@ -1785,6 +1926,9 @@
/* No comment provided by engineer. */
"Make a private connection" = "Vytvořte si soukromé připojení";
/* No comment provided by engineer. */
"Make one message disappear" = "Nechat jednu zprávu zmizet";
/* No comment provided by engineer. */
"Make profile private!" = "Změnit profil na soukromý!";
@@ -1836,6 +1980,9 @@
/* No comment provided by engineer. */
"Message delivery error" = "Chyba doručení zprávy";
/* No comment provided by engineer. */
"Message delivery receipts!" = "Potvrzení o doručení zprávy!";
/* No comment provided by engineer. */
"Message draft" = "Návrh zprávy";
@@ -1980,9 +2127,15 @@
/* No comment provided by engineer. */
"no e2e encryption" = "bez šifrování e2e";
/* No comment provided by engineer. */
"No filtered chats" = "Žádné filtrované chaty";
/* No comment provided by engineer. */
"No group!" = "Skupina nebyla nalezena!";
/* No comment provided by engineer. */
"No history" = "Žádná historie";
/* No comment provided by engineer. */
"No permission to record voice message" = "Nemáte oprávnění nahrávat hlasové zprávy";
@@ -2050,6 +2203,9 @@
/* No comment provided by engineer. */
"Only group owners can change group preferences." = "Předvolby skupiny mohou měnit pouze vlastníci skupiny.";
/* No comment provided by engineer. */
"Only group owners can enable files and media." = "Pouze majitelé skupiny mohou povolit soubory a média.";
/* No comment provided by engineer. */
"Only group owners can enable voice messages." = "Pouze majitelé skupin mohou povolit zasílání hlasových zpráv.";
@@ -2251,6 +2407,9 @@
/* No comment provided by engineer. */
"Prohibit sending disappearing messages." = "Zakázat posílání mizících zpráv.";
/* No comment provided by engineer. */
"Prohibit sending files and media." = "Zakázat odesílání souborů a médií.";
/* No comment provided by engineer. */
"Prohibit sending voice messages." = "Zakázat odesílání hlasových zpráv.";
@@ -2362,6 +2521,15 @@
/* rcv group event chat item */
"removed you" = "odstranil vás";
/* No comment provided by engineer. */
"Renegotiate" = "Znovu vyjednat";
/* No comment provided by engineer. */
"Renegotiate encryption" = "Znovu vyjednat šifrování";
/* No comment provided by engineer. */
"Renegotiate encryption?" = "Znovu vyjednat šifrování?";
/* chat item action */
"Reply" = "Odpověď";
@@ -2500,6 +2668,9 @@
/* No comment provided by engineer. */
"Security code" = "Bezpečnostní kód";
/* chat item text */
"security code changed" = "bezpečnostní kód změněn";
/* No comment provided by engineer. */
"Select" = "Vybrat";
@@ -2542,6 +2713,9 @@
/* No comment provided by engineer. */
"Send questions and ideas" = "Zasílání otázek a nápadů";
/* No comment provided by engineer. */
"Send receipts" = "Odeslat potvrzení";
/* No comment provided by engineer. */
"Send them from gallery or custom keyboards." = "Odeslat je z galerie nebo vlastní klávesnice.";
@@ -2551,9 +2725,21 @@
/* No comment provided by engineer. */
"Sender may have deleted the connection request." = "Odesílatel možná smazal požadavek připojení.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts in all visible chat profiles." = "Odesílání potvrzení o doručení bude povoleno pro všechny kontakty ve všech viditelných chat profilech.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts." = "Odesílání potvrzení o doručení bude povoleno pro všechny kontakty.";
/* No comment provided by engineer. */
"Sending file will be stopped." = "Odesílání souboru bude zastaveno.";
/* No comment provided by engineer. */
"Sending receipts is disabled for %lld contacts" = "Odesílání potvrzení o doručení je vypnuto pro %lld kontakty";
/* No comment provided by engineer. */
"Sending receipts is enabled for %lld contacts" = "Odesílání potvrzení o doručení je povoleno pro %lld kontakty";
/* No comment provided by engineer. */
"Sending via" = "Odesílání přes";
@@ -2821,6 +3007,9 @@
/* No comment provided by engineer. */
"The created archive is available via app Settings / Database / Old database archive." = "Vytvořený archiv je k dispozici v aplikaci Nastavení / Databáze / Archiv staré databáze.";
/* No comment provided by engineer. */
"The encryption is working and the new encryption agreement is not required. It may result in connection errors!" = "Šifrování funguje a nové povolení šifrování není vyžadováno. To může vyvolat chybu v připojení!";
/* No comment provided by engineer. */
"The group is fully decentralized it is visible only to the members." = "Skupina je plně decentralizovaná - je viditelná pouze pro členy.";
@@ -2860,6 +3049,12 @@
/* No comment provided by engineer. */
"There should be at least one visible user profile." = "Měl by tam být alespoň jeden viditelný uživatelský profil.";
/* No comment provided by engineer. */
"These settings are for your current profile **%@**." = "Toto nastavení je pro váš aktuální profil **%@**.";
/* No comment provided by engineer. */
"They can be overridden in contact settings" = "Mohou být přepsány v nastavení kontaktů";
/* 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." = "Tuto akci nelze vrátit zpět - všechny přijaté a odeslané soubory a média budou smazány. Obrázky s nízkým rozlišením zůstanou zachovány.";
@@ -2938,6 +3133,9 @@
/* No comment provided by engineer. */
"Unexpected migration state" = "Neočekávaný stav přenášení";
/* No comment provided by engineer. */
"Unfav." = "Odobl.";
/* No comment provided by engineer. */
"Unhide" = "Odkrýt";
@@ -3190,6 +3388,12 @@
/* No comment provided by engineer. */
"You can create it later" = "Můžete vytvořit později";
/* No comment provided by engineer. */
"You can enable later via Settings" = "Můžete povolit později v Nastavení";
/* No comment provided by engineer. */
"You can enable them later via app Privacy & Security settings." = "Můžete je povolit později v nastavení Soukromí & Bezpečnosti aplikace";
/* 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.";

View File

@@ -19,6 +19,9 @@
/* No comment provided by engineer. */
"_italic_" = "\\_kursiv_";
/* No comment provided by engineer. */
"- more stable message delivery.\n- a bit better groups.\n- and more!" = "- stabilere Zustellung von Nachrichten.\n- ein bisschen verbesserte Gruppen.\n- und mehr!";
/* No comment provided by engineer. */
"- voice messages up to 5 minutes.\n- custom time to disappear.\n- editing history." = "- Bis zu 5 Minuten lange Sprachnachrichten.\n- Zeitdauer für verschwindende Nachrichten anpassen.\n- Nachrichten-Historie bearbeiten.";
@@ -235,6 +238,9 @@
/* No comment provided by engineer. */
"30 seconds" = "30 Sekunden";
/* No comment provided by engineer. */
"A few more things" = "Ein paar weitere Dinge";
/* notification title */
"A new contact" = "Ein neuer Kontakt";
@@ -1092,6 +1098,12 @@
/* No comment provided by engineer. */
"Direct messages between members are prohibited in this group." = "In dieser Gruppe sind Direktnachrichten zwischen Mitgliedern nicht erlaubt.";
/* No comment provided by engineer. */
"Disable (keep overrides)" = "Deaktivieren (vorgenommene Einstellungen bleiben erhalten)";
/* No comment provided by engineer. */
"Disable for all" = "Für Alle deaktivieren";
/* authentication reason */
"Disable SimpleX Lock" = "SimpleX Sperre deaktivieren";
@@ -1131,6 +1143,9 @@
/* No comment provided by engineer. */
"Don't create address" = "Keine Adresse erstellt";
/* No comment provided by engineer. */
"Don't enable" = "Nicht aktivieren";
/* No comment provided by engineer. */
"Don't show again" = "Nicht nochmals anzeigen";
@@ -1161,9 +1176,15 @@
/* No comment provided by engineer. */
"Enable" = "Aktivieren";
/* No comment provided by engineer. */
"Enable (keep overrides)" = "Aktivieren (vorgenommene Einstellungen bleiben erhalten)";
/* No comment provided by engineer. */
"Enable automatic message deletion?" = "Automatisches Löschen von Nachrichten aktivieren?";
/* No comment provided by engineer. */
"Enable for all" = "Für Alle aktivieren";
/* No comment provided by engineer. */
"Enable instant notifications?" = "Sofortige Benachrichtigungen aktivieren?";
@@ -1338,6 +1359,9 @@
/* No comment provided by engineer. */
"Error deleting user profile" = "Fehler beim Löschen des Benutzerprofils";
/* No comment provided by engineer. */
"Error enabling delivery receipts!" = "Fehler beim Aktivieren der Empfangsbestätigungen!";
/* No comment provided by engineer. */
"Error enabling notifications" = "Fehler beim Aktivieren der Benachrichtigungen";
@@ -1386,6 +1410,9 @@
/* No comment provided by engineer. */
"Error sending message" = "Fehler beim Senden der Nachricht";
/* No comment provided by engineer. */
"Error setting delivery receipts!" = "Fehler beim Setzen der Empfangsbestätigungen!";
/* No comment provided by engineer. */
"Error starting chat" = "Fehler beim Starten des Chats";
@@ -1422,6 +1449,9 @@
/* No comment provided by engineer. */
"Error: URL is invalid" = "Fehler: URL ist ungültig";
/* No comment provided by engineer. */
"Even when disabled in the conversation." = "Auch wenn sie im Chat deaktiviert sind.";
/* No comment provided by engineer. */
"Exit without saving" = "Beenden ohne Speichern";
@@ -1470,9 +1500,15 @@
/* No comment provided by engineer. */
"Files and media prohibited!" = "Dateien und Medien sind nicht erlaubt!";
/* No comment provided by engineer. */
"Filter unread and favorite chats." = "Nach ungelesenen und favorisierten Chats filtern.";
/* No comment provided by engineer. */
"Finally, we have them! 🚀" = "Endlich haben wir sie! 🚀";
/* No comment provided by engineer. */
"Find chats faster" = "Chats schneller finden";
/* No comment provided by engineer. */
"Fix" = "Reparieren";
@@ -1482,6 +1518,9 @@
/* No comment provided by engineer. */
"Fix connection?" = "Verbindung reparieren?";
/* No comment provided by engineer. */
"Fix encryption after restoring backups." = "Reparatur der Verschlüsselung nach wiedereinspielen von Backups.";
/* No comment provided by engineer. */
"Fix not supported by contact" = "Reparatur wird vom Kontakt nicht unterstützt";
@@ -1836,6 +1875,9 @@
/* No comment provided by engineer. */
"Joining group" = "Der Gruppe beitreten";
/* No comment provided by engineer. */
"Keep your connections" = "Ihre Verbindungen beibehalten";
/* No comment provided by engineer. */
"Keychain error" = "KeyChain Fehler";
@@ -1893,6 +1935,9 @@
/* No comment provided by engineer. */
"Make a private connection" = "Stellen Sie eine private Verbindung her";
/* No comment provided by engineer. */
"Make one message disappear" = "Eine verschwindende Nachricht verfassen";
/* No comment provided by engineer. */
"Make profile private!" = "Privates Profil erzeugen!";
@@ -1944,6 +1989,9 @@
/* No comment provided by engineer. */
"Message delivery error" = "Fehler bei der Nachrichtenzustellung";
/* No comment provided by engineer. */
"Message delivery receipts!" = "Empfangsbestätigungen für Nachrichten!";
/* No comment provided by engineer. */
"Message draft" = "Nachrichtenentwurf";
@@ -2704,9 +2752,21 @@
/* No comment provided by engineer. */
"Sender may have deleted the connection request." = "Der Absender hat möglicherweise die Verbindungsanfrage gelöscht.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts in all visible chat profiles." = "Das Senden von Empfangsbestätigungen an alle Kontakte in allen sichtbaren Chat-Profilen wird aktiviert.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts." = "Das Senden von Empfangsbestätigungen an alle Kontakte wird aktiviert.";
/* No comment provided by engineer. */
"Sending file will be stopped." = "Das Senden der Datei wird beendet.";
/* No comment provided by engineer. */
"Sending receipts is disabled for %lld contacts" = "Das Senden von Empfangsbestätigungen an %lld Kontakte ist deaktiviert";
/* No comment provided by engineer. */
"Sending receipts is enabled for %lld contacts" = "Das Senden von Empfangsbestätigungen an %lld Kontakte ist aktiviert";
/* No comment provided by engineer. */
"Sending via" = "Senden über";
@@ -3001,6 +3061,9 @@
/* No comment provided by engineer. */
"The profile is only shared with your contacts." = "Das Profil wird nur mit Ihren Kontakten geteilt.";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "Das zweite Häkchen, welches wir vermisst haben! ✅";
/* No comment provided by engineer. */
"The sender will NOT be notified" = "Der Absender wird NICHT benachrichtigt";
@@ -3356,7 +3419,10 @@
"You can create it later" = "Sie können dies später erstellen";
/* No comment provided by engineer. */
"You can enable them later via app Privacy & Security settings." = "Diese können später in den Datenschutz & Sicherheits-Einstellungen durch Sie aktiviert werden.";
"You can enable later via Settings" = "Sie können diese später in den Einstellungen aktivieren";
/* No comment provided by engineer. */
"You can enable them later via app Privacy & Security settings." = "Sie können diese später in den Datenschutz & Sicherheits-Einstellungen der App aktivieren.";
/* 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.";

View File

@@ -19,6 +19,9 @@
/* No comment provided by engineer. */
"_italic_" = "\\_italic_";
/* No comment provided by engineer. */
"- more stable message delivery.\n- a bit better groups.\n- and more!" = "- entrega de mensajes más estable.\n- grupos un poco mejores.\n- ¡y más!";
/* No comment provided by engineer. */
"- voice messages up to 5 minutes.\n- custom time to disappear.\n- editing history." = "- mensajes de voz de hasta 5 minutos.\n- tiempo personalizado para mensajes temporales.\n- historial de edición.";
@@ -119,7 +122,7 @@
"%@ servers" = "Servidores %@";
/* notification title */
"%@ wants to connect!" = "%@ ¡quiere conectar!";
"%@ wants to connect!" = "¡ %@ quiere contactar!";
/* copied message info */
"%@:" = "%@:";
@@ -200,7 +203,7 @@
"`a + b`" = "\\`a + b`";
/* email text */
"<p>Hi!</p>\n<p><a href=\"%@\">Connect to me via SimpleX Chat</a></p>" = "<p>Hola!</p>\n<p><a href=\"%@\"> Conecta conmigo a través de SimpleX Chat</a></p>";
"<p>Hi!</p>\n<p><a href=\"%@\">Connect to me via SimpleX Chat</a></p>" = "<p>¡Hola!</p>\n<p><a href=\"%@\"> Conecta conmigo a través de SimpleX Chat</a></p>";
/* No comment provided by engineer. */
"~strike~" = "\\~strike~";
@@ -235,6 +238,9 @@
/* No comment provided by engineer. */
"30 seconds" = "30 segundos";
/* No comment provided by engineer. */
"A few more things" = "Algunas cosas más";
/* notification title */
"A new contact" = "Contacto nuevo";
@@ -245,10 +251,10 @@
"A random profile will be sent to your contact" = "Se enviará un perfil aleatorio a tu contacto";
/* No comment provided by engineer. */
"A separate TCP connection will be used **for each chat profile you have in the app**." = "Se utilizará una conexión TCP independiente **por cada perfil que tengas en la aplicación**.";
"A separate TCP connection will be used **for each chat profile you have in the app**." = "Se usará una conexión TCP independiente **por cada perfil que tengas en la aplicación**.";
/* 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." = "Se utilizará una conexión TCP independiente **por cada contacto y miembro de grupo**.\n**Atención**: si tienes muchas conexiones, tu consumo de batería y tráfico pueden ser sustancialmente mayores y algunas conexiones pueden fallar.";
"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." = "Se usará una conexión TCP independiente **por cada contacto y miembro de grupo**.\n**Atención**: si tienes muchas conexiones, tu consumo de batería y tráfico pueden ser sustancialmente mayores y algunas conexiones pueden fallar.";
/* No comment provided by engineer. */
"Abort" = "Cancelar";
@@ -327,10 +333,10 @@
"Advanced network settings" = "Configuración avanzada de red";
/* chat item text */
"agreeing encryption for %@…" = "acordando la encriptación para %@…";
"agreeing encryption for %@…" = "acordando cifrado para %@…";
/* chat item text */
"agreeing encryption…" = "acordando la encriptación…";
"agreeing encryption…" = "acordando cifrado…";
/* No comment provided by engineer. */
"All app data is deleted." = "Todos los datos de la aplicación se eliminarán.";
@@ -525,7 +531,7 @@
"Call already ended!" = "¡La llamada ha terminado!";
/* call status */
"call error" = "error en la llamada";
"call error" = "error en llamada";
/* call status */
"call in progress" = "llamada en curso";
@@ -742,10 +748,10 @@
"Connection" = "Conexión";
/* No comment provided by engineer. */
"Connection error" = "Error de conexión";
"Connection error" = "Error conexión";
/* No comment provided by engineer. */
"Connection error (AUTH)" = "Error de conexión (Autenticación)";
"Connection error (AUTH)" = "Error conexión (Autenticación)";
/* chat list item title (it should not be shown */
"connection established" = "conexión establecida";
@@ -874,7 +880,7 @@
"Database encryption passphrase will be updated.\n" = "La contraseña de cifrado de la base de datos será actualizada.\n";
/* No comment provided by engineer. */
"Database error" = "Error de la base de datos";
"Database error" = "Error base de datos";
/* No comment provided by engineer. */
"Database ID" = "ID base de datos";
@@ -925,7 +931,7 @@
"Decentralized" = "Descentralizado";
/* message decrypt error item */
"Decryption error" = "Error de descifrado";
"Decryption error" = "Error descifrado";
/* pref value */
"default (%@)" = "por defecto (%@)";
@@ -1054,10 +1060,10 @@
"deleted group" = "grupo eliminado";
/* No comment provided by engineer. */
"Delivery receipts are disabled!" = "¡Los justificantes de entrega están desactivados!";
"Delivery receipts are disabled!" = "¡Las confirmaciones de entrega están desactivadas!";
/* No comment provided by engineer. */
"Delivery receipts!" = "¡Justificantes de entrega!";
"Delivery receipts!" = "¡Confirmación de entrega!";
/* No comment provided by engineer. */
"Description" = "Descripción";
@@ -1092,6 +1098,12 @@
/* No comment provided by engineer. */
"Direct messages between members are prohibited in this group." = "Los mensajes directos entre miembros del grupo no están permitidos.";
/* No comment provided by engineer. */
"Disable (keep overrides)" = "Desactivar (mantener anulaciones)";
/* No comment provided by engineer. */
"Disable for all" = "Desactivar para todos";
/* authentication reason */
"Disable SimpleX Lock" = "Desactivar Bloqueo SimpleX";
@@ -1131,6 +1143,9 @@
/* No comment provided by engineer. */
"Don't create address" = "No crear dirección";
/* No comment provided by engineer. */
"Don't enable" = "No activar";
/* No comment provided by engineer. */
"Don't show again" = "No mostrar de nuevo";
@@ -1161,9 +1176,15 @@
/* No comment provided by engineer. */
"Enable" = "Activar";
/* No comment provided by engineer. */
"Enable (keep overrides)" = "Activar (conservar anulaciones)";
/* No comment provided by engineer. */
"Enable automatic message deletion?" = "¿Activar eliminación automática de mensajes?";
/* No comment provided by engineer. */
"Enable for all" = "Activar para todos";
/* No comment provided by engineer. */
"Enable instant notifications?" = "¿Activar notificación instantánea?";
@@ -1210,13 +1231,13 @@
"Encrypted message or another event" = "Mensaje cifrado u otro evento";
/* notification */
"Encrypted message: database error" = "Mensaje cifrado: error en base de datos";
"Encrypted message: database error" = "Mensaje cifrado: error base de datos";
/* notification */
"Encrypted message: database migration error" = "Mensaje cifrado: error de migración de base de datos";
"Encrypted message: database migration error" = "Mensaje cifrado: error migración base de datos";
/* notification */
"Encrypted message: keychain error" = "Mensaje cifrado: error en Keychain";
"Encrypted message: keychain error" = "Mensaje cifrado: error Keychain";
/* notification */
"Encrypted message: no passphrase" = "Mensaje cifrado: sin contraseña";
@@ -1225,28 +1246,28 @@
"Encrypted message: unexpected error" = "Mensaje cifrado: error inesperado";
/* chat item text */
"encryption agreed" = "encriptación acordada";
"encryption agreed" = "cifrado acordado";
/* chat item text */
"encryption agreed for %@" = "encriptación acordada para %@";
"encryption agreed for %@" = "cifrado acordado para %@";
/* chat item text */
"encryption ok" = "encriptación ok";
"encryption ok" = "cifrado ok";
/* chat item text */
"encryption ok for %@" = "encriptación ok para %@";
"encryption ok for %@" = "cifrado ok para %@";
/* chat item text */
"encryption re-negotiation allowed" = "renegociación de encriptación permitida";
"encryption re-negotiation allowed" = "renegociación de cifrado permitida";
/* chat item text */
"encryption re-negotiation allowed for %@" = "renegociación de encriptación permitida para %@";
"encryption re-negotiation allowed for %@" = "renegociación de cifrado permitida para %@";
/* chat item text */
"encryption re-negotiation required" = "se requiere renegociación de la encriptación";
"encryption re-negotiation required" = "se requiere renegociar el cifrado";
/* chat item text */
"encryption re-negotiation required for %@" = "se requiere renegociación de la encriptación para %@";
"encryption re-negotiation required for %@" = "se requiere renegociar el cifrado para %@";
/* No comment provided by engineer. */
"ended" = "finalizado";
@@ -1282,133 +1303,139 @@
"Error" = "Error";
/* No comment provided by engineer. */
"Error aborting address change" = "Error al cancelar el cambio de dirección";
"Error aborting address change" = "Error al cancelar cambio de dirección";
/* No comment provided by engineer. */
"Error accepting contact request" = "Error aceptando la solicitud del contacto";
"Error accepting contact request" = "Error al aceptar solicitud del contacto";
/* No comment provided by engineer. */
"Error accessing database file" = "Error de acceso al archivo de base de datos";
"Error accessing database file" = "Error al acceder al archivo de la base de datos";
/* No comment provided by engineer. */
"Error adding member(s)" = "Error al añadir miembro(s)";
/* No comment provided by engineer. */
"Error changing address" = "Error cambiando la dirección";
"Error changing address" = "Error al cambiar dirección";
/* No comment provided by engineer. */
"Error changing role" = "Error cambiando rol";
"Error changing role" = "Error al cambiar rol";
/* No comment provided by engineer. */
"Error changing setting" = "Error cambiando configuración";
/* No comment provided by engineer. */
"Error creating address" = "Error creando dirección";
"Error creating address" = "Error al crear dirección";
/* No comment provided by engineer. */
"Error creating group" = "Error creando grupo";
"Error creating group" = "Error al crear grupo";
/* No comment provided by engineer. */
"Error creating group link" = "Error al crear enlace de grupo";
/* No comment provided by engineer. */
"Error creating profile!" = "Error creando perfil!";
"Error creating profile!" = "¡Error al crear perfil!";
/* No comment provided by engineer. */
"Error deleting chat database" = "Error eliminando la base de datos";
"Error deleting chat database" = "Error al eliminar base de datos";
/* No comment provided by engineer. */
"Error deleting chat!" = "¡Error eliminando chat!";
"Error deleting chat!" = "¡Error al eliminar chat!";
/* No comment provided by engineer. */
"Error deleting connection" = "Error eliminando conexión";
"Error deleting connection" = "Error al eliminar conexión";
/* No comment provided by engineer. */
"Error deleting contact" = "Error eliminando contacto";
"Error deleting contact" = "Error al eliminar contacto";
/* No comment provided by engineer. */
"Error deleting database" = "Error eliminando base de datos";
"Error deleting database" = "Error al eliminar base de datos";
/* No comment provided by engineer. */
"Error deleting old database" = "Error eliminando base de datos antigua";
"Error deleting old database" = "Error al eliminar base de datos antigua";
/* No comment provided by engineer. */
"Error deleting token" = "Error eliminando token";
"Error deleting token" = "Error al eliminar token";
/* No comment provided by engineer. */
"Error deleting user profile" = "Error eliminando perfil de usuario";
"Error deleting user profile" = "Error al eliminar perfil";
/* No comment provided by engineer. */
"Error enabling notifications" = "Error activando notificaciones";
"Error enabling delivery receipts!" = "¡Error al activar confirmaciones de entrega!";
/* No comment provided by engineer. */
"Error encrypting database" = "Error cifrando la base de datos";
"Error enabling notifications" = "Error al activar notificaciones";
/* No comment provided by engineer. */
"Error exporting chat database" = "Error exportando la base de datos";
"Error encrypting database" = "Error al cifrar base de datos";
/* No comment provided by engineer. */
"Error importing chat database" = "Error importando la base de datos";
"Error exporting chat database" = "Error al exportar base de datos";
/* No comment provided by engineer. */
"Error joining group" = "Error uniéndose al grupo";
"Error importing chat database" = "Error al importar base de datos";
/* No comment provided by engineer. */
"Error joining group" = "Error al unirse al grupo";
/* No comment provided by engineer. */
"Error loading %@ servers" = "Error al cargar servidores %@";
/* No comment provided by engineer. */
"Error receiving file" = "Error recibiendo archivo";
"Error receiving file" = "Error al recibir archivo";
/* No comment provided by engineer. */
"Error removing member" = "Error eliminando miembro";
"Error removing member" = "Error al eliminar miembro";
/* No comment provided by engineer. */
"Error saving %@ servers" = "Error guardando servidores %@";
"Error saving %@ servers" = "Error al guardar servidores %@";
/* No comment provided by engineer. */
"Error saving group profile" = "Error guardando perfil de grupo";
"Error saving group profile" = "Error al guardar perfil de grupo";
/* No comment provided by engineer. */
"Error saving ICE servers" = "Error guardando servidores ICE";
"Error saving ICE servers" = "Error al guardar servidores ICE";
/* No comment provided by engineer. */
"Error saving passcode" = "Error al guardar el código de acceso";
"Error saving passcode" = "Error al guardar código de acceso";
/* No comment provided by engineer. */
"Error saving passphrase to keychain" = "Error guardando contraseña en Keychain";
"Error saving passphrase to keychain" = "Error al guardar contraseña en Keychain";
/* No comment provided by engineer. */
"Error saving user password" = "Error guardando la contraseña de usuario";
"Error saving user password" = "Error al guardar contraseña de usuario";
/* No comment provided by engineer. */
"Error sending email" = "Error al enviar email";
/* No comment provided by engineer. */
"Error sending message" = "Error enviando mensaje";
"Error sending message" = "Error al enviar mensaje";
/* No comment provided by engineer. */
"Error starting chat" = "Error iniciando chat";
"Error setting delivery receipts!" = "¡Error al configurar confirmaciones de entrega!";
/* No comment provided by engineer. */
"Error stopping chat" = "Error deteniendo Chat";
"Error starting chat" = "Error al iniciar Chat";
/* No comment provided by engineer. */
"Error switching profile!" = "¡Error cambiando perfil!";
"Error stopping chat" = "Error al detener Chat";
/* No comment provided by engineer. */
"Error switching profile!" = "¡Error al cambiar perfil!";
/* No comment provided by engineer. */
"Error synchronizing connection" = "Error al sincronizar conexión";
/* No comment provided by engineer. */
"Error updating group link" = "Error actualizando el enlace de grupo";
"Error updating group link" = "Error al actualizar enlace de grupo";
/* No comment provided by engineer. */
"Error updating message" = "Error actualizando mensaje";
"Error updating message" = "Error al actualizar mensaje";
/* No comment provided by engineer. */
"Error updating settings" = "Error actualizando configuración";
"Error updating settings" = "Error al actualizar configuración";
/* No comment provided by engineer. */
"Error updating user privacy" = "Error actualizando la privacidad de usuario";
"Error updating user privacy" = "Error al actualizar privacidad de usuario";
/* No comment provided by engineer. */
"Error: " = "Error: ";
@@ -1422,6 +1449,9 @@
/* No comment provided by engineer. */
"Error: URL is invalid" = "Error: la URL no es válida";
/* No comment provided by engineer. */
"Even when disabled in the conversation." = "Incluso si está desactivado para la conversación.";
/* No comment provided by engineer. */
"Exit without saving" = "Salir sin guardar";
@@ -1429,16 +1459,16 @@
"Export database" = "Exportar base de datos";
/* No comment provided by engineer. */
"Export error:" = "Error exportando:";
"Export error:" = "Error al exportar:";
/* No comment provided by engineer. */
"Exported database archive." = "Archivo de base de datos exportado.";
/* No comment provided by engineer. */
"Exporting database archive…" = "Exportando archivo de base de datos…";
"Exporting database archive…" = "Exportando base de datos…";
/* No comment provided by engineer. */
"Failed to remove passphrase" = "Error eliminando la contraseña";
"Failed to remove passphrase" = "Error al eliminar la contraseña";
/* No comment provided by engineer. */
"Fast and no wait until the sender is online!" = "¡Rápido y sin necesidad de esperar a que el remitente esté en línea!";
@@ -1453,7 +1483,7 @@
"File will be received when your contact completes uploading it." = "El archivo se recibirá cuando tu contacto termine de subirlo.";
/* No comment provided by engineer. */
"File will be received when your contact is online, please wait or check later!" = "El archivo se recibirá cuando tu contacto esté en línea, por favor espera o compruébalo más tarde.";
"File will be received when your contact is online, please wait or check later!" = "El archivo se recibirá cuando tu contacto esté en línea, ¡por favor espera o compruébalo más tarde!";
/* No comment provided by engineer. */
"File: %@" = "Archivo: %@";
@@ -1470,9 +1500,15 @@
/* No comment provided by engineer. */
"Files and media prohibited!" = "¡Archivos y multimedia no permitidos!";
/* No comment provided by engineer. */
"Filter unread and favorite chats." = "Filtrar chats no leídos y favoritos.";
/* No comment provided by engineer. */
"Finally, we have them! 🚀" = "¡Por fin los tenemos! 🚀";
/* No comment provided by engineer. */
"Find chats faster" = "Encontrar chats mas rápido";
/* No comment provided by engineer. */
"Fix" = "Reparar";
@@ -1480,7 +1516,10 @@
"Fix connection" = "Reparar conexión";
/* No comment provided by engineer. */
"Fix connection?" = "Reparar problemas de conexión ?";
"Fix connection?" = "¿Reparar conexión?";
/* No comment provided by engineer. */
"Fix encryption after restoring backups." = "Reparar el cifrado tras restaurar copias de seguridad.";
/* No comment provided by engineer. */
"Fix not supported by contact" = "Corrección no compatible con el contacto";
@@ -1657,7 +1696,7 @@
"Image will be received when your contact completes uploading it." = "La imagen se recibirá cuando tu contacto termine de subirla.";
/* No comment provided by engineer. */
"Image will be received when your contact is online, please wait or check later!" = "La imagen se recibirá cuando tu contacto esté en línea, por favor espera o compruébalo más tarde.";
"Image will be received when your contact is online, please wait or check later!" = "La imagen se recibirá cuando tu contacto esté en línea, ¡por favor espera o compruébalo más tarde!";
/* No comment provided by engineer. */
"Immediately" = "Inmediatamente";
@@ -1810,7 +1849,7 @@
"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." = "Esto puede suceder cuando:\n1. Los mensajes caducan en el cliente saliente tras 2 días o en el servidor tras 30 días.\n2. El descifrado ha fallado porque tu o tu contacto estáis usando una copia de seguridad antigua de la base de datos.\n3. La conexión ha sido comprometida.";
/* 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 (%@)." = "Parece que ya está conectado mediante este enlace. Si no es así ha habido un error (%@).";
"It seems like you are already connected via this link. If it is not the case, there was an error (%@)." = "Parece que ya estás conectado mediante este enlace. Si no es así ha habido un error (%@).";
/* No comment provided by engineer. */
"Italian interface" = "Interfaz en italiano";
@@ -1837,10 +1876,13 @@
"Joining group" = "Entrando al grupo";
/* No comment provided by engineer. */
"Keychain error" = "Error en Keychain";
"Keep your connections" = "Mantén tus conexiones";
/* No comment provided by engineer. */
"KeyChain error" = "Error en Keychain";
"Keychain error" = "Error Keychain";
/* No comment provided by engineer. */
"KeyChain error" = "Error Keychain";
/* No comment provided by engineer. */
"Large file!" = "¡Archivo grande!";
@@ -1893,6 +1935,9 @@
/* No comment provided by engineer. */
"Make a private connection" = "Establecer una conexión privada";
/* No comment provided by engineer. */
"Make one message disappear" = "Escribir un mensaje temporal";
/* No comment provided by engineer. */
"Make profile private!" = "¡Hacer un perfil privado!";
@@ -1944,6 +1989,9 @@
/* No comment provided by engineer. */
"Message delivery error" = "Error en la entrega del mensaje";
/* No comment provided by engineer. */
"Message delivery receipts!" = "¡Confirmación de entrega de mensajes!";
/* No comment provided by engineer. */
"Message draft" = "Borrador de mensaje";
@@ -1969,7 +2017,7 @@
"Messages & files" = "Mensajes";
/* No comment provided by engineer. */
"Migrating database archive…" = "Migrando archivo de base de datos…";
"Migrating database archive…" = "Migrando base de datos…";
/* No comment provided by engineer. */
"Migration error:" = "Error de migración:";
@@ -2089,7 +2137,7 @@
"no e2e encryption" = "sin cifrar";
/* No comment provided by engineer. */
"No filtered chats" = "Ningún chat filtrado";
"No filtered chats" = "Sin chats filtrados";
/* No comment provided by engineer. */
"No group!" = "¡Grupo no encontrado!";
@@ -2267,7 +2315,7 @@
"Periodically" = "Periódico";
/* message decrypt error item */
"Permanent decryption error" = "Error de descifrado permanente";
"Permanent decryption error" = "Error permanente descifrado";
/* No comment provided by engineer. */
"PING count" = "Contador PING";
@@ -2369,7 +2417,7 @@
"Prohibit sending disappearing messages." = "Prohibir envío de mensajes temporales.";
/* No comment provided by engineer. */
"Prohibit sending files and media." = "Prohibir el envío de archivos y multimedia.";
"Prohibit sending files and media." = "No permitir el envío de archivos y multimedia.";
/* No comment provided by engineer. */
"Prohibit sending voice messages." = "Prohibir el envío de mensajes de voz.";
@@ -2393,7 +2441,7 @@
"Rate the app" = "Valora la aplicación";
/* chat item menu */
"React…" = "Reaccione…";
"React…" = "Reacciona…";
/* No comment provided by engineer. */
"Read" = "Leer";
@@ -2471,7 +2519,7 @@
"rejected call" = "llamada rechazada";
/* No comment provided by engineer. */
"Relay server is only used if necessary. Another party can observe your IP address." = "El servidor de retransmisión sólo se utiliza en caso necesario. Un tercero podría ver tu dirección IP.";
"Relay server is only used if necessary. Another party can observe your IP address." = "El servidor de retransmisión sólo se usará en caso necesario. Un tercero podría ver tu dirección IP.";
/* No comment provided by engineer. */
"Relay server protects your IP address, but it can observe the duration of the call." = "El servidor de retransmisión protege tu dirección IP, pero puede observar la duración de la llamada.";
@@ -2525,7 +2573,7 @@
"Restart the app to create a new chat profile" = "Reinicia la aplicación para crear un perfil nuevo";
/* No comment provided by engineer. */
"Restart the app to use imported chat database" = "Reinicia la aplicación para utilizar la base de datos de chats importada";
"Restart the app to use imported chat database" = "Reinicia la aplicación para usar la base de datos de chats importada";
/* No comment provided by engineer. */
"Restore" = "Restaurar";
@@ -2537,7 +2585,7 @@
"Restore database backup?" = "¿Restaurar copia de seguridad de la base de datos?";
/* No comment provided by engineer. */
"Restore database error" = "Error al restaurar la base de datos";
"Restore database error" = "Error al restaurar base de datos";
/* chat item action */
"Reveal" = "Revelar";
@@ -2669,7 +2717,7 @@
"Send a live message - it will update for the recipient(s) as you type it" = "Envía un mensaje en vivo: se actualizará para el(los) destinatario(s) a medida que se escribe";
/* No comment provided by engineer. */
"Send delivery receipts to" = "Enviar recibos de entrega a";
"Send delivery receipts to" = "Enviar confirmaciones de entrega a";
/* No comment provided by engineer. */
"Send direct message" = "Enviar mensaje directo";
@@ -2693,7 +2741,7 @@
"Send questions and ideas" = "Consultas y sugerencias";
/* No comment provided by engineer. */
"Send receipts" = "Enviar recibos";
"Send receipts" = "Enviar confirmaciones";
/* No comment provided by engineer. */
"Send them from gallery or custom keyboards." = "Envíalos desde la galería o desde teclados personalizados.";
@@ -2704,9 +2752,21 @@
/* No comment provided by engineer. */
"Sender may have deleted the connection request." = "El remitente puede haber eliminado la solicitud de conexión.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts in all visible chat profiles." = "El envío de confirmaciones de entrega se activará para todos los contactos en todos los perfiles visibles.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts." = "El envío de confirmaciones de entrega se activará para todos los contactos.";
/* No comment provided by engineer. */
"Sending file will be stopped." = "Se detendrá el envío del archivo.";
/* No comment provided by engineer. */
"Sending receipts is disabled for %lld contacts" = "El envío de confirmaciones está desactivado para %lld contactos";
/* No comment provided by engineer. */
"Sending receipts is enabled for %lld contacts" = "El envío de confirmaciones está activado para %lld contactos";
/* No comment provided by engineer. */
"Sending via" = "Enviando vía";
@@ -2975,7 +3035,7 @@
"The created archive is available via app Settings / Database / Old database archive." = "El archivo creado está disponible a través de Configuración / Base de datos / Archivo de base de datos antigua.";
/* No comment provided by engineer. */
"The encryption is working and the new encryption agreement is not required. It may result in connection errors!" = "El cifrado funciona y el nuevo acuerdo de encriptación no es necesario. ¡Puede provocar errores de conexión!";
"The encryption is working and the new encryption agreement is not required. It may result in connection errors!" = "El cifrado funciona y un cifrado nuevo no es necesario. ¡Podría dar lugar a errores de conexión!";
/* No comment provided by engineer. */
"The group is fully decentralized it is visible only to the members." = "El grupo está totalmente descentralizado y sólo es visible para los miembros.";
@@ -3001,6 +3061,9 @@
/* No comment provided by engineer. */
"The profile is only shared with your contacts." = "El perfil sólo se comparte con tus contactos.";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "¡El doble check que nos faltaba! ✅";
/* No comment provided by engineer. */
"The sender will NOT be notified" = "El remitente NO será notificado";
@@ -3017,7 +3080,7 @@
"There should be at least one visible user profile." = "Debe haber al menos un perfil de usuario visible.";
/* No comment provided by engineer. */
"These settings are for your current profile **%@**." = "Estos ajustes son para tu perfil actual **%@**.";
"These settings are for your current profile **%@**." = "Esta configuración afecta a tu perfil actual **%@**.";
/* No comment provided by engineer. */
"They can be overridden in contact settings" = "Se pueden anular en la configuración de contactos";
@@ -3053,7 +3116,7 @@
"To make a new connection" = "Para hacer una conexión nueva";
/* 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." = "Para proteger la privacidad, en lugar de los identificadores de usuario que utilizan el resto de plataformas, SimpleX dispone de identificadores para las colas de mensajes, independientes para cada uno de tus contactos.";
"To protect privacy, instead of user IDs used by all other platforms, SimpleX has identifiers for message queues, separate for each of your contacts." = "Para proteger la privacidad, en lugar de los identificadores de usuario que usan el resto de plataformas, SimpleX dispone de identificadores para las colas de mensajes, independientes para cada uno de tus contactos.";
/* No comment provided by engineer. */
"To protect timezone, image/voice files use UTC." = "Para proteger la zona horaria, los archivos de imagen/voz usan la hora UTC.";
@@ -3080,7 +3143,7 @@
"Trying to connect to the server used to receive messages from this contact (error: %@)." = "Intentando conectar con el servidor usado para recibir mensajes de este contacto (error: %@).";
/* No comment provided by engineer. */
"Trying to connect to the server used to receive messages from this contact." = "Intentando conectar con el servidor utilizado para recibir mensajes de este contacto.";
"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. */
"Turn off" = "Desactivar";
@@ -3122,7 +3185,7 @@
"Unknown caller" = "Llamada desconocida";
/* No comment provided by engineer. */
"Unknown database error: %@" = "Error desconocido en base de datos: %@";
"Unknown database error: %@" = "Error desconocido base de datos: %@";
/* No comment provided by engineer. */
"Unknown error" = "Error desconocido";
@@ -3131,7 +3194,7 @@
"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.";
/* 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." = "A menos que tu contacto haya eliminado la conexión o\nque este enlace ya se haya utilizado, podría tratarse de un error. Por favor, notifícalo.\nPara conectarte, pide a tu contacto que cree otro enlace de conexión y comprueba que tienes buena conexión de red.";
"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." = "A menos que tu contacto haya eliminado la conexión o\nque este enlace ya se haya usado, podría ser un error. Por favor, notifícalo.\nPara conectarte, pide a tu contacto que cree otro enlace de conexión y comprueba que tienes buena conexión de red.";
/* No comment provided by engineer. */
"Unlock" = "Desbloquear";
@@ -3197,7 +3260,7 @@
"User profile" = "Perfil de usuario";
/* No comment provided by engineer. */
"Using .onion hosts requires compatible VPN provider." = "Utilizar hosts .onion requiere un proveedor VPN compatible.";
"Using .onion hosts requires compatible VPN provider." = "Usar hosts .onion requiere un proveedor VPN compatible.";
/* No comment provided by engineer. */
"Using SimpleX Chat servers." = "Usar servidores SimpleX Chat.";
@@ -3335,7 +3398,7 @@
"You are already connected to %@." = "Ya estás conectado a %@.";
/* No comment provided by engineer. */
"You are connected to the server used to receive messages from this contact." = "Estás conectado al servidor utilizado para recibir mensajes de este contacto.";
"You are connected to the server used to receive messages from this contact." = "Estás conectado al servidor usado para recibir mensajes de este contacto.";
/* No comment provided by engineer. */
"you are invited to group" = "has sido invitado al grupo";
@@ -3356,7 +3419,10 @@
"You can create it later" = "Puedes crearlo más tarde";
/* No comment provided by engineer. */
"You can enable them later via app Privacy & Security settings." = "Puedes activarlos más tarde a través de la aplicación en los ajustes de Privacidad y Seguridad.";
"You can enable later via Settings" = "Puedes activar más tarde en Configuración";
/* No comment provided by engineer. */
"You can enable them later via app Privacy & Security settings." = "Puedes activarlos más tarde en la configuración de Privacidad y Seguridad.";
/* No comment provided by engineer. */
"You can hide or mute a user profile - swipe it to the right." = "Puedes ocultar o silenciar un perfil de usuario: deslízalo hacia la derecha.";
@@ -3380,7 +3446,7 @@
"You can start chat via app Settings / Database or by restarting the app" = "Puede iniciar Chat a través de la Configuración / Base de datos de la aplicación o reiniciando la aplicación";
/* No comment provided by engineer. */
"You can turn on SimpleX Lock via Settings." = "Puedes activar el Bloqueo SimpleX a través de Ajustes.";
"You can turn on SimpleX Lock via Settings." = "Puedes activar el Bloqueo SimpleX a través de Configuración.";
/* No comment provided by engineer. */
"You can use markdown to format messages:" = "Puedes usar la sintaxis markdown para dar formato a tus mensajes:";

View File

@@ -19,6 +19,9 @@
/* No comment provided by engineer. */
"_italic_" = "\\_italique_";
/* No comment provided by engineer. */
"- more stable message delivery.\n- a bit better groups.\n- and more!" = "- une diffusion plus stable des messages.\n- des groupes un peu plus performants.\n- et bien d'autres choses encore !";
/* No comment provided by engineer. */
"- voice messages up to 5 minutes.\n- custom time to disappear.\n- editing history." = "- messages vocaux pouvant durer jusqu'à 5 minutes.\n- délai personnalisé de disparition.\n- l'historique de modification.";
@@ -235,6 +238,9 @@
/* No comment provided by engineer. */
"30 seconds" = "30 secondes";
/* No comment provided by engineer. */
"A few more things" = "Encore quelques points";
/* notification title */
"A new contact" = "Un nouveau contact";
@@ -330,7 +336,7 @@
"agreeing encryption for %@…" = "acceptant le chiffrement pour %@…";
/* chat item text */
"agreeing encryption…" = "acceptant le chiffrement…";
"agreeing encryption…" = "accord sur le chiffrement…";
/* No comment provided by engineer. */
"All app data is deleted." = "Toutes les données de l'application sont supprimées.";
@@ -1092,6 +1098,12 @@
/* No comment provided by engineer. */
"Direct messages between members are prohibited in this group." = "Les messages directs entre membres sont interdits dans ce groupe.";
/* No comment provided by engineer. */
"Disable (keep overrides)" = "Désactiver (conserver les remplacements)";
/* No comment provided by engineer. */
"Disable for all" = "Désactiver pour tous";
/* authentication reason */
"Disable SimpleX Lock" = "Désactiver SimpleX Lock";
@@ -1131,6 +1143,9 @@
/* No comment provided by engineer. */
"Don't create address" = "Ne pas créer d'adresse";
/* No comment provided by engineer. */
"Don't enable" = "Ne pas activer";
/* No comment provided by engineer. */
"Don't show again" = "Ne plus afficher";
@@ -1161,9 +1176,15 @@
/* No comment provided by engineer. */
"Enable" = "Activer";
/* No comment provided by engineer. */
"Enable (keep overrides)" = "Activer (conserver les remplacements)";
/* No comment provided by engineer. */
"Enable automatic message deletion?" = "Activer la suppression automatique des messages ?";
/* No comment provided by engineer. */
"Enable for all" = "Activer pour tous";
/* No comment provided by engineer. */
"Enable instant notifications?" = "Activer les notifications instantanées?";
@@ -1338,6 +1359,9 @@
/* No comment provided by engineer. */
"Error deleting user profile" = "Erreur lors de la suppression du profil utilisateur";
/* No comment provided by engineer. */
"Error enabling delivery receipts!" = "Erreur lors de l'activation des accusés de réception!";
/* No comment provided by engineer. */
"Error enabling notifications" = "Erreur lors de l'activation des notifications";
@@ -1386,6 +1410,9 @@
/* No comment provided by engineer. */
"Error sending message" = "Erreur lors de l'envoi du message";
/* No comment provided by engineer. */
"Error setting delivery receipts!" = "Erreur lors de la configuration des accusés de réception !";
/* No comment provided by engineer. */
"Error starting chat" = "Erreur lors du démarrage du chat";
@@ -1422,6 +1449,9 @@
/* No comment provided by engineer. */
"Error: URL is invalid" = "Erreur: URL invalide";
/* No comment provided by engineer. */
"Even when disabled in the conversation." = "Même s'il est désactivé dans la conversation.";
/* No comment provided by engineer. */
"Exit without saving" = "Quitter sans sauvegarder";
@@ -1470,9 +1500,15 @@
/* No comment provided by engineer. */
"Files and media prohibited!" = "Fichiers et médias interdits !";
/* No comment provided by engineer. */
"Filter unread and favorite chats." = "Filtrer les messages non lus et favoris.";
/* No comment provided by engineer. */
"Finally, we have them! 🚀" = "Enfin, les voilà ! 🚀";
/* No comment provided by engineer. */
"Find chats faster" = "Trouver des messages plus rapidement";
/* No comment provided by engineer. */
"Fix" = "Réparer";
@@ -1482,6 +1518,9 @@
/* No comment provided by engineer. */
"Fix connection?" = "Réparer la connexion?";
/* No comment provided by engineer. */
"Fix encryption after restoring backups." = "Réparer le chiffrement après la restauration des sauvegardes.";
/* No comment provided by engineer. */
"Fix not supported by contact" = "Correction non prise en charge par le contact";
@@ -1836,6 +1875,9 @@
/* No comment provided by engineer. */
"Joining group" = "Entrain de rejoindre le groupe";
/* No comment provided by engineer. */
"Keep your connections" = "Conserver vos connexions";
/* No comment provided by engineer. */
"Keychain error" = "Erreur de la keychain";
@@ -1893,6 +1935,9 @@
/* No comment provided by engineer. */
"Make a private connection" = "Établir une connexion privée";
/* No comment provided by engineer. */
"Make one message disappear" = "Rendre un message éphémère";
/* No comment provided by engineer. */
"Make profile private!" = "Rendre un profil privé !";
@@ -1944,6 +1989,9 @@
/* No comment provided by engineer. */
"Message delivery error" = "Erreur de distribution du message";
/* No comment provided by engineer. */
"Message delivery receipts!" = "Accusés de réception des messages !";
/* No comment provided by engineer. */
"Message draft" = "Brouillon de message";
@@ -2704,9 +2752,21 @@
/* No comment provided by engineer. */
"Sender may have deleted the connection request." = "L'expéditeur a peut-être supprimé la demande de connexion.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts in all visible chat profiles." = "L'envoi d'accusés de réception sera activé pour tous les contacts dans tous les profils de chat visibles.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts." = "L'envoi d'accusés de réception sera activé pour tous les contacts.";
/* No comment provided by engineer. */
"Sending file will be stopped." = "L'envoi du fichier sera interrompu.";
/* No comment provided by engineer. */
"Sending receipts is disabled for %lld contacts" = "L'envoi d'accusés de réception est désactivé pour %lld contacts";
/* No comment provided by engineer. */
"Sending receipts is enabled for %lld contacts" = "L'envoi d'accusés de réception est activé pour %lld contacts";
/* No comment provided by engineer. */
"Sending via" = "Envoi via";
@@ -3001,6 +3061,9 @@
/* No comment provided by engineer. */
"The profile is only shared with your contacts." = "Le profil n'est partagé qu'avec vos contacts.";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "Le deuxième coche que nous avons manqué ! ✅";
/* No comment provided by engineer. */
"The sender will NOT be notified" = "L'expéditeur N'en sera PAS informé";
@@ -3355,6 +3418,9 @@
/* No comment provided by engineer. */
"You can create it later" = "Vous pouvez la créer plus tard";
/* No comment provided by engineer. */
"You can enable later via Settings" = "Vous pouvez l'activer ultérieurement via Paramètres";
/* No comment provided by engineer. */
"You can enable them later via app Privacy & Security settings." = "Vous pouvez les activer ultérieurement via les paramètres de Confidentialité et Sécurité de l'application.";

View File

@@ -19,6 +19,9 @@
/* No comment provided by engineer. */
"_italic_" = "\\_corsivo_";
/* No comment provided by engineer. */
"- more stable message delivery.\n- a bit better groups.\n- and more!" = "- recapito dei messaggi più stabile.\n- gruppi un po' migliorati.\n- e altro ancora!";
/* No comment provided by engineer. */
"- voice messages up to 5 minutes.\n- custom time to disappear.\n- editing history." = "- messaggi vocali fino a 5 minuti.\n- tempo di scomparsa personalizzato.\n- cronologia delle modifiche.";
@@ -103,6 +106,9 @@
/* No comment provided by engineer. */
"%@ %@" = "%@ %@";
/* copied message info, <sender> at <time> */
"%@ at %@:" = "%1$@ alle %2$@:";
/* notification title */
"%@ is connected!" = "%@ è connesso/a!";
@@ -232,6 +238,9 @@
/* No comment provided by engineer. */
"30 seconds" = "30 secondi";
/* No comment provided by engineer. */
"A few more things" = "Qualche altra cosa";
/* notification title */
"A new contact" = "Un contatto nuovo";
@@ -323,6 +332,12 @@
/* No comment provided by engineer. */
"Advanced network settings" = "Impostazioni di rete avanzate";
/* chat item text */
"agreeing encryption for %@…" = "concordando la crittografia per %@…";
/* chat item text */
"agreeing encryption…" = "concordando la crittografia…";
/* No comment provided by engineer. */
"All app data is deleted." = "Tutti i dati dell'app vengono eliminati.";
@@ -588,6 +603,12 @@
/* rcv group event chat item */
"changed your role to %@" = "cambiato il tuo ruolo in %@";
/* chat item text */
"changing address for %@…" = "cambio indirizzo per %@…";
/* chat item text */
"changing address…" = "cambio indirizzo…";
/* No comment provided by engineer. */
"Chat archive" = "Archivio chat";
@@ -777,6 +798,9 @@
/* No comment provided by engineer. */
"Contact preferences" = "Preferenze del contatto";
/* No comment provided by engineer. */
"Contacts" = "Contatti";
/* No comment provided by engineer. */
"Contacts can mark messages for deletion; you will be able to view them." = "I contatti possono contrassegnare i messaggi per l'eliminazione; potrai vederli.";
@@ -912,6 +936,12 @@
/* pref value */
"default (%@)" = "predefinito (%@)";
/* No comment provided by engineer. */
"default (no)" = "predefinito (no)";
/* No comment provided by engineer. */
"default (yes)" = "predefinito (sì)";
/* chat item action */
"Delete" = "Elimina";
@@ -1029,6 +1059,12 @@
/* rcv group event chat item */
"deleted group" = "gruppo eliminato";
/* No comment provided by engineer. */
"Delivery receipts are disabled!" = "Le ricevute di consegna sono disattivate!";
/* No comment provided by engineer. */
"Delivery receipts!" = "Ricevute di consegna!";
/* No comment provided by engineer. */
"Description" = "Descrizione";
@@ -1062,6 +1098,12 @@
/* No comment provided by engineer. */
"Direct messages between members are prohibited in this group." = "I messaggi diretti tra i membri sono vietati in questo gruppo.";
/* No comment provided by engineer. */
"Disable (keep overrides)" = "Disattiva (mantieni sostituzioni)";
/* No comment provided by engineer. */
"Disable for all" = "Disattiva per tutti";
/* authentication reason */
"Disable SimpleX Lock" = "Disattiva SimpleX Lock";
@@ -1101,6 +1143,9 @@
/* No comment provided by engineer. */
"Don't create address" = "Non creare un indirizzo";
/* No comment provided by engineer. */
"Don't enable" = "Non attivare";
/* No comment provided by engineer. */
"Don't show again" = "Non mostrare più";
@@ -1131,9 +1176,15 @@
/* No comment provided by engineer. */
"Enable" = "Attiva";
/* No comment provided by engineer. */
"Enable (keep overrides)" = "Attiva (mantieni sostituzioni)";
/* No comment provided by engineer. */
"Enable automatic message deletion?" = "Attivare l'eliminazione automatica dei messaggi?";
/* No comment provided by engineer. */
"Enable for all" = "Attiva per tutti";
/* No comment provided by engineer. */
"Enable instant notifications?" = "Attivare le notifiche istantanee?";
@@ -1194,6 +1245,30 @@
/* notification */
"Encrypted message: unexpected error" = "Messaggio crittografato: errore imprevisto";
/* chat item text */
"encryption agreed" = "crittografia concordata";
/* chat item text */
"encryption agreed for %@" = "crittografia concordata per %@";
/* chat item text */
"encryption ok" = "crittografia ok";
/* chat item text */
"encryption ok for %@" = "crittografia ok per %@";
/* chat item text */
"encryption re-negotiation allowed" = "rinegoziazione della crittografia consentita";
/* chat item text */
"encryption re-negotiation allowed for %@" = "rinegoziazione della crittografia consentita per %@";
/* chat item text */
"encryption re-negotiation required" = "richiesta rinegoziazione della crittografia";
/* chat item text */
"encryption re-negotiation required for %@" = "richiesta rinegoziazione della crittografia per %@";
/* No comment provided by engineer. */
"ended" = "terminata";
@@ -1284,6 +1359,9 @@
/* No comment provided by engineer. */
"Error deleting user profile" = "Errore nell'eliminazione del profilo utente";
/* No comment provided by engineer. */
"Error enabling delivery receipts!" = "Errore nell'attivazione delle ricevute di consegna!";
/* No comment provided by engineer. */
"Error enabling notifications" = "Errore nell'attivazione delle notifiche";
@@ -1332,6 +1410,9 @@
/* No comment provided by engineer. */
"Error sending message" = "Errore nell'invio del messaggio";
/* No comment provided by engineer. */
"Error setting delivery receipts!" = "Errore nell'impostazione delle ricevute di consegna!";
/* No comment provided by engineer. */
"Error starting chat" = "Errore di avvio della chat";
@@ -1341,6 +1422,9 @@
/* No comment provided by engineer. */
"Error switching profile!" = "Errore nel cambio di profilo!";
/* No comment provided by engineer. */
"Error synchronizing connection" = "Errore nella sincronizzazione della connessione";
/* No comment provided by engineer. */
"Error updating group link" = "Errore nell'aggiornamento del link del gruppo";
@@ -1365,6 +1449,9 @@
/* No comment provided by engineer. */
"Error: URL is invalid" = "Errore: l'URL non è valido";
/* No comment provided by engineer. */
"Even when disabled in the conversation." = "Anche quando disattivato nella conversazione.";
/* No comment provided by engineer. */
"Exit without saving" = "Esci senza salvare";
@@ -1413,9 +1500,33 @@
/* No comment provided by engineer. */
"Files and media prohibited!" = "File e contenuti multimediali vietati!";
/* No comment provided by engineer. */
"Filter unread and favorite chats." = "Filtra le chat non lette e preferite.";
/* No comment provided by engineer. */
"Finally, we have them! 🚀" = "Finalmente le abbiamo! 🚀";
/* No comment provided by engineer. */
"Find chats faster" = "Trova le chat più velocemente";
/* No comment provided by engineer. */
"Fix" = "Correggi";
/* No comment provided by engineer. */
"Fix connection" = "Correggi connessione";
/* No comment provided by engineer. */
"Fix connection?" = "Correggere la connessione?";
/* No comment provided by engineer. */
"Fix encryption after restoring backups." = "Correggi la crittografia dopo il ripristino dei backup.";
/* No comment provided by engineer. */
"Fix not supported by contact" = "Correzione non supportata dal contatto";
/* No comment provided by engineer. */
"Fix not supported by group member" = "Correzione non supportata dal membro del gruppo";
/* No comment provided by engineer. */
"For console" = "Per console";
@@ -1608,6 +1719,9 @@
/* No comment provided by engineer. */
"Improved server configuration" = "Configurazione del server migliorata";
/* copied message info */
"In reply to" = "In risposta a";
/* No comment provided by engineer. */
"Incognito" = "Incognito";
@@ -1761,6 +1875,9 @@
/* No comment provided by engineer. */
"Joining group" = "Ingresso nel gruppo";
/* No comment provided by engineer. */
"Keep your connections" = "Mantieni le tue connessioni";
/* No comment provided by engineer. */
"Keychain error" = "Errore del portachiavi";
@@ -1818,6 +1935,9 @@
/* No comment provided by engineer. */
"Make a private connection" = "Crea una connessione privata";
/* No comment provided by engineer. */
"Make one message disappear" = "Fai sparire un messaggio";
/* No comment provided by engineer. */
"Make profile private!" = "Rendi privato il profilo!";
@@ -1869,6 +1989,9 @@
/* No comment provided by engineer. */
"Message delivery error" = "Errore di recapito del messaggio";
/* No comment provided by engineer. */
"Message delivery receipts!" = "Ricevute di consegna dei messaggi!";
/* No comment provided by engineer. */
"Message draft" = "Bozza dei messaggi";
@@ -2019,6 +2142,9 @@
/* No comment provided by engineer. */
"No group!" = "Gruppo non trovato!";
/* No comment provided by engineer. */
"No history" = "Nessuna cronologia";
/* No comment provided by engineer. */
"No permission to record voice message" = "Nessuna autorizzazione per registrare messaggi vocali";
@@ -2305,12 +2431,18 @@
/* No comment provided by engineer. */
"Protocol timeout" = "Scadenza del protocollo";
/* No comment provided by engineer. */
"Protocol timeout per KB" = "Scadenza del protocollo per KB";
/* No comment provided by engineer. */
"Push notifications" = "Notifiche push";
/* No comment provided by engineer. */
"Rate the app" = "Valuta l'app";
/* chat item menu */
"React…" = "Reagisci…";
/* No comment provided by engineer. */
"Read" = "Leggi";
@@ -2359,6 +2491,12 @@
/* No comment provided by engineer. */
"Recipients see updates as you type them." = "I destinatari vedono gli aggiornamenti mentre li digiti.";
/* No comment provided by engineer. */
"Reconnect all connected servers to force message delivery. It uses additional traffic." = "Riconnetti tutti i server connessi per imporre il recapito dei messaggi. Utilizza traffico aggiuntivo.";
/* No comment provided by engineer. */
"Reconnect servers?" = "Riconnettere i server?";
/* No comment provided by engineer. */
"Record updated at" = "Registro aggiornato il";
@@ -2407,6 +2545,15 @@
/* rcv group event chat item */
"removed you" = "sei stato/a rimosso/a";
/* No comment provided by engineer. */
"Renegotiate" = "Rinegoziare";
/* No comment provided by engineer. */
"Renegotiate encryption" = "Rinegoziare crittografia";
/* No comment provided by engineer. */
"Renegotiate encryption?" = "Rinegoziare la crittografia?";
/* chat item action */
"Reply" = "Rispondi";
@@ -2545,6 +2692,9 @@
/* No comment provided by engineer. */
"Security code" = "Codice di sicurezza";
/* chat item text */
"security code changed" = "codice di sicurezza modificato";
/* No comment provided by engineer. */
"Select" = "Seleziona";
@@ -2566,6 +2716,9 @@
/* No comment provided by engineer. */
"Send a live message - it will update for the recipient(s) as you type it" = "Invia un messaggio in diretta: si aggiornerà per i destinatari mentre lo digiti";
/* No comment provided by engineer. */
"Send delivery receipts to" = "Invia ricevute di consegna a";
/* No comment provided by engineer. */
"Send direct message" = "Invia messaggio diretto";
@@ -2587,6 +2740,9 @@
/* No comment provided by engineer. */
"Send questions and ideas" = "Invia domande e idee";
/* No comment provided by engineer. */
"Send receipts" = "Invia ricevute";
/* No comment provided by engineer. */
"Send them from gallery or custom keyboards." = "Inviali dalla galleria o dalle tastiere personalizzate.";
@@ -2596,9 +2752,21 @@
/* No comment provided by engineer. */
"Sender may have deleted the connection request." = "Il mittente potrebbe aver eliminato la richiesta di connessione.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts in all visible chat profiles." = "L'invio delle ricevute di consegna sarà attivo per tutti i contatti in tutti i profili di chat visibili.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts." = "L'invio delle ricevute di consegna sarà attivo per tutti i contatti.";
/* No comment provided by engineer. */
"Sending file will be stopped." = "L'invio del file verrà interrotto.";
/* No comment provided by engineer. */
"Sending receipts is disabled for %lld contacts" = "L'invio di ricevute è disattivato per %lld contatti";
/* No comment provided by engineer. */
"Sending receipts is enabled for %lld contacts" = "L'invio di ricevute è attivo per %lld contatti";
/* No comment provided by engineer. */
"Sending via" = "Invio tramite";
@@ -2866,6 +3034,9 @@
/* No comment provided by engineer. */
"The created archive is available via app Settings / Database / Old database archive." = "L'archivio creato è disponibile via Impostazioni / Database / Archivio database vecchio.";
/* No comment provided by engineer. */
"The encryption is working and the new encryption agreement is not required. It may result in connection errors!" = "La crittografia funziona e il nuovo accordo sulla crittografia non è richiesto. Potrebbero verificarsi errori di connessione!";
/* No comment provided by engineer. */
"The group is fully decentralized it is visible only to the members." = "Il gruppo è completamente decentralizzato: è visibile solo ai membri.";
@@ -2890,6 +3061,9 @@
/* No comment provided by engineer. */
"The profile is only shared with your contacts." = "Il profilo è condiviso solo con i tuoi contatti.";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "Il secondo segno di spunta che ci mancava! ✅";
/* No comment provided by engineer. */
"The sender will NOT be notified" = "Il mittente NON verrà avvisato";
@@ -2905,6 +3079,12 @@
/* No comment provided by engineer. */
"There should be at least one visible user profile." = "Deve esserci almeno un profilo utente visibile.";
/* No comment provided by engineer. */
"These settings are for your current profile **%@**." = "Queste impostazioni sono per il tuo profilo attuale **%@**.";
/* No comment provided by engineer. */
"They can be overridden in contact settings" = "Possono essere sovrascritte nelle impostazioni dei contatti";
/* 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." = "Questa azione non può essere annullata: tutti i file e i media ricevuti e inviati verranno eliminati. Rimarranno le immagini a bassa risoluzione.";
@@ -3238,6 +3418,12 @@
/* No comment provided by engineer. */
"You can create it later" = "Puoi crearlo più tardi";
/* No comment provided by engineer. */
"You can enable later via Settings" = "Puoi attivarle più tardi nelle impostazioni";
/* No comment provided by engineer. */
"You can enable them later via app Privacy & Security settings." = "Puoi attivarle più tardi nelle impostazioni di privacy e sicurezza dell'app.";
/* 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.";

View File

@@ -19,6 +19,9 @@
/* No comment provided by engineer. */
"_italic_" = "\\_cursief_";
/* No comment provided by engineer. */
"- more stable message delivery.\n- a bit better groups.\n- and more!" = "- stabielere berichtbezorging.\n- een beetje betere groepen.\n- en meer!";
/* No comment provided by engineer. */
"- voice messages up to 5 minutes.\n- custom time to disappear.\n- editing history." = "- spraakberichten tot 5 minuten.\n- aangepaste tijd om te verdwijnen.\n- bewerkingsgeschiedenis.";
@@ -235,6 +238,9 @@
/* No comment provided by engineer. */
"30 seconds" = "30 seconden";
/* No comment provided by engineer. */
"A few more things" = "Nog een paar dingen";
/* notification title */
"A new contact" = "Een nieuw contact";
@@ -1092,6 +1098,12 @@
/* No comment provided by engineer. */
"Direct messages between members are prohibited in this group." = "Directe berichten tussen leden zijn verboden in deze groep.";
/* No comment provided by engineer. */
"Disable (keep overrides)" = "Uitschakelen (overschrijvingen behouden)";
/* No comment provided by engineer. */
"Disable for all" = "Uitschakelen voor iedereen";
/* authentication reason */
"Disable SimpleX Lock" = "SimpleX Vergrendelen uitschakelen";
@@ -1131,6 +1143,9 @@
/* No comment provided by engineer. */
"Don't create address" = "Maak geen adres aan";
/* No comment provided by engineer. */
"Don't enable" = "Niet inschakelen";
/* No comment provided by engineer. */
"Don't show again" = "Niet meer weergeven";
@@ -1161,9 +1176,15 @@
/* No comment provided by engineer. */
"Enable" = "Inschakelen";
/* No comment provided by engineer. */
"Enable (keep overrides)" = "Inschakelen (overschrijvingen behouden)";
/* No comment provided by engineer. */
"Enable automatic message deletion?" = "Automatisch verwijderen van berichten aanzetten?";
/* No comment provided by engineer. */
"Enable for all" = "Inschakelen voor iedereen";
/* No comment provided by engineer. */
"Enable instant notifications?" = "Onmiddellijke meldingen inschakelen?";
@@ -1338,6 +1359,9 @@
/* No comment provided by engineer. */
"Error deleting user profile" = "Fout bij het verwijderen van gebruikers profiel";
/* No comment provided by engineer. */
"Error enabling delivery receipts!" = "Fout bij het inschakelen van ontvangstbevestiging!";
/* No comment provided by engineer. */
"Error enabling notifications" = "Fout bij inschakelen van meldingen";
@@ -1386,6 +1410,9 @@
/* No comment provided by engineer. */
"Error sending message" = "Fout bij verzenden van bericht";
/* No comment provided by engineer. */
"Error setting delivery receipts!" = "Fout bij het instellen van ontvangstbevestiging!";
/* No comment provided by engineer. */
"Error starting chat" = "Fout bij het starten van de chat";
@@ -1422,6 +1449,9 @@
/* No comment provided by engineer. */
"Error: URL is invalid" = "Fout: URL is ongeldig";
/* No comment provided by engineer. */
"Even when disabled in the conversation." = "Zelfs wanneer uitgeschakeld in het gesprek.";
/* No comment provided by engineer. */
"Exit without saving" = "Afsluiten zonder opslaan";
@@ -1470,9 +1500,15 @@
/* No comment provided by engineer. */
"Files and media prohibited!" = "Bestanden en media verboden!";
/* No comment provided by engineer. */
"Filter unread and favorite chats." = "Filter ongelezen en favoriete chats.";
/* No comment provided by engineer. */
"Finally, we have them! 🚀" = "Eindelijk, we hebben ze! 🚀";
/* No comment provided by engineer. */
"Find chats faster" = "Vind gesprekken sneller";
/* No comment provided by engineer. */
"Fix" = "Herstel";
@@ -1482,6 +1518,9 @@
/* No comment provided by engineer. */
"Fix connection?" = "Verbinding herstellen?";
/* No comment provided by engineer. */
"Fix encryption after restoring backups." = "Repareer versleuteling na het herstellen van back-ups.";
/* No comment provided by engineer. */
"Fix not supported by contact" = "Herstel wordt niet ondersteund door contact";
@@ -1836,6 +1875,9 @@
/* No comment provided by engineer. */
"Joining group" = "Deel nemen aan groep";
/* No comment provided by engineer. */
"Keep your connections" = "Behoud uw verbindingen";
/* No comment provided by engineer. */
"Keychain error" = "Keychain fout";
@@ -1893,6 +1935,9 @@
/* No comment provided by engineer. */
"Make a private connection" = "Maak een privéverbinding";
/* No comment provided by engineer. */
"Make one message disappear" = "Eén bericht laten verdwijnen";
/* No comment provided by engineer. */
"Make profile private!" = "Profiel privé maken!";
@@ -1944,6 +1989,9 @@
/* No comment provided by engineer. */
"Message delivery error" = "Fout bij bezorging van bericht";
/* No comment provided by engineer. */
"Message delivery receipts!" = "Ontvangstbevestiging voor berichten!";
/* No comment provided by engineer. */
"Message draft" = "Concept bericht";
@@ -2704,9 +2752,21 @@
/* No comment provided by engineer. */
"Sender may have deleted the connection request." = "De afzender heeft mogelijk het verbindingsverzoek verwijderd.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts in all visible chat profiles." = "Het verzenden van ontvangstbevestiging wordt ingeschakeld voor alle contacten in alle zichtbare chatprofielen.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts." = "Het verzenden van ontvangstbevestiging wordt ingeschakeld voor alle contactpersonen.";
/* No comment provided by engineer. */
"Sending file will be stopped." = "Het verzenden van het bestand wordt gestopt.";
/* No comment provided by engineer. */
"Sending receipts is disabled for %lld contacts" = "Het verzenden van ontvangstbevestiging is uitgeschakeld voor %lld-contactpersonen";
/* No comment provided by engineer. */
"Sending receipts is enabled for %lld contacts" = "Het verzenden van ontvangstbevestiging is ingeschakeld voor %lld-contactpersonen";
/* No comment provided by engineer. */
"Sending via" = "Verzenden via";
@@ -3001,6 +3061,9 @@
/* No comment provided by engineer. */
"The profile is only shared with your contacts." = "Het profiel wordt alleen gedeeld met uw contacten.";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "De tweede vink die we gemist hebben! ✅";
/* No comment provided by engineer. */
"The sender will NOT be notified" = "De afzender wordt NIET op de hoogte gebracht";
@@ -3355,6 +3418,9 @@
/* No comment provided by engineer. */
"You can create it later" = "U kan het later maken";
/* No comment provided by engineer. */
"You can enable later via Settings" = "U kunt later inschakelen via Instellingen";
/* No comment provided by engineer. */
"You can enable them later via app Privacy & Security settings." = "U kunt ze later inschakelen via de privacy- en beveiligingsinstellingen van de app.";
@@ -3425,7 +3491,7 @@
"you left" = "jij bent vertrokken";
/* No comment provided by engineer. */
"You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts." = "U mag de meest recente versie van uw chat database ALLEEN op één apparaat gebruiken, anders ontvangt u mogelijk geen berichten meer van sommige contacten.";
"You must use the most recent version of your chat database on one device ONLY, otherwise you may stop receiving the messages from some contacts." = "U mag ALLEEN de meest recente versie van uw chat database op één apparaat gebruiken, anders ontvangt u mogelijk geen berichten meer van sommige contacten.";
/* No comment provided by engineer. */
"You need to allow your contact to send voice messages to be able to send them." = "U moet uw contact toestemming geven om spraak berichten te verzenden om ze te kunnen verzenden.";

View File

@@ -19,6 +19,9 @@
/* No comment provided by engineer. */
"_italic_" = "\\_kursywa_";
/* No comment provided by engineer. */
"- more stable message delivery.\n- a bit better groups.\n- and more!" = "- bardziej stabilne dostarczanie wiadomości.\n- nieco lepsze grupy.\n- i więcej!";
/* No comment provided by engineer. */
"- voice messages up to 5 minutes.\n- custom time to disappear.\n- editing history." = "- wiadomości głosowe do 5 minut.\n- niestandardowy czas zniknięcia.\n- historia edycji.";
@@ -103,6 +106,9 @@
/* No comment provided by engineer. */
"%@ %@" = "%@ %@";
/* copied message info, <sender> at <time> */
"%@ at %@:" = "%1$@ o %2$@:";
/* notification title */
"%@ is connected!" = "%@ jest połączony!";
@@ -232,6 +238,9 @@
/* No comment provided by engineer. */
"30 seconds" = "30 sekund";
/* No comment provided by engineer. */
"A few more things" = "Jeszcze kilka rzeczy";
/* notification title */
"A new contact" = "Nowy kontakt";
@@ -323,6 +332,12 @@
/* No comment provided by engineer. */
"Advanced network settings" = "Zaawansowane ustawienia sieci";
/* chat item text */
"agreeing encryption for %@…" = "uzgadnianie szyfrowania dla %@…";
/* chat item text */
"agreeing encryption…" = "uzgadnianie szyfrowania…";
/* No comment provided by engineer. */
"All app data is deleted." = "Wszystkie dane aplikacji są usunięte.";
@@ -588,6 +603,12 @@
/* rcv group event chat item */
"changed your role to %@" = "zmieniono Twoją rolę na %@";
/* chat item text */
"changing address for %@…" = "zmienienie adresu dla %@…";
/* chat item text */
"changing address…" = "zmiana adresu…";
/* No comment provided by engineer. */
"Chat archive" = "Archiwum czatu";
@@ -777,6 +798,9 @@
/* No comment provided by engineer. */
"Contact preferences" = "Preferencje kontaktu";
/* No comment provided by engineer. */
"Contacts" = "Kontakty";
/* No comment provided by engineer. */
"Contacts can mark messages for deletion; you will be able to view them." = "Kontakty mogą oznaczać wiadomości do usunięcia; będziesz mógł je zobaczyć.";
@@ -912,6 +936,12 @@
/* pref value */
"default (%@)" = "domyślne (%@)";
/* No comment provided by engineer. */
"default (no)" = "domyślnie (nie)";
/* No comment provided by engineer. */
"default (yes)" = "domyślnie (tak)";
/* chat item action */
"Delete" = "Usuń";
@@ -1029,6 +1059,12 @@
/* rcv group event chat item */
"deleted group" = "usunięta grupa";
/* No comment provided by engineer. */
"Delivery receipts are disabled!" = "Potwierdzenia dostawy są wyłączone!";
/* No comment provided by engineer. */
"Delivery receipts!" = "Potwierdzenia dostawy!";
/* No comment provided by engineer. */
"Description" = "Opis";
@@ -1062,6 +1098,12 @@
/* No comment provided by engineer. */
"Direct messages between members are prohibited in this group." = "Bezpośrednie wiadomości między członkami są zabronione w tej grupie.";
/* No comment provided by engineer. */
"Disable (keep overrides)" = "Wyłącz (zachowaj nadpisania)";
/* No comment provided by engineer. */
"Disable for all" = "Wyłącz dla wszystkich";
/* authentication reason */
"Disable SimpleX Lock" = "Wyłącz blokadę SimpleX";
@@ -1101,6 +1143,9 @@
/* No comment provided by engineer. */
"Don't create address" = "Nie twórz adresu";
/* No comment provided by engineer. */
"Don't enable" = "Nie włączaj";
/* No comment provided by engineer. */
"Don't show again" = "Nie pokazuj ponownie";
@@ -1131,9 +1176,15 @@
/* No comment provided by engineer. */
"Enable" = "Włącz";
/* No comment provided by engineer. */
"Enable (keep overrides)" = "Włącz (zachowaj nadpisania)";
/* No comment provided by engineer. */
"Enable automatic message deletion?" = "Czy włączyć automatyczne usuwanie wiadomości?";
/* No comment provided by engineer. */
"Enable for all" = "Włącz dla wszystkich";
/* No comment provided by engineer. */
"Enable instant notifications?" = "Włączyć natychmiastowe powiadomienia?";
@@ -1194,6 +1245,30 @@
/* notification */
"Encrypted message: unexpected error" = "Zaszyfrowana wiadomość: nieoczekiwany błąd";
/* chat item text */
"encryption agreed" = "uzgodniono szyfrowanie";
/* chat item text */
"encryption agreed for %@" = "uzgodniono szyfrowanie dla %@";
/* chat item text */
"encryption ok" = "szyfrowanie ok";
/* chat item text */
"encryption ok for %@" = "szyfrowanie ok dla %@";
/* chat item text */
"encryption re-negotiation allowed" = "renegocjacja szyfrowania dozwolona";
/* chat item text */
"encryption re-negotiation allowed for %@" = "renegocjacja szyfrowania dozwolona dla %@";
/* chat item text */
"encryption re-negotiation required" = "renegocjacja szyfrowania wymagana";
/* chat item text */
"encryption re-negotiation required for %@" = "renegocjacja szyfrowania wymagana dla %@";
/* No comment provided by engineer. */
"ended" = "zakończona";
@@ -1284,6 +1359,9 @@
/* No comment provided by engineer. */
"Error deleting user profile" = "Błąd usuwania profilu użytkownika";
/* No comment provided by engineer. */
"Error enabling delivery receipts!" = "Błąd włączania potwierdzeń dostawy!";
/* No comment provided by engineer. */
"Error enabling notifications" = "Błąd włączania powiadomień";
@@ -1332,6 +1410,9 @@
/* No comment provided by engineer. */
"Error sending message" = "Błąd wysyłania wiadomości";
/* No comment provided by engineer. */
"Error setting delivery receipts!" = "Błąd ustawiania potwierdzeń dostawy!";
/* No comment provided by engineer. */
"Error starting chat" = "Błąd uruchamiania czatu";
@@ -1341,6 +1422,9 @@
/* No comment provided by engineer. */
"Error switching profile!" = "Błąd przełączania profilu!";
/* No comment provided by engineer. */
"Error synchronizing connection" = "Błąd synchronizacji połączenia";
/* No comment provided by engineer. */
"Error updating group link" = "Błąd aktualizacji linku grupy";
@@ -1365,6 +1449,9 @@
/* No comment provided by engineer. */
"Error: URL is invalid" = "Błąd: URL jest nieprawidłowy";
/* No comment provided by engineer. */
"Even when disabled in the conversation." = "Nawet po wyłączeniu w rozmowie.";
/* No comment provided by engineer. */
"Exit without saving" = "Wyjdź bez zapisywania";
@@ -1413,9 +1500,33 @@
/* No comment provided by engineer. */
"Files and media prohibited!" = "Pliki i media zabronione!";
/* No comment provided by engineer. */
"Filter unread and favorite chats." = "Filtruj nieprzeczytane i ulubione czaty.";
/* No comment provided by engineer. */
"Finally, we have them! 🚀" = "W końcu je mamy! 🚀";
/* No comment provided by engineer. */
"Find chats faster" = "Szybciej znajduj czaty";
/* No comment provided by engineer. */
"Fix" = "Napraw";
/* No comment provided by engineer. */
"Fix connection" = "Napraw połączenie";
/* No comment provided by engineer. */
"Fix connection?" = "Naprawić połączenie?";
/* No comment provided by engineer. */
"Fix encryption after restoring backups." = "Napraw szyfrowanie po przywróceniu kopii zapasowych.";
/* No comment provided by engineer. */
"Fix not supported by contact" = "Naprawa nie jest obsługiwana przez kontakt";
/* No comment provided by engineer. */
"Fix not supported by group member" = "Naprawa nie jest obsługiwana przez członka grupy";
/* No comment provided by engineer. */
"For console" = "Dla konsoli";
@@ -1608,6 +1719,9 @@
/* No comment provided by engineer. */
"Improved server configuration" = "Ulepszona konfiguracja serwera";
/* copied message info */
"In reply to" = "W odpowiedzi na";
/* No comment provided by engineer. */
"Incognito" = "Incognito";
@@ -1761,6 +1875,9 @@
/* No comment provided by engineer. */
"Joining group" = "Dołączanie do grupy";
/* No comment provided by engineer. */
"Keep your connections" = "Zachowaj swoje połączenia";
/* No comment provided by engineer. */
"Keychain error" = "Błąd pęku kluczy";
@@ -1818,6 +1935,9 @@
/* No comment provided by engineer. */
"Make a private connection" = "Nawiąż prywatne połączenie";
/* No comment provided by engineer. */
"Make one message disappear" = "Spraw, aby jedna wiadomość zniknęła";
/* No comment provided by engineer. */
"Make profile private!" = "Ustaw profil jako prywatny!";
@@ -1869,6 +1989,9 @@
/* No comment provided by engineer. */
"Message delivery error" = "Błąd dostarczenia wiadomości";
/* No comment provided by engineer. */
"Message delivery receipts!" = "Potwierdzenia dostarczenia wiadomości!";
/* No comment provided by engineer. */
"Message draft" = "Wersja robocza wiadomości";
@@ -2019,6 +2142,9 @@
/* No comment provided by engineer. */
"No group!" = "Nie znaleziono grupy!";
/* No comment provided by engineer. */
"No history" = "Brak historii";
/* No comment provided by engineer. */
"No permission to record voice message" = "Brak uprawnień do nagrywania wiadomości głosowej";
@@ -2305,12 +2431,18 @@
/* No comment provided by engineer. */
"Protocol timeout" = "Limit czasu protokołu";
/* No comment provided by engineer. */
"Protocol timeout per KB" = "Limit czasu protokołu na KB";
/* No comment provided by engineer. */
"Push notifications" = "Powiadomienia push";
/* No comment provided by engineer. */
"Rate the app" = "Oceń aplikację";
/* chat item menu */
"React…" = "Reaguj…";
/* No comment provided by engineer. */
"Read" = "Czytaj";
@@ -2359,6 +2491,12 @@
/* No comment provided by engineer. */
"Recipients see updates as you type them." = "Odbiorcy widzą aktualizacje podczas ich wpisywania.";
/* No comment provided by engineer. */
"Reconnect all connected servers to force message delivery. It uses additional traffic." = "Połącz ponownie wszystkie połączone serwery, aby wymusić dostarczanie wiadomości. Wykorzystuje dodatkowy ruch.";
/* No comment provided by engineer. */
"Reconnect servers?" = "Ponownie połączyć serwery?";
/* No comment provided by engineer. */
"Record updated at" = "Rekord zaktualizowany o";
@@ -2407,6 +2545,15 @@
/* rcv group event chat item */
"removed you" = "usunął cię";
/* No comment provided by engineer. */
"Renegotiate" = "Renegocjuj";
/* No comment provided by engineer. */
"Renegotiate encryption" = "Renegocjuj szyfrowanie";
/* No comment provided by engineer. */
"Renegotiate encryption?" = "Renegocjować szyfrowanie?";
/* chat item action */
"Reply" = "Odpowiedz";
@@ -2545,6 +2692,9 @@
/* No comment provided by engineer. */
"Security code" = "Kod bezpieczeństwa";
/* chat item text */
"security code changed" = "kod bezpieczeństwa zmieniony";
/* No comment provided by engineer. */
"Select" = "Wybierz";
@@ -2566,6 +2716,9 @@
/* No comment provided by engineer. */
"Send a live message - it will update for the recipient(s) as you type it" = "Wysyłaj wiadomości na żywo - będą one aktualizowane dla odbiorcy(ów) w trakcie ich wpisywania";
/* No comment provided by engineer. */
"Send delivery receipts to" = "Wyślij potwierdzenia dostawy do";
/* No comment provided by engineer. */
"Send direct message" = "Wyślij wiadomość bezpośrednią";
@@ -2587,6 +2740,9 @@
/* No comment provided by engineer. */
"Send questions and ideas" = "Wyślij pytania i pomysły";
/* No comment provided by engineer. */
"Send receipts" = "Wyślij potwierdzenia";
/* No comment provided by engineer. */
"Send them from gallery or custom keyboards." = "Wyślij je z galerii lub niestandardowych klawiatur.";
@@ -2596,9 +2752,21 @@
/* No comment provided by engineer. */
"Sender may have deleted the connection request." = "Nadawca mógł usunąć prośbę o połączenie.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts in all visible chat profiles." = "Wysyłanie potwierdzeń dostawy zostanie włączone dla wszystkich kontaktów we wszystkich widocznych profilach czatu.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts." = "Wysyłanie potwierdzeń dostawy zostanie włączone dla wszystkich kontaktów.";
/* No comment provided by engineer. */
"Sending file will be stopped." = "Wysyłanie pliku zostanie przerwane.";
/* No comment provided by engineer. */
"Sending receipts is disabled for %lld contacts" = "Wysyłanie potwierdzeń jest wyłączone dla %lld kontaktów";
/* No comment provided by engineer. */
"Sending receipts is enabled for %lld contacts" = "Wysyłanie potwierdzeń jest włączone dla %lld kontaktów";
/* No comment provided by engineer. */
"Sending via" = "Wysyłanie przez";
@@ -2866,6 +3034,9 @@
/* No comment provided by engineer. */
"The created archive is available via app Settings / Database / Old database archive." = "Utworzone archiwum jest dostępne poprzez aplikację Ustawienia / Baza danych / Stare archiwum bazy danych.";
/* No comment provided by engineer. */
"The encryption is working and the new encryption agreement is not required. It may result in connection errors!" = "Szyfrowanie działa, a nowe uzgodnienie szyfrowania nie jest wymagane. Może to spowodować błędy w połączeniu!";
/* No comment provided by engineer. */
"The group is fully decentralized it is visible only to the members." = "Grupa jest w pełni zdecentralizowana jest widoczna tylko dla członków.";
@@ -2890,6 +3061,9 @@
/* No comment provided by engineer. */
"The profile is only shared with your contacts." = "Profil jest udostępniany tylko Twoim kontaktom.";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "Drugi tik, który przegapiliśmy! ✅";
/* No comment provided by engineer. */
"The sender will NOT be notified" = "Nadawca NIE zostanie powiadomiony";
@@ -2905,6 +3079,12 @@
/* No comment provided by engineer. */
"There should be at least one visible user profile." = "Powinien istnieć co najmniej jeden widoczny profil użytkownika.";
/* No comment provided by engineer. */
"These settings are for your current profile **%@**." = "Te ustawienia dotyczą Twojego bieżącego profilu **%@**.";
/* No comment provided by engineer. */
"They can be overridden in contact settings" = "Można je nadpisać w ustawieniach kontaktu";
/* 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." = "Tego działania nie można cofnąć - wszystkie odebrane i wysłane pliki oraz media zostaną usunięte. Obrazy o niskiej rozdzielczości pozostaną.";
@@ -3238,6 +3418,12 @@
/* No comment provided by engineer. */
"You can create it later" = "Możesz go utworzyć później";
/* No comment provided by engineer. */
"You can enable later via Settings" = "Możesz włączyć później w Ustawieniach";
/* No comment provided by engineer. */
"You can enable them later via app Privacy & Security settings." = "Możesz je włączyć później w ustawieniach Prywatności i Bezpieczeństwa aplikacji.";
/* 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.";

View File

@@ -19,6 +19,9 @@
/* No comment provided by engineer. */
"_italic_" = "\\_курсив_";
/* No comment provided by engineer. */
"- more stable message delivery.\n- a bit better groups.\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- история редактирования.";
@@ -103,6 +106,9 @@
/* No comment provided by engineer. */
"%@ %@" = "%@ %@";
/* copied message info, <sender> at <time> */
"%@ at %@:" = "%1$@ в %2$@:";
/* notification title */
"%@ is connected!" = "Установлено соединение с %@!";
@@ -232,6 +238,9 @@
/* No comment provided by engineer. */
"30 seconds" = "30 секунд";
/* No comment provided by engineer. */
"A few more things" = "Еще несколько изменений";
/* notification title */
"A new contact" = "Новый контакт";
@@ -247,6 +256,15 @@
/* 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." = "Отдельное TCP-соединение (и авторизация SOCKS) будет использоваться **для каждого контакта и члена группы**.\n**Обратите внимание**: если у Вас много контактов, потребление батареи и трафика может быть значительно выше, и некоторые соединения могут не работать.";
/* No comment provided by engineer. */
"Abort" = "Прекратить";
/* No comment provided by engineer. */
"Abort changing address" = "Прекратить изменение адреса";
/* No comment provided by engineer. */
"Abort changing address?" = "Прекратить изменение адреса?";
/* No comment provided by engineer. */
"About SimpleX" = "О SimpleX";
@@ -302,6 +320,9 @@
/* No comment provided by engineer. */
"Address" = "Адрес";
/* No comment provided by engineer. */
"Address change will be aborted. Old receiving address will be used." = "Изменение адреса будет прекращено. Будет использоваться старый адрес.";
/* member role */
"admin" = "админ";
@@ -311,6 +332,12 @@
/* No comment provided by engineer. */
"Advanced network settings" = "Настройки сети";
/* chat item text */
"agreeing encryption for %@…" = "шифрование согласовывается для %@…";
/* chat item text */
"agreeing encryption…" = "шифрование согласовывается…";
/* No comment provided by engineer. */
"All app data is deleted." = "Все данные приложения будут удалены.";
@@ -359,6 +386,9 @@
/* No comment provided by engineer. */
"Allow to irreversibly delete sent messages." = "Разрешить необратимо удалять отправленные сообщения.";
/* No comment provided by engineer. */
"Allow to send files and media." = "Разрешить посылать файлы и медиа.";
/* No comment provided by engineer. */
"Allow to send voice messages." = "Разрешить отправлять голосовые сообщения.";
@@ -573,6 +603,12 @@
/* rcv group event chat item */
"changed your role to %@" = "поменял(а) Вашу роль на: %@";
/* chat item text */
"changing address for %@…" = "смена адреса для %@…";
/* chat item text */
"changing address…" = "смена адреса…";
/* No comment provided by engineer. */
"Chat archive" = "Архив чата";
@@ -762,6 +798,9 @@
/* No comment provided by engineer. */
"Contact preferences" = "Предпочтения контакта";
/* No comment provided by engineer. */
"Contacts" = "Контакты";
/* No comment provided by engineer. */
"Contacts can mark messages for deletion; you will be able to view them." = "Контакты могут помечать сообщения для удаления; Вы сможете просмотреть их.";
@@ -897,6 +936,12 @@
/* pref value */
"default (%@)" = "по умолчанию (%@)";
/* No comment provided by engineer. */
"default (no)" = "по умолчанию (нет)";
/* No comment provided by engineer. */
"default (yes)" = "по умолчанию (да)";
/* chat item action */
"Delete" = "Удалить";
@@ -1014,6 +1059,12 @@
/* rcv group event chat item */
"deleted group" = "удалил(а) группу";
/* No comment provided by engineer. */
"Delivery receipts are disabled!" = "Отчёты о доставке выключены!";
/* No comment provided by engineer. */
"Delivery receipts!" = "Отчёты о доставке!";
/* No comment provided by engineer. */
"Description" = "Описание";
@@ -1047,6 +1098,12 @@
/* No comment provided by engineer. */
"Direct messages between members are prohibited in this group." = "Прямые сообщения между членами группы запрещены.";
/* No comment provided by engineer. */
"Disable (keep overrides)" = "Выключить (кроме исключений)";
/* No comment provided by engineer. */
"Disable for all" = "Выключить для всех";
/* authentication reason */
"Disable SimpleX Lock" = "Отключить блокировку SimpleX";
@@ -1086,6 +1143,9 @@
/* No comment provided by engineer. */
"Don't create address" = "Не создавать адрес";
/* No comment provided by engineer. */
"Don't enable" = "Не включать";
/* No comment provided by engineer. */
"Don't show again" = "Не показывать";
@@ -1116,9 +1176,15 @@
/* No comment provided by engineer. */
"Enable" = "Включить";
/* No comment provided by engineer. */
"Enable (keep overrides)" = "Включить (кроме исключений)";
/* No comment provided by engineer. */
"Enable automatic message deletion?" = "Включить автоматическое удаление сообщений?";
/* No comment provided by engineer. */
"Enable for all" = "Включить для всех";
/* No comment provided by engineer. */
"Enable instant notifications?" = "Включить мгновенные уведомления?";
@@ -1179,6 +1245,30 @@
/* notification */
"Encrypted message: unexpected error" = "Зашифрованное сообщение: неожиданная ошибка";
/* chat item text */
"encryption agreed" = "шифрование согласовано";
/* chat item text */
"encryption agreed for %@" = "шифрование согласовано для %@";
/* chat item text */
"encryption ok" = "шифрование работает";
/* chat item text */
"encryption ok for %@" = "шифрование работает для %@";
/* chat item text */
"encryption re-negotiation allowed" = "новое соглашение о шифровании разрешено";
/* chat item text */
"encryption re-negotiation allowed for %@" = "новое соглашение о шифровании разрешено для %@";
/* chat item text */
"encryption re-negotiation required" = "требуется новое соглашение о шифровании";
/* chat item text */
"encryption re-negotiation required for %@" = "требуется новое соглашение о шифровании для %@";
/* No comment provided by engineer. */
"ended" = "завершён";
@@ -1212,6 +1302,9 @@
/* No comment provided by engineer. */
"Error" = "Ошибка";
/* No comment provided by engineer. */
"Error aborting address change" = "Ошибка при прекращении изменения адреса";
/* No comment provided by engineer. */
"Error accepting contact request" = "Ошибка при принятии запроса на соединение";
@@ -1266,6 +1359,9 @@
/* No comment provided by engineer. */
"Error deleting user profile" = "Ошибка удаления профиля пользователя";
/* No comment provided by engineer. */
"Error enabling delivery receipts!" = "Ошибка при включении отчётов о доставке!";
/* No comment provided by engineer. */
"Error enabling notifications" = "Ошибка при включении уведомлений";
@@ -1314,6 +1410,9 @@
/* No comment provided by engineer. */
"Error sending message" = "Ошибка при отправке сообщения";
/* No comment provided by engineer. */
"Error setting delivery receipts!" = "Ошибка настроек отчётов о доставке!";
/* No comment provided by engineer. */
"Error starting chat" = "Ошибка при запуске чата";
@@ -1323,6 +1422,9 @@
/* No comment provided by engineer. */
"Error switching profile!" = "Ошибка выбора профиля!";
/* No comment provided by engineer. */
"Error synchronizing connection" = "Ошибка синхронизации соединения";
/* No comment provided by engineer. */
"Error updating group link" = "Ошибка обновления ссылки группы";
@@ -1347,6 +1449,9 @@
/* No comment provided by engineer. */
"Error: URL is invalid" = "Ошибка: неверная ссылка";
/* No comment provided by engineer. */
"Even when disabled in the conversation." = "Даже когда они выключены в разговоре.";
/* No comment provided by engineer. */
"Exit without saving" = "Выйти без сохранения";
@@ -1368,6 +1473,9 @@
/* No comment provided by engineer. */
"Fast and no wait until the sender is online!" = "Быстрые и не нужно ждать, когда отправитель онлайн!";
/* No comment provided by engineer. */
"Favorite" = "Избранный";
/* No comment provided by engineer. */
"File will be deleted from servers." = "Файл будет удалён с серверов.";
@@ -1383,9 +1491,42 @@
/* No comment provided by engineer. */
"Files & media" = "Файлы и медиа";
/* chat feature */
"Files and media" = "Файлы и медиа";
/* No comment provided by engineer. */
"Files and media are prohibited in this group." = "Файлы и медиа запрещены в этой группе.";
/* No comment provided by engineer. */
"Files and media prohibited!" = "Файлы и медиа запрещены!";
/* No comment provided by engineer. */
"Filter unread and favorite chats." = "Фильтровать непрочитанные и избранные чаты.";
/* No comment provided by engineer. */
"Finally, we have them! 🚀" = "Наконец-то, мы их добавили! 🚀";
/* No comment provided by engineer. */
"Find chats faster" = "Быстро найти чаты";
/* No comment provided by engineer. */
"Fix" = "Починить";
/* No comment provided by engineer. */
"Fix connection" = "Починить соединение";
/* No comment provided by engineer. */
"Fix connection?" = "Починить соединение?";
/* No comment provided by engineer. */
"Fix encryption after restoring backups." = "Починить шифрование после восстановления из бэкапа.";
/* No comment provided by engineer. */
"Fix not supported by contact" = "Починка не поддерживается контактом";
/* No comment provided by engineer. */
"Fix not supported by group member" = "Починка не поддерживается членом группы";
/* No comment provided by engineer. */
"For console" = "Для консоли";
@@ -1452,6 +1593,9 @@
/* No comment provided by engineer. */
"Group members can send disappearing messages." = "Члены группы могут посылать исчезающие сообщения.";
/* No comment provided by engineer. */
"Group members can send files and media." = "Члены группы могут слать файлы и медиа.";
/* No comment provided by engineer. */
"Group members can send voice messages." = "Члены группы могут отправлять голосовые сообщения.";
@@ -1575,6 +1719,9 @@
/* No comment provided by engineer. */
"Improved server configuration" = "Улучшенная конфигурация серверов";
/* copied message info */
"In reply to" = "В ответ на";
/* No comment provided by engineer. */
"Incognito" = "Инкогнито";
@@ -1728,6 +1875,9 @@
/* No comment provided by engineer. */
"Joining group" = "Вступление в группу";
/* No comment provided by engineer. */
"Keep your connections" = "Сохраните Ваши соединения";
/* No comment provided by engineer. */
"Keychain error" = "Ошибка Keychain";
@@ -1785,6 +1935,9 @@
/* No comment provided by engineer. */
"Make a private connection" = "Добавьте контакт";
/* No comment provided by engineer. */
"Make one message disappear" = "Одно исчезающее сообщение";
/* No comment provided by engineer. */
"Make profile private!" = "Сделайте профиль скрытым!";
@@ -1836,6 +1989,9 @@
/* No comment provided by engineer. */
"Message delivery error" = "Ошибка доставки сообщения";
/* No comment provided by engineer. */
"Message delivery receipts!" = "Отчеты о доставке сообщений!";
/* No comment provided by engineer. */
"Message draft" = "Черновик сообщения";
@@ -1980,15 +2136,24 @@
/* No comment provided by engineer. */
"no e2e encryption" = "нет e2e шифрования";
/* No comment provided by engineer. */
"No filtered chats" = "Нет отфильтрованных разговоров";
/* No comment provided by engineer. */
"No group!" = "Группа не найдена!";
/* No comment provided by engineer. */
"No history" = "Нет истории";
/* No comment provided by engineer. */
"No permission to record voice message" = "Нет разрешения для записи голосового сообщения";
/* No comment provided by engineer. */
"No received or sent files" = "Нет полученных или отправленных файлов";
/* copied message info in history */
"no text" = "нет текста";
/* No comment provided by engineer. */
"Notifications" = "Уведомления";
@@ -2047,6 +2212,9 @@
/* No comment provided by engineer. */
"Only group owners can change group preferences." = "Только владельцы группы могут изменять предпочтения группы.";
/* No comment provided by engineer. */
"Only group owners can enable files and media." = "Только владельцы группы могут разрешить файлы и медиа.";
/* No comment provided by engineer. */
"Only group owners can enable voice messages." = "Только владельцы группы могут разрешить голосовые сообщения.";
@@ -2248,6 +2416,9 @@
/* No comment provided by engineer. */
"Prohibit sending disappearing messages." = "Запретить посылать исчезающие сообщения.";
/* No comment provided by engineer. */
"Prohibit sending files and media." = "Запретить слать файлы и медиа.";
/* No comment provided by engineer. */
"Prohibit sending voice messages." = "Запретить отправлять голосовые сообщений.";
@@ -2260,12 +2431,18 @@
/* No comment provided by engineer. */
"Protocol timeout" = "Таймаут протокола";
/* No comment provided by engineer. */
"Protocol timeout per KB" = "Таймаут протокола на KB";
/* No comment provided by engineer. */
"Push notifications" = "Доставка уведомлений";
/* No comment provided by engineer. */
"Rate the app" = "Оценить приложение";
/* chat item menu */
"React…" = "Реакция…";
/* No comment provided by engineer. */
"Read" = "Прочитано";
@@ -2302,6 +2479,9 @@
/* message info title */
"Received message" = "Полученное сообщение";
/* No comment provided by engineer. */
"Receiving address will be changed to a different server. Address change will complete after sender comes online." = "Адрес получения сообщений будет перемещён на другой сервер. Изменение адреса завершится после того как отправитель будет онлайн.";
/* No comment provided by engineer. */
"Receiving file will be stopped." = "Приём файла будет прекращён.";
@@ -2311,6 +2491,12 @@
/* No comment provided by engineer. */
"Recipients see updates as you type them." = "Получатели видят их в то время как Вы их набираете.";
/* No comment provided by engineer. */
"Reconnect all connected servers to force message delivery. It uses additional traffic." = "Повторно подключите все серверы, чтобы принудительно доставить сообщения. Используется дополнительный трафик.";
/* No comment provided by engineer. */
"Reconnect servers?" = "Переподключить серверы?";
/* No comment provided by engineer. */
"Record updated at" = "Запись обновлена";
@@ -2359,6 +2545,15 @@
/* rcv group event chat item */
"removed you" = "удалил(а) Вас из группы";
/* No comment provided by engineer. */
"Renegotiate" = "Пересогласовать";
/* No comment provided by engineer. */
"Renegotiate encryption" = "Пересогласовать шифрование";
/* No comment provided by engineer. */
"Renegotiate encryption?" = "Пересогласовать шифрование?";
/* chat item action */
"Reply" = "Ответить";
@@ -2497,6 +2692,9 @@
/* No comment provided by engineer. */
"Security code" = "Код безопасности";
/* chat item text */
"security code changed" = "код безопасности изменился";
/* No comment provided by engineer. */
"Select" = "Выбрать";
@@ -2518,6 +2716,9 @@
/* No comment provided by engineer. */
"Send a live message - it will update for the recipient(s) as you type it" = "Отправить живое сообщение — оно будет обновляться для получателей по мере того, как Вы его вводите";
/* No comment provided by engineer. */
"Send delivery receipts to" = "Отправка отчётов о доставке";
/* No comment provided by engineer. */
"Send direct message" = "Отправить сообщение";
@@ -2539,6 +2740,9 @@
/* No comment provided by engineer. */
"Send questions and ideas" = "Отправьте вопросы и идеи";
/* No comment provided by engineer. */
"Send receipts" = "Отправлять отчёты о доставке";
/* No comment provided by engineer. */
"Send them from gallery or custom keyboards." = "Отправьте из галереи или из дополнительных клавиатур.";
@@ -2548,9 +2752,21 @@
/* No comment provided by engineer. */
"Sender may have deleted the connection request." = "Отправитель мог удалить запрос на соединение.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts in all visible chat profiles." = "Отправка отчётов о доставке будет включена для всех контактов во всех видимых профилях чата.";
/* No comment provided by engineer. */
"Sending delivery receipts will be enabled for all contacts." = "Отправка отчётов о доставке будет включена для всех контактов.";
/* No comment provided by engineer. */
"Sending file will be stopped." = "Отправка файла будет остановлена.";
/* No comment provided by engineer. */
"Sending receipts is disabled for %lld contacts" = "Отправка отчётов о доставке выключена для %lld контактов";
/* No comment provided by engineer. */
"Sending receipts is enabled for %lld contacts" = "Отправка отчётов о доставке включена для %lld контактов";
/* No comment provided by engineer. */
"Sending via" = "Отправка через";
@@ -2686,6 +2902,9 @@
/* No comment provided by engineer. */
"SMP servers" = "SMP серверы";
/* No comment provided by engineer. */
"Some non-fatal errors occurred during import - you may see Chat console for more details." = "Во время импорта произошли некоторые ошибки - для получения более подробной информации вы можете обратиться к консоли.";
/* notification title */
"Somebody" = "Контакт";
@@ -2815,6 +3034,9 @@
/* No comment provided by engineer. */
"The created archive is available via app Settings / Database / Old database archive." = "Созданный архив доступен через Настройки приложения.";
/* No comment provided by engineer. */
"The encryption is working and the new encryption agreement is not required. It may result in connection errors!" = "Шифрование работает, и новое соглашение не требуется. Это может привести к ошибкам соединения!";
/* No comment provided by engineer. */
"The group is fully decentralized it is visible only to the members." = "Группа полностью децентрализована — она видна только членам.";
@@ -2839,6 +3061,9 @@
/* No comment provided by engineer. */
"The profile is only shared with your contacts." = "Профиль отправляется только Вашим контактам.";
/* No comment provided by engineer. */
"The second tick we missed! ✅" = "Вторая галочка - знать, что доставлено! ✅";
/* No comment provided by engineer. */
"The sender will NOT be notified" = "Отправитель не будет уведомлён";
@@ -2854,6 +3079,12 @@
/* No comment provided by engineer. */
"There should be at least one visible user profile." = "Должен быть хотя бы один открытый профиль пользователя.";
/* No comment provided by engineer. */
"These settings are for your current profile **%@**." = "Установки для Вашего активного профиля **%@**.";
/* No comment provided by engineer. */
"They can be overridden in contact settings" = "Они могут быть переопределены в настройках контактов";
/* 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." = "Это действие нельзя отменить — все полученные и отправленные файлы будут удалены. Изображения останутся в низком разрешении.";
@@ -2932,6 +3163,9 @@
/* No comment provided by engineer. */
"Unexpected migration state" = "Неожиданная ошибка при перемещении данных чата";
/* No comment provided by engineer. */
"Unfav." = "Не избр.";
/* No comment provided by engineer. */
"Unhide" = "Раскрыть";
@@ -3184,6 +3418,12 @@
/* No comment provided by engineer. */
"You can create it later" = "Вы можете создать его позже";
/* No comment provided by engineer. */
"You can enable later via Settings" = "Вы можете включить их позже в Настройках";
/* No comment provided by engineer. */
"You can enable them later via app Privacy & Security settings." = "Вы можете включить их позже в настройках Конфиденциальности.";
/* No comment provided by engineer. */
"You can hide or mute a user profile - swipe it to the right." = "Вы можете скрыть профиль или выключить уведомления - потяните его вправо.";

View File

@@ -121,7 +121,7 @@
<string name="la_authenticate">مصادقة</string>
<string name="send_disappearing_message_1_minute">1 دقيقة</string>
<string name="send_disappearing_message_30_seconds">30 ثانية</string>
<string name="icon_descr_cancel_live_message">إلغاء الرسالة الحية</string>
<string name="icon_descr_cancel_live_message">إلغاء الرسالة المباشرة</string>
<string name="cancel_verb">إلغاء</string>
<string name="network_session_mode_entity_description">سيتم استخدام اتصال TCP منفصل (وبيانات اعتماد SOCKS) <b> لكل جهة اتصال وعضو في المجموعة</b>.
\n<b> الرجاء ملاحظة</b>: إذا كان لديك العديد من التوصيلات ، فقد يكون استهلاك البطارية وحركة المرور أعلى بكثير وقد تفشل بعض الاتصالات.</string>
@@ -329,7 +329,7 @@
<string name="icon_descr_call_connecting">مكالمة جارية...</string>
<string name="enable_self_destruct">تفعيل التدمير الذاتي</string>
<string name="conn_event_ratchet_sync_started">الموافقة على التشفير…</string>
<string name="snd_conn_event_ratchet_sync_started">الموافقة على التشفير لـ%s</string>
<string name="snd_conn_event_ratchet_sync_started">الموافقة على التشفير لـ%s</string>
<string name="group_member_status_introduced">متصل (مقدم)</string>
<string name="conn_event_ratchet_sync_agreed">وافق التشفير</string>
<string name="conn_event_ratchet_sync_ok">التشفير نعم</string>
@@ -406,7 +406,7 @@
<string name="database_encryption_will_be_updated">سيتم تحديث عبارة مرور تشفير قاعدة البيانات وتخزينها في Keystore.</string>
<string name="info_row_database_id">معرّف قاعدة البيانات</string>
<string name="info_row_deleted_at">حُذِفت في</string>
<string name="ttl_d">%dd</string>
<string name="ttl_d">%d يوم</string>
<string name="ttl_days">%d أيام</string>
<string name="custom_time_picker_custom">مخصص</string>
<string name="v5_1_custom_themes_descr">تخصيص ومشاركة سمات الألوان.</string>
@@ -531,7 +531,7 @@
<string name="gallery_image_button">صورة</string>
<string name="if_you_cant_meet_in_person">إذا لم تتمكن من الالتقاء شخصيًا، اعرض رمز الاستجابة السريعة في مكالمة الفيديو، أو شارك الرابط.</string>
<string name="settings_section_title_incognito">وضع التخفي</string>
<string name="incognito">Incognito</string>
<string name="incognito">التخفي</string>
<string name="import_theme_error">خطأ في استيراد السمة</string>
<string name="if_you_choose_to_reject_the_sender_will_not_be_notified">إذا اخترت رفض، فلن يعلم المرسل</string>
<string name="how_to_use_your_servers">كيفية استخدام خوادمك</string>
@@ -587,12 +587,12 @@
<string name="large_file">الملف كبير!</string>
<string name="learn_more">معرفة المزيد</string>
<string name="v4_3_irreversible_message_deletion">حذف رسالة لا رجعة فيه</string>
<string name="v4_4_live_messages">رسائل حية</string>
<string name="v4_4_live_messages">رسائل مباشرة</string>
<string name="smp_servers_invalid_address">عنوان الخادم غير صالح!</string>
<string name="invalid_migration_confirmation">تأكيد الترحيل غير صالح</string>
<string name="group_member_status_invited">مدعو</string>
<string name="image_descr_link_preview">رابط معاينة الصورة</string>
<string name="live_message">رسالة حية!</string>
<string name="live_message">رسالة مباشرة!</string>
<string name="italic_text">مائل</string>
<string name="email_invite_subject">لنتحدث في SimpleX Chat</string>
<string name="lock_after">قفل بعد</string>
@@ -604,4 +604,202 @@
<string name="leave_group_button">غادِر</string>
<string name="leave_group_question">مغادرة المجموعة؟</string>
<string name="group_member_status_left">غادر</string>
<string name="delivery_receipts_are_disabled">إيصالات التسليم معطلة!</string>
<string name="no_call_on_lock_screen">تعطيل</string>
<string name="timed_messages">رسائل تختفي</string>
<string name="auth_device_authentication_is_disabled_turning_off">عٌطل مصادقة الجهاز. جاري إيقاف تشغيل قفل SimpleX.</string>
<string name="ttl_m">%d شهر</string>
<string name="ttl_weeks">%d أسابيع</string>
<string name="ttl_w">%d أسبوع</string>
<string name="v4_4_disappearing_messages">رسائل تختفي</string>
<string name="failed_to_create_user_duplicate_title">اسم العرض مكرر!</string>
<string name="smp_server_test_disconnect">قطع الاتصال</string>
<string name="auth_device_authentication_is_not_enabled_you_can_turn_on_in_settings_once_enabled">مصادقة الجهاز غير مفعّلة. يمكنك تشغيل قفل SimpleX عبر الإعدادات، بمجرد تفعيل مصادقة الجهاز.</string>
<string name="smp_server_test_download_file">نزّل الملف</string>
<string name="auth_disable_simplex_lock">تعطيل قفل SimpleX</string>
<string name="edit_verb">تحرير</string>
<string name="display_name__field">اسم العرض:</string>
<string name="icon_descr_email">البريد الإلكتروني</string>
<string name="display_name">اسم العرض</string>
<string name="integrity_msg_duplicate">كرر الرسالة</string>
<string name="share_text_disappears_at">يختفي في: %s</string>
<string name="disappearing_prohibited_in_this_chat">الرسائل المختفية ممنوعة في هذه الدردشة.</string>
<string name="status_e2e_encrypted">مشفر بين الطريفين</string>
<string name="icon_descr_edited">حُرر</string>
<string name="downgrade_and_open_chat">الرجوع إلى إصدار سابق وفتح الدردشة</string>
<string name="direct_messages">رسائل مباشرة</string>
<string name="disappearing_messages_are_prohibited">الرسائل المختفية ممنوعة في هذه المجموعة.</string>
<string name="button_edit_group_profile">تحرير ملف تعريف المجموعة</string>
<string name="dont_show_again">لا تُظهر مرة أخرى</string>
<string name="settings_section_title_device">الجهاز</string>
<string name="ttl_week">%d أسبوع</string>
<string name="display_name_cannot_contain_whitespace">لا يمكن أن يحتوي اسم العرض على مسافة فارغة.</string>
<string name="encrypted_video_call">مكالمة فيديو مشفرة بين الطريفين</string>
<string name="direct_messages_are_prohibited_in_chat">الرسائل المباشرة بين الأعضاء ممنوعة في هذه المجموعة.</string>
<string name="ttl_hour">%d ساعة</string>
<string name="ttl_h">%d ساعة</string>
<string name="ttl_hours">%d ساعات</string>
<string name="ttl_mth">%d شهر</string>
<string name="edit_image">تحرير الصورة</string>
<string name="total_files_count_and_size">%d ملف/ات بإجمالي الحجم %s</string>
<string name="ttl_s">%d ثانية</string>
<string name="receipts_section_contacts">جهات الاتصال</string>
<string name="receipts_contacts_disable_for_all">تعطيل للجميع</string>
<string name="receipts_contacts_disable_keep_overrides">تعطيل (الاحتفاظ بالتجاوزات)</string>
<string name="receipts_contacts_title_disable">تعطيل الإيصالات؟</string>
<string name="mtr_error_different">الهجرة المختلفة في التطبيق / قاعدة البيانات: %s / %s</string>
<string name="info_row_disappears_at">يختفي في</string>
<string name="conn_level_desc_direct">مباشر</string>
<string name="ttl_min">%d دقيقة</string>
<string name="v4_5_multiple_chat_profiles_descr">أسماء مختلفة، صور الأفاتار وعزل النقل.</string>
<string name="ttl_month">%d شهر</string>
<string name="ttl_months">%d شهور</string>
<string name="v5_2_more_things">عدد قليل من الأشياء</string>
<string name="delivery_receipts_title">إيصالات التسليم!</string>
<string name="dont_enable_receipts">لا تُفعل</string>
<string name="la_minutes">%d دقائق</string>
<string name="la_seconds">%d ثواني</string>
<string name="encrypted_audio_call">مكالمة صوتية مشفرة بين الطريفين</string>
<string name="ttl_sec">%d ثانية</string>
<string name="icon_descr_server_status_disconnected">قُطع الاتصال</string>
<string name="disappearing_message">رسالة تختفي</string>
<string name="dont_create_address">لا تنشئ عنوانًا</string>
<string name="error_setting_network_config">خطأ في تحديث تضبيط الشبكة</string>
<string name="error_receiving_file">خطأ في استلام الملف</string>
<string name="failed_to_active_user_title">خطأ في تبديل الملف الشخصي!</string>
<string name="v5_2_fix_encryption">حافظ على اتصالاتك</string>
<string name="ensure_xftp_server_address_are_correct_format_and_unique">تأكد من أن عناوين خادم XFTP بالتنسيق الصحيح، وأن تكون مفصولة بأسطر وليست مكررة.</string>
<string name="marked_deleted_description">وضع علامة \"محذوف\"</string>
<string name="color_surface">القوائم والتنبيهات</string>
<string name="error_saving_xftp_servers">خطأ في حفظ خوادم XFTP</string>
<string name="error_loading_smp_servers">خطأ في تحميل خوادم SMP</string>
<string name="error_loading_xftp_servers">خطأ في تحميل خوادم XFTP</string>
<string name="ensure_smp_server_address_are_correct_format_and_unique">تأكد من أن عناوين خادم SMP في التنسيق الصحيح، وأن تكون مفصولة بأسطر وليست مكررة.</string>
<string name="markdown_help">مساعدة ماركداون</string>
<string name="group_member_role_member">عضو</string>
<string name="markdown_in_messages">ماركداون في الرسائل</string>
<string name="error_importing_database">خطأ في استيراد قاعدة بيانات الدردشة</string>
<string name="error_with_info">خطأ: %s</string>
<string name="member_info_section_title_member">عضو</string>
<string name="import_theme_error_desc">تأكد من أن الملف يحتوي على بناء جملة YAML الصحيح. تصدير النسق للحصول على مثال لهيكل ملف النسق.</string>
<string name="v4_3_voice_messages_desc">40 ثانية كحد أقصى، يتم استلامها على الفور.</string>
<string name="error_saving_ICE_servers">خطأ في حفظ خوادم ICE</string>
<string name="make_private_connection">إجراء اتصال خاص</string>
<string name="error_stopping_chat">خطأ في إيقاف الدردشة</string>
<string name="error_loading_details">خطأ في تحميل التفاصيل</string>
<string name="allow_accepting_calls_from_lock_screen">تفعيل المكالمات من شاشة القفل عبر الإعدادات.</string>
<string name="enable_automatic_deletion_question">تفعيل الحذف التلقائي للرسائل؟</string>
<string name="error_removing_member">خطأ في إزالة العضو</string>
<string name="error_setting_address">خطأ في تحديد العنوان</string>
<string name="mark_read">وضع علامة القراءة</string>
<string name="receipts_contacts_enable_for_all">تفعيل للجميع</string>
<string name="receipts_contacts_enable_keep_overrides">تفعيل (الاحتفاظ بالتجاوزات)</string>
<string name="receipts_contacts_title_enable">تفعيل الإيصالات؟</string>
<string name="error_starting_chat">خطأ في بدء الدردشة</string>
<string name="error_exporting_chat_database">خطأ في تصدير قاعدة بيانات الدردشة</string>
<string name="member_will_be_removed_from_group_cannot_be_undone">ستتم إزالة العضو من المجموعة - لا يمكن التراجع عن هذا!</string>
<string name="make_profile_private">اجعل الملف الشخصي خاصًا!</string>
<string name="v5_2_favourites_filter_descr">فلترة الدردشات غير المقروءة والمفضلة.</string>
<string name="v5_2_favourites_filter">البحث عن الدردشات بشكل أسرع</string>
<string name="enable_receipts_all">تفعيل</string>
<string name="v5_2_disappear_one_message_descr">حتى عندما يتم تعطيله في المحادثة.</string>
<string name="v5_2_fix_encryption_descr">إصلاح التشفير بعد استعادة النسخ الاحتياطية.</string>
<string name="v5_2_disappear_one_message">اجعل رسالة واحدة تختفي</string>
<string name="error_enabling_delivery_receipts">خطأ في تفعيل إيصالات التسليم!</string>
<string name="error_saving_smp_servers">خطأ في حفظ خوادم SMP</string>
<string name="error_sending_message">خطأ في إرسال الرسالة</string>
<string name="error_joining_group">خطأ في الانضمام إلى المجموعة</string>
<string name="error_synchronizing_connection">خطأ في مزامنة الاتصال</string>
<string name="auth_log_in_using_credential">تسجيل الدخول باستخدام بيانات الاعتماد الخاصة بك</string>
<string name="error_saving_file">خطأ في حفظ الملف</string>
<string name="mark_unread">وضع علامة غير مقروء</string>
<string name="ensure_ICE_server_address_are_correct_format_and_unique">تأكد من أن عناوين خادم WebRTC ICE بالتنسيق الصحيح، وأن تكون مفصولة بأسطر وليست مكررة.</string>
<string name="mark_code_verified">وضع علامة تَحقق منه</string>
<string name="error_saving_user_password">خطأ في حفظ كلمة مرور المستخدم</string>
<string name="many_people_asked_how_can_it_deliver">سأل الكثير من الناس: <i>إذا SimpleX ليس لديه معرّفات مستخدم، كيف يمكنه توصيل الرسائل؟</i></string>
<string name="error_saving_group_profile">خطأ في حفظ ملف تعريف المجموعة</string>
<string name="notification_preview_mode_message">رسالة نصية</string>
<string name="message_reactions">ردود فعل الرسائل</string>
<string name="delete_message_mark_deleted_warning">سيتم وضع علامة على الرسالة للحذف. سيتمكن المستلم/مون من الكشف عن هذه الرسالة.</string>
<string name="delete_message_cannot_be_undone_warning">سيتم حذف الرسالة - لا يمكن التراجع عن هذا!</string>
<string name="message_delivery_error_title">خطأ في تسليم الرسالة</string>
<string name="network_and_servers">الشبكة والخوادم</string>
<string name="moderate_verb">إشراف</string>
<string name="mobile_tap_open_in_mobile_app_then_tap_connect_in_app">📱 للجوال: انقر فوق <b>فتح في تطبيق الجوال</b> ، ثم انقر فوق <b>اتصال</b> في التطبيق.</string>
<string name="share_text_moderated_at">تحت الإشراف في: %s</string>
<string name="message_reactions_prohibited_in_this_chat">ردود الفعل الرسائل ممنوعة في هذه الدردشة.</string>
<string name="moderated_item_description">مُشرف بواسطة %s</string>
<string name="message_delivery_error_desc">من المرجح أن جهة الاتصال هذه قد حذفت الاتصال بك.</string>
<string name="v5_1_message_reactions">ردود فعل الرسائل</string>
<string name="callstatus_missed">مكالمة فائتة</string>
<string name="info_row_moderated_at">تحت الإشراف في</string>
<string name="v4_6_reduced_battery_usage_descr">المزيد من التحسينات قريبا!</string>
<string name="muted_when_inactive">كتم عندما يكون غير نشط!</string>
<string name="v4_5_reduced_battery_usage_descr">المزيد من التحسينات قريبا!</string>
<string name="settings_section_title_messages">الرسائل والملفات</string>
<string name="moderated_description">تحت الإشراف</string>
<string name="mute_chat">كتم</string>
<string name="messages_section_title">الرسائل</string>
<string name="chat_item_ttl_none">مطلقًا</string>
<string name="database_migrations">عمليات الترحيل: %s</string>
<string name="v5_2_message_delivery_receipts">إيصالات تسليم الرسائل!</string>
<string name="custom_time_unit_minutes">دقائق</string>
<string name="custom_time_unit_months">شهور</string>
<string name="v5_2_more_things_descr">- توصيل رسائل أكثر استقرارًا.
\n- مجموعات أفضل قليلاً.
\n- و اكثر!</string>
<string name="network_status">حالة الشبكة</string>
<string name="user_mute">كتم</string>
<string name="message_reactions_are_prohibited">ردود الفعل الرسائل ممنوعة في هذه المجموعة.</string>
<string name="icon_descr_more_button">المزيد</string>
<string name="network_settings_title">اعدادات الشبكة</string>
<string name="icon_descr_call_missed">مكالمة فائتة</string>
<string name="v4_5_message_draft">مسودة الرسالة</string>
<string name="v4_5_multiple_chat_profiles">ملفات تعريف دردشة متعددة</string>
<string name="settings_notification_preview_title">معاينة الإشعار</string>
<string name="status_no_e2e_encryption">لا يوجد تشفير بين الطريفين</string>
<string name="chat_preferences_no">لا</string>
<string name="notification_preview_new_message">رسالة جديدة</string>
<string name="images_limit_desc">يمكن إرسال 10 صور فقط في نفس الوقت</string>
<string name="feature_offered_item">متوفرة %s</string>
<string name="feature_offered_item_with_param">متوفرة %s: %2s</string>
<string name="notifications_will_be_hidden">سيتم تسليم الإشعارات فقط حتى يتوقف التطبيق!</string>
<string name="no_filtered_chats">لا توجد محادثات مفلترة</string>
<string name="no_spaces">لا يوجد مسافات</string>
<string name="no_received_app_files">لا توجد ملفات مستلمة أو مرسلة</string>
<string name="shutdown_alert_desc">ستتوقف الإشعارات عن العمل حتى تعيد تشغيل التطبيق</string>
<string name="new_passcode">رمز مرور جديد</string>
<string name="new_database_archive">أرشيف قاعدة بيانات جديدة</string>
<string name="ok">موافق</string>
<string name="network_use_onion_hosts_prefer_desc">سيتم استخدام مضيفات البصل عند توفرها.</string>
<string name="network_use_onion_hosts_no_desc">لن يتم استخدام مضيفات البصل.</string>
<string name="no_contacts_selected">لم تٌحدد جهات اتصال</string>
<string name="v4_6_group_moderation_descr">يمكن للمسؤولين الآن:
\n- حذف رسائل الأعضاء.
\n- تعطيل الأعضاء (دور \"المراقب\")</string>
<string name="settings_notifications_mode_title">خدمة الإشعار</string>
<string name="chat_preferences_off">غير مفعّل</string>`
<string name="chat_preferences_on">مفعل</string>
<string name="old_database_archive">أرشيف قاعدة البيانات القديمة</string>
<string name="feature_off">غير مفعّل</string>
<string name="one_time_link">رابط دعوة لمرة واحدة</string>
<string name="network_use_onion_hosts_required_desc_in_alert">سوف تكون مضيفات البصل مطلوبة للاتصال.</string>
<string name="group_member_role_observer">المراقب</string>
<string name="item_info_no_text">لا يوجد نص</string>
<string name="new_member_role">دور عضو جديد</string>
<string name="no_contacts_to_add">لا توجد جهات اتصال لإضافتها</string>
<string name="new_in_version">الجديد في %s</string>
<string name="no_details">لا يوجد تفاصيل</string>
<string name="notification_new_contact_request">طلب جهة أتصال جديدة</string>
<string name="la_no_app_password">لا يوجد رمز مرور للتطبيق</string>
<string name="no_history">لا يوجد سجل</string>
<string name="notifications">الإشعارات</string>
<string name="videos_limit_desc">يمكن إرسال 10 فيديوهات فقط في نفس الوقت</string>
<string name="add_contact">رابط دعوة لمرة واحدة</string>
<string name="network_use_onion_hosts_no">لا</string>
<string name="network_use_onion_hosts_required_desc">سوف تكون مضيفات البصل مطلوبة للاتصال.</string>
<string name="network_use_onion_hosts_prefer_desc_in_alert">سيتم استخدام مضيفات البصل عند توفرها.</string>
<string name="network_use_onion_hosts_no_desc_in_alert">لن يتم استخدام مضيفات البصل.</string>
<string name="self_destruct_new_display_name">اسم عرض جديد:</string>
<string name="new_passphrase">عبارة مرور جديدة…</string>
</resources>

View File

@@ -42,7 +42,7 @@
<string name="all_app_data_will_be_cleared">Всички данни от приложението бяха изтрити.</string>
<string name="chat_item_ttl_day">1 ден</string>
<string name="conn_event_ratchet_sync_started">съгласуване на криптиране…</string>
<string name="snd_conn_event_ratchet_sync_started">съгласуване на криптиране за %s</string>
<string name="snd_conn_event_ratchet_sync_started">съгласуване на криптиране за %s</string>
<string name="address_section_title">Адрес</string>
<string name="all_group_members_will_remain_connected">Всички членове на групата ще останат свързани.</string>
<string name="accept_feature">Приеми</string>
@@ -217,4 +217,226 @@
<string name="v5_0_app_passcode">Код за достъп до приложението</string>
<string name="v4_5_transport_isolation_descr">Чрез чат профил (по подразбиране) или чрез връзка (БЕТА).</string>
<string name="v5_1_better_messages">По-добри съобщения</string>
<string name="chat_is_stopped_indication">Чатът е спрян</string>
<string name="v4_4_verify_connection_security_desc">Сравнете кодовете за сигурност с вашите контакти.</string>
<string name="self_destruct_passcode_enabled">Кодът за достъп за самоунищожение е активиран!</string>
<string name="auth_device_authentication_is_disabled_turning_off">Идентификацията на устройството е деактивирано. Изключване на SimpleX заключване.</string>
<string name="auth_device_authentication_is_not_enabled_you_can_turn_on_in_settings_once_enabled">Идентификацията на устройството не е активирана. Можете да включите SimpleX заключване през Настройки, след като активирате идентификацията на устройството.</string>
<string name="auth_simplex_lock_turned_on">SimpleX заключване е включено</string>
<string name="connection_error_auth">Грешка при свързване (AUTH)</string>
<string name="display_name_connecting">свързване…</string>
<string name="switch_receiving_address">Промени адреса за получаване</string>
<string name="chat_database_deleted">Базата данни на чата е изтрита</string>
<string name="chat_is_running">Чатът работи</string>
<string name="chat_is_stopped">Чатът е спрян</string>
<string name="chat_database_section">БАЗА ДАННИ НА ЧАТА</string>
<string name="chat_database_imported">Базата данни на чат е импортирана</string>
<string name="confirm_new_passphrase">Потвърди новата парола…</string>
<string name="confirm_database_upgrades">Потвърди актуализаациите на базата данни</string>
<string name="chat_archive_header">Архив на чата</string>
<string name="rcv_group_event_member_connected">свързан</string>
<string name="snd_conn_event_switch_queue_phase_changing">промяна на адреса…</string>
<string name="snd_conn_event_switch_queue_phase_changing_for_member">промяна на адреса за %s…</string>
<string name="group_member_status_introduced">свързване (представен)</string>
<string name="clear_contacts_selection_button">Изчисти</string>
<string name="group_member_status_complete">завършен</string>
<string name="group_member_status_connected">свързан</string>
<string name="group_member_status_connecting">свързване</string>
<string name="group_member_status_accepted">свързване (прието)</string>
<string name="group_member_status_announced">свързване (обявено)</string>
<string name="group_member_status_intro_invitation">свързване (покана за представяне)</string>
<string name="change_role">Промени ролята</string>
<string name="info_row_connection">Връзка</string>
<string name="network_option_protocol_timeout">Време за изчакване на протокола</string>
<string name="network_option_protocol_timeout_per_kb">Време за изчакване на протокола за KB</string>
<string name="network_option_tcp_connection_timeout">Времето на изчакване за установяване на TCP връзка</string>
<string name="chat_preferences">Чат настройки</string>
<string name="v4_6_chinese_spanish_interface">Китайски и Испански интерфейс</string>
<string name="v5_0_app_passcode_descr">Задайте го вместо системната идентификация.</string>
<string name="v5_1_self_destruct_passcode">Код за достъп за самоунищожение</string>
<string name="v5_2_more_things">Още няколко неща</string>
<string name="connect_via_link_verb">Свързване</string>
<string name="server_connected">свързан</string>
<string name="server_connecting">свързване</string>
<string name="connection_local_display_name">връзка %1$d</string>
<string name="display_name_connection_established">установена е връзка</string>
<string name="smp_server_test_compare_file">Сравни файл</string>
<string name="smp_server_test_connect">Свързване</string>
<string name="connection_error">Грешка при свързване</string>
<string name="connection_timeout">Времето на изчакване за установяване на връзката изтече</string>
<string name="notifications_mode_periodic_desc">Проверява новите съобщения на всеки 10 минути за до 1 минута</string>
<string name="notification_contact_connected">Свързан</string>
<string name="la_current_app_passcode">Текущ kод за достъп</string>
<string name="la_enter_app_passcode">Въведете kодa за достъп</string>
<string name="la_no_app_password">Приложението няма kод за достъп</string>
<string name="la_lock_mode_passcode">Въвеждане на код за достъп</string>
<string name="la_notice_title_simplex_lock">SimpleX заключване</string>
<string name="la_change_app_passcode">Промени kодa за достъп</string>
<string name="la_lock_mode">Режим на SimpleX заключване</string>
<string name="la_lock_mode_system">Системна идентификация</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">За да защитите информацията си, включете SimpleX заключване.
\nЩе бъдете подканени да извършите идентификация, преди тази функция да бъде активирана.</string>
<string name="auth_disable_simplex_lock">Деактивирай SimpleX заключване</string>
<string name="auth_enable_simplex_lock">Активирай SimpleX заключване</string>
<string name="lock_not_enabled">SimpleX заключване не е активирано!</string>
<string name="you_can_turn_on_lock">Можете да включите SimpleX заключване през Настройки.</string>
<string name="auth_confirm_credential">Потвърдете вашите идентификационни данни</string>
<string name="your_chats">Чатове</string>
<string name="chat_with_developers">Чат с разработчиците</string>
<string name="contact_connection_pending">свързване…</string>
<string name="group_connection_pending">свързване…</string>
<string name="icon_descr_server_status_connected">Свързан</string>
<string name="confirm_verb">Потвърди</string>
<string name="switch_receiving_address_question">Промени адреса за получаване\?</string>
<string name="clear_verb">Изчисти</string>
<string name="clear_chat_menu_action">Изчисти</string>
<string name="clear_chat_button">Изчисти чата</string>
<string name="clear_chat_question">Изчисти чата\?</string>
<string name="icon_descr_close_button">Бутон за затваряне</string>
<string name="connect_button">Свързване</string>
<string name="connection_request_sent">Заявката за връзка е изпратена!</string>
<string name="smp_servers_check_address">Проверете адреса на сървъра и опитайте отново.</string>
<string name="clear_verification">Изчисти проверката</string>
<string name="chat_lock">SimpleX заключване</string>
<string name="chat_console">Чат конзола</string>
<string name="network_session_mode_user">Чат профил</string>
<string name="configure_ICE_servers">Конфигурирай ICE сървъри</string>
<string name="network_session_mode_entity">Връзка</string>
<string name="colored_text">цветен</string>
<string name="confirm_password">Потвърди парола</string>
<string name="confirm_passcode">Потвърди kодa за достъп</string>
<string name="enabled_self_destruct_passcode">Активирай kод за достъп за самоунищожение</string>
<string name="if_you_enter_passcode_data_removed">Ако въведете този kод за достъп, когато отваряте приложението, всички данни от приложението ще бъдат необратимо изтрити!</string>
<string name="if_you_enter_self_destruct_code">Ако въведете kодa за достъп за самоунищожение, докато отваряте приложението:</string>
<string name="incorrect_passcode">Неправилен kод за достъп</string>
<string name="new_passcode">Нов kод за достъп</string>
<string name="la_mode_passcode">Код за достъп</string>
<string name="passcode_changed">Кодът за достъп е променен!</string>
<string name="passcode_not_changed">Кодът за достъп не е променен!</string>
<string name="passcode_set">Кодът за достъп е зададен!</string>
<string name="self_destruct_passcode">Код за достъп за самоунищожение</string>
<string name="self_destruct_passcode_changed">Кодът за достъп за самоунищожение е променен!</string>
<string name="set_passcode">Задай kод за достъп</string>
<string name="submit_passcode">Изпрати</string>
<string name="change_lock_mode">Промяна на режима на заключване</string>
<string name="change_self_destruct_mode">Промени режима на самоунищожение</string>
<string name="change_self_destruct_passcode">Промени кода за достъп за самоунищожение</string>
<string name="settings_section_title_chats">ЧАТОВЕ</string>
<string name="chat_archive_section">АРХИВ НА ЧАТА</string>
<string name="rcv_conn_event_switch_queue_phase_changing">промяна на адреса…</string>
<string name="maximum_supported_file_size">В момента максималният поддържан размер на файла е %1$s.</string>
<string name="info_row_database_id">ID в базата данни</string>
<string name="share_text_database_id">ID в базата данни: %d</string>
<string name="receipts_section_contacts">Контакти</string>
<string name="settings_section_title_themes">ТЕМИ</string>
<string name="set_password_to_export_desc">Базата данни е криптирана с произволна парола. Моля, променете я преди експортиране.</string>
<string name="database_passphrase">Парола за базата данни</string>
<string name="delete_database">Изтрий базата данни</string>
<string name="delete_chat_profile_question">Изтриване на чат профила\?</string>
<string name="delete_files_and_media_question">Изтрий файлове и медия\?</string>
<string name="current_passphrase">Текуща парола…</string>
<string name="database_encrypted">Базата данни е криптирана!</string>
<string name="encrypted_with_random_passphrase">Базата данни е криптирана с произволна парола, можете да я промените.</string>
<string name="database_encryption_will_be_updated">Паролата за крптиране на базата данни ще бъде актуализирана и съхранена в Keystore.</string>
<string name="database_will_be_encrypted_and_passphrase_stored">Базата данни ще бъде криптирана и паролата ще бъде съхранена в Keystore.</string>
<string name="database_passphrase_will_be_updated">Паролата за криптиране на базата данни ще бъде актуализирана.</string>
<string name="database_error">Грешка в базата данни</string>
<string name="passphrase_is_different">Паролата на базата данни е различна от записаната в Keystore.</string>
<string name="database_passphrase_is_required">Изисква се паролата за базата данни, за да се отвори чата.</string>
<string name="database_downgrade">Понижаване на версията на базата данни</string>
<string name="database_upgrade">Актуализация на базата данни</string>
<string name="mtr_error_no_down_migration">версията на базата данни е по-нова от приложението, но няма миграция надолу за: %s</string>
<string name="archive_created_on_ts">Създаден на %1$s</string>
<string name="delete_archive">Изтрий архив</string>
<string name="delete_chat_archive_question">Изтриване на архива на чата\?</string>
<string name="rcv_group_event_group_deleted">групата изтрита</string>
<string name="icon_descr_contact_checked">Контактът е проверен</string>
<string name="group_member_status_creator">създател</string>
<string name="create_group_link">Създай групов линк</string>
<string name="button_create_group_link">Създай линк</string>
<string name="num_contacts_selected">%d избран(и) контакт(а).</string>
<string name="delete_group_question">Изтрий група\?</string>
<string name="delete_link">Изтрий линк</string>
<string name="delete_link_question">Изтрий линк\?</string>
<string name="info_row_deleted_at">Изтрито на</string>
<string name="share_text_deleted_at">Изтрито на: %s</string>
<string name="item_info_current">(текущ)</string>
<string name="create_secret_group_title">Създай тайна група</string>
<string name="users_delete_question">Изтриване на чат профила\?</string>
<string name="users_delete_profile_for">Изтрий чат профила за</string>
<string name="delete_chat_profile">Изтрий чат профила</string>
<string name="chat_preferences_contact_allows">Контактът позволява</string>
<string name="theme_dark">Тъмна</string>
<string name="chat_preferences_default">по подразбиране (%s)</string>
<string name="theme_light">Светла</string>
<string name="theme_simplex">SimpleX</string>
<string name="theme_system">Системна</string>
<string name="theme">Тема</string>
<string name="contact_preferences">Настройки за контакт</string>
<string name="full_deletion">Изтрий за всички</string>
<string name="ttl_day">%d ден</string>
<string name="ttl_days">%d дни</string>
<string name="delete_after">Изтрий след</string>
<string name="ttl_d">%dd</string>
<string name="v5_1_custom_themes">Персонализирани теми</string>
<string name="connect_via_contact_link">Свързване чрез линк на контакта\?</string>
<string name="connect_via_group_link">Свързване чрез групов линк\?</string>
<string name="connect_via_invitation_link">Свързване чрез линк за покана\?</string>
<string name="decryption_error">Грешка при декриптиране</string>
<string name="deleted_description">изтрит</string>
<string name="contact_already_exists">Контактът вече съществува</string>
<string name="smp_server_test_create_file">Създай файл</string>
<string name="smp_server_test_create_queue">Създай опашка</string>
<string name="smp_server_test_delete_file">Изтрий файл</string>
<string name="copy_verb">Копирай</string>
<string name="delete_verb">Изтрий</string>
<string name="icon_descr_context">Контекстна икона</string>
<string name="for_me_only">Изтрий за мен</string>
<string name="delete_contact_all_messages_deleted_cannot_undo_warning">Контактът и всички съобщения ще бъдат изтрити - това не може да бъде отменено!</string>
<string name="image_decoding_exception_title">Грешка при декодиране</string>
<string name="button_delete_contact">Изтрий контакт</string>
<string name="delete_contact_question">Изтрий контакт\?</string>
<string name="connect_via_link_or_qr">Свърване чрез линк/QR код</string>
<string name="copied">Копирано в клипборда</string>
<string name="share_one_time_link">Създай линк за еднократна покана</string>
<string name="create_group">Създай тайна група</string>
<string name="send_disappearing_message_custom_time">Персонализирано време</string>
<string name="connect_via_link_or_qr_from_clipboard_or_in_person">(сканирай или постави от клипборда)</string>
<string name="alert_title_contact_connection_pending">Контактът все още не е свързан!</string>
<string name="delete_contact_menu_action">Изтрий</string>
<string name="delete_group_menu_action">Изтрий</string>
<string name="connect_via_link">Свърване чрез линк</string>
<string name="create_one_time_link">Създай линк за еднократна покана</string>
<string name="database_passphrase_and_export">Парола за базата данни и експортиране</string>
<string name="contribute">Допринеси</string>
<string name="continue_to_next_step">Продължи</string>
<string name="core_version">Версия на ядрото: v%s</string>
<string name="create_address">Създай адрес</string>
<string name="create_address_and_let_people_connect">Създайте адрес, за да позволите на хората да се свързват с вас.</string>
<string name="create_simplex_address">Създай SimpleX адрес</string>
<string name="customize_theme_title">Персонализирай темата</string>
<string name="developer_options">Идентификатори в базата данни и опция за изолация на транспорта.</string>
<string name="delete_address">Изтрий адрес</string>
<string name="delete_address__question">Изтрий адрес\?</string>
<string name="theme_colors_section_title">ЦВЕТОВЕ НА ТЕМАТА</string>
<string name="create_profile_button">Създай</string>
<string name="create_profile">Създай профил</string>
<string name="delete_image">Изтрий изображение</string>
<string name="create_your_profile">Създай своя профил</string>
<string name="decentralized">Децентрализиран</string>
<string name="status_contact_has_e2e_encryption">контактът има e2e криптиране</string>
<string name="status_contact_has_no_e2e_encryption">контактът няма e2e криптиране</string>
<string name="delete_files_and_media_all">Изтрий всички файлове</string>
<string name="delete_files_and_media_for_all_users">Изтрий файловете за всички чат профили</string>
<string name="database_will_be_encrypted">Базата данни ще бъде криптирана.</string>
<string name="button_delete_group">Изтрий група</string>
<string name="dark_theme">Тъмна тема</string>
<string name="export_theme">Експортиране на тема</string>
<string name="import_theme">Импортиране на тема</string>
<string name="import_theme_error">Грешка при импортиране на тема</string>
<string name="import_theme_error_desc">Уверете се, че файлът има правилен YAML синтаксис. Експортирайте тема, за да имате пример за файловата структура на темата.</string>
<string name="contacts_can_mark_messages_for_deletion">Контактите могат да маркират съобщения за изтриване; ще можете да ги разглеждате.</string>
<string name="custom_time_picker_custom">персонализиран</string>
<string name="v5_1_custom_themes_descr">Персонализирайте и споделяйте цветови теми.</string>
<string name="custom_time_unit_days">дни</string>
</resources>

View File

@@ -168,7 +168,6 @@
<string name="icon_descr_server_status_connected">Připojeno</string>
<string name="icon_descr_server_status_disconnected">Odpojeno</string>
<string name="icon_descr_server_status_error">Chyba</string>
<string name="switch_receiving_address_desc">Tato funkce je experimentální! Bude fungovat pouze v případě, že druhý klient má nainstalovanou verzi 4.2. Po dokončení změny adresy by se měla v konverzaci zobrazit zpráva - zkontrolujte, zda můžete od tohoto kontaktu (nebo člena skupiny) stále přijímat zprávy.</string>
<string name="switch_receiving_address_question">Přepnout přijímací adresu\?</string>
<string name="send_verb">Poslat</string>
<string name="you_need_to_allow_to_send_voice">Abyste mohli odesílat hlasové zprávy, musíte svému kontaktu odesílání hlasových zpráv povolit.</string>
@@ -252,7 +251,7 @@
<string name="how_it_works">Jak to funguje</string>
<string name="how_simplex_works">Jak funguje SimpleX</string>
<string name="only_client_devices_store_contacts_groups_e2e_encrypted_messages"><![CDATA[Pouze klientská zařízení ukládají uživatelské profily, kontakty, skupiny a zprávy odesílané pomocí <b>2 vrstvého koncového šifrování</b>.]]></string>
<string name="onboarding_notifications_mode_title">Oznámení</string>
<string name="onboarding_notifications_mode_title">Soukromé oznámení</string>
<string name="onboarding_notifications_mode_periodic">Pravidelné</string>
<string name="ignore">Ignorovat</string>
<string name="call_already_ended">Hovor již skončil!</string>
@@ -473,7 +472,7 @@
<string name="member_role_will_be_changed_with_notification">Role bude změněna na \"%s\". Všichni ve skupině budou informováni.</string>
<string name="error_removing_member">Chyba odebírání člena</string>
<string name="error_saving_group_profile">Chyba ukládání profilu skupiny</string>
<string name="network_option_seconds_label">vteřin</string>
<string name="network_option_seconds_label">vteřiny</string>
<string name="incognito_info_allows">Umožňuje mít v jednom chat profilu mnoho anonymních spojení bez sdílení údajů mezi nimi.</string>
<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>
@@ -662,7 +661,7 @@
<string name="we_do_not_store_contacts_or_messages_on_servers">Na serverech neukládáme žádné vaše kontakty ani zprávy (po doručení).</string>
<string name="your_profile_is_stored_on_your_device">Váš profil, kontakty a doručené zprávy jsou uloženy ve vašem zařízení.</string>
<string name="display_name">Zobrazované jméno</string>
<string name="full_name_optional__prompt">Celé jméno (volitelné)</string>
<string name="full_name_optional__prompt">Celé Jméno (volitelné)</string>
<string name="create_profile_button">Vytvořit</string>
<string name="how_to_use_markdown">Jak používat markdown</string>
<string name="you_can_use_markdown_to_format_messages__prompt">K formátování zpráv můžete použít markdown:</string>
@@ -1099,7 +1098,6 @@
<string name="alert_text_decryption_error_n_messages_failed_to_decrypt">%1$d zprávy se nepodařilo dešifrovat.</string>
<string name="alert_text_decryption_error_too_many_skipped">%1$d zprývy přeskočeny.</string>
<string name="alert_text_fragment_please_report_to_developers">Nahlaste to prosím vývojářům.</string>
<string name="alert_text_fragment_permanent_error_reconnect">Tato chyba je pro toto připojení trvalá, připojte se znovu.</string>
<string name="alert_text_fragment_encryption_out_of_sync_old_database">Může se to stát, když vy nebo vaše připojení použijete starou zálohu databáze.</string>
<string name="no_spaces">Žádné mezery!</string>
<string name="revoke_file__message">Soubor bude smazán ze serverů.</string>
@@ -1222,7 +1220,7 @@
<string name="v5_1_self_destruct_passcode">Samodestrukční heslo</string>
<string name="v5_1_japanese_portuguese_interface">Japonské a portugalské uživatelské rozhraní</string>
<string name="custom_time_unit_minutes">minut</string>
<string name="custom_time_unit_seconds">vteřin</string>
<string name="custom_time_unit_seconds">vteřiny</string>
<string name="whats_new_thanks_to_users_contribute_weblate">Díky uživatelům - překládejte prostřednictvím Weblate!</string>
<string name="v5_1_better_messages_descr">- 5 minutové hlasové zprávy.
\n- vlastní čas mizení.
@@ -1268,4 +1266,76 @@
<string name="settings_shutdown">Vypnout</string>
<string name="settings_restart_app">Restartovat</string>
<string name="la_mode_off">Vypnuto</string>
<string name="delivery_receipts_are_disabled">Potvrzení o doručení jsou vypnuté!</string>
<string name="v5_2_more_things">Ještě pár věcí</string>
<string name="snd_conn_event_ratchet_sync_started">povoluji šifrování pro %s…</string>
<string name="receipts_section_contacts">Kontakty</string>
<string name="delivery_receipts_title">Potvrzení o doručení!</string>
<string name="receipts_contacts_disable_for_all">Vypnout pro všechny</string>
<string name="v5_2_favourites_filter">Najděte chaty rychleji</string>
<string name="conn_event_ratchet_sync_agreed">šifrování povoleno</string>
<string name="v5_2_fix_encryption_descr">Opravit šifrování po obnovení zálohy.</string>
<string name="fix_connection_not_supported_by_group_member">Opravit nepodporované členem skupiny</string>
<string name="fix_connection_not_supported_by_contact">Opravit nepodporované kontaktem</string>
<string name="v5_2_fix_encryption">Zachovat vaše připojení</string>
<string name="v5_2_more_things_descr">- více stabilní doručovaní zpráv.
\n- o trochu lepší skupiny.
\n- a více!</string>
<string name="snd_conn_event_ratchet_sync_agreed">šifrování povoleno pro %s</string>
<string name="snd_conn_event_ratchet_sync_required">vyžadováno opětovné vyjednávání šifrování pro %s</string>
<string name="receipts_contacts_override_disabled">Odesílání potvrzení o doručení je vypnuto pro %d kontakty.</string>
<string name="sending_delivery_receipts_will_be_enabled_all_profiles">Odesílání potvrzení o doručení bude povoleno pro všechny kontakty ve všech viditelných chat profilech.</string>
<string name="receipts_section_description">Toto nastavení je pro váš aktuální profil</string>
<string name="conn_event_ratchet_sync_allowed">opětovné vyjednávání šifrování povoleno</string>
<string name="snd_conn_event_ratchet_sync_allowed">opětovné vyjednávání šifrování povoleno pro %s</string>
<string name="conn_event_ratchet_sync_required">vyžadováno opětovné vyjednávání šifrování</string>
<string name="error_aborting_address_change">Chyba přerušení změny adresy</string>
<string name="abort_switch_receiving_address_confirm">Přerušit</string>
<string name="abort_switch_receiving_address_question">Přerušit změnu adresy\?</string>
<string name="settings_section_title_app">Aplikace</string>
<string name="no_filtered_chats">Žádné filtrované chaty</string>
<string name="abort_switch_receiving_address_desc">Změna adresy bude přerušena. Budou použity staré přijímací adresy.</string>
<string name="favorite_chat">Oblíbené</string>
<string name="unfavorite_chat">Odoblíbit</string>
<string name="abort_switch_receiving_address">Přerušit změnu adresy</string>
<string name="allow_to_send_files">Povolit odesílání souborů a médii.</string>
<string name="group_members_can_send_files">Členové skupiny mohou posílat soubory a média.</string>
<string name="only_owners_can_enable_files_and_media">Pouze majitelé skupiny mohou povolit soubory a média.</string>
<string name="files_are_prohibited_in_group">Soubory a média jsou zakázány v této skupině.</string>
<string name="receipts_contacts_disable_keep_overrides">Vypnout (zachovat přepsání)</string>
<string name="receipts_contacts_enable_for_all">Povolit pro všechny</string>
<string name="receipts_contacts_enable_keep_overrides">Povolit (zachovat přepisování)</string>
<string name="receipts_contacts_override_enabled">Odesílání potvrzení o doručení je povoleno pro %d kontakty</string>
<string name="receipts_contacts_title_disable">Vypnout potvrzení\?</string>
<string name="receipts_contacts_title_enable">Povolit potvrzení\?</string>
<string name="receipts_section_description_1">Mohou být přepsány v nastavení kontaktů</string>
<string name="conn_event_ratchet_sync_ok">šifrování ok</string>
<string name="conn_event_ratchet_sync_started">povoluji šifrování…</string>
<string name="snd_conn_event_ratchet_sync_ok">šifrování ok pro %s</string>
<string name="rcv_conn_event_verification_code_reset">bezpečnostní kód změněn</string>
<string name="send_receipts">Odeslat potvrzení</string>
<string name="sender_at_ts">%s na %s</string>
<string name="fix_connection_confirm">Opravit</string>
<string name="fix_connection">Opravit připojení</string>
<string name="fix_connection_question">Opravit připojení\?</string>
<string name="renegotiate_encryption">Znovu vyjednat šifrování</string>
<string name="files_and_media">Soubory a média</string>
<string name="prohibit_sending_files">Zakázat odesílání souborů a médií.</string>
<string name="v5_2_message_delivery_receipts">Potvrzení o doručení zprávy!</string>
<string name="v5_2_disappear_one_message_descr">I při vypnutí v konverzaci.</string>
<string name="v5_2_favourites_filter_descr">Filtrovat nepřečtené a oblíbené chaty.</string>
<string name="v5_2_disappear_one_message">Nechat jednu zprávu zmizet</string>
<string name="dont_enable_receipts">Nepovolovat</string>
<string name="enable_receipts_all">Povolit</string>
<string name="sending_delivery_receipts_will_be_enabled">Odesílání potvrzení o doručení bude povoleno pro všechny kontakty.</string>
<string name="you_can_enable_delivery_receipts_later">Můžete povolit později v Nastavení</string>
<string name="error_enabling_delivery_receipts">Chyba povolení potvrzení o doručení!</string>
<string name="you_can_enable_delivery_receipts_later_alert">Můžete je povolit později v nastavení Soukromí &amp; Bezpečnosti aplikace</string>
<string name="sync_connection_force_question">Znovu vyjednat šifrování\?</string>
<string name="sync_connection_force_confirm">Znovu vyjednat</string>
<string name="sync_connection_force_desc">Šifrování funguje a nové povolení šifrování není vyžadováno. To může vyvolat chybu v připojení!</string>
<string name="error_synchronizing_connection">Chyba synchronizace připojení</string>
<string name="files_and_media_prohibited">Soubory a média jsou zakázány!</string>
<string name="in_reply_to">V odpovědi na</string>
<string name="no_history">Žádná historie</string>
</resources>

View File

@@ -1388,4 +1388,38 @@
<string name="fix_connection_not_supported_by_group_member">Reparatur wird vom Gruppenmitglied nicht unterstützt</string>
<string name="sender_at_ts">%s an %s</string>
<string name="fix_connection">Verbindung reparieren</string>
<string name="delivery_receipts_are_disabled">Empfangsbestätigungen sind deaktiviert!</string>
<string name="delivery_receipts_title">Empfangsbestätigungen!</string>
<string name="error_enabling_delivery_receipts">Fehler beim Aktivieren der Empfangsbestätigungen!</string>
<string name="receipts_contacts_disable_for_all">Für Alle deaktivieren</string>
<string name="enable_receipts_all">Aktivieren</string>
<string name="v5_2_favourites_filter">Chats schneller finden</string>
<string name="v5_2_disappear_one_message">Eine verschwindende Nachricht verfassen</string>
<string name="you_can_enable_delivery_receipts_later">Sie können diese später in den Einstellungen aktivieren</string>
<string name="receipts_contacts_enable_keep_overrides">Aktivieren (vorgenommene Einstellungen bleiben erhalten)</string>
<string name="v5_2_favourites_filter_descr">Nach ungelesenen und favorisierten Chats filtern.</string>
<string name="sending_delivery_receipts_will_be_enabled_all_profiles">Das Senden von Empfangsbestätigungen an alle Kontakte in allen sichtbaren Chat-Profilen wird aktiviert.</string>
<string name="receipts_contacts_override_disabled">Das Senden von Empfangsbestätigungen an %d Kontakte ist deaktiviert</string>
<string name="receipts_section_description">Diese Einstellungen gelten für Ihr aktuelles Profil</string>
<string name="receipts_section_description_1">Diese können in den Kontakt-Einstellungen überschrieben werden</string>
<string name="receipts_section_contacts">Kontakte</string>
<string name="receipts_contacts_title_disable">Empfangsbestätigungen deaktivieren\?</string>
<string name="receipts_contacts_title_enable">Empfangsbestätigungen aktivieren\?</string>
<string name="receipts_contacts_override_enabled">Das Senden von Empfangsbestätigungen an %d Kontakte ist aktiviert</string>
<string name="receipts_contacts_enable_for_all">Für Alle aktivieren</string>
<string name="settings_section_title_delivery_receipts">EMPFANGSBESTÄTIGUNGEN SENDEN AN</string>
<string name="receipts_contacts_disable_keep_overrides">Deaktivieren (vorgenommene Einstellungen bleiben erhalten)</string>
<string name="send_receipts">Empfangsbestätigungen senden</string>
<string name="v5_2_fix_encryption">Ihre Verbindungen beibehalten</string>
<string name="v5_2_message_delivery_receipts">Empfangsbestätigungen für Nachrichten!</string>
<string name="v5_2_message_delivery_receipts_descr">Das zweite Häkchen, welches wir vermisst haben! ✅</string>
<string name="v5_2_fix_encryption_descr">Reparatur der Verschlüsselung nach wiedereinspielen von Backups.</string>
<string name="v5_2_more_things">Ein paar weitere Dinge</string>
<string name="v5_2_disappear_one_message_descr">Auch wenn sie im Chat deaktiviert sind.</string>
<string name="v5_2_more_things_descr">- stabilere Zustellung von Nachrichten.
\n- ein bisschen verbesserte Gruppen.
\n- und mehr!</string>
<string name="dont_enable_receipts">Nicht aktivieren</string>
<string name="sending_delivery_receipts_will_be_enabled">Das Senden von Empfangsbestätigungen an alle Kontakte wird aktiviert.</string>
<string name="you_can_enable_delivery_receipts_later_alert">Sie können diese später in den Datenschutz &amp; Sicherheits-Einstellungen der App aktivieren.</string>
</resources>

View File

@@ -55,7 +55,7 @@
<string name="users_delete_all_chats_deleted">Se eliminarán todos los chats y mensajes. ¡No podrá deshacerse!</string>
<string name="accept_feature">Aceptar</string>
<string name="allow_to_send_disappearing">Se permiten mensajes temporales.</string>
<string name="keychain_is_storing_securely">Android Keystore se utiliza para almacenar de forma segura la contraseña - permite que el servicio de notificación funcione.</string>
<string name="keychain_is_storing_securely">Android Keystore se usará para almacenar de forma segura la contraseña - permite que el servicio de notificación funcione.</string>
<string name="users_add">Añadir perfil</string>
<string name="incognito_random_profile_description">Se enviará un perfil aleatorio a tu contacto</string>
<string name="color_primary">Color</string>
@@ -119,7 +119,7 @@
<string name="delete_messages">Eliminar mensaje</string>
<string name="database_encrypted">¡Base de datos cifrada!</string>
<string name="encrypted_with_random_passphrase">La base de datos está cifrada con una contraseña aleatoria, puedes cambiarla.</string>
<string name="database_error">Error en base de datos</string>
<string name="database_error">Error base de datos</string>
<string name="database_passphrase_is_required">Para abrir la aplicación se requiere la contraseña de la base de datos</string>
<string name="rcv_group_event_member_connected">conectado</string>
<string name="button_create_group_link">Crear enlace</string>
@@ -142,7 +142,7 @@
<string name="group_member_status_announced">conectando (anunciado)</string>
<string name="connection_local_display_name">conexión %1$d</string>
<string name="connect_via_link_or_qr">Conecta vía enlace / Código QR</string>
<string name="delete_contact_all_messages_deleted_cannot_undo_warning">El contacto y todos los mensajes serán eliminados. ¡No podrá deshacerse!</string>
<string name="delete_contact_all_messages_deleted_cannot_undo_warning">El contacto y todos los mensajes serán eliminados. ¡No se podrá deshacer!</string>
<string name="icon_descr_contact_checked">Contacto verificado</string>
<string name="status_contact_has_e2e_encryption">el contacto dispone de cifrado de extremo a extremo</string>
<string name="smp_server_test_disconnect">Desconectar</string>
@@ -158,7 +158,7 @@
<string name="delete_after">Eliminar en</string>
<string name="ttl_sec">%d seg</string>
<string name="contact_already_exists">El contácto ya existe</string>
<string name="connection_error_auth">Error de conexión (Autenticación)</string>
<string name="connection_error_auth">Error conexión (Autenticación)</string>
<string name="for_me_only">Eliminar para mí</string>
<string name="icon_descr_server_status_disconnected">Desconectado</string>
<string name="icon_descr_server_status_connected">Conectado</string>
@@ -180,7 +180,7 @@
<string name="ttl_min">%d min</string>
<string name="connection_timeout">Tiempo de conexión expirado</string>
<string name="failed_to_create_user_duplicate_title">¡Nombre mostrado duplicado!</string>
<string name="connection_error">Error de conexión</string>
<string name="connection_error">Error conexión</string>
<string name="smp_server_test_create_queue">Crear cola</string>
<string name="smp_server_test_delete_queue">Eliminar cola</string>
<string name="notification_preview_somebody">Contacto oculto:</string>
@@ -264,7 +264,7 @@
<string name="clear_chat_button">Vaciar chat</string>
<string name="configure_ICE_servers">Configurar servidores ICE</string>
<string name="callstatus_ended">Llamada terminada %1$s</string>
<string name="callstatus_error">error en la llamada</string>
<string name="callstatus_error">error en llamada</string>
<string name="callstatus_calling">llamando</string>
<string name="callstatus_in_progress">llamada en curso</string>
<string name="colored_text">coloreado</string>
@@ -317,7 +317,7 @@
<string name="file_will_be_received_when_contact_is_online">El archivo se recibirá cuando tu contacto esté en línea, por favor espera o compruébalo más tarde.</string>
<string name="add_contact">Enlace de invitación de un uso</string>
<string name="paste_the_link_you_received">Pegar enlace recibido</string>
<string name="error_saving_group_profile">Error guardando perfil de grupo</string>
<string name="error_saving_group_profile">Error al guardar perfil de grupo</string>
<string name="exit_without_saving">Salir sin guardar</string>
<string name="file_saved">Archivo guardado</string>
<string name="icon_descr_flip_camera">Voltear la cámara</string>
@@ -327,22 +327,22 @@
<string name="how_to_use_markdown">Cómo usar la sintaxis markdown</string>
<string name="description_via_one_time_link_incognito">en modo incógnito mediante enlace de un solo uso</string>
<string name="simplex_link_contact">Dirección de contacto SimpleX</string>
<string name="error_saving_smp_servers">Error guardando servidores SMP</string>
<string name="error_saving_smp_servers">Error al guardar servidores SMP</string>
<string name="simplex_link_mode_browser_warning">Abrir el enlace en el navegador puede reducir la privacidad y seguridad de la conexión. Los enlaces SimpleX que no son de confianza aparecerán en rojo.</string>
<string name="error_setting_network_config">Error al actualizar la configuración de red</string>
<string name="error_creating_address">Error creando dirección</string>
<string name="error_deleting_user">Error eliminando perfil de usuario</string>
<string name="error_creating_address">Error al crear dirección</string>
<string name="error_deleting_user">Error al eliminar perfil</string>
<string name="auth_enable_simplex_lock">Activar Bloqueo SimpleX</string>
<string name="one_time_link">Enlace de invitación de un uso</string>
<string name="smp_servers">Servidores SMP</string>
<string name="settings_experimental_features">Características experimentales</string>
<string name="error_importing_database">Error importando la base de datos</string>
<string name="error_changing_message_deletion">Error cambiando configuración</string>
<string name="error_importing_database">Error al importar base de datos</string>
<string name="error_changing_message_deletion">Error al cambiar configuración</string>
<string name="file_with_path">Archivo: %s</string>
<string name="failed_to_active_user_title">¡Error cambiando perfil!</string>
<string name="failed_to_active_user_title">¡Error al cambiar perfil!</string>
<string name="smp_servers_enter_manually">Introduce el servidor manualmente</string>
<string name="how_to_use_your_servers">Cómo usar los servidores</string>
<string name="error_stopping_chat">Error deteniendo Chat</string>
<string name="error_stopping_chat">Error al detener Chat</string>
<string name="enter_correct_passphrase">Introduce la contraseña correcta.</string>
<string name="enter_passphrase">Introduce la contraseña…</string>
<string name="icon_descr_group_inactive">Grupo inactivo</string>
@@ -350,8 +350,8 @@
<string name="group_members_can_send_disappearing">Los miembros del grupo pueden enviar mensajes temporales.</string>
<string name="v4_2_group_links">Enlaces de grupo</string>
<string name="invalid_connection_link">Enlace de conexión no válido</string>
<string name="error_accepting_contact_request">Error aceptando la solicitud del contacto</string>
<string name="error_changing_address">Error cambiando la dirección</string>
<string name="error_accepting_contact_request">Error al aceptar solicitud del contacto</string>
<string name="error_changing_address">Error al cambiar dirección</string>
<string name="error_saving_file">Error al guardar archivo</string>
<string name="icon_descr_server_status_error">Error</string>
<string name="from_gallery_button">De la Galería</string>
@@ -364,20 +364,20 @@
<string name="if_you_cannot_meet_in_person_show_QR_in_video_call_or_via_another_channel"><![CDATA[Si no puedes reunirte en persona, <b>muestra el código QR en la videollamada</b>, o comparte el enlace.]]></string>
<string name="how_to">Cómo</string>
<string name="ignore">Ignorar</string>
<string name="error_deleting_database">Error eliminando la base de datos</string>
<string name="error_deleting_database">Error al eliminar base de datos</string>
<string name="encrypted_database">Base de datos cifrada</string>
<string name="error_removing_member">Error eliminando miembro</string>
<string name="error_removing_member">Error al eliminar miembro</string>
<string name="group_members_can_send_voice">Los miembros del grupo pueden enviar mensajes de voz.</string>
<string name="description_via_contact_address_link_incognito">en modo incógnito mediante enlace de dirección del contacto</string>
<string name="failed_to_create_user_title">Error creando perfil!</string>
<string name="failed_to_create_user_title">¡Error al crear perfil!</string>
<string name="failed_to_parse_chat_title">No se pudo cargar el chat</string>
<string name="failed_to_parse_chats_title">No se pudieron cargar los chats</string>
<string name="simplex_link_mode_full">Enlace completo</string>
<string name="error_deleting_contact">Error eliminando contacto</string>
<string name="error_joining_group">Error uniéndose al grupo</string>
<string name="error_receiving_file">Error recibiendo archivo</string>
<string name="error_deleting_contact">Error al eliminar contacto</string>
<string name="error_joining_group">Error al unirse al grupo</string>
<string name="error_receiving_file">Error al recibir archivo</string>
<string name="please_check_correct_link_and_maybe_ask_for_a_new_one">Comprueba que has usado el enlace correcto o pide a tu contacto que te envíe otro.</string>
<string name="error_deleting_contact_request">Error eliminando la solicitud de contacto</string>
<string name="error_deleting_contact_request">Error al eliminar solicitud del contacto</string>
<string name="error_deleting_group">Error al eliminar grupo</string>
<string name="error_deleting_pending_contact_connection">Error al eliminar conexión de contacto pendiente</string>
<string name="hide_notification">Ocultar</string>
@@ -389,7 +389,7 @@
<string name="icon_descr_image_snd_complete">Imagen enviada</string>
<string name="image_will_be_received_when_contact_is_online">La imagen se recibirá cuando tu contacto esté en línea, por favor espera o compruébalo más tarde.</string>
<string name="image_descr_link_preview">vista previa del enlace</string>
<string name="error_saving_ICE_servers">Error guardando servidores ICE</string>
<string name="error_saving_ICE_servers">Error al guardar servidores ICE</string>
<string name="enter_one_ICE_server_per_line">Servidores ICE (uno por línea)</string>
<string name="full_name__field">Nombre completo:</string>
<string name="people_can_connect_only_via_links_you_share">Las personas pueden conectarse contigo sólo mediante los enlaces que compartes.</string>
@@ -409,12 +409,12 @@
<string name="callstate_ended">finalizado</string>
<string name="settings_section_title_help">AYUDA</string>
<string name="export_database">Exportar base de datos</string>
<string name="error_exporting_chat_database">Error exportando la base de datos</string>
<string name="error_starting_chat">Error iniciando chat</string>
<string name="error_exporting_chat_database">Error al exportar base de datos</string>
<string name="error_starting_chat">Error al iniciar Chat</string>
<string name="rcv_group_event_invited_via_your_group_link">se ha unido mediante tu enlace de grupo</string>
<string name="error_updating_link_for_group">Error actualizando el enlace de grupo</string>
<string name="error_updating_link_for_group">Error al actualizar enlace de grupo</string>
<string name="section_title_for_console">PARA CONSOLA</string>
<string name="error_changing_role">Error cambiando rol</string>
<string name="error_changing_role">Error al cambiar rol</string>
<string name="conn_stats_section_title_servers">SERVIDORES</string>
<string name="group_display_name_field">Nombre mostrado del grupo:</string>
<string name="group_preferences">Preferencias de grupo</string>
@@ -429,8 +429,8 @@
<string name="server_error">error</string>
<string name="description_via_group_link_incognito">en modo incógnito mediante enlace de grupo</string>
<string name="error_adding_members">Error al añadir miembro(s)</string>
<string name="error_sending_message">Error enviando mensaje</string>
<string name="error_encrypting_database">Error cifrando la base de datos</string>
<string name="error_sending_message">Error al enviar mensaje</string>
<string name="error_encrypting_database">Error al cifrar base de datos</string>
<string name="encrypt_database_question">¿Cifrar base de datos\?</string>
<string name="error_with_info">Error: %s</string>
<string name="group_link">Enlace de grupo</string>
@@ -549,7 +549,7 @@
<string name="new_passphrase">Contraseña nueva…</string>
<string name="join_group_question">¿Unirse al grupo\?</string>
<string name="joining_group">Entrando al grupo</string>
<string name="keychain_error">Error en Keystore</string>
<string name="keychain_error">Error Keystore</string>
<string name="icon_descr_add_members">Invitar miembros</string>
<string name="group_member_role_observer">observador</string>
<string name="group_member_role_member">miembro</string>
@@ -592,7 +592,7 @@
<string name="error_smp_test_certificate">Posiblemente la huella digital del certificado en la dirección del servidor es incorrecta</string>
<string name="reply_verb">Responder</string>
<string name="save_passphrase_in_keychain">Guardar contraseña en Keystore</string>
<string name="database_restore_error">Error al restaurar la base de datos</string>
<string name="database_restore_error">Error al restaurar base de datos</string>
<string name="select_contacts">Seleccionar contactos</string>
<string name="save_group_profile">Guardar perfil de grupo</string>
<string name="reset_color">Restablecer colores</string>
@@ -715,9 +715,9 @@
<string name="save_and_notify_contact">Guardar y notificar contacto</string>
<string name="save_preferences_question">¿Guardar preferencias\?</string>
<string name="save_and_notify_group_members">Guardar y notificar a los miembros del grupo</string>
<string name="connection_error_auth_desc">A menos que tu contacto haya eliminado la conexión o que este enlace ya se haya utilizado, podría tratarse de un error. Por favor, notifícalo.
<string name="connection_error_auth_desc">A menos que tu contacto haya eliminado la conexión o que este enlace ya se haya usado, podría ser un error. Por favor, notifícalo.
\nPara conectarte, pide a tu contacto que cree otro enlace de conexión y comprueba que tienes buena conexión de red.</string>
<string name="periodic_notifications_desc">La aplicación recoge nuevos mensajes periódicamente por lo que utiliza un pequeño porcentaje de la batería al día. La aplicación no hace uso de notificaciones automáticas: los datos de tu dispositivo no se envían a los servidores.</string>
<string name="periodic_notifications_desc">La aplicación recoge nuevos mensajes periódicamente por lo que usa un pequeño porcentaje de la batería al día. La aplicación no hace uso de notificaciones automáticas: los datos de tu dispositivo no se envían a los servidores.</string>
<string name="la_notice_title_simplex_lock">Bloqueo SimpleX</string>
<string name="auth_unlock">Desbloquear</string>
<string name="this_text_is_available_in_settings">Este texto está disponible en Configuración</string>
@@ -762,13 +762,13 @@
<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="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>, utiliza un pequeño porcentaje de la batería al día.]]></string>
<string name="icon_descr_settings">Ajustes</string>
<string name="to_preserve_privacy_simplex_has_background_service_instead_of_push_notifications_it_uses_a_few_pc_battery">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>
<string name="icon_descr_settings">Configuración</string>
<string name="icon_descr_speaker_off">Altavoz desactivado</string>
<string name="add_contact_or_create_group">Inciar chat nuevo</string>
<string name="stop_chat_to_export_import_or_delete_chat_database">Para poder exportar, importar o eliminar la base de datos primero debes detener Chat. Durante el tiempo que esté detenido no podrás recibir ni enviar mensajes.</string>
<string name="thank_you_for_installing_simplex">Gracias por instalar SimpleX Chat!</string>
<string name="to_protect_privacy_simplex_has_ids_for_queues">Para proteger la privacidad, en lugar de los identificadores de usuario que utilizan el resto de plataformas, SimpleX dispone de identificadores para las colas de mensajes, independientes para cada uno de tus contactos.</string>
<string name="to_protect_privacy_simplex_has_ids_for_queues">Para proteger la privacidad, en lugar de los identificadores de usuario que usan el resto de plataformas, SimpleX dispone de identificadores para las colas de mensajes, independientes para cada uno de tus contactos.</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 tu información, activa Bloqueo SimpleX.
\nSe te pedirá que completes la autenticación antes de activar esta función.</string>
<string name="updating_settings_will_reconnect_client_to_all_servers">Al actualizar la configuración, el cliente se reconectará a todos los servidores.</string>
@@ -830,15 +830,15 @@
<string name="member_role_will_be_changed_with_invitation">El rol cambiará a \"%s\". El miembro recibirá una nueva invitación.</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 utilizado para recibir mensajes de este contacto.</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="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 utilizado 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 usado 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>
<string name="share_image">Compartir medios…</string>
<string name="show_call_on_lock_screen">Mostrar</string>
<string name="unknown_database_error_with_info">Error desconocido en la base de datos: %s</string>
<string name="unknown_database_error_with_info">Error desconocido base de datos: %s</string>
<string name="database_backup_can_be_restored">El intento de cambiar la contraseña de la base de datos no se ha completado.</string>
<string name="chat_help_tap_button">Pulsa el botón</string>
<string name="to_start_a_new_chat_help_header">Para iniciar un chat nuevo</string>
@@ -943,7 +943,7 @@
<string name="profile_will_be_sent_to_contact_sending_link">Tu perfil se enviará al contacto del que has recibido este enlace.</string>
<string name="you_will_join_group">Te unirás al grupo al que hace referencia este enlace y te conectarás con sus miembros.</string>
<string name="sender_you_pronoun"></string>
<string name="connected_to_server_to_receive_messages_from_contact">Estás conectado al servidor utilizado para recibir mensajes de este contacto.</string>
<string name="connected_to_server_to_receive_messages_from_contact">Estás conectado al servidor usado para recibir mensajes de este contacto.</string>
<string name="description_via_contact_address_link">mediante enlace de dirección de contacto</string>
<string name="description_via_group_link">mediante enlace de grupo</string>
<string name="description_you_shared_one_time_link">has compartido enlace de un solo uso</string>
@@ -973,7 +973,7 @@
<string name="hide_profile">Ocultar perfil</string>
<string name="save_profile_password">Guardar contraseña de perfil</string>
<string name="password_to_show">Contraseña para hacerlo visible</string>
<string name="error_saving_user_password">Error guardando la contraseña de usuario</string>
<string name="error_saving_user_password">Error al guardar contraseña de usuario</string>
<string name="relay_server_if_necessary">El relay sólo se usa en caso de necesidad. Un tercero podría ver tu IP.</string>
<string name="relay_server_protects_ip">El servidor relay protege tu IP pero puede ver la duración de la llamada.</string>
<string name="cant_delete_user_profile">¡No se puede eliminar el perfil!</string>
@@ -997,7 +997,7 @@
<string name="v4_6_group_welcome_message_descr">¡Guarda un mensaje para ser mostrado a los miembros nuevos!</string>
<string name="v4_6_chinese_spanish_interface">Interfaz en chino y español</string>
<string name="v4_6_chinese_spanish_interface_descr">¡Gracias a los colaboradores! Contribuye a través de Weblate.</string>
<string name="error_updating_user_privacy">Error actualizando la privacidad de usuario</string>
<string name="error_updating_user_privacy">Error al actualizar privacidad de usuario</string>
<string name="confirm_password">Confirmar contraseña</string>
<string name="v4_6_reduced_battery_usage">Reducción consumo de batería</string>
<string name="v4_6_group_welcome_message">Mensaje de bienvenida en grupos</string>
@@ -1043,9 +1043,9 @@
<string name="video_will_be_received_when_contact_completes_uploading">El vídeo se recibirá cuando tu contacto termine de subirlo.</string>
<string name="videos_limit_desc">Sólo se pueden enviar 10 vídeos de forma simultánea</string>
<string name="icon_descr_waiting_for_video">Esperando el vídeo</string>
<string name="error_saving_xftp_servers">Error guardando servidores SMP</string>
<string name="error_loading_xftp_servers">Error cargando servidores XFTP</string>
<string name="error_loading_smp_servers">Error cargando servidores SMP</string>
<string name="error_saving_xftp_servers">Error al guardar servidores SMP</string>
<string name="error_loading_xftp_servers">Error al cargar servidores XFTP</string>
<string name="error_loading_smp_servers">Error al cargar servidores SMP</string>
<string name="ensure_xftp_server_address_are_correct_format_and_unique">Asegúrate de que las direcciones del servidor XFTP tienen el formato correcto, están separadas por líneas y no están duplicadas.</string>
<string name="error_xftp_test_server_auth">El servidor requiere autorización para subir, comprueba la contraseña</string>
<string name="smp_server_test_compare_file">Comparar archivo</string>
@@ -1066,7 +1066,7 @@
<string name="authentication_cancelled">Autenticación cancelada</string>
<string name="change_lock_mode">Cambiar el modo de bloqueo</string>
<string name="la_seconds">%d segundos</string>
<string name="la_auth_failed">Error de autenticación</string>
<string name="la_auth_failed">Autenticación fallida</string>
<string name="la_change_app_passcode">Cambiar código de acceso</string>
<string name="passcode_not_changed">¡Código de acceso no cambiado!</string>
<string name="la_lock_mode_system">Autenticación del sistema</string>
@@ -1091,7 +1091,7 @@
<string name="passcode_changed">¡Código de acceso cambiado!</string>
<string name="passcode_set">¡Código de acceso guardado!</string>
<string name="la_mode_system">Sistema</string>
<string name="decryption_error">Error de descifrado</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>
<string name="alert_text_fragment_please_report_to_developers">Por favor, informa a los desarrolladores.</string>
@@ -1100,7 +1100,7 @@
<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_msg_bad_hash">El hash del mensaje anterior es diferente.</string>
<string name="alert_text_decryption_error_n_messages_failed_to_decrypt">%1$d mensajes no pudieron ser descifrados.</string>
<string name="alert_text_decryption_error_n_messages_failed_to_decrypt">%1$d mensajes no han podido ser descifrados.</string>
<string name="no_spaces">¡Sin espacios!</string>
<string name="stop_file__action">Detener archivo</string>
<string name="revoke_file__message">El archivo será eliminado de los servidores.</string>
@@ -1136,7 +1136,7 @@
<string name="auto_accept_contact">Auto aceptar</string>
<string name="group_welcome_preview">Vista previa</string>
<string name="opening_database">Abriendo base de datos…</string>
<string name="error_setting_address">Error al introducir la dirección</string>
<string name="error_setting_address">Error al introducir dirección</string>
<string name="read_more_in_user_guide_with_link"><![CDATA[Más información en la <font color="#0088ff">Guía de usuario</font>.]]></string>
<string name="one_time_link_short">Enlace un uso</string>
<string name="simplex_address">Dirección SimpleX</string>
@@ -1269,7 +1269,7 @@
<string name="settings_shutdown">Cerrar</string>
<string name="shutdown_alert_desc">Las notificaciones dejarán de funcionar hasta que reinicies la aplicación</string>
<string name="la_mode_off">Desactivado</string>
<string name="error_aborting_address_change">Error al cancelar el cambio de dirección</string>
<string name="error_aborting_address_change">Error al cancelar cambio de dirección</string>
<string name="no_filtered_chats">Sin chats filtrados</string>
<string name="files_and_media_prohibited">¡Archivos y multimedia no permitidos!</string>
<string name="abort_switch_receiving_address_confirm">Cancelar</string>
@@ -1282,31 +1282,65 @@
<string name="files_are_prohibited_in_group">No se permiten archivos y multimedia en este grupo.</string>
<string name="group_members_can_send_files">Los miembros del grupo pueden enviar archivos y multimedia.</string>
<string name="allow_to_send_files">Se permite enviar archivos y multimedia</string>
<string name="favorite_chat">Favoritos</string>
<string name="favorite_chat">Favorito</string>
<string name="only_owners_can_enable_files_and_media">Sólo los propietarios pueden activar archivos y multimedia.</string>
<string name="network_option_protocol_timeout_per_kb">Timeout de protocolo por KB</string>
<string name="snd_conn_event_ratchet_sync_allowed">renegociación de encriptación permitida para %s</string>
<string name="conn_event_ratchet_sync_agreed">encriptación acordada</string>
<string name="conn_event_ratchet_sync_ok">encriptación ok</string>
<string name="conn_event_ratchet_sync_required">se requiere una renegociación de encriptación</string>
<string name="error_synchronizing_connection">Error al sincronizar la conexión</string>
<string name="snd_conn_event_ratchet_sync_allowed">renegociación de cifrado permitida para %s</string>
<string name="conn_event_ratchet_sync_agreed">cifrado acordado</string>
<string name="conn_event_ratchet_sync_ok">cifrado ok</string>
<string name="conn_event_ratchet_sync_required">se requiere renegociar el cifrado</string>
<string name="error_synchronizing_connection">Error al sincronizar conexión</string>
<string name="fix_connection_not_supported_by_contact">Reparación no compatible con el contacto</string>
<string name="sync_connection_force_confirm">Renegociar</string>
<string name="fix_connection_not_supported_by_group_member">Reparación no compatible con miembro del grupo</string>
<string name="sync_connection_force_desc">La encriptación está funcionando y el nuevo acuerdo de encriptación no es necesario. ¡Puede dar lugar a errores de conexión!</string>
<string name="sync_connection_force_desc">El cifrado funciona y un cifrado nuevo no es necesario. ¡Podría dar lugar a errores de conexión!</string>
<string name="in_reply_to">En respuesta a</string>
<string name="no_history">Sin historial</string>
<string name="sync_connection_force_question">¿Renegociar encriptación\?</string>
<string name="snd_conn_event_ratchet_sync_agreed">encriptación acordada para %s</string>
<string name="conn_event_ratchet_sync_allowed">renegociación de encriptación permitida</string>
<string name="snd_conn_event_ratchet_sync_required">se requiere una renegociación de encriptación para %s</string>
<string name="snd_conn_event_ratchet_sync_agreed">cifrado acordado para %s</string>
<string name="conn_event_ratchet_sync_allowed">renegociación de cifrado permitida</string>
<string name="snd_conn_event_ratchet_sync_required">se requiere una renegociación de cifrado para %s</string>
<string name="rcv_conn_event_verification_code_reset">código de seguridad cambiado</string>
<string name="snd_conn_event_ratchet_sync_ok">encriptación ok para %s</string>
<string name="conn_event_ratchet_sync_started">acordando la encriptación</string>
<string name="snd_conn_event_ratchet_sync_started">acordando la encriptación para %s…</string>
<string name="snd_conn_event_ratchet_sync_ok">cifrado ok para %s</string>
<string name="conn_event_ratchet_sync_started">acordando cifrado</string>
<string name="snd_conn_event_ratchet_sync_started">acordando cifrado para %s…</string>
<string name="fix_connection_confirm">Reparar</string>
<string name="fix_connection">Reparar la conexión</string>
<string name="fix_connection_question">¿Reparar la conexión\?</string>
<string name="renegotiate_encryption">Renegociar encriptación</string>
<string name="fix_connection">Reparar conexión</string>
<string name="fix_connection_question">¿Reparar conexión\?</string>
<string name="renegotiate_encryption">Renegociar cifrado</string>
<string name="sender_at_ts">%s a las %s</string>
<string name="sending_delivery_receipts_will_be_enabled_all_profiles">El envío de confirmaciones de entrega se activará para todos los contactos en todos los perfiles visibles.</string>
<string name="receipts_section_contacts">Contactos</string>
<string name="delivery_receipts_title">¡Confirmación de entrega!</string>
<string name="receipts_contacts_disable_keep_overrides">Desactivar (mantener anulaciones)</string>
<string name="v5_2_favourites_filter">Encontrar chats mas rápido</string>
<string name="v5_2_disappear_one_message">Escribir un mensaje temporal</string>
<string name="receipts_contacts_override_disabled">El envío de confirmaciones está desactivado para %d contactos</string>
<string name="receipts_contacts_override_enabled">El envío de confirmaciones está activado para %d contactos</string>
<string name="send_receipts">Enviar confirmaciones</string>
<string name="receipts_section_description">Esta configuración afecta a tu perfil actual</string>
<string name="enable_receipts_all">Activar</string>
<string name="receipts_contacts_title_disable">¿Desactivar confirmaciones\?</string>
<string name="receipts_contacts_title_enable">¿Activar confirmaciones\?</string>
<string name="receipts_section_description_1">Se pueden anular en la configuración de los contactos</string>
<string name="receipts_contacts_enable_for_all">Activar para todos</string>
<string name="receipts_contacts_enable_keep_overrides">Activar (conservar anulaciones)</string>
<string name="receipts_contacts_disable_for_all">Desactivar para todos</string>
<string name="settings_section_title_delivery_receipts">ENVIAR CONFIRMACIONES DE ENTREGA A</string>
<string name="delivery_receipts_are_disabled">¡Las confirmaciones de entrega están desactivadas!</string>
<string name="dont_enable_receipts">No activar</string>
<string name="error_enabling_delivery_receipts">¡Error al activar confirmaciones de entrega!</string>
<string name="v5_2_disappear_one_message_descr">Incluso si está desactivado para la conversación.</string>
<string name="v5_2_favourites_filter_descr">Filtrar chats no leídos y favoritos.</string>
<string name="v5_2_fix_encryption_descr">Reparar el cifrado tras restaurar copias de seguridad.</string>
<string name="v5_2_fix_encryption">Mantén tus conexiones</string>
<string name="v5_2_message_delivery_receipts">¡Confirmación de entrega de mensajes!</string>
<string name="v5_2_more_things_descr">- entrega de mensajes más estable.
\n- grupos un poco mejores.
\n- ¡y más!</string>
<string name="sending_delivery_receipts_will_be_enabled">El envío de confirmaciones de entrega se activará para todos los contactos.</string>
<string name="v5_2_message_delivery_receipts_descr">¡El doble check que nos faltaba! ✅</string>
<string name="you_can_enable_delivery_receipts_later">Puedes activar más tarde en Configuración</string>
<string name="you_can_enable_delivery_receipts_later_alert">Puedes activarlos más tarde en la configuración de Privacidad y Seguridad.</string>
<string name="v5_2_more_things">Algunas cosas más</string>
</resources>

View File

@@ -1222,7 +1222,6 @@
<string name="your_ice_servers">ICE-palvelimesi</string>
<string name="icon_descr_video_off">Video pois päältä</string>
<string name="icon_descr_video_on">Video päällä</string>
<string name="alert_text_fragment_permanent_error_reconnect">Tämä virhe on pysyvä tälle yhteydelle, yhdistä uudelleen.</string>
<string name="you_will_stop_receiving_messages_from_this_group_chat_history_will_be_preserved">Et enää saa viestejä tästä ryhmästä. Keskusteluhistoria säilytetään.</string>
<string name="you_are_invited_to_group">Sinut on kutsuttu ryhmään</string>
<string name="you_joined_this_group">Liityit tähän ryhmään</string>

View File

@@ -1117,7 +1117,6 @@
<string name="stop_snd_file__title">Arrêter l\'envoi du fichier \?</string>
<string name="stop_file__action">Arrêter le fichier</string>
<string name="stop_rcv_file__title">Arrêter de recevoir le fichier \?</string>
<string name="alert_text_fragment_permanent_error_reconnect">Cette erreur est persistante pour cette connexion, veuillez vous reconnecter.</string>
<string name="la_could_not_be_verified">Vous n\'avez pas pu être vérifié·e; veuillez réessayer.</string>
<string name="alert_text_decryption_error_n_messages_failed_to_decrypt">%1$d messages n\'ont pas pu être déchiffrés.</string>
<string name="alert_text_decryption_error_too_many_skipped">%1$d messages sautés.</string>
@@ -1285,4 +1284,62 @@
<string name="allow_to_send_files">Permet l\'envoi de fichiers et de médias.</string>
<string name="group_members_can_send_files">Les membres du groupe peuvent envoyer des fichiers et des médias.</string>
<string name="files_are_prohibited_in_group">Les fichiers et les médias sont interdits dans ce groupe.</string>
<string name="fix_connection_not_supported_by_group_member">Correction non prise en charge par un membre du groupe</string>
<string name="settings_section_title_delivery_receipts">ENVOYER DES ACCUSÉS DE RÉCEPTION AUX</string>
<string name="sync_connection_force_desc">Le chiffrement fonctionne et le nouvel accord de chiffrement n\'est pas nécessaire. Cela peut provoquer des erreurs de connexion !</string>
<string name="v5_2_more_things">Encore quelques points</string>
<string name="delivery_receipts_title">Justificatifs de réception!</string>
<string name="sending_delivery_receipts_will_be_enabled">L\'envoi d\'accusés de réception sera activé pour tous les contacts.</string>
<string name="v5_2_message_delivery_receipts_descr">Le deuxième coche que nous avons manqué ! ✅</string>
<string name="you_can_enable_delivery_receipts_later">Vous pouvez l\'activer ultérieurement via Paramètres</string>
<string name="dont_enable_receipts">Ne pas activer</string>
<string name="enable_receipts_all">Activer</string>
<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="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>
<string name="delivery_receipts_are_disabled">Les accusés de réception sont désactivés !</string>
<string name="receipts_contacts_enable_for_all">Activer pour tous</string>
<string name="receipts_contacts_enable_keep_overrides">Activer (conserver les remplacements)</string>
<string name="snd_conn_event_ratchet_sync_agreed">chiffrement accepté pour %s</string>
<string name="v5_2_favourites_filter_descr">Filtrer les messages non lus et favoris.</string>
<string name="v5_2_favourites_filter">Trouver des messages plus rapidement</string>
<string name="in_reply_to">En réponse à</string>
<string name="v5_2_more_things_descr">- une diffusion plus stable des messages.
\n- des groupes un peu plus performants.
\n- et bien d\'autres choses encore !</string>
<string name="sync_connection_force_confirm">Renégocier</string>
<string name="rcv_conn_event_verification_code_reset">code de sécurité modifié</string>
<string name="sending_delivery_receipts_will_be_enabled_all_profiles">L\'envoi d\'accusés de réception sera activé pour tous les contacts dans tous les profils de chat visibles.</string>
<string name="receipts_section_description_1">Ils peuvent être remplacés dans les paramètres des contacts</string>
<string name="receipts_section_description">Ces paramètres s\'appliquent à votre profil actuel</string>
<string name="you_can_enable_delivery_receipts_later_alert">Vous pouvez les activer ultérieurement via les paramètres de Confidentialité et Sécurité de l\'application.</string>
<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_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>
<string name="conn_event_ratchet_sync_required">renégociation de chiffrement requise</string>
<string name="snd_conn_event_ratchet_sync_ok">chiffrement ok pour %s</string>
<string name="snd_conn_event_ratchet_sync_allowed">renégociation de chiffrement autorisée pour %s</string>
<string name="sender_at_ts">%s à %s</string>
<string name="send_receipts">Envoyer les justificatifs</string>
<string name="fix_connection_confirm">Réparer</string>
<string name="fix_connection">Réparer la connexion</string>
<string name="fix_connection_question">Réparer la connexion\?</string>
<string name="fix_connection_not_supported_by_contact">Correction non prise en charge par le contact</string>
<string name="v5_2_fix_encryption">Conserver vos connexions</string>
<string name="v5_2_message_delivery_receipts">Accusés de réception des messages !</string>
<string name="v5_2_disappear_one_message_descr">Même s\'il est désactivé dans la conversation.</string>
<string name="v5_2_fix_encryption_descr">Réparer le chiffrement après la restauration des sauvegardes.</string>
<string name="v5_2_disappear_one_message">Rendre un message éphémère</string>
<string name="error_enabling_delivery_receipts">Erreur lors de l\'activation des accusés de réception!</string>
<string name="error_synchronizing_connection">Erreur de synchronisation de connexion</string>
<string name="no_history">Aucun historique</string>
<string name="sync_connection_force_question">Renégocier le chiffrement\?</string>
</resources>

View File

@@ -768,7 +768,7 @@
<string name="you_will_stop_receiving_messages_from_this_group_chat_history_will_be_preserved">Non riceverai più messaggi da questo gruppo. La cronologia della chat verrà conservata.</string>
<string name="group_member_status_invited">ha invitato</string>
<string name="rcv_group_event_invited_via_your_group_link">invitato via link del tuo gruppo</string>
<string name="rcv_group_event_member_added">invitato %1$s</string>
<string name="rcv_group_event_member_added">ha invitato %1$s</string>
<string name="rcv_group_event_member_left">uscito/a</string>
<string name="group_member_status_left">è uscito/a</string>
<string name="group_member_role_member">membro</string>
@@ -1096,7 +1096,6 @@
<string name="alert_text_fragment_encryption_out_of_sync_old_database">Può accadere quando tu o il tuo contatto avete usato il backup del database vecchio.</string>
<string name="alert_text_msg_bad_id">L\'ID del messaggio successivo non è corretto (inferiore o uguale al precedente).
\nPuò accadere a causa di qualche bug o quando la connessione è compromessa.</string>
<string name="alert_text_fragment_permanent_error_reconnect">L\'errore è permanente per questa connessione, riconnettiti.</string>
<string name="alert_text_decryption_error_n_messages_failed_to_decrypt">%1$d messaggi non decifrati.</string>
<string name="alert_title_msg_bad_hash">Hash del messaggio errato</string>
<string name="alert_text_msg_bad_hash">L\'hash del messaggio precedente è diverso.</string>
@@ -1285,4 +1284,62 @@
<string name="favorite_chat">Preferita</string>
<string name="unfavorite_chat">Non preferita</string>
<string name="network_option_protocol_timeout_per_kb">Scadenza del protocollo per KB</string>
<string name="receipts_contacts_title_disable">Disattivare le ricevute\?</string>
<string name="receipts_contacts_title_enable">Attivare le ricevute\?</string>
<string name="fix_connection_not_supported_by_group_member">Correzione non supportata dal membro del gruppo</string>
<string name="v5_2_more_things">Qualche altra cosa</string>
<string name="v5_2_disappear_one_message_descr">Anche quando disattivato nella conversazione.</string>
<string name="v5_2_fix_encryption_descr">Correggi la crittografia dopo il ripristino dei backup.</string>
<string name="dont_enable_receipts">Non attivare</string>
<string name="sending_delivery_receipts_will_be_enabled">L\'invio delle ricevute di consegna sarà attivo per tutti i contatti.</string>
<string name="error_enabling_delivery_receipts">Errore nell\'attivazione delle ricevute di consegna!</string>
<string name="you_can_enable_delivery_receipts_later">Puoi attivarle più tardi nelle impostazioni</string>
<string name="settings_section_title_delivery_receipts">INVIA RICEVUTE DI CONSEGNA A</string>
<string name="snd_conn_event_ratchet_sync_started">concordando la crittografia per %s…</string>
<string name="delivery_receipts_title">Ricevute di consegna!</string>
<string name="receipts_section_contacts">Contatti</string>
<string name="enable_receipts_all">Attiva</string>
<string name="snd_conn_event_ratchet_sync_ok">crittografia ok per %s</string>
<string name="conn_event_ratchet_sync_agreed">crittografia concordata</string>
<string name="snd_conn_event_ratchet_sync_allowed">rinegoziazione della crittografia consentita per %s</string>
<string name="renegotiate_encryption">Rinegoziare crittografia</string>
<string name="snd_conn_event_ratchet_sync_required">richiesta rinegoziazione della crittografia per %s</string>
<string name="v5_2_more_things_descr">- recapito dei messaggi più stabile.
\n- gruppi un po\' migliorati.
\n- e altro ancora!</string>
<string name="v5_2_disappear_one_message">Fai sparire un messaggio</string>
<string name="v5_2_fix_encryption">Mantieni le tue connessioni</string>
<string name="you_can_enable_delivery_receipts_later_alert">Puoi attivarle più tardi nelle impostazioni di privacy e sicurezza dell\'app.</string>
<string name="receipts_contacts_disable_keep_overrides">Disattiva (mantieni sostituzioni)</string>
<string name="delivery_receipts_are_disabled">Le ricevute di consegna sono disattivate!</string>
<string name="receipts_contacts_disable_for_all">Disattiva per tutti</string>
<string name="snd_conn_event_ratchet_sync_agreed">crittografia concordata per %s</string>
<string name="conn_event_ratchet_sync_allowed">rinegoziazione della crittografia consentita</string>
<string name="v5_2_favourites_filter">Trova le chat più velocemente</string>
<string name="v5_2_favourites_filter_descr">Filtra le chat non lette e preferite.</string>
<string name="fix_connection_question">Correggere la connessione\?</string>
<string name="sync_connection_force_confirm">Rinegoziare</string>
<string name="sender_at_ts">%s alle %s</string>
<string name="rcv_conn_event_verification_code_reset">codice di sicurezza modificato</string>
<string name="sending_delivery_receipts_will_be_enabled_all_profiles">L\'invio delle ricevute di consegna sarà attivo per tutti i contatti in tutti i profili di chat visibili.</string>
<string name="receipts_contacts_override_disabled">L\'invio di ricevute è disattivato per %d contatti</string>
<string name="sync_connection_force_desc">La crittografia funziona e il nuovo accordo sulla crittografia non è richiesto. Potrebbero verificarsi errori di connessione!</string>
<string name="receipts_section_description">Queste impostazioni sono per il tuo profilo attuale</string>
<string name="receipts_section_description_1">Possono essere sovrascritte nelle impostazioni dei contatti</string>
<string name="receipts_contacts_enable_for_all">Attiva per tutti</string>
<string name="receipts_contacts_enable_keep_overrides">Attiva (mantieni sostituzioni)</string>
<string name="receipts_contacts_override_enabled">L\'invio di ricevute è attivo per %d contatti</string>
<string name="conn_event_ratchet_sync_started">concordando la crittografia…</string>
<string name="conn_event_ratchet_sync_ok">crittografia ok</string>
<string name="conn_event_ratchet_sync_required">richiesta rinegoziazione della crittografia</string>
<string name="send_receipts">Invia ricevute</string>
<string name="fix_connection_confirm">Correggi</string>
<string name="fix_connection">Correggi connessione</string>
<string name="fix_connection_not_supported_by_contact">Correzione non supportata dal contatto</string>
<string name="v5_2_message_delivery_receipts">Ricevute di consegna dei messaggi!</string>
<string name="v5_2_message_delivery_receipts_descr">Il secondo segno di spunta che ci mancava! ✅</string>
<string name="error_synchronizing_connection">Errore nella sincronizzazione della connessione</string>
<string name="in_reply_to">In risposta a</string>
<string name="no_history">Nessuna cronologia</string>
<string name="sync_connection_force_question">Rinegoziare la crittografia\?</string>
</resources>

View File

@@ -1295,7 +1295,7 @@
<string name="fix_connection_question">לתקן את החיבור\?</string>
<string name="fix_connection_not_supported_by_contact">תיקון לא נתמך על ידי איש קשר</string>
<string name="conn_event_ratchet_sync_started">מסכים להצפנה…</string>
<string name="snd_conn_event_ratchet_sync_started">מסכים להצפנה עבור %s</string>
<string name="snd_conn_event_ratchet_sync_started">מסכים להצפנה עבור %s</string>
<string name="in_reply_to">בתגובה ל</string>
<string name="no_history">ללא היסטוריה</string>
<string name="sync_connection_force_confirm">משא ומתן מחדש</string>
@@ -1309,4 +1309,35 @@
<string name="sender_at_ts">%s בזמן %s</string>
<string name="rcv_conn_event_verification_code_reset">קוד האבטחה השתנה</string>
<string name="renegotiate_encryption">משא ומתן מחדש על ההצפנה</string>
<string name="v5_2_more_things">עוד כמה דברים</string>
<string name="receipts_contacts_disable_keep_overrides">השבת (שמור עקיפות)</string>
<string name="receipts_contacts_title_disable">להשבית קבלות\?</string>
<string name="dont_enable_receipts">אל תפעיל</string>
<string name="receipts_contacts_enable_keep_overrides">הפעל (שמור עקיפות)</string>
<string name="v5_2_fix_encryption_descr">תקן הצפנה לאחר שחזור גיבויים.</string>
<string name="receipts_section_contacts">אנשי קשר</string>
<string name="receipts_contacts_title_enable">להפעיל קבלות\?</string>
<string name="receipts_contacts_enable_for_all">הפעל עבור כולם</string>
<string name="receipts_contacts_disable_for_all">השבת לכולם</string>
<string name="v5_2_favourites_filter_descr">סנן צ\'אטים שלא נקראו וצ\'אטים מועדפים.</string>
<string name="v5_2_favourites_filter">מצא צ\'אטים מהר יותר</string>
<string name="v5_2_disappear_one_message">העלם הודעה אחת</string>
<string name="delivery_receipts_title">קבלות על המשלוח!</string>
<string name="enable_receipts_all">הפעל</string>
<string name="delivery_receipts_are_disabled">קבלות על משלוח מושבתות!</string>
<string name="error_enabling_delivery_receipts">שגיאה בהפעלת קבלות משלוח!</string>
<string name="v5_2_more_things_descr">- שליחת הודעות יציבה יותר.
\n- קבוצות קצת יותר טובות.
\n- ועוד!</string>
<string name="sending_delivery_receipts_will_be_enabled_all_profiles">שליחת קבלות שליחה תתאפשר עבור כל אנשי הקשר בכל פרופילי הצ\'אט הגלויים.</string>
<string name="receipts_section_description">הגדרות אלו מיועדות לפרופיל הנוכחי שלך</string>
<string name="receipts_section_description_1">ניתן לעקוף אותם בהגדרות אנשי הקשר</string>
<string name="receipts_contacts_override_disabled">שליחת קבלות מושבתת עבור %d אנשי קשר</string>
<string name="receipts_contacts_override_enabled">שליחת קבלות מאופשרת עבור %d אנשי קשר</string>
<string name="settings_section_title_delivery_receipts">שלח קבלות משלוח אל</string>
<string name="send_receipts">שלח קבלות</string>
<string name="v5_2_message_delivery_receipts_descr">הסימון השני שפספסנו! ✅</string>
<string name="sending_delivery_receipts_will_be_enabled">שליחת קבלות שליחה תתאפשר עבור כל אנשי הקשר.</string>
<string name="you_can_enable_delivery_receipts_later">תוכל לאפשר מאוחר יותר דרך הגדרות</string>
<string name="you_can_enable_delivery_receipts_later_alert">תוכל לאפשר אותם מאוחר יותר באמצעות הגדרות פרטיות ואבטחה של האפליקציה.</string>
</resources>

View File

@@ -1070,7 +1070,6 @@
<string name="stop_file__confirm">停止</string>
<string name="stop_snd_file__title">ファイルの送信を停止しますか?</string>
<string name="alert_text_fragment_please_report_to_developers">開発者に報告してください。</string>
<string name="alert_text_fragment_permanent_error_reconnect">このエラーはこの接続では永続的なものです。再接続してください。</string>
<string name="v5_0_large_files_support">1GBまでのビデオとファイル</string>
<string name="alert_text_decryption_error_n_messages_failed_to_decrypt">%1$d メッセージの復号化に失敗しました。</string>
<string name="alert_text_decryption_error_too_many_skipped">%1$d メッセージをスキップしました</string>

View File

@@ -530,4 +530,77 @@
<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">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="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"><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="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="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="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="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="color_secondary_variant">Papildoma antrinė spalva</string>
<string name="color_primary_variant">Papildoma pagrindinė spalva</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="all_your_contacts_will_remain_connected">Jūsų adresatai nepraras ryšio su jumis.</string>
<string name="callstatus_accepted">priimtas 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="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="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="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="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="one_time_link_short">vienkartinė nuoroda</string>
<string name="accept_call_on_lock_screen">Priimti</string>
<string name="auto_accept_contact">Automatiškai priimti</string>
</resources>

View File

@@ -759,7 +759,7 @@
<string name="your_chat_database">Uw chat database</string>
<string name="set_password_to_export">Wachtwoord instellen om te exporteren</string>
<string name="restart_the_app_to_create_a_new_chat_profile">Start de app opnieuw om een nieuw chat profiel aan te maken.</string>
<string name="you_must_use_the_most_recent_version_of_database">U mag de meest recente versie van uw chat-database ALLEEN op één apparaat gebruiken, anders ontvangt u mogelijk geen berichten meer van sommige contacten.</string>
<string name="you_must_use_the_most_recent_version_of_database">U mag ALLEEN de meest recente versie van uw chat-database op één apparaat gebruiken, anders ontvangt u mogelijk geen berichten meer van sommige contacten.</string>
<string name="restart_the_app_to_use_imported_chat_database">Start de app opnieuw om de geïmporteerde chat database te gebruiken.</string>
<string name="stop_chat_to_enable_database_actions">Stop de chat om database acties mogelijk te maken.</string>
<string name="delete_files_and_media_desc">Deze actie kan niet ongedaan worden gemaakt, alle ontvangen en verzonden bestanden en media worden verwijderd. Foto\'s met een lage resolutie blijven behouden.</string>
@@ -1307,4 +1307,38 @@
<string name="conn_event_ratchet_sync_allowed">versleuteling heronderhandeling toegestaan</string>
<string name="error_synchronizing_connection">Fout bij het synchroniseren van de verbinding</string>
<string name="sync_connection_force_desc">De versleuteling werkt en de nieuwe versleutelingsovereenkomst is niet vereist. Dit kan leiden tot verbindingsfouten!</string>
<string name="sending_delivery_receipts_will_be_enabled_all_profiles">Het verzenden van ontvangstbevestiging wordt ingeschakeld voor alle contacten in alle zichtbare chatprofielen.</string>
<string name="v5_2_message_delivery_receipts">Ontvangstbevestiging voor berichten!</string>
<string name="receipts_section_description_1">Ze kunnen worden overschreven in contactinstellingen</string>
<string name="receipts_section_contacts">Contacten</string>
<string name="receipts_contacts_title_disable">Ontvangstbevestiging uitschakelen\?</string>
<string name="receipts_contacts_title_enable">Ontvangstbevestiging inschakelen\?</string>
<string name="receipts_contacts_override_enabled">Het verzenden van ontvangstbevestiging is ingeschakeld voor %d-contactpersonen</string>
<string name="receipts_section_description">Deze instellingen gelden voor uw huidige profiel</string>
<string name="receipts_contacts_disable_keep_overrides">Uitschakelen (overschrijvingen behouden)</string>
<string name="receipts_contacts_enable_for_all">Inschakelen voor iedereen</string>
<string name="receipts_contacts_enable_keep_overrides">Inschakelen (overschrijvingen behouden)</string>
<string name="receipts_contacts_override_disabled">Het verzenden van ontvangstbevestiging is uitgeschakeld voor %d-contactpersonen</string>
<string name="receipts_contacts_disable_for_all">Uitschakelen voor iedereen</string>
<string name="settings_section_title_delivery_receipts">STUUR ONTVANGSTBEVESTIGING NAAR</string>
<string name="send_receipts">Ontvangstbevestiging verzenden</string>
<string name="v5_2_message_delivery_receipts_descr">De tweede vink die we gemist hebben! ✅</string>
<string name="v5_2_favourites_filter_descr">Filter ongelezen en favoriete chats.</string>
<string name="v5_2_favourites_filter">Vind gesprekken sneller</string>
<string name="v5_2_fix_encryption_descr">Repareer versleuteling na het herstellen van back-ups.</string>
<string name="v5_2_fix_encryption">Behoud uw verbindingen</string>
<string name="v5_2_disappear_one_message">Eén bericht laten verdwijnen</string>
<string name="v5_2_more_things">Nog een paar dingen</string>
<string name="delivery_receipts_are_disabled">Ontvangstbevestiging is uitgeschakeld!</string>
<string name="delivery_receipts_title">Ontvangstbevestiging!</string>
<string name="dont_enable_receipts">Niet inschakelen</string>
<string name="enable_receipts_all">Inschakelen</string>
<string name="v5_2_disappear_one_message_descr">Zelfs wanneer uitgeschakeld in het gesprek.</string>
<string name="v5_2_more_things_descr">- stabielere berichtbezorging.
\n- een beetje betere groepen.
\n- en meer!</string>
<string name="sending_delivery_receipts_will_be_enabled">Het verzenden van ontvangstbevestiging wordt ingeschakeld voor alle contactpersonen.</string>
<string name="you_can_enable_delivery_receipts_later">U kunt later inschakelen via Instellingen</string>
<string name="you_can_enable_delivery_receipts_later_alert">U kunt ze later inschakelen via de privacy- en beveiligingsinstellingen van de app.</string>
<string name="error_enabling_delivery_receipts">Fout bij het inschakelen van ontvangstbevestiging!</string>
</resources>

View File

@@ -1097,7 +1097,6 @@
<string name="alert_text_msg_bad_id">Identyfikator następnej wiadomości jest nieprawidłowy (mniejszy lub równy poprzedniej).
\nMoże się to zdarzyć z powodu jakiegoś błędu lub gdy połączenie jest skompromitowane.</string>
<string name="alert_text_decryption_error_n_messages_failed_to_decrypt">Nie udało się odszyfrować %1$d wiadomości.</string>
<string name="alert_text_fragment_permanent_error_reconnect">Ten błąd jest trwały dla tego połączenia, proszę o ponowne połączenie.</string>
<string name="alert_text_decryption_error_too_many_skipped">%1$d pominiętych wiadomości.</string>
<string name="alert_text_fragment_encryption_out_of_sync_old_database">Może się to zdarzyć, gdy Ty lub Twoje połączenie użyło starej kopii zapasowej bazy danych.</string>
<string name="alert_text_fragment_please_report_to_developers">Prosimy o zgłaszanie tego do deweloperów.</string>
@@ -1285,4 +1284,62 @@
<string name="search_verb">Szukaj</string>
<string name="la_mode_off">Wyłączono</string>
<string name="network_option_protocol_timeout_per_kb">Limit czasu protokołu na KB</string>
<string name="delivery_receipts_are_disabled">Potwierdzenia dostawy są wyłączone!</string>
<string name="receipts_contacts_disable_for_all">Wyłącz dla wszystkich</string>
<string name="receipts_contacts_disable_keep_overrides">Wyłącz (zachowaj nadpisania)</string>
<string name="receipts_contacts_enable_for_all">Włącz dla wszystkich</string>
<string name="receipts_contacts_enable_keep_overrides">Włącz (zachowaj nadpisania)</string>
<string name="conn_event_ratchet_sync_agreed">uzgodniono szyfrowanie</string>
<string name="snd_conn_event_ratchet_sync_agreed">uzgodniono szyfrowanie dla %s</string>
<string name="fix_connection_not_supported_by_group_member">Naprawa nie jest obsługiwana przez członka grupy</string>
<string name="v5_2_disappear_one_message">Spraw, aby jedna wiadomość zniknęła</string>
<string name="renegotiate_encryption">Renegocjuj szyfrowanie</string>
<string name="rcv_conn_event_verification_code_reset">kod bezpieczeństwa zmieniony</string>
<string name="settings_section_title_delivery_receipts">WYŚLIJ POTWIERDZENIA DOSTAWY DO</string>
<string name="sending_delivery_receipts_will_be_enabled_all_profiles">Wysyłanie potwierdzeń dostawy zostanie włączone dla wszystkich kontaktów we wszystkich widocznych profilach czatu.</string>
<string name="receipts_section_contacts">Kontakty</string>
<string name="receipts_contacts_title_enable">Włączyć potwierdzenia\?</string>
<string name="receipts_contacts_title_disable">Wyłączyć potwierdzenia\?</string>
<string name="conn_event_ratchet_sync_required">renegocjacja szyfrowania wymagana</string>
<string name="receipts_contacts_override_disabled">Wysyłanie potwierdzeń jest wyłączone dla %d kontaktów</string>
<string name="you_can_enable_delivery_receipts_later_alert">Możesz je włączyć później w ustawieniach Prywatności i Bezpieczeństwa aplikacji.</string>
<string name="conn_event_ratchet_sync_started">uzgadnianie szyfrowania…</string>
<string name="snd_conn_event_ratchet_sync_allowed">renegocjacja szyfrowania dozwolona dla %s</string>
<string name="v5_2_more_things">Jeszcze kilka rzeczy</string>
<string name="snd_conn_event_ratchet_sync_ok">szyfrowanie ok dla %s</string>
<string name="snd_conn_event_ratchet_sync_required">renegocjacja szyfrowania wymagana dla %s</string>
<string name="error_enabling_delivery_receipts">Błąd włączania potwierdzeń dostawy!</string>
<string name="v5_2_more_things_descr">- bardziej stabilne dostarczanie wiadomości.
\n- nieco lepsze grupy.
\n- i więcej!</string>
<string name="v5_2_favourites_filter_descr">Filtruj nieprzeczytane i ulubione czaty.</string>
<string name="v5_2_favourites_filter">Szybciej znajduj czaty</string>
<string name="fix_connection">Napraw połączenie</string>
<string name="fix_connection_confirm">Napraw</string>
<string name="fix_connection_question">Naprawić połączenie\?</string>
<string name="v5_2_message_delivery_receipts">Potwierdzenia dostarczenia wiadomości!</string>
<string name="sync_connection_force_question">Renegocjować szyfrowanie\?</string>
<string name="receipts_contacts_override_enabled">Wysyłanie potwierdzeń jest włączone dla %d kontaktów</string>
<string name="sync_connection_force_desc">Szyfrowanie działa, a nowe uzgodnienie szyfrowania nie jest wymagane. Może to spowodować błędy w połączeniu!</string>
<string name="receipts_section_description">Te ustawienia dotyczą Twojego bieżącego profilu</string>
<string name="receipts_section_description_1">Można je nadpisać w ustawieniach kontaktu</string>
<string name="conn_event_ratchet_sync_ok">szyfrowanie ok</string>
<string name="conn_event_ratchet_sync_allowed">renegocjacja szyfrowania dozwolona</string>
<string name="snd_conn_event_ratchet_sync_started">uzgadnianie szyfrowania dla %s…</string>
<string name="fix_connection_not_supported_by_contact">Naprawa nie jest obsługiwana przez kontakt</string>
<string name="send_receipts">Wyślij potwierdzenia</string>
<string name="v5_2_message_delivery_receipts_descr">Drugi tik, który przegapiliśmy! ✅</string>
<string name="v5_2_fix_encryption_descr">Napraw szyfrowanie po przywróceniu kopii zapasowych.</string>
<string name="v5_2_fix_encryption">Zachowaj swoje połączenia</string>
<string name="v5_2_disappear_one_message_descr">Nawet po wyłączeniu w rozmowie.</string>
<string name="delivery_receipts_title">Potwierdzenia dostawy!</string>
<string name="enable_receipts_all">Włącz</string>
<string name="dont_enable_receipts">Nie włączaj</string>
<string name="sending_delivery_receipts_will_be_enabled">Wysyłanie potwierdzeń dostawy zostanie włączone dla wszystkich kontaktów.</string>
<string name="you_can_enable_delivery_receipts_later">Możesz włączyć później w Ustawieniach</string>
<string name="error_synchronizing_connection">Błąd synchronizacji połączenia</string>
<string name="in_reply_to">W odpowiedzi na</string>
<string name="no_history">Brak historii</string>
<string name="sync_connection_force_confirm">Renegocjuj</string>
<string name="sender_at_ts">%s o %s</string>
</resources>

View File

@@ -1305,4 +1305,32 @@
<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="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_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_section_contacts">Contatos</string>
<string name="settings_section_title_delivery_receipts">ENVIAR CONFIRMAÇÕES 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_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- 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>
</resources>

View File

@@ -227,7 +227,7 @@
<string name="icon_descr_server_status_error">Ошибка соединения с сервером</string>
<string name="icon_descr_server_status_pending">Ожидается соединение с сервером</string>
<string name="switch_receiving_address_question">Переключить адрес получения?</string>
<string name="switch_receiving_address_desc">Это экспериментальная функция! Она будет работать, только если на другом клиенте установлена версия 4.2. После завершения смены адреса Вы увидите сообщение — убедитесь, что Вы все еще можете получать сообщения от этого контакта (или члена группы).</string>
<string name="switch_receiving_address_desc">Адрес получения сообщений будет перемещён на другой сервер. Изменение адреса завершится после того как отправитель будет онлайн.</string>
<!-- Message Actions - SendMsgView.kt -->
<string name="icon_descr_send_message">Отправить сообщение</string>
<string name="icon_descr_record_voice_message">Записать голосовое сообщение</string>
@@ -1037,8 +1037,8 @@
<string name="v4_5_reduced_battery_usage_descr">Дополнительные улучшения скоро!</string>
<string name="v4_5_reduced_battery_usage">Уменьшенное потребление батареи</string>
<string name="v4_5_transport_isolation">Отдельные транспортные сессии</string>
<string name="moderated_description">удалено</string>
<string name="moderated_item_description">удалено %s</string>
<string name="moderated_description">модерировано</string>
<string name="moderated_item_description">модерировано %s</string>
<string name="delete_member_message__question">Удалить сообщение участника\?</string>
<string name="moderate_verb">Модерировать</string>
<string name="moderate_message_will_be_deleted_warning">Сообщение будет удалено для всех членов группы.</string>
@@ -1184,7 +1184,6 @@
<string name="alert_text_fragment_please_report_to_developers">Пожалуйста, сообщите об этой ошибке девелоперам.</string>
<string name="alert_text_msg_bad_id">Неправильный ID предыдущего сообщения (меньше или равен предыдущему).
\nЭто может произойти из-за ошибки программы, или когда соединение компроментировано.</string>
<string name="alert_text_fragment_permanent_error_reconnect">Эта ошибка постоянная для этого соединения, пожалуйста, соединитесь снова.</string>
<string name="alert_text_decryption_error_too_many_skipped">%1$d сообщений пропущено.</string>
<string name="allow_calls_only_if">Разрешить звонки, только если их разрешает Ваш контакт.</string>
<string name="allow_your_contacts_to_call">Разрешить Вашим контактам звонить Вам.</string>
@@ -1346,4 +1345,83 @@
<string name="item_info_no_text">нет текста</string>
<string name="search_verb">Поиск</string>
<string name="la_mode_off">Отключено</string>
<string name="receipts_section_description_1">Они могут быть переопределены в настройках контактов</string>
<string name="delivery_receipts_are_disabled">Отчёты о доставке выключены!</string>
<string name="snd_conn_event_ratchet_sync_ok">шифрование работает для %s</string>
<string name="snd_conn_event_ratchet_sync_required">требуется новое соглашение о шифровании для %s</string>
<string name="abort_switch_receiving_address_desc">Изменение адреса будет прекращено. Будет использоваться старый адрес.</string>
<string name="abort_switch_receiving_address">Прекратить изменение адреса</string>
<string name="receipts_section_contacts">Контакты</string>
<string name="receipts_contacts_disable_keep_overrides">Выключить (кроме исключений)</string>
<string name="conn_event_ratchet_sync_started">шифрование согласовывается…</string>
<string name="snd_conn_event_ratchet_sync_started">шифрование согласовывается для %s…</string>
<string name="receipts_contacts_title_disable">Выключить отчёты о доставке\?</string>
<string name="snd_conn_event_ratchet_sync_allowed">новое соглашение о шифровании разрешено для %s</string>
<string name="fix_connection_question">Починить соединение\?</string>
<string name="conn_event_ratchet_sync_required">требуется новое соглашение о шифровании</string>
<string name="error_enabling_delivery_receipts">Ошибка при включении отчётов о доставке!</string>
<string name="v5_2_fix_encryption_descr">Починить шифрование после восстановления из бэкапа.</string>
<string name="fix_connection_confirm">Починить</string>
<string name="no_history">Нет истории</string>
<string name="receipts_contacts_override_enabled">Отправка отчётов о доставке включена для %d контактов.</string>
<string name="sending_delivery_receipts_will_be_enabled_all_profiles">Отправка отчётов о доставке будет включена для всех контактов во всех видимых профилях чата.</string>
<string name="receipts_section_description">Установки для Вашего активного профиля</string>
<string name="receipts_contacts_override_disabled">Отправка отчётов о доставке выключена для %d контактов.</string>
<string name="sync_connection_force_desc">Шифрование работает, и новое соглашение не требуется. Это может привести к ошибкам соединения!</string>
<string name="v5_2_message_delivery_receipts_descr">Вторая галочка - знать, что доставлено! ✅</string>
<string name="you_can_enable_delivery_receipts_later_alert">Вы можете включить их позже в настройках Конфиденциальности.</string>
<string name="error_aborting_address_change">Ошибка при прекращении изменения адреса</string>
<string name="abort_switch_receiving_address_confirm">Прекратить</string>
<string name="abort_switch_receiving_address_question">Прекратить изменение адреса\?</string>
<string name="unfavorite_chat">Не избранный</string>
<string name="shutdown_alert_desc">Нотификации перестанут работать, пока вы не перезапустите приложение</string>
<string name="network_option_protocol_timeout_per_kb">Таймаут протокола на KB</string>
<string name="allow_to_send_files">Разрешить посылать файлы и медиа.</string>
<string name="group_members_can_send_files">Члены группы могут слать файлы и медиа.</string>
<string name="files_are_prohibited_in_group">Файлы и медиа запрещены в этой группе.</string>
<string name="files_and_media_prohibited">Файлы и медиа запрещены!</string>
<string name="only_owners_can_enable_files_and_media">Только владельцы группы могут разрешить файлы и медиа.</string>
<string name="files_and_media">Файлы и медиа</string>
<string name="shutdown_alert_question">Выключить\?</string>
<string name="settings_section_title_app">ПРИЛОЖЕНИЕ</string>
<string name="settings_restart_app">Перезапустить</string>
<string name="settings_shutdown">Выключить</string>
<string name="receipts_contacts_disable_for_all">Выключить для всех</string>
<string name="receipts_contacts_enable_for_all">Включить для всех</string>
<string name="receipts_contacts_enable_keep_overrides">Включить (кроме исключений)</string>
<string name="receipts_contacts_title_enable">Выключить отчёты о доставке\?</string>
<string name="settings_section_title_delivery_receipts">ОТПРАВКА ОТЧЁТОВ О ДОСТАВКЕ</string>
<string name="conn_event_ratchet_sync_agreed">шифрование согласовано</string>
<string name="snd_conn_event_ratchet_sync_agreed">шифрование согласовано для %s</string>
<string name="conn_event_ratchet_sync_ok">шифрование работает</string>
<string name="conn_event_ratchet_sync_allowed">новое соглашение о шифровании разрешено</string>
<string name="rcv_conn_event_verification_code_reset">код безопасности изменился</string>
<string name="send_receipts">Отправлять отчёты о доставке</string>
<string name="sender_at_ts">%s в %s</string>
<string name="fix_connection">Починить соединение</string>
<string name="fix_connection_not_supported_by_contact">Починка не поддерживается контактом.</string>
<string name="fix_connection_not_supported_by_group_member">Починка не поддерживается членом группы.</string>
<string name="renegotiate_encryption">Пересогласовать шифрование</string>
<string name="v5_2_favourites_filter">Быстро найти чаты</string>
<string name="v5_2_message_delivery_receipts">Отчеты о доставке сообщений!</string>
<string name="v5_2_more_things">Еще несколько изменений</string>
<string name="delivery_receipts_title">Отчёты о доставке!</string>
<string name="enable_receipts_all">Включить</string>
<string name="v5_2_disappear_one_message_descr">Даже когда они выключены в разговоре.</string>
<string name="v5_2_favourites_filter_descr">Фильтровать непрочитанные и избранные чаты.</string>
<string name="v5_2_fix_encryption">Сохраните Ваши соединения</string>
<string name="v5_2_disappear_one_message">Одно исчезающее сообщение</string>
<string name="v5_2_more_things_descr">- более стабильная доставка сообщений.
\n- немного улучшенные группы.
\n- и прочее!</string>
<string name="dont_enable_receipts">Не включать</string>
<string name="sending_delivery_receipts_will_be_enabled">Отправка отчётов о доставке будет включена для всех контактов.</string>
<string name="you_can_enable_delivery_receipts_later">Вы можете включить их позже в Настройках</string>
<string name="favorite_chat">Избранный</string>
<string name="error_synchronizing_connection">Ошибка синхронизации соединения</string>
<string name="in_reply_to">В ответ на</string>
<string name="no_filtered_chats">Нет отфильтрованных разговоров</string>
<string name="sync_connection_force_confirm">Пересогласовать</string>
<string name="sync_connection_force_question">Пересогласовать шифрование\?</string>
<string name="prohibit_sending_files">Запретить слать файлы и медиа.</string>
</resources>

View File

@@ -2,13 +2,13 @@
<resources>
<string name="notifications">Bildirimler</string>
<string name="connect_via_link_or_qr">Bağlantı ya da karekod ile bağlan</string>
<string name="create_group">Gizli grup oluştur</string>
<string name="create_group">Gizli toplu konuşma oluştur</string>
<string name="create_one_time_link">Tek kullanımlık davet bağlantısı oluştur</string>
<string name="your_simplex_contact_address">SimpleX addresin</string>
<string name="callstatus_missed">cevapsız çağrı</string>
<string name="incoming_video_call">Gelen görüntülü arama</string>
<string name="accept">Kabul et</string>
<string name="reject">Reddet</string>
<string name="accept">Onayla</string>
<string name="reject">Geri çevir</string>
<string name="incoming_audio_call">Gelen sesli arama</string>
<string name="ignore">Yok say</string>
<string name="settings_audio_video_calls">Sesli ve görüntülü aramalar</string>
@@ -28,19 +28,19 @@
<string name="abort_switch_receiving_address_question">Adres değişikliğini iptal et\?</string>
<string name="send_disappearing_message_30_seconds">30 saniye</string>
<string name="send_disappearing_message_5_minutes">5 dakika</string>
<string name="accept_contact_button">Kabul et</string>
<string name="accept_contact_button">Onayla</string>
<string name="accept_connection_request__question">Bağlantı isteğini kabul et\?</string>
<string name="learn_more_about_address">SimpleX Adresi Hakkında</string>
<string name="about_simplex_chat">SimpleX Chat Hakkında</string>
<string name="about_simplex">SimpleX Hakkında</string>
<string name="learn_more_about_address">SimpleX Adresiyle İlgili</string>
<string name="about_simplex_chat">SimpleX Chat İle İlgili</string>
<string name="about_simplex">SimpleX İle İlgili</string>
<string name="accept_call_on_lock_screen">Yanıtla</string>
<string name="abort_switch_receiving_address">Adres değişikliğini iptal et</string>
<string name="notifications_mode_service">Her zamanık</string>
<string name="notifications_mode_service">Sürekliık</string>
<string name="abort_switch_receiving_address_desc">Adres değişikliği iptal edilecek. Eski alıcı adresi kullanılacaktır.</string>
<string name="send_disappearing_message_1_minute">1 dakika</string>
<string name="clear_chat_warning">Tüm mesajlar silinecektir - bu geri alınamaz! Mesajlar SADECE sizin tarafınızda silinecektir.</string>
<string name="clear_chat_warning">Tüm iletiler silinecektir. Bu, geri alınamaz! İletiler, YALNIZCA senin için silinecektir.</string>
<string name="smp_servers_add">Sunucu ekle…</string>
<string name="database_passphrase_and_export">Veri tabanı parolası &amp; dışa aktarma</string>
<string name="database_passphrase_and_export">Veri tabanı ayarları</string>
<string name="one_time_link_short">tek kullanımlık bağlantı</string>
<string name="network_settings">Gelişmiş ağ ayarları</string>
<string name="app_version_title">Uygulama sürümü</string>
@@ -56,70 +56,70 @@
<string name="chat_item_ttl_week">1 hafta</string>
<string name="conn_event_ratchet_sync_started">şifreleme kabul ediliyor…</string>
<string name="group_member_role_admin">yönetici</string>
<string name="button_add_welcome_message">Karşılama mesajı ekleyin</string>
<string name="users_delete_all_chats_deleted">Tüm sohbetler ve mesajlar silinecektir - bu geri alınamaz!</string>
<string name="button_add_welcome_message">Karşılama iletisi ekleyin</string>
<string name="users_delete_all_chats_deleted">Tüm konuşmalar ve iletiler silinecektir. Bu, geri alınamaz!</string>
<string name="incognito_random_profile_description">Kişinize rastgele bir profil gönderilecek</string>
<string name="incognito_random_profile_from_contact_description">Bu bağlantıyı aldığınız kişiye rastgele bir profil gönderilecek</string>
<string name="color_primary">Ana renk</string>
<string name="chat_preferences_always">her zaman</string>
<string name="allow_message_reactions">Mesaj tepkilerine izin verin.</string>
<string name="v4_3_improved_server_configuration_desc">QR kodu taratarak sunucu ekle.</string>
<string name="chat_preferences_always">sürekli</string>
<string name="allow_message_reactions">İleti tepkilerine izin ver.</string>
<string name="v4_3_improved_server_configuration_desc">Karekodu okutarak sunucular ekle.</string>
<string name="v4_6_audio_video_calls">Sesli ve görüntülü aramalar</string>
<string name="chat_item_ttl_day">1 gün</string>
<string name="chat_item_ttl_month">1 ay</string>
<string name="add_address_to_your_profile">Profilinize adres ekleyin, böylece kişileriniz bunu diğer insanlarla paylaşabilir. Profil güncellemesi kişilerinize gönderilecektir.</string>
<string name="address_section_title">Adres</string>
<string name="v4_2_group_links_desc">Yöneticiler gruplara katılmak için bağlantılar oluşturabilir.</string>
<string name="all_group_members_will_remain_connected">Tüm grup üyeleri bağlı kalacaktır.</string>
<string name="v4_2_group_links_desc">Yöneticiler, toplu konuşmalara katılım bağlantısı oluşturabilirler.</string>
<string name="all_group_members_will_remain_connected">Konuşma üyelerinin tümü bağlı kalacaktır.</string>
<string name="allow_verb">İzin ver</string>
<string name="v5_0_app_passcode">Uygulama şifresi</string>
<string name="network_session_mode_user_description">Uygulamada sahip olduğunuz her sohbet profili için ayrı bir TCP bağlantısı (ve SOCKS kimliği) kullanılacaktır&lt;/b&gt;.</string>
<string name="network_session_mode_entity_description"><b>Her kişi ve grup üyesi için</b> ayrı bir TCP bağlantısı (ve SOCKS kimliği) kullanılacaktır.
\n<b>Lütfen unutmayın</b>: Çok sayıda bağlantınız varsa, piliniz ve veri kullanımınız önemli ölçüde artabilir ve bazı bağlantılar başarısız olabilir.</string>
<string name="save_and_notify_group_members">Kaydet ve grup üyelerini bilgilendir</string>
<string name="v5_0_app_passcode">Uygulama erişim kodu</string>
<string name="network_session_mode_user_description"><b>Uygulamadaki her konuşma profliniz için</b> ayrı bir TCP bağlantısı (ve SOCKS kimliği) kullanılacaktır.</string>
<string name="network_session_mode_entity_description"><b>Konuştuğun kişilerin ve toplu konuşma üyelerinin bütünü için</b> ayrı bir TCP bağlantısı (ve SOCKS kimliği) kullanılacaktır.
\n<b>Bilgin olsun</b>: Çok sayıda bağlantın varsa pilin ve veri kullanımın önemli ölçüde artabilir ve bazı bağlantılar başarısız olabilir.</string>
<string name="save_and_notify_group_members">Kaydet ve toplu konuşma üyelerine bildir</string>
<string name="notifications_mode_off">Uygulama açıkken çalışır</string>
<string name="search_verb">Ara</string>
<string name="reveal_verb">Göster</string>
<string name="revoke_file__confirm">İptal</string>
<string name="connect_via_link_or_qr_from_clipboard_or_in_person">(tarayın veya panodan yapıştırın)</string>
<string name="scan_QR_code">QR kodunu tara</string>
<string name="connect_via_link_or_qr_from_clipboard_or_in_person">(kodu okut ya da panodan yapıştır)</string>
<string name="scan_QR_code">Karekodu okut</string>
<string name="simplex_address">SimpleX adresi</string>
<string name="smp_servers_save">Sunucuları kaydet</string>
<string name="scan_code">Kodu tara</string>
<string name="smp_servers_scan_qr">Sunucu QR kodunu tara</string>
<string name="scan_code_from_contacts_app">Kişinizin uygulamasından güvenlik kodunu tara.</string>
<string name="scan_code">Kodu okut</string>
<string name="smp_servers_scan_qr">Sunucunun karekodunu okut</string>
<string name="scan_code_from_contacts_app">Konuştuğunuz kişinin uygulamasından güvenlik kodunu okut.</string>
<string name="ensure_ICE_server_address_are_correct_format_and_unique">WebRTC ICE sunucu adreslerinin doğru formatta olduğundan emin olun: Satırlara ayrılmış ve yinelenmemiş şekilde.</string>
<string name="save_servers_button">Kaydet</string>
<string name="theme_colors_section_title">TEMA RENKLERİ</string>
<string name="save_auto_accept_settings">Otomatik-kabul ayarlarını kaydet</string>
<string name="save_settings_question">Ayarları kaydet\?</string>
<string name="save_and_notify_contacts">Kaydet ve kişileri bilgilendir</string>
<string name="save_and_notify_contacts">Kaydet ve konuştuğun kişilere bildir</string>
<string name="save_preferences_question">Tercihleri kaydet\?</string>
<string name="save_profile_password">Profil şifresini kaydet</string>
<string name="profile_is_only_shared_with_your_contacts">Profil yalnızca kişilerinizle paylaşılır.</string>
<string name="next_generation_of_private_messaging">Yeni nesil gizli mesajlaşma</string>
<string name="save_profile_password">Profil parolasını kaydet</string>
<string name="profile_is_only_shared_with_your_contacts">Profil yalnızca konuştuğun kişilerle paylaşılır.</string>
<string name="next_generation_of_private_messaging">Gizli iletişimin gelecek kuşağı</string>
<string name="icon_descr_audio_off">Ses kapalı</string>
<string name="authentication_cancelled">Doğrulama iptal edildi</string>
<string name="settings_restart_app">Yeniden başlat</string>
<string name="settings_section_title_themes">TEMALAR</string>
<string name="restart_the_app_to_use_imported_chat_database">İçe aktarılan sohbet veri tabanını kullanmak için uygulamayı yeniden başlatın.</string>
<string name="restart_the_app_to_create_a_new_chat_profile">Yeni bir sohbet profili oluşturmak için uygulamayı yeniden başlatın.</string>
<string name="restart_the_app_to_use_imported_chat_database">İçe aktarılan konuşma veri tabanını kullanmak için uygulamayı yeniden başlat.</string>
<string name="restart_the_app_to_create_a_new_chat_profile">Yeni bir konuşma profili oluşturmak için uygulamayı yeniden başlatın.</string>
<string name="restore_database_alert_confirm">Geri Yükle</string>
<string name="restore_database">Veri tabanı yedeğini geri yükle</string>
<string name="restore_database_alert_title">Veri tabanı yedeğini geri yükle\?</string>
<string name="database_restore_error">Veri tabanını geri yüklerken hata</string>
<string name="database_downgrade">Veritabanı sürüm düşürme</string>
<string name="database_downgrade">Veri tabanının yapısal gerilemesi</string>
<string name="save_archive">Arşivi kaydet</string>
<string name="current_version_timestamp">%s (mevcut)</string>
<string name="save_and_update_group_profile">Kaydet ve grup profilini güncelle</string>
<string name="save_welcome_message_question">Karşılama mesajını kaydet\?</string>
<string name="save_and_update_group_profile">Kaydet ve toplu konuşma profilini güncelle</string>
<string name="save_welcome_message_question">Karşılama iletisini kaydet\?</string>
<string name="network_options_reset_to_defaults">Varsayılana sıfırla</string>
<string name="save_group_profile">Grup profilini kaydet</string>
<string name="save_group_profile">Toplu konuşma profilini kaydet</string>
<string name="network_option_seconds_label">sn</string>
<string name="network_options_save">Kaydet</string>
<string name="should_be_at_least_one_visible_profile">There should be at least one visible user profile.</string>
<string name="should_be_at_least_one_profile">En az bir kullanıcı profili olmalıdır.</string>
<string name="incognito_info_protects">Gizli mod, ana profil adınızın ve resminizin gizliliğini korur - her yeni kişi için rastgele yeni bir profil oluşturulur.</string>
<string name="incognito_info_protects">Gizlilik kipi, ana profil adının ve görselinin gizliliğini korur. Tüm yeni kişiler için rastgele yeni bir profil oluşturulur.</string>
<string name="theme_system">Sistem</string>
<string name="language_system">Sistem</string>
<string name="theme_light">ık</string>
@@ -129,10 +129,10 @@
<string name="theme">Tema</string>
<string name="save_color">Rengi kaydet</string>
<string name="import_theme">Temayı içe aktar</string>
<string name="import_theme_error">Temayı içe aktarırken hata</string>
<string name="import_theme_error">Temayı içe aktarırken hata oluştu</string>
<string name="import_theme_error_desc">Dosyanın doğru YAML sözdizimine sahip olduğundan emin olun. Tema dosyası yapısının bir örneğine sahip olmak için temayı dışa aktarın.</string>
<string name="reset_color">Renkleri sıfırla</string>
<string name="color_secondary">İkincil</string>
<string name="color_secondary">İkincil renk</string>
<string name="audio_video_calls">Sesli/görüntülü aramalar</string>
<string name="v4_3_improved_server_configuration">Geliştirilmiş sunucu yapılandırması</string>
<string name="v4_3_improved_privacy_and_security">Geliştirilmiş gizlilik ve güvenlik</string>
@@ -140,50 +140,50 @@
<string name="save_verb">Kaydet</string>
<string name="saved_ICE_servers_will_be_removed">Kaydedilen WebRTC ICE sunucuları kaldırılacaktır.</string>
<string name="smp_save_servers_question">Sunucuları kaydet\?</string>
<string name="save_passphrase_and_open_chat">Parolayı kaydedin ve sohbetiın</string>
<string name="save_passphrase_and_open_chat">Parolayı kaydet ve konuşmayı</string>
<string name="save_and_notify_contact">Kaydet ve kişiyi bilgilendir</string>
<string name="save_passphrase_in_keychain">Parolayı Keystore\'da kaydedin.</string>
<string name="save_passphrase_in_keychain">Parolayı, Keystore\'a kaydet.</string>
<string name="icon_descr_audio_on">Ses açık</string>
<string name="member_role_will_be_changed_with_notification">Rol \"%s\" olarak değiştirilecek. Gruptaki herkes bilgilendirilecektir.</string>
<string name="member_role_will_be_changed_with_notification">Yetki, \"%s\" olarak değiştirelecek. Toplu konuşmadakilerin bütününe bildirilecek.</string>
<string name="calls_prohibited_with_this_contact">Sesli/görüntülü aramalar yasaktır.</string>
<string name="la_auth_failed">Kimlik doğrulama başarısız</string>
<string name="icon_descr_address">SimpleX adresi</string>
<string name="moderate_message_will_be_deleted_warning">Mesaj tüm üyeler için silinecek.</string>
<string name="the_messaging_and_app_platform_protecting_your_privacy_and_security">Gizliliğinizi ve güvenliğinizi koruyan mesajlaşma ve uygulama platformu.</string>
<string name="settings_section_title_incognito">Gizli mod</string>
<string name="member_role_will_be_changed_with_invitation">Rol \"%s\" olarak değiştirilecek. Üye yeni bir davetiye alacaktır.</string>
<string name="group_unsupported_incognito_main_profile_sent">Gizli mod burada desteklenmiyor - ana profiliniz grup üyelerine gönderilecek</string>
<string name="role_in_group">Rol</string>
<string name="allow_voice_messages_question">Sesli mesajlara izin ver\?</string>
<string name="moderate_message_will_be_deleted_warning">İleti, tüm üyeler için silinecek.</string>
<string name="the_messaging_and_app_platform_protecting_your_privacy_and_security">Gizliliğinizi ve güvenliğinizi koruyan iletişim ve uygulama platformu.</string>
<string name="settings_section_title_incognito">Gizlilik kipi</string>
<string name="member_role_will_be_changed_with_invitation">Yetki, \"%s\" olarak değiştirilecek. Üye, yeni bir davetiye alacak.</string>
<string name="group_unsupported_incognito_main_profile_sent">Gizlilik kipi burada desteklenmiyor. Ana profiliniz, toplu konuşma üyelerine gönderilecek</string>
<string name="role_in_group">Yetki</string>
<string name="allow_voice_messages_question">Sesli iletilere izin ver\?</string>
<string name="users_add">Profil ekle</string>
<string name="allow_direct_messages">Üyelere direkt mesaj göndermeye izin ver.</string>
<string name="allow_to_send_disappearing">Kaybolan mesajlar göndermeye izin ver.</string>
<string name="allow_to_delete_messages">Gönderilen mesajların geri alınamaz şekilde silinmesine izin ver.</string>
<string name="allow_direct_messages">Üyelere doğrudan ileti gönderilmesine izin ver.</string>
<string name="allow_to_send_disappearing">Kendiliğinden yok olan iletiler göndermeye izin ver.</string>
<string name="allow_to_delete_messages">Gönderilen iletilerin kalıcı olarak silinmesine izin ver.</string>
<string name="allow_to_send_files">Dosya ve medya göndermeye izin ver.</string>
<string name="allow_to_send_voice">Sesli mesaj göndermeye izin ver.</string>
<string name="allow_to_send_voice">Sesli ileti göndermeye izin ver.</string>
<string name="share_invitation_link">Tek kullanımlık bağlantıyı paylaş</string>
<string name="connect_via_invitation_link">Davet bağlantısı ile bağlan\?</string>
<string name="connect_via_group_link">Grup bağlantısı ile bağlan\?</string>
<string name="you_will_join_group">Bu bağlantının yönlendirdiği bir gruba katılacak ve grup üyeleriyle bağlantı kuracaksınız.</string>
<string name="connect_via_group_link">Toplu konuşma bağlantısı ile bağlan\?</string>
<string name="you_will_join_group">Bu bağlantının yönlendirdiği bir toplu konuşmaya katılacak ve üyeleriyle bağlantı kuracaksın.</string>
<string name="opening_database">Veri tabanıılıyor…</string>
<string name="server_connecting">bağlanılıyor</string>
<string name="moderated_item_description">%s tarafından yönetiliyor</string>
<string name="moderated_item_description">%s yönetiyor</string>
<string name="sending_files_not_yet_supported">dosya gönderme henüz desteklenmiyor</string>
<string name="unknown_message_format">bilinmeyen mesaj biçimi</string>
<string name="invalid_message_format">geçersiz mesaj biçimi</string>
<string name="unknown_message_format">bilinmeyen ileti biçimi</string>
<string name="invalid_message_format">geçersiz ileti biçimi</string>
<string name="live">CANLI</string>
<string name="invalid_data">geçersiz veri</string>
<string name="display_name_connection_established">bağlantı kuruldu</string>
<string name="display_name_invited_to_connect">bağlanmaya davet etti</string>
<string name="display_name_connecting">bağlanılıyor…</string>
<string name="description_you_shared_one_time_link">tek kullanımlık link paylaştınız</string>
<string name="description_via_group_link">grup bağlantısı ile</string>
<string name="description_via_group_link">toplu konuşma bağlantısı ile</string>
<string name="description_via_one_time_link">tek kullanımlık bağlantı ile</string>
<string name="simplex_link_invitation">SimpleX tek kullanımlık bağlantı</string>
<string name="simplex_link_group">SimpleX grup bağlantısı</string>
<string name="simplex_link_group">SimpleX toplu konuşma bağlantısı</string>
<string name="simplex_link_mode">SimpleX bağlantıları</string>
<string name="simplex_link_mode_description">ıklama</string>
<string name="simplex_link_mode_full">Tam bağlantı</string>
<string name="simplex_link_mode_full">Bütün olan bağlantı</string>
<string name="thousand_abbreviation">bin</string>
<string name="profile_will_be_sent_to_contact_sending_link">Profiliniz, bu bağlantıyı aldığınız kişiye gönderilecek.</string>
<string name="connect_via_contact_link">Kişi bağlantısı üzerinden bağlan\?</string>
@@ -193,8 +193,486 @@
<string name="deleted_description">silindi</string>
<string name="receiving_files_not_yet_supported">dosya alma henüz desteklenmiyor</string>
<string name="sender_you_pronoun">sen</string>
<string name="invalid_chat">geçersiz sohbet</string>
<string name="invalid_chat">geçersiz konuşma</string>
<string name="connection_local_display_name">bağlantı %1$d</string>
<string name="simplex_link_mode_browser">Tarayıcı ile</string>
<string name="simplex_link_connection">%1$s ile</string>
<string name="connection_error">Bağlantı hatası</string>
<string name="connection_timeout">Bağlantı süre aşımı</string>
<string name="cannot_receive_file">Dosya alınamıyor</string>
<string name="notifications_mode_periodic_desc">Yeni iletilerin gelme durumunu en fazla 1 dakikalığına her 10 dakika denetle.</string>
<string name="reply_verb">Yanıtla</string>
<string name="chat_with_developers">Geliştiricilerle konuş</string>
<string name="group_connection_pending">bağlanılıyor…</string>
<string name="attach">Ekle</string>
<string name="icon_descr_server_status_connected">Bağlanıldı</string>
<string name="disappearing_message">Kendiliğinden yok olan ileti</string>
<string name="send_disappearing_message">Kendiliğinden yok olan ileti gönder</string>
<string name="send_disappearing_message_send">Gönder</string>
<string name="use_camera_button">Kamera</string>
<string name="cancel_verb">İptal et</string>
<string name="icon_descr_cancel_live_message">Canlı iletileri iptal et</string>
<string name="confirm_verb">Onayla</string>
<string name="gallery_video_button">Video</string>
<string name="reset_verb">Sıfırla</string>
<string name="icon_descr_cancel_link_preview">Bağlantı ön izlemesini iptal et</string>
<string name="clear_verb">Temizle</string>
<string name="clear_chat_menu_action">Temizle</string>
<string name="clear_chat_button">Konuşmayı temizle</string>
<string name="icon_descr_close_button">Düğmeyi kapat</string>
<string name="you_accepted_connection">Bağlantıyı onayladın</string>
<string name="reject_contact_button">Geri çevir</string>
<string name="connection_request_sent">Bağlantı isteği gönderildi!</string>
<string name="connect_button">Bağlan</string>
<string name="smp_servers_check_address">Sunucu adresini denetle ve yeniden dene.</string>
<string name="network_session_mode_entity">Bağlantı</string>
<string name="network_session_mode_user">Konuşma profili</string>
<string name="create_address">Adres oluştur</string>
<string name="callstatus_accepted">Yanıtlanmış arama</string>
<string name="callstatus_calling">aranıyor</string>
<string name="callstatus_in_progress">arama yapılıyor</string>
<string name="colored_text">renklendirilmiş</string>
<string name="confirm_password">Parolayı onayla</string>
<string name="callstatus_rejected">geri çevrilmiş çağrı</string>
<string name="create_profile_button">Oluştur</string>
<string name="callstatus_error">görüşme hatası</string>
<string name="callstate_connected">Bağlanıldı</string>
<string name="callstate_connecting">bağlanılıyor…</string>
<string name="call_already_ended">Görüşmesi çoktan bitti!</string>
<string name="your_calls">Görüşmelerin</string>
<string name="open_verb"></string>
<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 ileti atlanıldı.</string>
<string name="chat_database_deleted">Konuşma veri tabanı silindi</string>
<string name="error_with_info">Hata: %s</string>
<string name="unknown_error">Bilinmeyen hata</string>
<string name="rcv_group_event_member_connected">bağlanıldı</string>
<string name="group_member_role_member">üye</string>
<string name="group_member_status_intro_invitation">bağlanılıyor (tanıtılma isteği)</string>
<string name="group_member_status_introduced">bağlanılıyor (tanıtıldı)</string>
<string name="group_member_status_accepted">bağlanılıyor (onaylandı)</string>
<string name="group_member_status_connecting">bağlanılıyor</string>
<string name="clear_contacts_selection_button">Temizle</string>
<string name="change_verb">Değiştir</string>
<string name="color_primary_variant">Ek ana renk</string>
<string name="chat_preferences_yes">evet</string>
<string name="accept_feature">Onayla</string>
<string name="allow_disappearing_messages_only_if">Konuştuğun kişiler, kendiliğinden yok olan iletilere izin veriyorsa sen de ver.</string>
<string name="allow_your_contacts_irreversibly_delete">Konuştuğun kişilerin gönderilen iletileri kalıcı olarak silmesine izin ver.</string>
<string name="prohibit_sending_disappearing_messages">Kendiliğinden yok olan ileti gönderimini engelle.</string>
<string name="allow_irreversible_message_deletion_only_if">Konuştuğun kişi, kalıcı olarak silinebilen iletilere izin veriyorsa sen de ver.</string>
<string name="allow_message_reactions_only_if">Konuştuğun kişi, ileti tepkilerine izin veriyorsa sen de ver.</string>
<string name="only_you_can_send_disappearing">Yalnızca sen kendiliğinden yok olan ileti gönderebilirsin.</string>
<string name="only_your_contact_can_send_disappearing">Yalnızca konuştuğun kişi kendiliğinden yok olan ileti gönderebilir.</string>
<string name="both_you_and_your_contact_can_send_disappearing">Konuştuğun kişi de sen de kendiliğinden yok olan iletileri göndermeye izin veriyorsunuz.</string>
<string name="disappearing_prohibited_in_this_chat">Bu konuşmada kendiliğinden yok olan iletilere izin verilmiyor.</string>
<string name="both_you_and_your_contact_can_make_calls">Konuştuğun kişi de sen de arama yapabilirsiniz.</string>
<string name="v4_4_disappearing_messages_desc">Gönderilen iletiler, önceden belirlenmiş bir süre sonra silecektir.</string>
<string name="v5_1_self_destruct_passcode_descr">Kullanıldığında bütün veriler silinir.</string>
<string name="timed_messages">Kendiliğinden yok olan iletiler</string>
<string name="allow_your_contacts_to_send_disappearing_messages">Konuştuğun kişilerin sana, kendiğinden yok olan iletiler göndermesine izin ver.</string>
<string name="disappearing_messages_are_prohibited">Bu toplu konuşmada kendiliğinden yok olan iletilere izin verilmiyor.</string>
<string name="alert_text_decryption_error_n_messages_failed_to_decrypt">%1$d ileti deşifrelenemedi.</string>
<string name="group_info_section_title_num_members">%1$s ÜYE</string>
<string name="integrity_msg_skipped">%1$d atlanılmış ileti</string>
<string name="allow_calls_only_if">Konuştuğun kişi, aramalara izin veriyorsa sen de ver.</string>
<string name="allow_your_contacts_adding_message_reactions">Konuştuğun kişilerin iletilerine tepki eklemesine izin ver.</string>
<string name="allow_your_contacts_to_call">Konuştuğun kişilerin seni aramasına izin ver.</string>
<string name="all_your_contacts_will_remain_connected">Konuştuğun kişilerin tümü bağlı kalacaktır.</string>
<string name="icon_descr_cancel_file_preview">Dosya ön izlemesini iptal et</string>
<string name="chat_database_imported">Konuşma veri tabanı içe aktarıldı</string>
<string name="icon_descr_cancel_image_preview">Görsel ön izlemesini iptal et</string>
<string name="clear_chat_question">Konuşmayı temizle\?</string>
<string name="v4_6_chinese_spanish_interface">Çince ve İspanyolca arayüz</string>
<string name="confirm_new_passphrase">Yeni parolayı onayla…</string>
<string name="info_row_connection">Bağlantı</string>
<string name="smp_server_test_connect">Bağlan</string>
<string name="notification_contact_connected">Bağlanıldı</string>
<string name="contact_connection_pending">bağlanılıyor…</string>
<string name="video_descr">Video</string>
<string name="enter_passphrase">Parolayı gir…</string>
<string name="color_secondary_variant">Ek ikincil renk</string>
<string name="button_remove_member">Üyeyi çıkar</string>
<string name="remove_member_confirmation">Kaldır</string>
<string name="settings_section_title_calls">ARAMALAR</string>
<string name="settings_section_title_chats">KONUŞMALAR</string>
<string name="settings_section_title_you">SEN</string>
<string name="chat_database_section">KONUŞMA VERİ TABANI</string>
<string name="remove_passphrase">Kaldır</string>
<string name="wrong_passphrase_title">Yanlış parola!</string>
<string name="confirm_database_upgrades">Veri tabanının yapısal ilerlemelerini onayla</string>
<string name="rcv_group_event_member_deleted">%1$s çıkarıldı</string>
<string name="rcv_group_event_user_deleted">seni çıkardı</string>
<string name="group_member_status_connected">bağlanıldı</string>
<string name="group_member_status_announced">bağlanılıyor (duyruldu)</string>
<string name="group_info_member_you">sen: %1$s</string>
<string name="group_member_status_removed">çıkarıldı</string>
<string name="member_info_section_title_member">ÜYE</string>
<string name="group_members_can_send_disappearing">Toplu konuşma üyeleri kendiliğinden yok olan iletiler gönderebilir.</string>
<string name="prohibit_sending_disappearing">Kendiliğinden yok olan ileti gönderimini engelle.</string>
<string name="allow_voice_messages_only_if">Konuştuğun kişi, sesli iletilere izin veriyorsa sen de ver.</string>
<string name="allow_your_contacts_to_send_voice_messages">Konuştuğun kişilerin sesli ileti göndermesine izin ver.</string>
<string name="both_you_and_your_contact_can_add_message_reactions">Konuştuğun kişi de sen de iletilere tepki ekleyebilirsinsiz.</string>
<string name="both_you_and_your_contact_can_send_voice">Konuştuğun kişi de sen de sesli ileti gönderebilirsiniz.</string>
<string name="v4_4_disappearing_messages">Kendiliğinden yok olan iletiler</string>
<string name="both_you_and_your_contacts_can_delete">Konuştuğun kişi de sen de iletilere kalıcı olarak silebilirsiniz.</string>
<string name="decryption_error">Deşifreleme hatası</string>
<string name="description_via_contact_address_link">kişi adres bağlantısı ile</string>
<string name="simplex_link_contact">SimpleX bağlantı adresi</string>
<string name="simplex_link_mode_browser_warning">Bağlantıyı tarayıcıda açmak, bağlantı gizliliğini ve güvenliğini azaltabilir. Güvenilmeyen SimpleX bağlantıları kırmızı olacaktır.</string>
<string name="error_saving_smp_servers">SMP sunucuları kaydedilirken hata oluştu</string>
<string name="error_saving_xftp_servers">XFTP sunucuları kaydedilirken hata oluştu</string>
<string name="error_loading_smp_servers">SMP sunucuları yüklenirken hata oluştu</string>
<string name="error_loading_xftp_servers">XFTP sunucuları yüklenirken hata oluştu</string>
<string name="error_setting_network_config">Bağlantı yapılandırması güncellenirken hata</string>
<string name="failed_to_parse_chat_title">Konuşma yüklenemedi</string>
<string name="failed_to_parse_chats_title">Konuşmalar yüklenemedi</string>
<string name="contact_developers">Lütfen uygulamayı güncelleyin ve geliştiricilerle iletişime geçin.</string>
<string name="failed_to_create_user_title">Profil oluştururken hata oluştu!</string>
<string name="failed_to_create_user_duplicate_title">Aynısı bulunan görünen ad!</string>
<string name="failed_to_create_user_duplicate_desc">Aynı görünen ada sahip bir konuşma profilin zaten var. Lütfen başka bir ad seç.</string>
<string name="failed_to_active_user_title">Profil değiştirilirken hata oluştu!</string>
<string name="network_error_desc">Lütfen, %1$s ile ağ bağlantınızı denetleyin ve yeniden deneyin.</string>
<string name="error_adding_members">Üye(ler) eklenirken hata oluştu</string>
<string name="error_loading_details">Ayrıntıları yüklerken hata oluştu</string>
<string name="error_sending_message">İleti gönderilirken hata oluştu</string>
<string name="error_creating_address">Adres oluştururken hata oluştu</string>
<string name="error_changing_address">Adres değiştirirken hata oluştu</string>
<string name="contact_wants_to_connect_via_call">1$s sizinle şu yolla bağlantı kurmak istiyor</string>
<string name="error_changing_message_deletion">Ayarları değiştirirken hata oluştu</string>
<string name="error_creating_link_for_group">Toplu konuşma bağlantısı oluştururken hata oluştu</string>
<string name="error_changing_role">Yetki değiştirirken hata oluştu</string>
<string name="error_deleting_link_for_group">Toplu konuşma bağlantısı silinirken hata oluştu</string>
<string name="error_deleting_contact">Konuştuğun kişiyi silerken hata oluştu</string>
<string name="error_deleting_contact_request">Konuşma isteği silinirken hata oluştu</string>
<string name="error_deleting_group">Toplu konuşma silinirken hata oluştu</string>
<string name="error_deleting_pending_contact_connection">Bekleyen konuşma bağlantısını silinirken hata oluştu</string>
<string name="error_deleting_user">Kullanıcı profili silinirken hata oluştu</string>
<string name="error_deleting_database">Konuşma veri tabanı silinirken hata oluştu</string>
<string name="error_encrypting_database">Veri tabanı şifrelenirken hata oluştu</string>
<string name="error_joining_group">Toplu konuşmaya katılırken hata oluştu</string>
<string name="connection_error_auth">Bağlantı hatası (DOĞRULAMA)</string>
<string name="database_initialization_error_title">Veri tabanı oluşturulamıyor</string>
<string name="error_exporting_chat_database">Konuşma veri tabanını dışarı aktarılırken hata oluştu</string>
<string name="error_importing_database">Konuşma veri tabanını içe aktarılırken hata oluştu</string>
<string name="database_error">Veri tabanı hatası</string>
<string name="create_your_profile">Profilini oluştur</string>
<string name="custom_time_picker_custom">kişiselleştirilmiş</string>
<string name="database_passphrase_will_be_updated">Veri tabanının şifrelemesinde kullanılan parolası güncellenecek.</string>
<string name="encrypted_with_random_passphrase">Veri tabanı, rastgele bir parola ile şifrelendi. İstersen parolayı değiştirebilirsin.</string>
<string name="ttl_d">%dg</string>
<string name="delete_link_question">Bağlantıyı sil\?</string>
<string name="ttl_hours">%d saat</string>
<string name="v4_6_group_moderation_descr">Yeni yöneticiler artık:
\n- üyelerin iletilerini silebilir.
\n- üyeleri etkisizleştirebilir (\"gözlemci\" yetkisi)</string>
<string name="receipts_section_contacts">Konuşmalar</string>
<string name="create_group_link">Toplu konuşma bağlantısı oluştur</string>
<string name="error_accepting_contact_request">Konuşma isteğini onaylarken hata oluştu</string>
<string name="error_aborting_address_change">Adres değişikliğini iptal ederken hata oluştu</string>
<string name="smp_server_test_create_file">Doysa oluştur</string>
<string name="smp_server_test_delete_file">Dosyayı sil</string>
<string name="la_lock_mode_passcode">Erişim kodu girişi</string>
<string name="la_change_app_passcode">Erişim kodunu değiştir</string>
<string name="la_enter_app_passcode">Erişim Kodunu Gir</string>
<string name="la_no_app_password">Erişim kodu yok</string>
<string name="la_current_app_passcode">Güncel Erişim Kodu</string>
<string name="copy_verb">Kopyala</string>
<string name="delete_verb">Sil</string>
<string name="delete_message__question">İletiyi sil\?</string>
<string name="delete_member_message__question">Üye iletisini sil\?</string>
<string name="for_me_only">Benim için sil</string>
<string name="icon_descr_context">İçerik simgesi</string>
<string name="image_decoding_exception_title">Dekodlama hatası</string>
<string name="maximum_supported_file_size">Güncel olarak en çok %1$s boyutunda dosya desteklenmektedir.</string>
<string name="icon_descr_server_status_error">Hata</string>
<string name="send_disappearing_message_custom_time">Kişiselleştirilmiş süre</string>
<string name="copied">Panoya kopyalandı</string>
<string name="share_one_time_link">Tek kullanımlık davet bağlantısı oluştur</string>
<string name="desktop_scan_QR_code_from_app_via_scan_QR_code">💻 masaüstü: uygulamadaki <b>Karekodu okut</b> ile karekodu okut</string>
<string name="delete_pending_connection__question">Bekleyen bağlantıları sil\?</string>
<string name="delete_contact_menu_action">Sil</string>
<string name="delete_group_menu_action">Sil</string>
<string name="image_descr_qr_code">Karekod</string>
<string name="scan_qr_to_connect_to_contact">Konuştuğun kişi, bağlanmak için karakodu okutabilir ya da uygulamadaki bağlantıyı kullanabilir.</string>
<string name="smp_servers_delete_server">Sunucuyu sil</string>
<string name="contribute">Katkıda bulun</string>
<string name="network_use_onion_hosts_no">Hayır</string>
<string name="customize_theme_title">Renk temalarını kişiselleştir</string>
<string name="core_version">Çekirdek sürümü: v%s</string>
<string name="delete_address__question">Adresi sil\?</string>
<string name="create_address_and_let_people_connect">Kişilerin sana bağlanması için bir adres oluştur.</string>
<string name="create_simplex_address">SimpleX adresi oluştur</string>
<string name="delete_address">Adresi sil</string>
<string name="continue_to_next_step">Devam et</string>
<string name="delete_image">Görseli sil</string>
<string name="you_control_your_chat">Konuşman, senin elinde!</string>
<string name="create_profile">Profil oluştur</string>
<string name="decentralized">Özeksiz</string>
<string name="confirm_passcode">Erişim kodunu onayla</string>
<string name="incorrect_passcode">Yanlış erişim kodu</string>
<string name="new_passcode">Yeni Erişim Kodu</string>
<string name="submit_passcode">Gönder</string>
<string name="la_mode_passcode">Erişim kodu</string>
<string name="passcode_changed">Erişim kodu değişti!</string>
<string name="passcode_not_changed">Erişim kodu değişmedi!</string>
<string name="passcode_set">Erişim kodu belirlendi!</string>
<string name="enabled_self_destruct_passcode">Tüm verileri yok eden erişim kodunu etkinleştir</string>
<string name="self_destruct">Tüm verileri yok eden</string>
<string name="change_self_destruct_mode">Tüm verileri yok etme modunu değiştir</string>
<string name="change_self_destruct_passcode">Tüm verileri yok eden erişim kodunu değiştir</string>
<string name="self_destruct_passcode_changed">Tüm verileri yok eden erişim kodu değişti!</string>
<string name="self_destruct_passcode_enabled">Tüm verileri yok eden erişim kodu etkinleşti!</string>
<string name="enable_self_destruct">Tüm verileri yok etmeyi etkinleştir</string>
<string name="self_destruct_passcode">Tüm verileri yok eden erişim kodu</string>
<string name="app_passcode_replaced_with_self_destruct">Uygulama erişim kodu, tüm verileri yok eden bir erişim kodu ile değiştirilmiştir.</string>
<string name="if_you_enter_self_destruct_code">Eğer uygulamayı açarken tüm verileri yok eden erişim kodunu girersen:</string>
<string name="if_you_enter_passcode_data_removed">Eğer uygulamayı açarken bu erişim kodunu kullanırsan uygulama içi tüm veriler kalıcı olarak silinecektir!</string>
<string name="set_passcode">Erişim kodu belirle</string>
<string name="settings_section_title_device">AYGIT</string>
<string name="database_passphrase">Veri tabanı parolası</string>
<string name="set_password_to_export_desc">Veri tabanı, rastgele bir parola ile şifrelendi. Dışa aktarmadan önce lütfen değiştir.</string>
<string name="delete_files_and_media_question">Dosyaları ve medyayı sil\?</string>
<string name="database_will_be_encrypted">Veri tabanı şifrelenecektir.</string>
<string name="archive_created_on_ts">%1$s tarihinde oluşturuldu</string>
<string name="delete_archive">Belgeliği sil</string>
<string name="delete_chat_archive_question">Konuşma belgeliğini sil\?</string>
<string name="rcv_group_event_changed_member_role">%s üyesinin yetkisi %s olarak değiştirildi</string>
<string name="rcv_group_event_group_deleted">silinmiş toplu konuşma</string>
<string name="snd_group_event_changed_role_for_yourself">kendi yetkini, %s olarak değiştirdin</string>
<string name="group_member_role_observer">gözlemci</string>
<string name="group_member_status_creator">oluşturan</string>
<string name="no_contacts_selected">Hiçbir konuşma seçilmedi</string>
<string name="num_contacts_selected">%d tane konuşma seçildi</string>
<string name="share_text_database_id">Veri tabanı kimliği: %d</string>
<string name="info_row_deleted_at">Şu tarihte silindi</string>
<string name="share_text_deleted_at">Şu tarihte silindi: %s</string>
<string name="item_info_current">(güncel)</string>
<string name="change_member_role_question">Toplu konuşma yetkisini değiştir\?</string>
<string name="chat_preferences_default">varsayılan (%s)</string>
<string name="v5_1_custom_themes_descr">Renk temalarını kişiselleştir ve paylaş</string>
<string name="v5_1_custom_themes">Kişiselleştirilmiş temalar</string>
<string name="delete_database">Veri tabanını sil</string>
<string name="settings_developer_tools">Geliştirici araçları</string>
<string name="delete_chat_profile_question">Konuşma profilini sil\?</string>
<string name="delete_files_and_media_all">Tüm dosyaları sil</string>
<string name="delete_files_and_media_for_all_users">Tüm konuşma profilleri için dosyaları sil</string>
<string name="current_passphrase">Güncel parola…</string>
<string name="database_encrypted">Veri tabanı şifrelendi!</string>
<string name="delete_messages">İletileri sil</string>
<string name="delete_messages_after">Şu süre sonra iletileri sil</string>
<string name="total_files_count_and_size">%d tane dosya, toplam boyutu %s</string>
<string name="new_passphrase">Yeni parola…</string>
<string name="database_will_be_encrypted_and_passphrase_stored">Veri tabanı şifrelenecek ve parola, Keystore\'a kaydedilecek.</string>
<string name="database_encryption_will_be_updated">Veri tabanının şifrelemesinde kullanılan parola güncellenecek ve Keystore\'da barındıralacak.</string>
<string name="passphrase_is_different">Veri tabanı parolası, Keystore\'da barındırılandan değişik.</string>
<string name="database_passphrase_is_required">Konuşmayı açmak için veri tabanı parolası gerekli.</string>
<string name="database_upgrade">Veri tabanını yapısal olarak ilerlet</string>
<string name="rcv_group_event_changed_your_role">yetkin, %s olarak değişti</string>
<string name="snd_group_event_changed_member_role">%s üyesinin yetkisini, %s olarak değiştirdin</string>
<string name="group_member_role_owner">iye/sahip</string>
<string name="icon_descr_expand_role">Yetki seçimini genişlet</string>
<string name="initial_member_role">İlk olarak verilen yetki</string>
<string name="new_member_role">Yeni üye yetkisi</string>
<string name="button_delete_group">Toplu konuşmayı sil</string>
<string name="delete_group_question">Toplu konuşmayı sil\?</string>
<string name="button_create_group_link">Bağlantı oluştur</string>
<string name="delete_link">Bağlantıyı sil</string>
<string name="info_row_database_id">Veri tabanı kimliği</string>
<string name="change_role">Yetkiyi değiştir</string>
<string name="create_secret_group_title">Gizli toplu konuşma oluştur</string>
<string name="chat_preferences_no">hayır</string>
<string name="delete_chat_profile">Konuşma profilini sil</string>
<string name="users_delete_question">Konuşma profilini sil\?</string>
<string name="delete_profile">Profili sil</string>
<string name="full_deletion">Herkes için sil</string>
<string name="ttl_day">%d gün</string>
<string name="ttl_days">%d gün</string>
<string name="ttl_h">%ds</string>
<string name="ttl_hour">%d saat</string>
<string name="v5_1_self_destruct_passcode">Tüm verileri yok eden erişim kodu</string>
<string name="custom_time_unit_days">gün</string>
<string name="smp_server_test_disconnect">Bağlantıyı kes</string>
<string name="la_minutes">%d dakika</string>
<string name="la_seconds">%d saniye</string>
<string name="auth_disable_simplex_lock">SimpleX kilidini kaldır</string>
<string name="auth_enable_simplex_lock">SimpleX kilidini etkinleştir</string>
<string name="icon_descr_edited">Düzeltilmiş</string>
<string name="icon_descr_server_status_disconnected">Bağlantı kesildi</string>
<string name="icon_descr_email">E-posta</string>
<string name="edit_image">Görseli düzenle</string>
<string name="encrypted_audio_call">uçtan uca şifreli sesli arama</string>
<string name="encrypted_video_call">uçtan uca şifreli görüntülü arama</string>
<string name="status_e2e_encrypted">uçtan uca şifreli</string>
<string name="allow_accepting_calls_from_lock_screen">Ayarlardan, kilitli ekrandan aramaları izin ver.</string>
<string name="integrity_msg_duplicate">Aynısı bulunan ileti</string>
<string name="enable_lock">Kilidi etkinleştir</string>
<string name="info_row_disappears_at">Kendiliğinden şu sürede yok olacak</string>
<string name="share_text_disappears_at">Kendiliğinden şu sürede yok olacak: %s</string>
<string name="feature_enabled">etkinleşti</string>
<string name="direct_messages">Doğrudan iletiler</string>
<string name="no_call_on_lock_screen">Etkinsizleştir</string>
<string name="display_name_cannot_contain_whitespace">Görünen ad, boşluk gibi aralıklama türleri içeremez.</string>
<string name="display_name">Görünen Ad</string>
<string name="display_name__field">Görünen ad:</string>
<string name="ttl_mth">%day</string>
<string name="ttl_s">%dsn</string>
<string name="dont_create_address">Adres oluşturma</string>
<string name="smp_server_test_download_file">Dosyayı indir</string>
<string name="edit_verb">Düzelt</string>
<string name="network_option_enable_tcp_keep_alive">TCP keep-alive özelliğini etkinleştir</string>
<string name="encrypted_database">Şifrelenmiş veri tabanı</string>
<string name="receipts_contacts_disable_for_all">Tüm kişiler için etkinsizleştir.</string>
<string name="receipts_contacts_disable_keep_overrides">Etkisizleştir (ayrıcalıklar kalsın)</string>
<string name="receipts_contacts_enable_for_all">tüm kişiler için etkinleştir</string>
<string name="enable_automatic_deletion_question">Kendi kendine silinen iletileri etkinleştir\?</string>
<string name="encrypt_database">Şifrele</string>
<string name="encrypt_database_question">Veri tabanını şifrele\?</string>
<string name="conn_event_ratchet_sync_ok">şifreleme etkin</string>
<string name="button_edit_group_profile">Toplu konuşma profilini düzenle</string>
<string name="conn_event_ratchet_sync_agreed">şifreleme kararlaştı</string>
<string name="snd_conn_event_ratchet_sync_agreed">%s üyesi için şifreleme kararlaştı</string>
<string name="conn_level_desc_direct">doğrudan</string>
<string name="dont_show_again">Yeniden gösterme</string>
<string name="direct_messages_are_prohibited_in_chat">Bu toplu konuşmada üyeler arası doğrudan iletiler yasaklıdır.</string>
<string name="feature_enabled_for_contact">konuşulan kişi için etkinleşti</string>
<string name="feature_enabled_for_you">senin için etkinleşti</string>
<string name="ttl_sec">%d sn</string>
<string name="ttl_m">%da</string>
<string name="ttl_min">%d dk</string>
<string name="ttl_month">%d ay</string>
<string name="ttl_months">%d ay</string>
<string name="ttl_w">%dh</string>
<string name="ttl_week">%d hafta</string>
<string name="ttl_weeks">%d hafta</string>
<string name="dont_enable_receipts">Etkinleştirme</string>
<string name="enable_receipts_all">Etkinleştir</string>
<string name="error_saving_file">Dosya kaydedilirken hata oluştu</string>
<string name="smp_servers_enter_manually">Sunucuyu elle gir</string>
<string name="callstate_ended">bitti</string>
<string name="snd_conn_event_ratchet_sync_allowed">%s üyesi için şifrelemenin yeniden anlaşmasını izin verildi</string>
<string name="snd_conn_event_ratchet_sync_required">%s üyesi için şifrelemenin yeniden anlaşması gerekiyor</string>
<string name="error_removing_member">Üye çıkarılırken hata oluştu</string>
<string name="enter_welcome_message_optional">Karşılama iletisi gir... (isteğe bağlı)</string>
<string name="error_receiving_file">Dosyayı alırken hata oluştu</string>
<string name="error_saving_group_profile">Toplu konuşma profili güncellenirken hata oluştu</string>
<string name="enter_correct_passphrase">Doğru parolayı gir.</string>
<string name="conn_event_ratchet_sync_allowed">şifrelemenin yeniden anlaşmasına izin verildi</string>
<string name="snd_conn_event_ratchet_sync_ok">%s üyesi için şifreleme etkin</string>
<string name="conn_event_ratchet_sync_required">şifrelemenin yeniden anlaşması gerekiyor</string>
<string name="enter_welcome_message">Karşılama iletisi gir…</string>
<string name="enter_password_to_show">Aramaya parolayı gir</string>
<string name="error_synchronizing_connection">Bağlantı eşlenirken hata oluştu</string>
<string name="error_setting_address">Adres belirlenirken hata oluştu</string>
<string name="hide_notification">Gizle</string>
<string name="notification_preview_mode_hidden">Gizli</string>
<string name="la_immediately">Çabucak</string>
<string name="info_menu">Bilgi</string>
<string name="edit_history">Geçmiş</string>
<string name="for_everybody">Tüm kişiler için</string>
<string name="files_and_media_prohibited">Dosya ve medya yasaklanmıştır!</string>
<string name="image_descr">Görsel</string>
<string name="icon_descr_file">Dosya</string>
<string name="image_saved">Görsel, Sergiye kaydedildi</string>
<string name="file_not_found">Dosya bulunamadı</string>
<string name="file_saved">Dosya kaydedildi</string>
<string name="file_will_be_received_when_contact_completes_uploading">Konuştuğun kişi dosyayı yüklemeyi bitirince dosya alınacaktır.</string>
<string name="file_will_be_received_when_contact_is_online">Konuştuğun kişi çevrim içi olunca dosya alınmaya başlanılacaktır. Lütfen bekleyin ya da daha sonra yeniden bakın.</string>
<string name="choose_file">Dosya</string>
<string name="from_gallery_button">Sergiden</string>
<string name="gallery_image_button">Görsel</string>
<string name="icon_descr_help">yardım</string>
<string name="how_to_use_simplex_chat">Nasıl kullanılır</string>
<string name="incorrect_code">Yanlış güvenlik kodu!</string>
<string name="how_to_use_your_servers">Sunucuların nasıl kullanılır</string>
<string name="enter_one_ICE_server_per_line">ICE sunucuları (her satır başı bir tane)</string>
<string name="host_verb">Barındır</string>
<string name="hide_dev_options">Gizle:</string>
<string name="full_name__field">Ad ve soyad:</string>
<string name="email_invite_body">Merhaba!
\nSimplex Chat kullanarak benle bağlantıya geç: %s</string>
<string name="exit_without_saving">Kaydetmeden çık</string>
<string name="hide_profile">Profili gizle</string>
<string name="error_saving_user_password">Kullanıcı parolası kaydedilirken hata oluştu</string>
<string name="full_name_optional__prompt">Ad ve Soyad (isteğe bağlı)</string>
<string name="hidden_profile_password">Gizli profil parolası</string>
<string name="how_to_use_markdown">Markdown nasıl kullanılır</string>
<string name="how_it_works">Nasıl çalışıyor</string>
<string name="immune_to_spam_and_abuse">Kötüye kullanmaya ve istenmeyen iletilere duyarlı</string>
<string name="icon_descr_hang_up">Çağırıyı bitir.</string>
<string name="icon_descr_flip_camera">Kameranın karşı yüzüne geç</string>
<string name="import_database_question">Konuşma veri tabanını içe aktar\?</string>
<string name="alert_message_group_invitation_expired">Toplu konuşma davetiyesi artık geçerli değil. Gönderici tarafından geçersiz kılındı.</string>
<string name="alert_title_no_group">Toplu konuşma bulunamadı!</string>
<string name="delete_group_for_all_members_cannot_undo_warning">Toplu konuşma, tüm üyeleri için silenecektir. Bu, geri alınamaz bir eylemdir!</string>
<string name="delete_group_for_self_cannot_undo_warning">Toplu konuşma, senin için silinecektir. Bu, geri alınamaz bir eylemdir.</string>
<string name="export_theme">Temayı dışa aktar</string>
<string name="group_preferences">Toplu konuşma tercihleri</string>
<string name="error_saving_ICE_servers">ICE sonucuları kaydedilirken hata oluştu</string>
<string name="error_updating_user_privacy">Kullanıcı gizliliği güncellenirken hata oluştu</string>
<string name="favorite_chat">Gözde</string>
<string name="settings_section_title_experimenta">DENEYSEL</string>
<string name="revoke_file__message">Dosya, sunuculardan silinecektir.</string>
<string name="v5_2_fix_encryption_descr">Yedekleri geri yükledikten sonra şifrelemeyi onar.</string>
<string name="v4_4_french_interface">Fransız arayüzü</string>
<string name="v4_6_reduced_battery_usage">Daha da azaltılmış pil kullanımı</string>
<string name="group_members_can_add_message_reactions">Toplu konuşma üyeleri, iletilere tepki ekleyebilir.</string>
<string name="group_profile_is_stored_on_members_devices">Toplu konuşma profili, üyelerinin aygıtlarında barındırılmaktadır, sunucularda değil.</string>
<string name="hide_verb">Gizle</string>
<string name="user_hide">Gizle</string>
<string name="notification_display_mode_hidden_desc">Konuşulan kişileri ve iletileri gizle</string>
<string name="v4_3_improved_privacy_and_security_desc">Uygulamayı, son kullanılanlar kısmından gizle.</string>
<string name="how_simplex_works">SimpleX nasıl çalışıyor</string>
<string name="if_you_cannot_meet_in_person_show_QR_in_video_call_or_via_another_channel">Eğer yüz yüze görüşemiyorsanız <b>bir görüntülü aramada karşıdakine karekodunu gösterebilir</b> ya da konuştuğun kişiye bir katılım bağlantısı paylaşabilirsin.</string>
<string name="if_you_cannot_meet_in_person_scan_QR_in_video_call_or_ask_for_invitation_link">Eğer yüz yüze görüşemiyorsanız <b>bir görüntülü aramada karşıdakinin karekodunu okutabilirsin</b> ya da konuştuğun kişi seninle bir katılım bağlantısı paylaşabilir.</string>
<string name="if_you_cant_meet_in_person">Eğer yüz yüze görüşemiyorsanız bir görüntülü aramada karşıdakine karekodunu gösterebilir ya da konuştuğun kişiye bir katılım bağlantısı paylaşabilirsin.</string>
<string name="if_you_choose_to_reject_the_sender_will_not_be_notified">Eğer geri çevirmeyi seçersen göndericiye bildirilmeyecek.</string>
<string name="if_you_received_simplex_invitation_link_you_can_open_in_browser">Eğer SimplexX Chat katılım bağlantısı alırsan bu bağlantıyı tarayıcında açabilirsin:</string>
<string name="image_will_be_received_when_contact_is_online">Konuştuğun kişi çevrim içi olunca görsel alınmaya başlanılacaktır. Lütfen bekleyin ya da daha sonra yeniden bakın.</string>
<string name="icon_descr_image_snd_complete">Görsel gönderildi</string>
<string name="image_will_be_received_when_contact_completes_uploading">Konuştuğun kişi yüklemeyi bitirince görsel alınacaktır.</string>
<string name="error_starting_chat">Konuşma başlatılırken hata oluştu</string>
<string name="settings_experimental_features">Deneysel özellikler</string>
<string name="export_database">Veri tabanını dışa aktar</string>
<string name="settings_section_title_help">YARDIM</string>
<string name="import_database">Veri tabanını içe aktar</string>
<string name="error_stopping_chat">Konuşma durdulurken hata oluştu</string>
<string name="import_database_confirmation">İçe aktar</string>
<string name="files_and_media_section">Dosya ve medya</string>
<string name="file_with_path">Dosya: %s</string>
<string name="incompatible_database_version">Uyumsuz veri tabanı sürümü</string>
<string name="icon_descr_group_inactive">Toplu konuşma aylak</string>
<string name="group_invitation_expired">Toplu konuşma davetiyesinin süresi doldu</string>
<string name="snd_group_event_group_profile_updated">toplu konuşma profili güncellendi</string>
<string name="group_member_status_group_deleted">toplu konuşma silindi</string>
<string name="error_updating_link_for_group">Toplu konuşma bağlantısı güncellenirken hata oluştu</string>
<string name="section_title_for_console">UÇBİRİM İÇİN</string>
<string name="group_link">Toplu konuşma bağlantısı</string>
<string name="info_row_group">Toplu konuşma</string>
<string name="conn_level_desc_indirect">dolaylı (%1$s)</string>
<string name="fix_connection">Bağlantıyı onar</string>
<string name="fix_connection_question">Bağlantıyı onar\?</string>
<string name="fix_connection_confirm">Onar</string>
<string name="fix_connection_not_supported_by_contact">Konuştuğunuz kişi, onarımı desteklemiyor.</string>
<string name="fix_connection_not_supported_by_group_member">Toplu konuşma üyesi, onarımı desteklemiyor.</string>
<string name="group_display_name_field">Toplu konuşmanın görünen adı:</string>
<string name="group_full_name_field">Toplu konuşmanın tam adı:</string>
<string name="files_and_media">Dosya ve medya</string>
<string name="group_members_can_send_dms">Toplu konuşma üyeleri doğrudan iletiler gönderebilir.</string>
<string name="group_members_can_delete">Toplu konuşma üyeleri, gönderilen iletileri kalıcı olarak silebilir.</string>
<string name="group_members_can_send_voice">Toplu konuşma üyeleri sesli ileti gönderebilirler.</string>
<string name="files_are_prohibited_in_group">Bu toplu konuşmada, dosya ve medya yasaklanmıştır.</string>
<string name="group_members_can_send_files">Toplu konuşma üyeleri dosya ve medya paylaşabilir.</string>
<string name="v4_2_group_links">Toplu konuşma bağlantıları</string>
<string name="v5_2_disappear_one_message_descr">Konuşmada devre dışı bırakıldığında bile</string>
<string name="v5_0_large_files_support_descr">Çabuk ve göndericinin çevrim içi olmasını beklemeden!</string>
<string name="v5_2_favourites_filter_descr">Okunmamış ve gözde konuşmaları göster.</string>
<string name="v5_1_message_reactions_descr">Sonunda onlara kavuştuk! 🚀</string>
<string name="v5_2_favourites_filter">Konuşmaları daha çabuk bul</string>
<string name="v4_6_group_moderation">Toplu konuşma öz denetimi</string>
<string name="v4_6_group_welcome_message">Toplu konuşma karşılama iletisi</string>
<string name="v4_6_hidden_chat_profiles">Gizli konuşma profilleri</string>
<string name="custom_time_unit_hours">Saat</string>
</resources>

View File

@@ -679,7 +679,6 @@
<string name="icon_descr_call_ended">Дзвінок завершено</string>
<string name="alert_text_msg_bad_id">Ідентифікатор наступного повідомлення неправильний (менше або дорівнює попередньому).
\nЦе може статися через помилку або коли з\'єднання скомпрометовано.</string>
<string name="alert_text_fragment_permanent_error_reconnect">Ця помилка є постійною для цього з\'єднання, будь ласка, перепідключіться.</string>
<string name="self_destruct_passcode_enabled">Пароль самознищення ввімкнено!</string>
<string name="self_destruct_passcode_changed">Пароль самознищення змінено!</string>
<string name="your_profile_is_stored_on_your_device">Ваш профіль, контакти та доставлені повідомлення зберігаються на вашому пристрої.</string>

View File

@@ -1094,7 +1094,6 @@
<string name="alert_title_msg_bad_id">错误消息 ID</string>
<string name="alert_text_decryption_error_n_messages_failed_to_decrypt">%1$d 消息解密失败。</string>
<string name="alert_text_decryption_error_too_many_skipped">%1$d 已跳过消息。</string>
<string name="alert_text_fragment_permanent_error_reconnect">此错误对于此连接是永久性的,请重新连接。</string>
<string name="alert_text_fragment_encryption_out_of_sync_old_database">当您或您的连接使用旧数据库备份时,可能会发生这种情况。</string>
<string name="decryption_error">解密错误</string>
<string name="alert_text_fragment_please_report_to_developers">请向开发者报告。</string>

View File

@@ -1123,7 +1123,6 @@
<string name="alert_text_decryption_error_n_messages_failed_to_decrypt">%1$d 訊息解密失敗。</string>
<string name="network_socks_toggle_use_socks_proxy">使用SOCKS 代理伺服器</string>
<string name="your_XFTP_servers">你的 XFTP 伺服器</string>
<string name="alert_text_fragment_permanent_error_reconnect">這個連結錯誤是永久性的,請重新連接。</string>
<string name="alert_text_decryption_error_too_many_skipped">%1$d 錯過了多個訊息。</string>
<string name="v5_0_large_files_support">影片和檔案和最大上限為1gb</string>
<string name="gallery_video_button">影片</string>

View File

@@ -25,8 +25,8 @@ android.nonTransitiveRClass=true
android.enableJetifier=true
kotlin.mpp.androidSourceSetLayoutVersion=2
android.version_name=5.2-beta.2
android.version_code=132
android.version_name=5.2
android.version_code=133
desktop.version_name=1.0

View File

@@ -1,5 +1,5 @@
name: simplex-chat
version: 5.2.0.2
version: 5.2.0.3
#synopsis:
#description:
homepage: https://github.com/simplex-chat/simplex-chat#readme

View File

@@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack
name: simplex-chat
version: 5.2.0.2
version: 5.2.0.3
category: Web, System, Services, Cryptography
homepage: https://github.com/simplex-chat/simplex-chat#readme
author: simplex.chat

View File

@@ -44,7 +44,7 @@
"feature-4-title": "تشفير الرسائل الصوتية بين الطرفين",
"privacy-matters-overlay-card-1-p-1": "تستخدم العديد من الشركات الكبيرة معلومات حول من تتصل به لتقدير دخلك، وبيع المنتجات التي لا تحتاجها حقًا، ولتحديد الأسعار.",
"feature-7-title": "قاعدة بيانات محمولة مشفرة &mdash; نقل ملف التعريف الخاص بك إلى جهاز آخر",
"feature-8-title": "وضع التصفح المتخفي &mdash; <br> فريد من نوعه لـ SimpleX Chat",
"feature-8-title": "وضع التخفي &mdash; <br> فريد من نوعه لـ SimpleX Chat",
"simplex-private-1-title": "طبقتان من <br> التشفير بين الطرفين",
"simplex-private-2-title": "طبقة إضافية من <br> تشفير الخادم",
"simplex-private-3-title": "تأمين نقل <br> TLS المصدق عليه",
@@ -104,7 +104,7 @@
"hero-overlay-card-2-p-1": "عندما يكون لدى المستخدمين هويات ثابتة، حتى لو كان هذا مجرد رقم عشوائي، مثل معرف الجلسة، فهناك خطر يتمثل في أن الموفر أو المهاجم يمكنه مراقبة كيفية اتصال المستخدمين وعدد الرسائل التي يرسلونها.",
"hero-overlay-card-1-p-6": "اقرأ المزيد في <a href='https://github.com/simplex-chat/simplexmq/blob/stable/protocol/overview-tjr.md' target='_blank'> SimpleX whitepaper </a>.",
"hero-overlay-card-2-p-3": "حتى مع معظم التطبيقات الخاصة التي تستخدم خدمات Tor v3، إذا تحدثت إلى جهتي اتصال مختلفتين عبر نفس الملف الشخصي، فيمكنهما إثبات أنهما متصلان بنفس الشخص.",
"hero-overlay-card-2-p-4": "يحمي SimpleX من هذه الهجمات من خلال عدم وجود أي معرفات مستخدم في تصميمه. وإذا كنت تستخدم وضع التصفح المتخفي، فسيكون لديك اسم عرض مختلف لكل جهة اتصال، مع تجنب أي بيانات مشتركة بينهما.",
"hero-overlay-card-2-p-4": "يحمي SimpleX من هذه الهجمات من خلال عدم وجود أي معرفات مستخدم في تصميمه. وإذا كنت تستخدم وضع التخفي، فسيكون لديك اسم عرض مختلف لكل جهة اتصال، مع تجنب أي بيانات مشتركة بينهما.",
"simplex-network-overlay-card-1-li-6": "قد تكون شبكات P2P عرضة <a href='https://www.usenix.org/conference/woot15/workshop-program/presentation/p2p-file-sharing-hell-exploiting-bittorrent'> هجوم DRDoS</a>، عندما يتمكن العملاء من إعادة بث حركة مرور البيانات وتضخيمها، مما يؤدي إلى رفض الخدمة على مستوى الشبكة. يقوم عملاء SimpleX فقط بترحيل حركة مرور البيانات من اتصال معروف ولا يمكن للمهاجم استخدامها لتضخيم حركة مرور البيانات في الشبكة بالكامل.",
"simplex-network-overlay-card-1-li-1": "تعتمد شبكات P2P على بعض المتغيرات من <a href='https://en.wikipedia.org/wiki/Distributed_hash_table'> DHT </a> لتوجيه الرسائل. يجب أن توازن تصميمات DHT بين ضمان التسليم وزمن الوصول. تتمتع SimpleX بضمان تسليم أفضل وزمن انتقال أقل من P2P، لأنه يمكن تمرير الرسالة بشكل متكرر عبر عدة خوادم بالتوازي، باستخدام الخوادم التي اختارها المستلم. في شبكات P2P، يتم تمرير الرسالة عبر عُقد <em> O (log N) </em> بالتسلسل، باستخدام العقد التي تختارها الخوارزمية.",
"simplex-network-overlay-card-1-li-2": "لا يحتوي تصميم SimpleX، عكس معظم شبكات P2P، على معرّفات مستخدم عالمية من أي نوع، حتى مؤقتة، ويستخدم فقط المعرّفات المزدوجة المؤقتة، مما يوفر إخفاء هوية أفضل وحماية للبيانات الوصفية.",

View File

@@ -95,7 +95,7 @@
"privacy-matters-overlay-card-3-p-3": "Obyčejní lidé jsou zatčeni za to, co sdílejí online, dokonce i prostřednictvím svých „anonymních“ účtů, <a href='https://www.dailymail.co.uk/news/article-11282263/Moment-police-swoop-house-devout-catholic-mother-malicious-online-posts.html' target='_blank'>i v demokratických zemích</a>.",
"privacy-matters-overlay-card-3-p-4": "Nestačí používat end-to-end šifrovaný messenger, všichni bychom měli používat messengery, které chrání soukromí našich osobních sítí &mdash; s kým jsme spojeni.",
"simplex-unique-overlay-card-1-p-3": "Tento design chrání soukromí toho, s kým komunikujete, a skrývá ho před servery platformy SimpleX a před jakýmikoli pozorovateli. Chcete-li skrýt svou IP adresu před servery, můžete se <strong>připojit k serverům SimpleX přes Tor</strong>.",
"simplex-unique-overlay-card-2-p-1": "Protože na platformě SimpleX nemáte žádný identifikátor, nikdo vás nemůže kontaktovat, pokud nesdílíte jednorázovou nebo dočasnou uživatelskou adresu jako QR kód nebo odkaz.",
"simplex-unique-overlay-card-2-p-1": "Protože na platformě SimpleX nemáte žádný identifikátor, nikdo vás nemůže kontaktovat pokud nesdílíte jednorázovou nebo dočasnou uživatelskou adresu, jako QR kód nebo odkaz.",
"simplex-unique-overlay-card-2-p-2": "Dokonce i s volitelnou uživatelskou adresou, kterou lze použít k zasílání spamových požadavků na kontakt, ji však můžete změnit nebo úplně odstranit, aniž byste ztratili jakékoli spojení.",
"simplex-unique-overlay-card-3-p-2": "End-to-end šifrované zprávy jsou dočasně uchovávány na přenosových serverech SimpleX, dokud nejsou přijaty, poté jsou trvale odstraněny.",
"simplex-unique-overlay-card-3-p-3": "Na rozdíl od serverů federovaných sítí (e-mail, XMPP nebo Matrix) servery SimpleX neukládají uživatelské účty, pouze předávají zprávy, čímž chrání soukromí obou stran.",
@@ -187,7 +187,7 @@
"simplex-unique-overlay-card-3-p-1": "SimpleX Chat ukládá všechna uživatelská data pouze na klientských zařízeních pomocí <strong>přenosného šifrovaného databázového formátu</strong>, který lze exportovat a přenést na jakékoli podporované zařízení.",
"contact-hero-p-1": "Veřejné klíče a adresa fronty zpráv v tomto odkazu NEJSOU při zobrazení této stránky odesílány přes síť &mdash; jsou obsaženy ve fragmentu kontrolního součtu adresy URL odkazu.",
"simplex-unique-overlay-card-3-p-4": "Mezi odeslaným a přijatým provozem serveru nejsou žádné společné identifikátory ani šifrovaný text &mdash; pokud to někdo pozoruje, nemůže snadno určit, kdo s kým komunikuje, i když je TLS kompromitován.",
"simplex-unique-card-2-p-1": "Protože na platformě SimpleX nemáte žádný identifikátor, nikdo vás nemůže kontaktovat, pokud nesdílíte jednorázovou nebo dočasnou uživatelskou adresu jako QR kód nebo odkaz.",
"simplex-unique-card-2-p-1": "Protože na platformě SimpleX nemáte žádný identifikátor nebo pevnou adresu, nikdo vás nemůže kontaktovat pokud nesdílíte jednorázovou nebo dočasnou uživatelskou adresu, jako QR kód nebo odkaz.",
"simplex-unique-overlay-card-4-p-2": "Platforma SimpleX používá <a href='https://github.com/simplex-chat/simplexmq/blob/stable/protocol/overview-tjr.md' target='_blank'>otevřený protokol</a> a poskytuje <a href='https://github.com/simplex-chat/simplex-chat/tree/stable/packages/simplex-chat-client/typescript' target='_blank'>SDK k vytváření chat botů</a>, což umožňuje implementaci služeb, se kterými mohou uživatelé komunikovat prostřednictvím chatovacích aplikací SimpleX &mdash;, Nemůžeme se dočkat, až uvídíme, jaké služby SimpleX dokážete vytvořit.",
"simplex-network": "SimpleX síť",
"simplex-explained-tab-2-p-1": "Pro každé připojení používáte dvě samostatné fronty zasílání zpráv k odesílání a přijímání zpráv prostřednictvím různých serverů.",