diff --git a/Signal/ConversationView/VoiceMessage/VoiceMessageSendableDraft.swift b/Signal/ConversationView/VoiceMessage/VoiceMessageSendableDraft.swift index a4e7f82394..fdd1c261a1 100644 --- a/Signal/ConversationView/VoiceMessage/VoiceMessageSendableDraft.swift +++ b/Signal/ConversationView/VoiceMessage/VoiceMessageSendableDraft.swift @@ -18,8 +18,7 @@ extension VoiceMessageSendableDraft { dateFormatter.dateFormat = "yyyy-MM-dd-HH-mm-ss-SSS" let dateString = dateFormatter.string(from: Date()) return String( - format: "%@-%@.%@", - OWSLocalizedString("VOICE_MESSAGE_FILE_NAME", comment: "Filename for voice messages."), + format: "signal-%@.%@", dateString, VoiceMessageConstants.fileExtension ) diff --git a/Signal/translations/en.lproj/Localizable.strings b/Signal/translations/en.lproj/Localizable.strings index 9a10e536a9..e96aaa9faa 100644 --- a/Signal/translations/en.lproj/Localizable.strings +++ b/Signal/translations/en.lproj/Localizable.strings @@ -9271,9 +9271,6 @@ /* Indicates how to cancel a voice message. */ "VOICE_MESSAGE_CANCEL_INSTRUCTIONS" = "Slide to cancel"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "signal"; - /* Message for the tooltip indicating the 'voice message' needs to be held to be held down to record. */ "VOICE_MESSAGE_TOO_SHORT_TOOLTIP" = "Press and hold to record.";