You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Signal/translations/en.lproj/Localizable.strings
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,9 @@
115
115
/* Attachment error message for video attachments which could not be converted to MP4 */
116
116
"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Unable to process video.";
117
117
118
+
/* Attachment error message for image attachments in which metadata could not be removed */
119
+
"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Unable to remove metadata from image.";
120
+
118
121
/* Attachment error message for image attachments which cannot be parsed */
119
122
"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Image attachment could not be parsed.";
120
123
@@ -1608,6 +1611,15 @@
1608
1611
/* No comment provided by engineer. */
1609
1612
"SETTINGS_SCREEN_SECURITY_DETAIL" = "Prevent Signal previews from appearing in the app switcher.";
1610
1613
1614
+
/* Remove metadata table view header label. */
1615
+
"SETTINGS_REMOVE_METADATA_TITLE" = "Metadata";
1616
+
1617
+
/* Label for the remove metadata setting. */
1618
+
"SETTINGS_REMOVE_METADATA" = "Remove Media Metadata";
1619
+
1620
+
/* Footer label explanation of the remove metadata setting. */
1621
+
"SETTINGS_REMOVE_METADATA_DETAIL" = "Removes user-identifying metadata and GPS information when sending image and video messages.";
1622
+
1611
1623
/* Settings table section footer. */
1612
1624
"SETTINGS_SECTION_CALL_KIT_DESCRIPTION" = "iOS Call Integration shows Signal calls on your lock screen and in the system's call history. You may optionally show your contact's name and number. If iCloud is enabled, this call history will be shared with Apple.";
returnNSLocalizedString("ATTACHMENT_ERROR_INVALID_FILE_FORMAT", comment:"Attachment error message for attachments with an invalid file format")
54
55
case.couldNotConvertToMpeg4:
55
56
returnNSLocalizedString("ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4", comment:"Attachment error message for video attachments which could not be converted to MP4")
57
+
case.couldNotRemoveMetadata:
58
+
returnNSLocalizedString("ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA", comment:"Attachment error message for image attachments in which metadata could not be removed")
56
59
}
57
60
}
58
61
}
@@ -625,8 +628,13 @@ public class SignalAttachment: NSObject {
625
628
}
626
629
627
630
if isValidOutput {
628
-
Logger.verbose("\(TAG) Sending raw \(attachment.mimeType)")
0 commit comments