Skip to content

Instantly share code, notes, and snippets.

@brunogama
Created August 11, 2017 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunogama/793177b9b156a32e566454a12836a97b to your computer and use it in GitHub Desktop.
Save brunogama/793177b9b156a32e566454a12836a97b to your computer and use it in GitHub Desktop.
Localized string extension
public extension String
{
public var localized: String {
return NSLocalizedString(self.lowercased(), tableName: nil, bundle: .main, value: "", comment: "")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment