mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-25 22:54:29 +00:00
ui: v6.4.1 whats new, blog placeholder (WIP) (#6108)
* ui: v6.4.1 whats new, blog placeholder (WIP) * ios whatsnew * more ios * android, desktop: whats new * update blog * remove unused code
This commit is contained in:
@@ -610,6 +610,27 @@ private let versionDescriptions: [VersionDescription] = [
|
||||
)),
|
||||
]
|
||||
),
|
||||
VersionDescription(
|
||||
version: "v6.4.1",
|
||||
post: URL(string: "https://simplex.chat/blog/20250729-simplex-chat-v6-4-1-welcome-contacts-protect-groups-app-security.html"),
|
||||
features: [
|
||||
.feature(Description(
|
||||
icon: "hand.wave",
|
||||
title: "Welcome your contacts 👋",
|
||||
description: "Set profile bio and welcome message."
|
||||
)),
|
||||
.feature(Description(
|
||||
icon: "stopwatch",
|
||||
title: "Keep your chats clean",
|
||||
description: "Enable disappearing messages by default."
|
||||
)),
|
||||
.view(FeatureView(
|
||||
icon: nil,
|
||||
title: "Short SimpleX address",
|
||||
view: { CreateUpdateAddressShortLink() }
|
||||
))
|
||||
]
|
||||
),
|
||||
]
|
||||
|
||||
private let lastVersion = versionDescriptions.last!.version
|
||||
@@ -641,6 +662,35 @@ fileprivate struct NewOperatorsView: View {
|
||||
}
|
||||
}
|
||||
|
||||
fileprivate struct CreateUpdateAddressShortLink: View {
|
||||
@EnvironmentObject var theme: AppTheme
|
||||
|
||||
var body: some View {
|
||||
VStack(alignment: .leading, spacing: 4) {
|
||||
HStack(alignment: .center, spacing: 4) {
|
||||
Image(systemName: "link")
|
||||
.symbolRenderingMode(.monochrome)
|
||||
.foregroundColor(theme.colors.secondary)
|
||||
.frame(minWidth: 30, alignment: .center)
|
||||
Text("Short SimpleX address").font(.title3).bold()
|
||||
}
|
||||
Group {
|
||||
if let addr = ChatModel.shared.userAddress {
|
||||
if addr.shortLinkDataSet { // update condition
|
||||
Button("Share your address") { print("share address") }
|
||||
} else {
|
||||
Button("Update your address") { print("update address") }
|
||||
}
|
||||
} else {
|
||||
Button("Create your address") { print("create address") }
|
||||
}
|
||||
}
|
||||
.multilineTextAlignment(.leading)
|
||||
.lineLimit(10)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private enum WhatsNewViewSheet: Identifiable {
|
||||
case showConditions
|
||||
|
||||
|
||||
@@ -216,17 +216,23 @@ struct UserAddressView: View {
|
||||
|
||||
private func addShortLinkButton() -> some View {
|
||||
Button {
|
||||
showAddShortLinkAlert()
|
||||
showAddShortLinkAlert(
|
||||
title: NSLocalizedString("Add short link", comment: "alert title"),
|
||||
button: NSLocalizedString("Add link", comment: "alert button")
|
||||
)
|
||||
} label: {
|
||||
settingsRow("plus", color: theme.colors.primary) {
|
||||
Text("Add short link")
|
||||
Text("Add link")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private func addProfileToShortLinkButton() -> some View {
|
||||
Button {
|
||||
showAddShortLinkAlert()
|
||||
showAddShortLinkAlert(
|
||||
title: NSLocalizedString("Share profile with address", comment: "alert title"),
|
||||
button: NSLocalizedString("Share profile", comment: "alert button")
|
||||
)
|
||||
} label: {
|
||||
settingsRow("plus", color: theme.colors.primary) {
|
||||
Text("Share profile with address")
|
||||
@@ -234,25 +240,41 @@ struct UserAddressView: View {
|
||||
}
|
||||
}
|
||||
|
||||
private func showAddShortLinkAlert() {
|
||||
private func showAddShortLinkAlert(title: String, button: String) {
|
||||
showAlert(
|
||||
title: NSLocalizedString("Share profile with address", comment: "alert title"),
|
||||
message: NSLocalizedString("Profile will be shared with the address.", comment: "alert message"),
|
||||
buttonTitle: NSLocalizedString("Share profile", comment: "alert button"),
|
||||
title: title,
|
||||
message: NSLocalizedString("Your profile will be shared with the address.", comment: "alert message"),
|
||||
buttonTitle: button,
|
||||
buttonAction: { addShortLink() },
|
||||
cancelButton: true
|
||||
)
|
||||
}
|
||||
|
||||
private func addShortLink() {
|
||||
private func showUpdateAddressShareAlert(title: String, button: String, shareLink: @escaping () -> Void) {
|
||||
showAlert(
|
||||
title,
|
||||
message: NSLocalizedString("Your profile will be shared with the address.", comment: "alert message"),
|
||||
actions: {[
|
||||
UIAlertAction(
|
||||
title: button,
|
||||
style: .default,
|
||||
handler: { _ in addShortLink(onCompletion: shareLink) }
|
||||
),
|
||||
UIAlertAction(title: NSLocalizedString("Share full link", comment: "alert button"), style: .default) { _ in shareLink() }
|
||||
]}
|
||||
)
|
||||
}
|
||||
|
||||
private func addShortLink(onCompletion: (() -> Void)? = nil) {
|
||||
progressIndicator = true
|
||||
Task {
|
||||
do {
|
||||
let userAddress = try await apiAddMyAddressShortLink()
|
||||
await MainActor.run {
|
||||
chatModel.userAddress = userAddress
|
||||
progressIndicator = false
|
||||
onCompletion?()
|
||||
}
|
||||
await MainActor.run { progressIndicator = false }
|
||||
} catch let error {
|
||||
logger.error("apiAddMyAddressShortLink: \(responseError(error))")
|
||||
let a = getErrorAlert(error, "Error adding short link")
|
||||
@@ -284,8 +306,25 @@ struct UserAddressView: View {
|
||||
}
|
||||
|
||||
private func shareQRCodeButton(_ userAddress: UserContactLink) -> some View {
|
||||
Button {
|
||||
let shareLink = {
|
||||
showShareSheet(items: [simplexChatLink(userAddress.connLinkContact.simplexChatUri(short: showShortLink))])
|
||||
}
|
||||
return Button {
|
||||
if userAddress.connLinkContact.connShortLink == nil {
|
||||
showUpdateAddressShareAlert(
|
||||
title: NSLocalizedString("Add short link", comment: "alert title"),
|
||||
button: NSLocalizedString("Add link", comment: "alert button"),
|
||||
shareLink: shareLink
|
||||
)
|
||||
} else if userAddress.shortLinkDataSet { // TODO update condition
|
||||
shareLink()
|
||||
} else {
|
||||
showUpdateAddressShareAlert(
|
||||
title: NSLocalizedString("Share profile with address", comment: "alert title"),
|
||||
button: NSLocalizedString("Share profile", comment: "alert button"),
|
||||
shareLink: shareLink
|
||||
)
|
||||
}
|
||||
} label: {
|
||||
settingsRow("square.and.arrow.up", color: theme.colors.secondary) {
|
||||
Text("Share address")
|
||||
|
||||
@@ -626,6 +626,10 @@ swipe action</note>
|
||||
<target>Добави приятели</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -651,7 +655,7 @@ swipe action</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2098,6 +2102,10 @@ This is your own one-time link!</source>
|
||||
<target>Създай опашка</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Създай своя профил</target>
|
||||
@@ -2863,6 +2871,10 @@ chat item action</note>
|
||||
<target>Разреши достъпа до камерата</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Активиране за всички</target>
|
||||
@@ -4407,6 +4419,10 @@ This is your link for group %@!</source>
|
||||
<target>Запази неизползваната покана за връзка?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Запазете връзките си</target>
|
||||
@@ -5804,10 +5820,6 @@ Error: %@</source>
|
||||
<target>Актуализацията на профила ще бъде изпратена до вашите контакти.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>Забрани аудио/видео разговорите.</target>
|
||||
@@ -6910,6 +6922,10 @@ chat item action</note>
|
||||
<target>Задай парола за експортиране</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Задай съобщението, показано на новите членове!</target>
|
||||
@@ -6971,6 +6987,10 @@ chat item action</note>
|
||||
<source>Share from other apps.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -7002,6 +7022,14 @@ chat item action</note>
|
||||
<target>Сподели с контактите</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -7989,6 +8017,10 @@ To connect, please ask your contact to create another connection link and check
|
||||
<source>Update settings?</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8317,6 +8349,10 @@ To connect, please ask your contact to create another connection link and check
|
||||
<target>Съобщението при посрещане е твърде дълго</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Какво е новото</target>
|
||||
@@ -8828,6 +8864,10 @@ Repeat connection request?</source>
|
||||
<source>Your profile was changed. If you save it, the updated profile will be sent to all your contacts.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Вашият автоматично генериран профил</target>
|
||||
|
||||
@@ -612,6 +612,10 @@ swipe action</note>
|
||||
<source>Add friends</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -637,7 +641,7 @@ swipe action</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2001,6 +2005,10 @@ This is your own one-time link!</source>
|
||||
<target>Vytvořit frontu</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Vytvořte si profil</target>
|
||||
@@ -2748,6 +2756,10 @@ chat item action</note>
|
||||
<source>Enable camera access</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Povolit pro všechny</target>
|
||||
@@ -4241,6 +4253,10 @@ This is your link for group %@!</source>
|
||||
<source>Keep unused invitation?</source>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Zachovat vaše připojení</target>
|
||||
@@ -5597,10 +5613,6 @@ Error: %@</source>
|
||||
<target>Aktualizace profilu bude zaslána vašim kontaktům.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>Zákaz audio/video hovorů.</target>
|
||||
@@ -6683,6 +6695,10 @@ chat item action</note>
|
||||
<target>Nastavení přístupové fráze pro export</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Nastavte zprávu zobrazenou novým členům!</target>
|
||||
@@ -6743,6 +6759,10 @@ chat item action</note>
|
||||
<source>Share from other apps.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -6773,6 +6793,14 @@ chat item action</note>
|
||||
<target>Sdílet s kontakty</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -7733,6 +7761,10 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu
|
||||
<source>Update settings?</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8045,6 +8077,10 @@ Chcete-li se připojit, požádejte svůj kontakt o vytvoření dalšího odkazu
|
||||
<source>Welcome message is too long</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Co je nového</target>
|
||||
@@ -8535,6 +8571,10 @@ Repeat connection request?</source>
|
||||
<source>Your profile was changed. If you save it, the updated profile will be sent to all your contacts.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Váš náhodný profil</target>
|
||||
|
||||
@@ -642,6 +642,10 @@ swipe action</note>
|
||||
<target>Freunde aufnehmen</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<target>Liste hinzufügen</target>
|
||||
@@ -670,7 +674,7 @@ swipe action</note>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<target>Verkürzten Link hinzufügen</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2205,6 +2209,10 @@ Das ist Ihr eigener Einmal-Link!</target>
|
||||
<target>Erzeuge Warteschlange</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Erstellen Sie Ihr Profil</target>
|
||||
@@ -3015,6 +3023,10 @@ chat item action</note>
|
||||
<target>Kamera-Zugriff aktivieren</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Für Alle aktivieren</target>
|
||||
@@ -4647,6 +4659,10 @@ Das ist Ihr Link für die Gruppe %@!</target>
|
||||
<target>Nicht genutzte Einladung behalten?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Ihre Verbindungen beibehalten</target>
|
||||
@@ -6158,11 +6174,6 @@ Fehler: %@</target>
|
||||
<target>Profil-Aktualisierung wird an Ihre Kontakte gesendet.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<target>Das Profil wird über den Adress-Link geteilt.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>Audio-/Video-Anrufe nicht erlauben.</target>
|
||||
@@ -7358,6 +7369,10 @@ chat item action</note>
|
||||
<target>Passwort für den Export festlegen</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Definieren Sie eine Begrüßungsmeldung, die neuen Mitgliedern angezeigt wird!</target>
|
||||
@@ -7424,6 +7439,10 @@ chat item action</note>
|
||||
<target>Aus anderen Apps heraus teilen.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<target>Gruppenprofil über einen Link teilen</target>
|
||||
@@ -7459,6 +7478,14 @@ chat item action</note>
|
||||
<target>Mit Kontakten teilen</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<target>Kurze Beschreibung</target>
|
||||
@@ -8517,6 +8544,10 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s
|
||||
<target>Einstellungen aktualisieren?</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<target>Aktualisierte Nutzungsbedingungen</target>
|
||||
@@ -8866,6 +8897,10 @@ Bitten Sie Ihren Kontakt darum einen weiteren Verbindungs-Link zu erzeugen, um s
|
||||
<target>Die Begrüßungsmeldung ist zu lang</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Was ist neu</target>
|
||||
@@ -9405,6 +9440,11 @@ Verbindungsanfrage wiederholen?</target>
|
||||
<target>Ihr Profil wurde geändert. Wenn Sie es speichern, wird das aktualisierte Profil an alle Ihre Kontakte gesendet.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<target>Das Profil wird über den Adress-Link geteilt.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Ihr Zufallsprofil</target>
|
||||
|
||||
@@ -642,6 +642,11 @@ swipe action</note>
|
||||
<target>Add friends</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<target>Add link</target>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<target>Add list</target>
|
||||
@@ -670,7 +675,7 @@ swipe action</note>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<target>Add short link</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2205,6 +2210,11 @@ This is your own one-time link!</target>
|
||||
<target>Create queue</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<target>Create your address</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Create your profile</target>
|
||||
@@ -3015,6 +3025,11 @@ chat item action</note>
|
||||
<target>Enable camera access</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<target>Enable disappearing messages by default.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Enable for all</target>
|
||||
@@ -4647,6 +4662,11 @@ This is your link for group %@!</target>
|
||||
<target>Keep unused invitation?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<target>Keep your chats clean</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Keep your connections</target>
|
||||
@@ -6158,11 +6178,6 @@ Error: %@</target>
|
||||
<target>Profile update will be sent to your contacts.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<target>Profile will be shared with the address.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>Prohibit audio/video calls.</target>
|
||||
@@ -7358,6 +7373,11 @@ chat item action</note>
|
||||
<target>Set passphrase to export</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<target>Set profile bio and welcome message.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Set the message shown to new members!</target>
|
||||
@@ -7424,6 +7444,11 @@ chat item action</note>
|
||||
<target>Share from other apps.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<target>Share full link</target>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<target>Share group profile via link</target>
|
||||
@@ -7459,6 +7484,16 @@ chat item action</note>
|
||||
<target>Share with contacts</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<target>Share your address</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<target>Short SimpleX address</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<target>Short description</target>
|
||||
@@ -8518,6 +8553,11 @@ To connect, please ask your contact to create another connection link and check
|
||||
<target>Update settings?</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<target>Update your address</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<target>Updated conditions</target>
|
||||
@@ -8868,6 +8908,11 @@ To connect, please ask your contact to create another connection link and check
|
||||
<target>Welcome message is too long</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<target>Welcome your contacts 👋</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>What's new</target>
|
||||
@@ -9407,6 +9452,11 @@ Repeat connection request?</target>
|
||||
<target>Your profile was changed. If you save it, the updated profile will be sent to all your contacts.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<target>Your profile will be shared with the address.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Your random profile</target>
|
||||
|
||||
@@ -642,6 +642,10 @@ swipe action</note>
|
||||
<target>Añadir amigos</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<target>Añadir lista</target>
|
||||
@@ -670,7 +674,7 @@ swipe action</note>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<target>Añadir enlace corto</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2205,6 +2209,10 @@ This is your own one-time link!</source>
|
||||
<target>Crear cola</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Crea tu perfil</target>
|
||||
@@ -3015,6 +3023,10 @@ chat item action</note>
|
||||
<target>Permitir acceso a la cámara</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Activar para todos</target>
|
||||
@@ -4647,6 +4659,10 @@ This is your link for group %@!</source>
|
||||
<target>¿Guardar enlace no usado?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Conserva tus conexiones</target>
|
||||
@@ -6158,11 +6174,6 @@ Error: %@</target>
|
||||
<target>La actualización del perfil se enviará a tus contactos.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<target>El perfil será compartido mediante la dirección de contacto.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>No se permiten llamadas y videollamadas.</target>
|
||||
@@ -7358,6 +7369,10 @@ chat item action</note>
|
||||
<target>Escribe la contraseña para exportar</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>¡Guarda un mensaje para ser mostrado a los miembros nuevos!</target>
|
||||
@@ -7424,6 +7439,10 @@ chat item action</note>
|
||||
<target>Comparte desde otras aplicaciones.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<target>Compartir perfil de grupo mediante enlace</target>
|
||||
@@ -7459,6 +7478,14 @@ chat item action</note>
|
||||
<target>Compartir con contactos</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<target>Descripción corta</target>
|
||||
@@ -8517,6 +8544,10 @@ Para conectarte pide a tu contacto que cree otro enlace y comprueba la conexión
|
||||
<target>¿Actualizar configuración?</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<target>Condiciones actualizadas</target>
|
||||
@@ -8866,6 +8897,10 @@ Para conectarte pide a tu contacto que cree otro enlace y comprueba la conexión
|
||||
<target>Mensaje de bienvenida demasiado largo</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Novedades</target>
|
||||
@@ -9405,6 +9440,11 @@ Repeat connection request?</source>
|
||||
<target>Tu perfil ha sido modificado. Si lo guardas la actualización será enviada a todos tus contactos.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<target>El perfil será compartido mediante la dirección de contacto.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Tu perfil aleatorio</target>
|
||||
|
||||
@@ -593,6 +593,10 @@ swipe action</note>
|
||||
<source>Add friends</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -618,7 +622,7 @@ swipe action</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -1980,6 +1984,10 @@ This is your own one-time link!</source>
|
||||
<target>Luo jono</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Luo profiilisi</target>
|
||||
@@ -2727,6 +2735,10 @@ chat item action</note>
|
||||
<source>Enable camera access</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Salli kaikille</target>
|
||||
@@ -4217,6 +4229,10 @@ This is your link for group %@!</source>
|
||||
<source>Keep unused invitation?</source>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Pidä kontaktisi</target>
|
||||
@@ -5571,10 +5587,6 @@ Error: %@</source>
|
||||
<target>Profiilipäivitys lähetetään kontakteillesi.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>Estä ääni- ja videopuhelut.</target>
|
||||
@@ -6656,6 +6668,10 @@ chat item action</note>
|
||||
<target>Aseta tunnuslause vientiä varten</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Aseta uusille jäsenille näytettävä viesti!</target>
|
||||
@@ -6716,6 +6732,10 @@ chat item action</note>
|
||||
<source>Share from other apps.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -6746,6 +6766,14 @@ chat item action</note>
|
||||
<target>Jaa kontaktien kanssa</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -7704,6 +7732,10 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja
|
||||
<source>Update settings?</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8016,6 +8048,10 @@ Jos haluat muodostaa yhteyden, pyydä kontaktiasi luomaan toinen yhteyslinkki ja
|
||||
<source>Welcome message is too long</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Uusimmat</target>
|
||||
@@ -8506,6 +8542,10 @@ Repeat connection request?</source>
|
||||
<source>Your profile was changed. If you save it, the updated profile will be sent to all your contacts.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Satunnainen profiilisi</target>
|
||||
|
||||
@@ -638,6 +638,10 @@ swipe action</note>
|
||||
<target>Ajouter des amis</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<target>Ajouter une liste</target>
|
||||
@@ -664,7 +668,7 @@ swipe action</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2188,6 +2192,10 @@ Il s'agit de votre propre lien unique !</target>
|
||||
<target>Créer une file d'attente</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Créez votre profil</target>
|
||||
@@ -2995,6 +3003,10 @@ chat item action</note>
|
||||
<target>Autoriser l'accès à la caméra</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Activer pour tous</target>
|
||||
@@ -4607,6 +4619,10 @@ Voici votre lien pour le groupe %@ !</target>
|
||||
<target>Conserver l'invitation inutilisée ?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Conserver vos connexions</target>
|
||||
@@ -6072,10 +6088,6 @@ Erreur : %@</target>
|
||||
<target>La mise à jour du profil sera envoyée à vos contacts.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>Interdire les appels audio/vidéo.</target>
|
||||
@@ -7238,6 +7250,10 @@ chat item action</note>
|
||||
<target>Définir la phrase secrète pour l'export</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Choisissez un message à l'attention des nouveaux membres !</target>
|
||||
@@ -7304,6 +7320,10 @@ chat item action</note>
|
||||
<target>Partager depuis d'autres applications.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -7337,6 +7357,14 @@ chat item action</note>
|
||||
<target>Partager avec vos contacts</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8378,6 +8406,10 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien
|
||||
<target>Mettre à jour les paramètres ?</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8723,6 +8755,10 @@ Pour vous connecter, veuillez demander à votre contact de créer un autre lien
|
||||
<target>Le message de bienvenue est trop long</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Quoi de neuf ?</target>
|
||||
@@ -9255,6 +9291,10 @@ Répéter la demande de connexion ?</target>
|
||||
<target>Votre profil a été modifié. Si vous l'enregistrez, le profil mis à jour sera envoyé à tous vos contacts.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Votre profil aléatoire</target>
|
||||
|
||||
@@ -642,6 +642,10 @@ swipe action</note>
|
||||
<target>Barátok hozzáadása</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<target>Lista hozzáadása</target>
|
||||
@@ -670,7 +674,7 @@ swipe action</note>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<target>Rövid hivatkozás hozzáadása</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2205,6 +2209,10 @@ Ez a saját egyszer használható meghívója!</target>
|
||||
<target>Sorba állítás létrehozása</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Profil létrehozása</target>
|
||||
@@ -3015,6 +3023,10 @@ chat item action</note>
|
||||
<target>Kamera-hozzáférés engedélyezése</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Engedélyezés az összes tag számára</target>
|
||||
@@ -4647,6 +4659,10 @@ Ez a saját hivatkozása a(z) %@ nevű csoporthoz!</target>
|
||||
<target>Megtartja a fel nem használt meghívót?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Kapcsolatok megtartása</target>
|
||||
@@ -6158,11 +6174,6 @@ Hiba: %@</target>
|
||||
<target>A profilfrissítés el lesz küldve a partnerei számára.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<target>A profil meg lesz osztva a címhivatkozáson keresztül.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>A hívások kezdeményezése le van tiltva.</target>
|
||||
@@ -7358,6 +7369,10 @@ chat item action</note>
|
||||
<target>Jelmondat beállítása az exportáláshoz</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Megjelenítendő üzenet beállítása az új tagok számára!</target>
|
||||
@@ -7424,6 +7439,10 @@ chat item action</note>
|
||||
<target>Megosztás más alkalmazásokból.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<target>Csoportprofil megosztása a hivatkozáson keresztül</target>
|
||||
@@ -7459,6 +7478,14 @@ chat item action</note>
|
||||
<target>Megosztás a partnerekkel</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<target>Rövid leírás</target>
|
||||
@@ -8517,6 +8544,10 @@ A kapcsolódáshoz kérje meg a partnerét, hogy hozzon létre egy másik kapcso
|
||||
<target>Frissíti a beállításokat?</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<target>Frissített feltételek</target>
|
||||
@@ -8866,6 +8897,10 @@ A kapcsolódáshoz kérje meg a partnerét, hogy hozzon létre egy másik kapcso
|
||||
<target>Az üdvözlőüzenet túl hosszú</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Újdonságok</target>
|
||||
@@ -9405,6 +9440,11 @@ Repeat connection request?</source>
|
||||
<target>A profilja módosult. Ha menti, akkor a profilfrissítés el lesz küldve a partnerei számára.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<target>A profil meg lesz osztva a címhivatkozáson keresztül.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Véletlenszerű profil</target>
|
||||
|
||||
@@ -642,6 +642,10 @@ swipe action</note>
|
||||
<target>Aggiungi amici</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<target>Aggiungi elenco</target>
|
||||
@@ -670,7 +674,7 @@ swipe action</note>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<target>Aggiungi link breve</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2205,6 +2209,10 @@ Questo è il tuo link una tantum!</target>
|
||||
<target>Crea coda</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Crea il tuo profilo</target>
|
||||
@@ -3015,6 +3023,10 @@ chat item action</note>
|
||||
<target>Attiva l'accesso alla fotocamera</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Attiva per tutti</target>
|
||||
@@ -4647,6 +4659,10 @@ Questo è il tuo link per il gruppo %@!</target>
|
||||
<target>Tenere l'invito inutilizzato?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Mantieni le tue connessioni</target>
|
||||
@@ -6158,11 +6174,6 @@ Errore: %@</target>
|
||||
<target>L'aggiornamento del profilo verrà inviato ai tuoi contatti.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<target>Il profilo verrà condiviso tramite il link dell'indirizzo.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>Proibisci le chiamate audio/video.</target>
|
||||
@@ -7358,6 +7369,10 @@ chat item action</note>
|
||||
<target>Imposta la password per esportare</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Imposta il messaggio mostrato ai nuovi membri!</target>
|
||||
@@ -7424,6 +7439,10 @@ chat item action</note>
|
||||
<target>Condividi da altre app.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<target>Condividi il profilo del gruppo via link</target>
|
||||
@@ -7459,6 +7478,14 @@ chat item action</note>
|
||||
<target>Condividi con i contatti</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<target>Descrizione breve</target>
|
||||
@@ -8517,6 +8544,10 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e
|
||||
<target>Aggiornare le impostazioni?</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<target>Condizioni aggiornate</target>
|
||||
@@ -8866,6 +8897,10 @@ Per connetterti, chiedi al tuo contatto di creare un altro link di connessione e
|
||||
<target>Il messaggio di benvenuto è troppo lungo</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Novità</target>
|
||||
@@ -9405,6 +9440,11 @@ Ripetere la richiesta di connessione?</target>
|
||||
<target>Il tuo profilo è stato cambiato. Se lo salvi, il profilo aggiornato verrà inviato a tutti i tuoi contatti.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<target>Il profilo verrà condiviso tramite il link dell'indirizzo.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Il tuo profilo casuale</target>
|
||||
|
||||
@@ -627,6 +627,10 @@ swipe action</note>
|
||||
<source>Add friends</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -652,7 +656,7 @@ swipe action</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2047,6 +2051,10 @@ This is your own one-time link!</source>
|
||||
<target>キューの作成</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>プロフィールを作成する</target>
|
||||
@@ -2799,6 +2807,10 @@ chat item action</note>
|
||||
<source>Enable camera access</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>すべて有効</target>
|
||||
@@ -4290,6 +4302,10 @@ This is your link for group %@!</source>
|
||||
<source>Keep unused invitation?</source>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>接続を維持</target>
|
||||
@@ -5649,10 +5665,6 @@ Error: %@</source>
|
||||
<target>連絡先にプロフィール更新のお知らせが届きます。</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>音声/ビデオ通話を禁止する 。</target>
|
||||
@@ -6726,6 +6738,10 @@ chat item action</note>
|
||||
<target>暗証フレーズを設定してからエクスポート</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>新しいメンバーに表示されるメッセージを設定してください!</target>
|
||||
@@ -6786,6 +6802,10 @@ chat item action</note>
|
||||
<source>Share from other apps.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -6816,6 +6836,14 @@ chat item action</note>
|
||||
<target>連絡先と共有する</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -7774,6 +7802,10 @@ To connect, please ask your contact to create another connection link and check
|
||||
<source>Update settings?</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8086,6 +8118,10 @@ To connect, please ask your contact to create another connection link and check
|
||||
<source>Welcome message is too long</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>新着情報</target>
|
||||
@@ -8577,6 +8613,10 @@ Repeat connection request?</source>
|
||||
<source>Your profile was changed. If you save it, the updated profile will be sent to all your contacts.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>あなたのランダム・プロフィール</target>
|
||||
|
||||
@@ -641,6 +641,10 @@ swipe action</note>
|
||||
<target>Vrienden toevoegen</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<target>Lijst toevoegen</target>
|
||||
@@ -667,7 +671,7 @@ swipe action</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2196,6 +2200,10 @@ Dit is uw eigen eenmalige link!</target>
|
||||
<target>Maak een wachtrij</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Maak je profiel aan</target>
|
||||
@@ -3004,6 +3012,10 @@ chat item action</note>
|
||||
<target>Schakel cameratoegang in</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Inschakelen voor iedereen</target>
|
||||
@@ -4631,6 +4643,10 @@ Dit is jouw link voor groep %@!</target>
|
||||
<target>Ongebruikte uitnodiging bewaren?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Behoud uw verbindingen</target>
|
||||
@@ -6130,10 +6146,6 @@ Fout: %@</target>
|
||||
<target>Profiel update wordt naar uw contacten verzonden.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>Audio/video gesprekken verbieden.</target>
|
||||
@@ -7320,6 +7332,10 @@ chat item action</note>
|
||||
<target>Wachtwoord instellen om te exporteren</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Stel het getoonde bericht in voor nieuwe leden!</target>
|
||||
@@ -7386,6 +7402,10 @@ chat item action</note>
|
||||
<target>Delen vanuit andere apps.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -7419,6 +7439,14 @@ chat item action</note>
|
||||
<target>Delen met contacten</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8471,6 +8499,10 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak
|
||||
<target>Instellingen actualiseren?</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<target>Bijgewerkte voorwaarden</target>
|
||||
@@ -8820,6 +8852,10 @@ Om verbinding te maken, vraagt u uw contact om een andere verbinding link te mak
|
||||
<target>Welkom bericht is te lang</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Wat is er nieuw</target>
|
||||
@@ -9354,6 +9390,10 @@ Verbindingsverzoek herhalen?</target>
|
||||
<target>Je profiel is gewijzigd. Als je het opslaat, wordt het bijgewerkte profiel naar al je contacten verzonden.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Je willekeurige profiel</target>
|
||||
|
||||
@@ -638,6 +638,10 @@ swipe action</note>
|
||||
<target>Dodaj znajomych</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<target>Dodaj listę</target>
|
||||
@@ -664,7 +668,7 @@ swipe action</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2166,6 +2170,10 @@ To jest twój jednorazowy link!</target>
|
||||
<target>Utwórz kolejkę</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Utwórz swój profil</target>
|
||||
@@ -2956,6 +2964,10 @@ chat item action</note>
|
||||
<target>Włącz dostęp do kamery</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Włącz dla wszystkich</target>
|
||||
@@ -4538,6 +4550,10 @@ To jest twój link do grupy %@!</target>
|
||||
<target>Zachować nieużyte zaproszenie?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Zachowaj swoje połączenia</target>
|
||||
@@ -5978,10 +5994,6 @@ Błąd: %@</target>
|
||||
<target>Aktualizacja profilu zostanie wysłana do Twoich kontaktów.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>Zabroń połączeń audio/wideo.</target>
|
||||
@@ -7139,6 +7151,10 @@ chat item action</note>
|
||||
<target>Ustaw hasło do eksportu</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Ustaw wiadomość wyświetlaną nowym członkom!</target>
|
||||
@@ -7202,6 +7218,10 @@ chat item action</note>
|
||||
<target>Udostępnij z innych aplikacji.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -7235,6 +7255,14 @@ chat item action</note>
|
||||
<target>Udostępnij kontaktom</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8256,6 +8284,10 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc
|
||||
<target>Zaktualizować ustawienia?</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8595,6 +8627,10 @@ Aby się połączyć, poproś Twój kontakt o utworzenie kolejnego linku połąc
|
||||
<target>Wiadomość powitalna jest zbyt długa</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Co nowego</target>
|
||||
@@ -9122,6 +9158,10 @@ Powtórzyć prośbę połączenia?</target>
|
||||
<target>Twój profil został zmieniony. Jeśli go zapiszesz, zaktualizowany profil zostanie wysłany do wszystkich kontaktów.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Twój losowy profil</target>
|
||||
|
||||
@@ -642,6 +642,10 @@ swipe action</note>
|
||||
<target>Добавить друзей</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<target>Добавить список</target>
|
||||
@@ -670,7 +674,7 @@ swipe action</note>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<target>Добавить короткую ссылку</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2202,6 +2206,10 @@ This is your own one-time link!</source>
|
||||
<target>Создание очереди</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Создать профиль</target>
|
||||
@@ -3011,6 +3019,10 @@ chat item action</note>
|
||||
<target>Включить доступ к камере</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Включить для всех</target>
|
||||
@@ -4642,6 +4654,10 @@ This is your link for group %@!</source>
|
||||
<target>Оставить неиспользованное приглашение?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Сохраните Ваши соединения</target>
|
||||
@@ -6152,11 +6168,6 @@ Error: %@</source>
|
||||
<target>Обновлённый профиль будет отправлен Вашим контактам.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<target>Профиль будет добавлен в адрес.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>Запретить аудио/видео звонки.</target>
|
||||
@@ -7352,6 +7363,10 @@ chat item action</note>
|
||||
<target>Установите пароль</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Установить сообщение для новых членов группы!</target>
|
||||
@@ -7418,6 +7433,10 @@ chat item action</note>
|
||||
<target>Поделитесь из других приложений.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<target>Добавить профиль группы в ссылку</target>
|
||||
@@ -7453,6 +7472,14 @@ chat item action</note>
|
||||
<target>Поделиться с контактами</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8507,6 +8534,10 @@ To connect, please ask your contact to create another connection link and check
|
||||
<target>Обновить настройки?</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<target>Обновленные условия</target>
|
||||
@@ -8856,6 +8887,10 @@ To connect, please ask your contact to create another connection link and check
|
||||
<target>Приветственное сообщение слишком длинное</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Новые функции</target>
|
||||
@@ -9391,6 +9426,11 @@ Repeat connection request?</source>
|
||||
<target>Ваш профиль был изменен. Если вы сохраните его, обновленный профиль будет отправлен всем вашим контактам.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<target>Профиль будет добавлен в адрес.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Случайный профиль</target>
|
||||
|
||||
@@ -585,6 +585,10 @@ swipe action</note>
|
||||
<source>Add friends</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -610,7 +614,7 @@ swipe action</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -1969,6 +1973,10 @@ This is your own one-time link!</source>
|
||||
<target>สร้างคิว</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>สร้างโปรไฟล์ของคุณ</target>
|
||||
@@ -2714,6 +2722,10 @@ chat item action</note>
|
||||
<source>Enable camera access</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>เปิดใช้งานสําหรับทุกคน</target>
|
||||
@@ -4200,6 +4212,10 @@ This is your link for group %@!</source>
|
||||
<source>Keep unused invitation?</source>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>รักษาการเชื่อมต่อของคุณ</target>
|
||||
@@ -5550,10 +5566,6 @@ Error: %@</source>
|
||||
<target>การอัปเดตโปรไฟล์จะถูกส่งไปยังผู้ติดต่อของคุณ</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>ห้ามการโทรด้วยเสียง/วิดีโอ</target>
|
||||
@@ -6631,6 +6643,10 @@ chat item action</note>
|
||||
<target>ตั้งรหัสผ่านเพื่อส่งออก</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>ตั้งข้อความที่แสดงต่อสมาชิกใหม่!</target>
|
||||
@@ -6691,6 +6707,10 @@ chat item action</note>
|
||||
<source>Share from other apps.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -6721,6 +6741,14 @@ chat item action</note>
|
||||
<target>แชร์กับผู้ติดต่อ</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -7676,6 +7704,10 @@ To connect, please ask your contact to create another connection link and check
|
||||
<source>Update settings?</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -7986,6 +8018,10 @@ To connect, please ask your contact to create another connection link and check
|
||||
<source>Welcome message is too long</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>มีอะไรใหม่</target>
|
||||
@@ -8474,6 +8510,10 @@ Repeat connection request?</source>
|
||||
<source>Your profile was changed. If you save it, the updated profile will be sent to all your contacts.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>โปรไฟล์แบบสุ่มของคุณ</target>
|
||||
|
||||
@@ -642,6 +642,10 @@ swipe action</note>
|
||||
<target>Arkadaş ekle</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<target>Liste ekle</target>
|
||||
@@ -670,7 +674,7 @@ swipe action</note>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<target>Kısa bağlantı ekle</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2205,6 +2209,10 @@ Bu senin kendi tek kullanımlık bağlantın!</target>
|
||||
<target>Sıra oluştur</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Profilini oluştur</target>
|
||||
@@ -3015,6 +3023,10 @@ chat item action</note>
|
||||
<target>Kamera erişimini etkinleştir</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Herkes için etkinleştir</target>
|
||||
@@ -4647,6 +4659,10 @@ Bu senin grup için bağlantın %@!</target>
|
||||
<target>Kullanılmamış davet tutulsun mu?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Bağlantılarınızı koruyun</target>
|
||||
@@ -6158,11 +6174,6 @@ Hata: %@</target>
|
||||
<target>Profil güncellemesi kişilerinize gönderilecektir.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<target>Profil adres bağlantısı aracılığıyla paylaşılacaktır.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>Sesli/görüntülü aramaları yasakla.</target>
|
||||
@@ -7358,6 +7369,10 @@ chat item action</note>
|
||||
<target>Dışa aktarmak için parola ayarla</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Yeni üyeler için gösterilen bir mesaj ayarla!</target>
|
||||
@@ -7424,6 +7439,10 @@ chat item action</note>
|
||||
<target>Diğer uygulamalardan paylaşın.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<target>Grup profilini bağlantı aracılığıyla paylaş</target>
|
||||
@@ -7459,6 +7478,14 @@ chat item action</note>
|
||||
<target>Kişilerle paylaş</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<target>Kısa açıklama</target>
|
||||
@@ -8517,6 +8544,10 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste
|
||||
<target>Ayarları güncelleyelim mi?</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<target>Güncellenmiş koşullar</target>
|
||||
@@ -8866,6 +8897,10 @@ Bağlanmak için lütfen kişinizden başka bir bağlantı oluşturmasını iste
|
||||
<target>Hoş geldiniz mesajı çok uzun</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Neler yeni</target>
|
||||
@@ -9405,6 +9440,11 @@ Bağlantı isteği tekrarlansın mı?</target>
|
||||
<target>Profiliniz değiştirildi. Kaydederseniz, güncellenmiş profil tüm kişilerinize gönderilecektir.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<target>Profil adres bağlantısı aracılığıyla paylaşılacaktır.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Rasgele profiliniz</target>
|
||||
|
||||
@@ -641,6 +641,10 @@ swipe action</note>
|
||||
<target>Додайте друзів</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<target>Додати список</target>
|
||||
@@ -667,7 +671,7 @@ swipe action</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2196,6 +2200,10 @@ This is your own one-time link!</source>
|
||||
<target>Створити чергу</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>Створіть свій профіль</target>
|
||||
@@ -3004,6 +3012,10 @@ chat item action</note>
|
||||
<target>Увімкніть доступ до камери</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>Увімкнути для всіх</target>
|
||||
@@ -4629,6 +4641,10 @@ This is your link for group %@!</source>
|
||||
<target>Зберігати невикористані запрошення?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>Зберігайте свої зв'язки</target>
|
||||
@@ -6096,10 +6112,6 @@ Error: %@</source>
|
||||
<target>Оновлення профілю буде надіслано вашим контактам.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>Заборонити аудіо/відеодзвінки.</target>
|
||||
@@ -7262,6 +7274,10 @@ chat item action</note>
|
||||
<target>Встановити ключову фразу для експорту</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>Налаштуйте повідомлення, яке показуватиметься новим користувачам!</target>
|
||||
@@ -7328,6 +7344,10 @@ chat item action</note>
|
||||
<target>Діліться з інших програм.</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -7361,6 +7381,14 @@ chat item action</note>
|
||||
<target>Поділіться з контактами</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8402,6 +8430,10 @@ To connect, please ask your contact to create another connection link and check
|
||||
<target>Оновити налаштування?</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8747,6 +8779,10 @@ To connect, please ask your contact to create another connection link and check
|
||||
<target>Привітальне повідомлення занадто довге</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>Що нового</target>
|
||||
@@ -9279,6 +9315,10 @@ Repeat connection request?</source>
|
||||
<target>Ваш профіль було змінено. Якщо ви збережете його, оновлений профіль буде надіслано всім вашим контактам.</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>Ваш випадковий профіль</target>
|
||||
|
||||
@@ -638,6 +638,10 @@ swipe action</note>
|
||||
<target>添加好友</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add link" xml:space="preserve">
|
||||
<source>Add link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add list" xml:space="preserve">
|
||||
<source>Add list</source>
|
||||
<target>添加列表</target>
|
||||
@@ -664,7 +668,7 @@ swipe action</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add short link" xml:space="preserve">
|
||||
<source>Add short link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Add team members" xml:space="preserve">
|
||||
<source>Add team members</source>
|
||||
@@ -2189,6 +2193,10 @@ This is your own one-time link!</source>
|
||||
<target>创建队列</target>
|
||||
<note>server test step</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your address" xml:space="preserve">
|
||||
<source>Create your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Create your profile" xml:space="preserve">
|
||||
<source>Create your profile</source>
|
||||
<target>创建您的资料</target>
|
||||
@@ -2996,6 +3004,10 @@ chat item action</note>
|
||||
<target>启用相机访问</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable disappearing messages by default." xml:space="preserve">
|
||||
<source>Enable disappearing messages by default.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Enable for all" xml:space="preserve">
|
||||
<source>Enable for all</source>
|
||||
<target>全部启用</target>
|
||||
@@ -4620,6 +4632,10 @@ This is your link for group %@!</source>
|
||||
<target>保留未使用的邀请吗?</target>
|
||||
<note>alert title</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your chats clean" xml:space="preserve">
|
||||
<source>Keep your chats clean</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Keep your connections" xml:space="preserve">
|
||||
<source>Keep your connections</source>
|
||||
<target>保持连接</target>
|
||||
@@ -6104,10 +6120,6 @@ Error: %@</source>
|
||||
<target>个人资料更新将被发送给您的联系人。</target>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Profile will be shared with the address." xml:space="preserve">
|
||||
<source>Profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Prohibit audio/video calls." xml:space="preserve">
|
||||
<source>Prohibit audio/video calls.</source>
|
||||
<target>禁止音频/视频通话。</target>
|
||||
@@ -7262,6 +7274,10 @@ chat item action</note>
|
||||
<target>设置密码来导出</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set profile bio and welcome message." xml:space="preserve">
|
||||
<source>Set profile bio and welcome message.</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Set the message shown to new members!" xml:space="preserve">
|
||||
<source>Set the message shown to new members!</source>
|
||||
<target>设置向新成员显示的消息!</target>
|
||||
@@ -7324,6 +7340,10 @@ chat item action</note>
|
||||
<target>从其他应用程序共享。</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share full link" xml:space="preserve">
|
||||
<source>Share full link</source>
|
||||
<note>alert button</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share group profile via link" xml:space="preserve">
|
||||
<source>Share group profile via link</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -7356,6 +7376,14 @@ chat item action</note>
|
||||
<target>与联系人分享</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Share your address" xml:space="preserve">
|
||||
<source>Share your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short SimpleX address" xml:space="preserve">
|
||||
<source>Short SimpleX address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Short description" xml:space="preserve">
|
||||
<source>Short description</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8378,6 +8406,10 @@ To connect, please ask your contact to create another connection link and check
|
||||
<target>更新设置?</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Update your address" xml:space="preserve">
|
||||
<source>Update your address</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Updated conditions" xml:space="preserve">
|
||||
<source>Updated conditions</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
@@ -8715,6 +8747,10 @@ To connect, please ask your contact to create another connection link and check
|
||||
<target>欢迎消息太大了</target>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Welcome your contacts 👋" xml:space="preserve">
|
||||
<source>Welcome your contacts 👋</source>
|
||||
<note>No comment provided by engineer.</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="What's new" xml:space="preserve">
|
||||
<source>What's new</source>
|
||||
<target>更新内容</target>
|
||||
@@ -9238,6 +9274,10 @@ Repeat connection request?</source>
|
||||
<source>Your profile was changed. If you save it, the updated profile will be sent to all your contacts.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your profile will be shared with the address." xml:space="preserve">
|
||||
<source>Your profile will be shared with the address.</source>
|
||||
<note>alert message</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="Your random profile" xml:space="preserve">
|
||||
<source>Your random profile</source>
|
||||
<target>您的随机资料</target>
|
||||
|
||||
@@ -4106,7 +4106,7 @@ new chat action */
|
||||
"Profile update will be sent to your contacts." = "Profil-Aktualisierung wird an Ihre Kontakte gesendet.";
|
||||
|
||||
/* alert message */
|
||||
"Profile will be shared with the address." = "Das Profil wird über den Adress-Link geteilt.";
|
||||
"Your profile will be shared with the address." = "Das Profil wird über den Adress-Link geteilt.";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Prohibit audio/video calls." = "Audio-/Video-Anrufe nicht erlauben.";
|
||||
@@ -6248,4 +6248,3 @@ report reason */
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Your SimpleX address" = "Ihre SimpleX-Adresse";
|
||||
|
||||
|
||||
@@ -4106,7 +4106,7 @@ new chat action */
|
||||
"Profile update will be sent to your contacts." = "La actualización del perfil se enviará a tus contactos.";
|
||||
|
||||
/* alert message */
|
||||
"Profile will be shared with the address." = "El perfil será compartido mediante la dirección de contacto.";
|
||||
"Your profile will be shared with the address." = "El perfil será compartido mediante la dirección de contacto.";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Prohibit audio/video calls." = "No se permiten llamadas y videollamadas.";
|
||||
@@ -6248,4 +6248,3 @@ report reason */
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Your SimpleX address" = "Mi dirección SimpleX";
|
||||
|
||||
|
||||
@@ -4106,7 +4106,7 @@ new chat action */
|
||||
"Profile update will be sent to your contacts." = "A profilfrissítés el lesz küldve a partnerei számára.";
|
||||
|
||||
/* alert message */
|
||||
"Profile will be shared with the address." = "A profil meg lesz osztva a címhivatkozáson keresztül.";
|
||||
"Your profile will be shared with the address." = "A profil meg lesz osztva a címhivatkozáson keresztül.";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Prohibit audio/video calls." = "A hívások kezdeményezése le van tiltva.";
|
||||
@@ -6248,4 +6248,3 @@ report reason */
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Your SimpleX address" = "Profil SimpleX-címe";
|
||||
|
||||
|
||||
@@ -4106,7 +4106,7 @@ new chat action */
|
||||
"Profile update will be sent to your contacts." = "L'aggiornamento del profilo verrà inviato ai tuoi contatti.";
|
||||
|
||||
/* alert message */
|
||||
"Profile will be shared with the address." = "Il profilo verrà condiviso tramite il link dell'indirizzo.";
|
||||
"Your profile will be shared with the address." = "Il profilo verrà condiviso tramite il link dell'indirizzo.";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Prohibit audio/video calls." = "Proibisci le chiamate audio/video.";
|
||||
@@ -6248,4 +6248,3 @@ report reason */
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Your SimpleX address" = "Il tuo indirizzo SimpleX";
|
||||
|
||||
|
||||
@@ -4091,7 +4091,7 @@ new chat action */
|
||||
"Profile update will be sent to your contacts." = "Обновлённый профиль будет отправлен Вашим контактам.";
|
||||
|
||||
/* alert message */
|
||||
"Profile will be shared with the address." = "Профиль будет добавлен в адрес.";
|
||||
"Your profile will be shared with the address." = "Профиль будет добавлен в адрес.";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Prohibit audio/video calls." = "Запретить аудио/видео звонки.";
|
||||
@@ -6209,4 +6209,3 @@ report reason */
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Your SimpleX address" = "Ваш адрес SimpleX";
|
||||
|
||||
|
||||
@@ -4106,7 +4106,7 @@ new chat action */
|
||||
"Profile update will be sent to your contacts." = "Profil güncellemesi kişilerinize gönderilecektir.";
|
||||
|
||||
/* alert message */
|
||||
"Profile will be shared with the address." = "Profil adres bağlantısı aracılığıyla paylaşılacaktır.";
|
||||
"Your profile will be shared with the address." = "Profil adres bağlantısı aracılığıyla paylaşılacaktır.";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Prohibit audio/video calls." = "Sesli/görüntülü aramaları yasakla.";
|
||||
@@ -6248,4 +6248,3 @@ report reason */
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"Your SimpleX address" = "SimpleX adresin";
|
||||
|
||||
|
||||
+32
-2
@@ -848,8 +848,38 @@ private val versionDescriptions: List<VersionDescription> = listOf(
|
||||
descrId = MR.strings.v6_4_message_delivery_descr
|
||||
),
|
||||
)
|
||||
)
|
||||
|
||||
),
|
||||
VersionDescription(
|
||||
version = "v6.4.1",
|
||||
post = "https://simplex.chat/blog/20250729-simplex-chat-v6-4-1-welcome-contacts-protect-groups-app-security.html",
|
||||
features = listOf(
|
||||
VersionFeature.FeatureDescription(
|
||||
icon = MR.images.ic_waving_hand,
|
||||
titleId = MR.strings.v6_4_1_welcome_contacts,
|
||||
descrId = MR.strings.v6_4_1_welcome_contacts_descr
|
||||
),
|
||||
VersionFeature.FeatureDescription(
|
||||
icon = MR.images.ic_timer,
|
||||
titleId = MR.strings.v6_4_1_keep_chats_clean,
|
||||
descrId = MR.strings.v6_4_1_keep_chats_clean_descr
|
||||
),
|
||||
VersionFeature.FeatureDescription(
|
||||
icon = MR.images.ic_link,
|
||||
titleId = MR.strings.v6_4_1_short_address,
|
||||
descrId = null,
|
||||
subfeatures = listOf(
|
||||
MR.images.ic_link to MR.strings.v6_4_1_short_address_create,
|
||||
MR.images.ic_link to MR.strings.v6_4_1_short_address_update,
|
||||
MR.images.ic_link to MR.strings.v6_4_1_short_address_share,
|
||||
)
|
||||
),
|
||||
VersionFeature.FeatureDescription(
|
||||
icon = MR.images.ic_translate,
|
||||
titleId = MR.strings.v6_4_1_new_interface_languages,
|
||||
descrId = MR.strings.v6_4_1_new_interface_languages_descr,
|
||||
),
|
||||
)
|
||||
),
|
||||
)
|
||||
|
||||
private val lastVersion = versionDescriptions.last().version
|
||||
|
||||
@@ -2445,6 +2445,16 @@
|
||||
<string name="v6_4_role_moderator">New group role: Moderator</string>
|
||||
<string name="v6_4_role_moderator_descr">Removes messages and blocks members.</string>
|
||||
<string name="v6_4_message_delivery_descr">Less traffic on mobile networks.</string>
|
||||
<string name="v6_4_1_welcome_contacts">Welcome your contacts 👋</string>
|
||||
<string name="v6_4_1_welcome_contacts_descr">Set profile bio and welcome message.</string>
|
||||
<string name="v6_4_1_keep_chats_clean">Keep your chats clean</string>
|
||||
<string name="v6_4_1_keep_chats_clean_descr">Enable disappearing messages by default.</string>
|
||||
<string name="v6_4_1_short_address">Short SimpleX address</string>
|
||||
<string name="v6_4_1_short_address_create">Create your address</string>
|
||||
<string name="v6_4_1_short_address_update">Update your address</string>
|
||||
<string name="v6_4_1_short_address_share">Share your address</string>
|
||||
<string name="v6_4_1_new_interface_languages">4 new interface languages</string>
|
||||
<string name="v6_4_1_new_interface_languages_descr">Catalan, Indonesian, Romanian and Vietnamese - thanks to our users!</string>
|
||||
<string name="view_updated_conditions">View updated conditions</string>
|
||||
|
||||
<!-- CustomTimePicker -->
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#000000"><path d="m437-502.5 266.33-264.83q8.17-8.67 20.22-8.67 12.04 0 20.45 8.5 8 8.41 8 20.2 0 11.8-8 19.8L477-461l-40-41.5Zm104 104 237.88-237.4q8.19-8.1 20.29-8.1t20.83 7.84q8 8.27 8 20.26 0 11.99-8.12 20.54L581-357l-40-41.5ZM195-199q-89.5-89.5-90.25-215.5T193.5-630l126-126 39.41 40.08q11.7 11.77 19.23 27.93 7.53 16.16 8.36 29.49L542-815q8.27-8 20.37-8 12.1 0 20.63 8.05 8 8.48 8 20.75 0 12.28-8 20.7L381.5-572l-61 61 27.5 28q40.5 40.5 39.75 97.25T346.5-288.5l-13 13L293-317l13.5-13q24-24 24-56.75T307-443l-48-48q-8.5-8.07-8.5-20.33 0-12.27 8.5-20.67l60.5-59.5q16.5-16.47 16.5-41.23 0-24.77-16.5-41.77L234-589q-72.5 72.5-71.75 174.25T235.5-240.5q73.5 73.5 176 75.25T587-236l231.21-231q8.58-8.5 20.58-8.5 12.01 0 20.71 8.28 8 8.47 8 20.13 0 11.66-8.02 20.13L628-195.5q-89.5 89.5-216.25 88T195-199Zm214.5-214.5Zm273 365 1-57q71.5 0 121.5-49.81T855-277l57-1q0 95.11-67.45 162.3-67.44 67.2-162.05 67.2Zm-634-634q0-94.61 67.14-162.05Q182.77-912 278-912l-1 57q-72 0-121.75 50T105.5-683.5l-57 1Z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,58 @@
|
||||
---
|
||||
layout: layouts/article.html
|
||||
title: "SimpleX Chat v6.4.1: welcome your contacts, review members to protect groups, and more."
|
||||
date: 2025-07-29
|
||||
# previewBody: blog_previews/20250308.html
|
||||
# image: images/20250308-captcha.png
|
||||
# imageBottom: true
|
||||
draft: true
|
||||
permalink: "/blog/20250729-simplex-chat-v6-4-1-welcome-contacts-protect-groups-app-security.html"
|
||||
---
|
||||
|
||||
# SimpleX Chat v6.4.1: welcome your contacts, review members to protect groups, and more.
|
||||
|
||||
**Will be published:** Jul 29, 2025
|
||||
|
||||
This is a placeholder for upcoming v6.4.1 release announcement.
|
||||
|
||||
**What's new in v6.4.1**:
|
||||
|
||||
TODO
|
||||
|
||||
## What's new in v6.4.1
|
||||
|
||||
TODO
|
||||
|
||||
## SimpleX network
|
||||
|
||||
Some links to answer the most common questions:
|
||||
|
||||
[How can SimpleX deliver messages without user identifiers](./20220511-simplex-chat-v2-images-files.md#the-first-messaging-platform-without-user-identifiers).
|
||||
|
||||
[What are the risks to have identifiers assigned to the users](./20220711-simplex-chat-v3-released-ios-notifications-audio-video-calls-database-export-import-protocol-improvements.md#why-having-users-identifiers-is-bad-for-the-users).
|
||||
|
||||
[Technical details and limitations](https://github.com/simplex-chat/simplex-chat#privacy-and-security-technical-details-and-limitations).
|
||||
|
||||
[Frequently asked questions](../docs/FAQ.md).
|
||||
|
||||
Please also see our [website](https://simplex.chat).
|
||||
|
||||
## Please support us with your donations
|
||||
|
||||
Huge *thank you* to everybody who donated to SimpleX Chat!
|
||||
|
||||
Prioritizing users privacy and security, and also raising the investment, would have been impossible without your support and donations.
|
||||
|
||||
Also, funding the work to transition the protocols to non-profit governance model would not have been possible without the donations we received from the users.
|
||||
|
||||
Our pledge to our users is that SimpleX protocols are and will remain open, and in public domain, so anybody can build the future implementations of the clients and the servers. We are building SimpleX platform based on the same principles as email and web, but much more private and secure.
|
||||
|
||||
Your donations help us raise more funds — any amount, even the price of the cup of coffee, makes a big difference for us.
|
||||
|
||||
See [this section](https://github.com/simplex-chat/simplex-chat/#please-support-us-with-your-donations) for the ways to donate.
|
||||
|
||||
Thank you,
|
||||
|
||||
Evgeny
|
||||
|
||||
SimpleX Chat founder
|
||||
Reference in New Issue
Block a user