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
@@ -118,6 +118,9 @@
118
118
/* Attachment error message for video attachments which could not be converted to MP4 */
119
119
"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Unable to process video.";
120
120
121
+
/* Attachment error message for image attachments in which metadata could not be removed */
122
+
"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Unable to remove metadata from image.";
123
+
121
124
/* Attachment error message for image attachments which cannot be parsed */
122
125
"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Image attachment could not be parsed.";
123
126
@@ -1690,6 +1693,15 @@
1690
1693
/* No comment provided by engineer. */
1691
1694
"SETTINGS_SCREEN_SECURITY_DETAIL" = "Prevent Signal previews from appearing in the app switcher.";
1692
1695
1696
+
/* Remove metadata table view header label. */
1697
+
"SETTINGS_REMOVE_METADATA_TITLE" = "Metadata";
1698
+
1699
+
/* Label for the remove metadata setting. */
1700
+
"SETTINGS_REMOVE_METADATA" = "Remove Media Metadata";
1701
+
1702
+
/* Footer label explanation of the remove metadata setting. */
1703
+
"SETTINGS_REMOVE_METADATA_DETAIL" = "Removes user-identifying metadata and GPS information when sending image and video messages.";
1704
+
1693
1705
/* Settings table section footer. */
1694
1706
"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