Skip to content

Instantly share code, notes, and snippets.

@AlexZverusha
Last active July 24, 2017 19:32
Show Gist options
  • Save AlexZverusha/ef3fc4ce4525316f8460180fc8a51b57 to your computer and use it in GitHub Desktop.
Save AlexZverusha/ef3fc4ce4525316f8460180fc8a51b57 to your computer and use it in GitHub Desktop.
Localized string extension
extension String {
var localized: String {
return NSLocalizedString(self, tableName: nil, bundle: Bundle.main, value: "", comment: "")
}
}
//example
//"test".localized
// "test " = "тест";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment