I have just localized the file Localizable.strings in my Xcode project in order to localise my application to a few different languages. However, having edited each of the f
make sure the one for all Apps file for Localizable.strings don't make more than one page just one
and put this extension in your app
extension String {
var localizedLized: String {
return NSLocalizedString(self, comment: "")
}
}