Как читать Localizable.strings в приложении - PullRequest
1 голос
/ 30 мая 2020

У меня есть файлы Localizable.strings для многих языков.

Я хотел бы прочитать текущую Localizable.strings построчно в приложении, чтобы помочь с переводом.

        let bpath:String = Bundle.main.path(forResource: "es", ofType: "lproj")! as String

        if let filepath = Bundle.main.path(forResource: bpath + "/Localizable.strings", ofType: nil) {
            do {
                let contents = try String(contentsOfFile: filepath)
                print(contents)
            } catch {
                // contents could not be loaded
                let alert = UIAlertController(title: "Erreur".localized, message: "Fichier \(bpath + "/Localizable.strings") non accessible".localized, preferredStyle: .alert)

                alert.addAction(UIAlertAction.init(title: "Ok".localized, style: .cancel, handler: nil))
                self.present(alert, animated: true, completion: nil)
            }
        } else {
            // example.txt not found!
            let alert = UIAlertController(title: "Erreur".localized, message: "Fichier \(bpath + "/Localizable.strings") non trouvé".localized, preferredStyle: .alert)

            alert.addAction(UIAlertAction.init(title: "Ok".localized, style: .cancel, handler: nil))
            self.present(alert, animated: true, completion: nil)
        }

Он не находит файл.

PS: Этот код работает отлично, но его цель - прочитать все «ключи».

    let bpath:String = Bundle.main.path(forResource: "es", ofType: "lproj")! as String
    let bundle = Bundle(path: bpath as String)
    let thisWord="Erreur"
    let ourWord=NSLocalizedString(thisWord, bundle: bundle!, comment: "")

1 Ответ

1 голос
/ 30 мая 2020

Используйте следующее, чтобы найти путь:

let filepath = Bundle.main.path(forResource: "Localizable", 
                                ofType: "strings", inDirectory: "es.lproj")
...