Created
July 29, 2023 13:20
-
-
Save foxicode/d260e79754a77babd80e0a22ec2d302f to your computer and use it in GitHub Desktop.
Syntactic sugar for Swift localization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public extension String { | |
| var localized: String { | |
| NSLocalizedString(self, comment: "") | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment