国の情報を取得するためには,

SKProductを使用すると良い

import Foundation
import StoreKit
 
extension SKProduct {
    func localizedPrice() -> String {
        let numberFormatter = NumberFormatter()
        numberFormatter.formatterBehavior = .behavior10_4
        numberFormatter.numberStyle = .currency
        numberFormatter.locale = priceLocale
        return numberFormatter.string(from: price)!
    }
}

SKPruductが渡されるところで使用する

let localisedprice = package.localizedPrice()
                print(localisedprice)

参考文献

https://www.lanches.co.jp/blog/5062

ローカライズする[iPhone] 多言語対応、Localizationの設定

https://i-app-tec.com/ios/localization.html

https://qiita.com/syou007/items/1589f54ea96d5872b4ff