另一种语言的月份名称 - SwiftUI

Month Name in another Language - SwiftUI

大家好,我需要显示 当前月份 名称,为此我正在使用 Date()formatted(.dateTime.month(.wide))

这样我可以得到当月的全名。

我的问题是我显示它的语言(即使在真实设备上)是英语,我需要用意大利语显示它,因为整个应用程序都是意大利语

很久以前我不需要做任何操作自动翻译但现在我的设备上也是(iphone 13 pro max)我继续用英文看

有什么我忘了做的事吗?你能帮帮我吗?

var date: Date = Date()
date.formatted(.dateTime.month(.wide))
// Return January instead Gennaio

还有一个locale修饰符

Text(date.formatted(.dateTime
                    .month(.wide)
                    .locale(.init(identifier: "it_IT"))))