Skip to content

Instantly share code, notes, and snippets.

@CyrilCermak
Created March 16, 2019 14:14
Show Gist options
  • Save CyrilCermak/ac17c0ada3f110b9614b33cde00d35ac to your computer and use it in GitHub Desktop.
Save CyrilCermak/ac17c0ada3f110b9614b33cde00d35ac to your computer and use it in GitHub Desktop.
extension String {
func localized(bundle: Bundle = .main, tableName: String = "Localization") -> String {
return NSLocalizedString(self, tableName: tableName, value: "\(self)**", comment: "")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment