Swift 3
let path = Bundle.main.path(forResource: "Localizable", ofType: "strings", inDirectory: nil, forLocalization: "en") let dic = NSDictionary(contentsOfFile: path!) debugPrint(dic)
pull the localizable.strings file into your Xcode project and run the code above, and then you can get dic in the Xcode console or save it in text.
source share