¿How do I make Siri announce the local currency on notifications?

I'm currently testing the announce notifications feature and I can't seem to find out how to make Siri read aloud the current currency instead of dollars.

My locale is es-CL (Chile). It uses the currency symbol $ and reads as Pesos locally or Chilean Pesos where the number 5000.1 is represented as 5.000,1

This is the notification content

        let content = UNMutableNotificationContent()
        content.body = "¡Has recibido un pago por $5.000!"

Siri reads it aloud as "¡Has recibido un pago por 5.000 Dolares!" which translates to "You have received a payment for 5,000 Dollars", instead of the expected "¡Has recibido un pago por 5.000 Pesos!" -> "You have received a payment for 5,000 Pesos"

I've tried changing the development region of the app, interpolating the string with NumberFormatter.localizedString(from: 5000, number: .currency), and with others styles( .currencyAccounting, .currencyISOCode and .currencyPlural) without good results. The last one seems to work buts it's not ideal since it outputs "5.000 pesos chilenos" which gets read as "5 pesos chilenos" which is not the correct amount (bug), it's as is you're not on Chile and I personally prefer it to be a symbol instead of words.

I'm testing with my device which is setup with the region "Chile"

Could someone help me find a solution?

Hi, would you be able to file a feedback and share the ID number with us? You can do so in the Feedback Assistant app on beta software or at https://feedbackassistant.apple.com

I've submitted feedback with the ID: FB11940394

The feedback ID is FB11940394

The feedback ID is FB11940394

¿How do I make Siri announce the local currency on notifications?
 
 
Q