Created
March 17, 2022 06:43
-
-
Save tvidenov/54c4e8c865a76d27b1ab5211a56ea0d8 to your computer and use it in GitHub Desktop.
Localized - handy localization extension
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
import Foundation | |
extension String { | |
var localized: String { | |
return NSLocalizedString(self, tableName: nil, bundle: Bundle.main, value: "", comment: "") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment