@@ -294,12 +294,12 @@ public class DownloadManager {
294
294
DownloadFormat (
295
295
formatId: " bestaudio " ,
296
296
fileExtension: " mp3 " ,
297
- description: NSLocalizedString ( " 🎵 Best Quality (Auto Select)" , comment: " Format description for best audio quality " )
297
+ description: NSLocalizedString ( " Best Quality (Auto Select) " , comment: " Format description for best audio quality " )
298
298
) ,
299
299
DownloadFormat (
300
300
formatId: " 140 " ,
301
301
fileExtension: " m4a " ,
302
- description: NSLocalizedString ( " 🎵 M4A Audio (128kbps, 44kHz, stereo, 3.5MiB) [AAC]" , comment: " Predefined format description " ) ,
302
+ description: NSLocalizedString ( " M4A Audio (128kbps, 44kHz, stereo, 3.5MiB) [AAC] " , comment: " Predefined format description " ) ,
303
303
bitrate: " 128kbps " ,
304
304
sampleRate: " 44kHz " ,
305
305
channels: NSLocalizedString ( " stereo " , comment: " Audio channel type " ) ,
@@ -308,7 +308,7 @@ public class DownloadManager {
308
308
DownloadFormat (
309
309
formatId: " 251 " ,
310
310
fileExtension: " webm " ,
311
- description: NSLocalizedString ( " 🎵 WebM Audio (160kbps, 48kHz, stereo, 3.2MiB) [Opus]" , comment: " Predefined format description " ) ,
311
+ description: NSLocalizedString ( " WebM Audio (160kbps, 48kHz, stereo, 3.2MiB) [Opus] " , comment: " Predefined format description " ) ,
312
312
bitrate: " 160kbps " ,
313
313
sampleRate: " 48kHz " ,
314
314
channels: NSLocalizedString ( " stereo " , comment: " Audio channel type " ) ,
@@ -423,7 +423,7 @@ public class DownloadManager {
423
423
var description = " "
424
424
425
425
if !properties. bitrate. isEmpty {
426
- description = String ( format: NSLocalizedString ( " 🎵 %@ Audio (%@" , comment: " Format description with bitrate " ) , properties. fileExtension. uppercased ( ) , properties. bitrate)
426
+ description = String ( format: NSLocalizedString ( " %@ Audio (%@ " , comment: " Format description with bitrate " ) , properties. fileExtension. uppercased ( ) , properties. bitrate)
427
427
428
428
if !properties. sampleRate. isEmpty {
429
429
description += String ( format: " , %@ " , properties. sampleRate)
@@ -437,7 +437,7 @@ public class DownloadManager {
437
437
438
438
description += " ) "
439
439
} else {
440
- description = String ( format: NSLocalizedString ( " 🎵 %@ Audio" , comment: " Format description without details " ) , properties. fileExtension. uppercased ( ) )
440
+ description = String ( format: NSLocalizedString ( " %@ Audio " , comment: " Format description without details " ) , properties. fileExtension. uppercased ( ) )
441
441
442
442
if !properties. sampleRate. isEmpty || !properties. channels. isEmpty || !properties. fileSize. isEmpty {
443
443
description += " ( "
0 commit comments