From 6f6521c9ca8e4fb8e3dc5dd1d1153402f853aec7 Mon Sep 17 00:00:00 2001
From: Ryan ZHAO <>
Date: Mon, 22 Apr 2024 14:15:17 +1000
Subject: [PATCH] update strings
---
.../ConversationVC+Interaction.swift | 86 +++++++++----------
.../MessageInfoScreen.swift | 2 +-
.../Translations/ar.lproj/Localizable.strings | 2 +-
.../Translations/be.lproj/Localizable.strings | 2 +-
.../Translations/bg.lproj/Localizable.strings | 2 +-
.../Translations/bn.lproj/Localizable.strings | 2 +-
.../Translations/cs.lproj/Localizable.strings | 2 +-
.../Translations/da.lproj/Localizable.strings | 2 +-
.../Translations/de.lproj/Localizable.strings | 2 +-
.../Translations/el.lproj/Localizable.strings | 2 +-
.../Translations/en.lproj/Localizable.strings | 7 +-
.../Translations/eo.lproj/Localizable.strings | 2 +-
.../es-ES.lproj/Localizable.strings | 2 +-
.../Translations/fa.lproj/Localizable.strings | 2 +-
.../Translations/fi.lproj/Localizable.strings | 2 +-
.../fil.lproj/Localizable.strings | 2 +-
.../Translations/fr.lproj/Localizable.strings | 2 +-
.../Translations/hi.lproj/Localizable.strings | 2 +-
.../Translations/hr.lproj/Localizable.strings | 2 +-
.../Translations/hu.lproj/Localizable.strings | 2 +-
.../Translations/id.lproj/Localizable.strings | 2 +-
.../Translations/it.lproj/Localizable.strings | 2 +-
.../Translations/ja.lproj/Localizable.strings | 2 +-
.../Translations/ko.lproj/Localizable.strings | 2 +-
.../Translations/ku.lproj/Localizable.strings | 2 +-
.../Translations/lt.lproj/Localizable.strings | 2 +-
.../Translations/lv.lproj/Localizable.strings | 2 +-
.../ne-NP.lproj/Localizable.strings | 2 +-
.../Translations/nl.lproj/Localizable.strings | 2 +-
.../Translations/no.lproj/Localizable.strings | 2 +-
.../Translations/pl.lproj/Localizable.strings | 2 +-
.../pt-BR.lproj/Localizable.strings | 2 +-
.../pt-PT.lproj/Localizable.strings | 2 +-
.../Translations/ro.lproj/Localizable.strings | 2 +-
.../Translations/ru.lproj/Localizable.strings | 2 +-
.../si-LK.lproj/Localizable.strings | 2 +-
.../Translations/sk.lproj/Localizable.strings | 2 +-
.../Translations/sl.lproj/Localizable.strings | 2 +-
.../sv-SE.lproj/Localizable.strings | 2 +-
.../Translations/th.lproj/Localizable.strings | 2 +-
.../Translations/tr.lproj/Localizable.strings | 2 +-
.../Translations/uk.lproj/Localizable.strings | 2 +-
.../Translations/vi.lproj/Localizable.strings | 2 +-
.../zh-CN.lproj/Localizable.strings | 2 +-
.../zh-TW.lproj/Localizable.strings | 2 +-
.../Database/Models/Interaction.swift | 2 +-
46 files changed, 87 insertions(+), 94 deletions(-)
diff --git a/Session/Conversations/ConversationVC+Interaction.swift b/Session/Conversations/ConversationVC+Interaction.swift
index 4da7ad0bf..7266557f5 100644
--- a/Session/Conversations/ConversationVC+Interaction.swift
+++ b/Session/Conversations/ConversationVC+Interaction.swift
@@ -1648,7 +1648,7 @@ extension ConversationVC:
let sheet = UIAlertController(
title: (cellViewModel.state == .failedToSync ?
"MESSAGE_DELIVERY_FAILED_SYNC_TITLE".localized() :
- "MESSAGE_DELIVERY_FAILED_TITLE".localized()
+ "messageStatusFailedToSend".localized()
),
message: cellViewModel.mostRecentFailureText,
preferredStyle: .actionSheet
@@ -2176,52 +2176,50 @@ extension ConversationVC:
self?.showInputAccessoryView()
})
- actionSheet.addAction(UIAlertAction(
- title: {
- switch cellViewModel.threadVariant {
- case .legacyGroup, .group: return "clearMessagesForEveryone".localized()
- default:
- return (cellViewModel.threadId == userPublicKey ?
- "delete_message_for_me_and_my_devices".localized() :
- "clearMessagesForEveryone".localized()
- )
+ if cellViewModel.threadId != userPublicKey {
+ actionSheet.addAction(UIAlertAction(
+ title: {
+ switch cellViewModel.threadVariant {
+ case .legacyGroup, .group: return "clearMessagesForEveryone".localized()
+ default: return "clearMessagesForEveryone".localized()
+ }
+ }(),
+ accessibilityIdentifier: "Delete for everyone",
+ style: .destructive
+ ) { [weak self] _ in
+ let completeServerDeletion = { [weak self] in
+ Storage.shared.writeAsync { db in
+ try MessageSender
+ .send(
+ db,
+ message: unsendRequest,
+ interactionId: nil,
+ threadId: cellViewModel.threadId,
+ threadVariant: cellViewModel.threadVariant,
+ using: dependencies
+ )
+ }
+
+ self?.showInputAccessoryView()
}
- }(),
- accessibilityIdentifier: "Delete for everyone",
- style: .destructive
- ) { [weak self] _ in
- let completeServerDeletion = { [weak self] in
- Storage.shared.writeAsync { db in
- try MessageSender
- .send(
- db,
- message: unsendRequest,
- interactionId: nil,
- threadId: cellViewModel.threadId,
- threadVariant: cellViewModel.threadVariant,
- using: dependencies
- )
+
+ // We can only delete messages on the server for `contact` and `group` conversations
+ guard cellViewModel.threadVariant == .contact || cellViewModel.threadVariant == .group else {
+ return completeServerDeletion()
}
- self?.showInputAccessoryView()
- }
-
- // We can only delete messages on the server for `contact` and `group` conversations
- guard cellViewModel.threadVariant == .contact || cellViewModel.threadVariant == .group else {
- return completeServerDeletion()
- }
-
- deleteRemotely(
- from: self,
- request: SnodeAPI
- .deleteMessages(
- publicKey: targetPublicKey,
- serverHashes: [serverHash]
- )
- .map { _ in () }
- .eraseToAnyPublisher()
- ) { completeServerDeletion() }
- })
+ deleteRemotely(
+ from: self,
+ request: SnodeAPI
+ .deleteMessages(
+ publicKey: targetPublicKey,
+ serverHashes: [serverHash]
+ )
+ .map { _ in () }
+ .eraseToAnyPublisher()
+ ) { completeServerDeletion() }
+ })
+ }
actionSheet.addAction(UIAlertAction.init(title: "cancel".localized(), style: .cancel) { [weak self] _ in
self?.showInputAccessoryView()
diff --git a/Session/Media Viewing & Editing/MessageInfoScreen.swift b/Session/Media Viewing & Editing/MessageInfoScreen.swift
index 726ccf337..0d27411fe 100644
--- a/Session/Media Viewing & Editing/MessageInfoScreen.swift
+++ b/Session/Media Viewing & Editing/MessageInfoScreen.swift
@@ -221,7 +221,7 @@ struct MessageInfoScreen: View {
}
if isMessageFailed {
- let failureText: String = messageViewModel.mostRecentFailureText ?? "SEND_FAILED_NOTIFICATION_BODY".localized()
+ let failureText: String = messageViewModel.mostRecentFailureText ?? "messageStatusFailedToSend".localized()
InfoBlock(title: "error".localized() + ":") {
Text(failureText)
.font(.system(size: Values.mediumFontSize))
diff --git a/Session/Meta/Translations/ar.lproj/Localizable.strings b/Session/Meta/Translations/ar.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/ar.lproj/Localizable.strings
+++ b/Session/Meta/Translations/ar.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/be.lproj/Localizable.strings b/Session/Meta/Translations/be.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/be.lproj/Localizable.strings
+++ b/Session/Meta/Translations/be.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/bg.lproj/Localizable.strings b/Session/Meta/Translations/bg.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/bg.lproj/Localizable.strings
+++ b/Session/Meta/Translations/bg.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/bn.lproj/Localizable.strings b/Session/Meta/Translations/bn.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/bn.lproj/Localizable.strings
+++ b/Session/Meta/Translations/bn.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/cs.lproj/Localizable.strings b/Session/Meta/Translations/cs.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/cs.lproj/Localizable.strings
+++ b/Session/Meta/Translations/cs.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/da.lproj/Localizable.strings b/Session/Meta/Translations/da.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/da.lproj/Localizable.strings
+++ b/Session/Meta/Translations/da.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/de.lproj/Localizable.strings b/Session/Meta/Translations/de.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/de.lproj/Localizable.strings
+++ b/Session/Meta/Translations/de.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/el.lproj/Localizable.strings b/Session/Meta/Translations/el.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/el.lproj/Localizable.strings
+++ b/Session/Meta/Translations/el.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/en.lproj/Localizable.strings b/Session/Meta/Translations/en.lproj/Localizable.strings
index 10af59773..a4f215637 100644
--- a/Session/Meta/Translations/en.lproj/Localizable.strings
+++ b/Session/Meta/Translations/en.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
@@ -717,8 +717,6 @@
"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Unable to parse image.";
"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Unable to process video.";
"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Unable to resize image.";
-"GROUP_CREATED" = "Group created";
-"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set messages to disappear %@ after they have been %@";
"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated.";
"DATE_NOW" = "Now";
"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact";
@@ -749,6 +747,3 @@
"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Failed to choose document.";
"CONFIRM_BUTTON_TITLE" = "Confirm";
"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices";
-"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message";
-"delete_message_for_me_and_my_devices" = "Delete from all of my devices";
-"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send.";
diff --git a/Session/Meta/Translations/eo.lproj/Localizable.strings b/Session/Meta/Translations/eo.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/eo.lproj/Localizable.strings
+++ b/Session/Meta/Translations/eo.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/es-ES.lproj/Localizable.strings b/Session/Meta/Translations/es-ES.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/es-ES.lproj/Localizable.strings
+++ b/Session/Meta/Translations/es-ES.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/fa.lproj/Localizable.strings b/Session/Meta/Translations/fa.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/fa.lproj/Localizable.strings
+++ b/Session/Meta/Translations/fa.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/fi.lproj/Localizable.strings b/Session/Meta/Translations/fi.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/fi.lproj/Localizable.strings
+++ b/Session/Meta/Translations/fi.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/fil.lproj/Localizable.strings b/Session/Meta/Translations/fil.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/fil.lproj/Localizable.strings
+++ b/Session/Meta/Translations/fil.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/fr.lproj/Localizable.strings b/Session/Meta/Translations/fr.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/fr.lproj/Localizable.strings
+++ b/Session/Meta/Translations/fr.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/hi.lproj/Localizable.strings b/Session/Meta/Translations/hi.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/hi.lproj/Localizable.strings
+++ b/Session/Meta/Translations/hi.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/hr.lproj/Localizable.strings b/Session/Meta/Translations/hr.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/hr.lproj/Localizable.strings
+++ b/Session/Meta/Translations/hr.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/hu.lproj/Localizable.strings b/Session/Meta/Translations/hu.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/hu.lproj/Localizable.strings
+++ b/Session/Meta/Translations/hu.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/id.lproj/Localizable.strings b/Session/Meta/Translations/id.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/id.lproj/Localizable.strings
+++ b/Session/Meta/Translations/id.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/it.lproj/Localizable.strings b/Session/Meta/Translations/it.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/it.lproj/Localizable.strings
+++ b/Session/Meta/Translations/it.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/ja.lproj/Localizable.strings b/Session/Meta/Translations/ja.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/ja.lproj/Localizable.strings
+++ b/Session/Meta/Translations/ja.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/ko.lproj/Localizable.strings b/Session/Meta/Translations/ko.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/ko.lproj/Localizable.strings
+++ b/Session/Meta/Translations/ko.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/ku.lproj/Localizable.strings b/Session/Meta/Translations/ku.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/ku.lproj/Localizable.strings
+++ b/Session/Meta/Translations/ku.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/lt.lproj/Localizable.strings b/Session/Meta/Translations/lt.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/lt.lproj/Localizable.strings
+++ b/Session/Meta/Translations/lt.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/lv.lproj/Localizable.strings b/Session/Meta/Translations/lv.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/lv.lproj/Localizable.strings
+++ b/Session/Meta/Translations/lv.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/ne-NP.lproj/Localizable.strings b/Session/Meta/Translations/ne-NP.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/ne-NP.lproj/Localizable.strings
+++ b/Session/Meta/Translations/ne-NP.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/nl.lproj/Localizable.strings b/Session/Meta/Translations/nl.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/nl.lproj/Localizable.strings
+++ b/Session/Meta/Translations/nl.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/no.lproj/Localizable.strings b/Session/Meta/Translations/no.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/no.lproj/Localizable.strings
+++ b/Session/Meta/Translations/no.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/pl.lproj/Localizable.strings b/Session/Meta/Translations/pl.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/pl.lproj/Localizable.strings
+++ b/Session/Meta/Translations/pl.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/pt-BR.lproj/Localizable.strings b/Session/Meta/Translations/pt-BR.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/pt-BR.lproj/Localizable.strings
+++ b/Session/Meta/Translations/pt-BR.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/pt-PT.lproj/Localizable.strings b/Session/Meta/Translations/pt-PT.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/pt-PT.lproj/Localizable.strings
+++ b/Session/Meta/Translations/pt-PT.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/ro.lproj/Localizable.strings b/Session/Meta/Translations/ro.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/ro.lproj/Localizable.strings
+++ b/Session/Meta/Translations/ro.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/ru.lproj/Localizable.strings b/Session/Meta/Translations/ru.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/ru.lproj/Localizable.strings
+++ b/Session/Meta/Translations/ru.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/si-LK.lproj/Localizable.strings b/Session/Meta/Translations/si-LK.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/si-LK.lproj/Localizable.strings
+++ b/Session/Meta/Translations/si-LK.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/sk.lproj/Localizable.strings b/Session/Meta/Translations/sk.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/sk.lproj/Localizable.strings
+++ b/Session/Meta/Translations/sk.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/sl.lproj/Localizable.strings b/Session/Meta/Translations/sl.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/sl.lproj/Localizable.strings
+++ b/Session/Meta/Translations/sl.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/sv-SE.lproj/Localizable.strings b/Session/Meta/Translations/sv-SE.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/sv-SE.lproj/Localizable.strings
+++ b/Session/Meta/Translations/sv-SE.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/th.lproj/Localizable.strings b/Session/Meta/Translations/th.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/th.lproj/Localizable.strings
+++ b/Session/Meta/Translations/th.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/tr.lproj/Localizable.strings b/Session/Meta/Translations/tr.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/tr.lproj/Localizable.strings
+++ b/Session/Meta/Translations/tr.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/uk.lproj/Localizable.strings b/Session/Meta/Translations/uk.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/uk.lproj/Localizable.strings
+++ b/Session/Meta/Translations/uk.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/vi.lproj/Localizable.strings b/Session/Meta/Translations/vi.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/vi.lproj/Localizable.strings
+++ b/Session/Meta/Translations/vi.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/zh-CN.lproj/Localizable.strings b/Session/Meta/Translations/zh-CN.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/zh-CN.lproj/Localizable.strings
+++ b/Session/Meta/Translations/zh-CN.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/Session/Meta/Translations/zh-TW.lproj/Localizable.strings b/Session/Meta/Translations/zh-TW.lproj/Localizable.strings
index 92ff25d6c..9c363fb15 100644
--- a/Session/Meta/Translations/zh-TW.lproj/Localizable.strings
+++ b/Session/Meta/Translations/zh-TW.lproj/Localizable.strings
@@ -282,7 +282,7 @@
"groupLeave" = "Leave Group";
"notificationsLedColor" = "LED color";
"linkPreviews" = "Link Previews";
-"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices. Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
+"recoveryPasswordDescription" = "Use your recovery password to load your account on new devices.
Your account cannot be recovered without your recovery password. Make sure it\'s stored somewhere safe and secure — and don\'t share it with anyone.";
"attachmentsLoadingNewer" = "Loading Newer Media...";
"attachmentsLoadingOlder" = "Loading Older Media...";
"loadAccountProgressMessage" = "Loading your account";
diff --git a/SessionMessagingKit/Database/Models/Interaction.swift b/SessionMessagingKit/Database/Models/Interaction.swift
index 6ec03d081..af06866af 100644
--- a/SessionMessagingKit/Database/Models/Interaction.swift
+++ b/SessionMessagingKit/Database/Models/Interaction.swift
@@ -1035,7 +1035,7 @@ public extension Interaction {
.put(key: "name", value: authorDisplayName)
.localized()
- case .infoClosedGroupCreated: return "GROUP_CREATED".localized()
+ case .infoClosedGroupCreated: return (body ?? "") // Deprecated
case .infoClosedGroupCurrentUserLeft: return "groupMemberYouLeft".localized()
case .infoClosedGroupCurrentUserLeaving: return "leaving".localized()
case .infoClosedGroupCurrentUserErrorLeaving: return (body ?? "")