tbointeractive / bytes

bytes is a set of Swift tools to cover many all-day tasks in iOS development.
MIT License
7 stars 1 forks source link

Add extension on String for localized strings #52

Closed thorstenstark closed 2 years ago

thorstenstark commented 2 years ago

Something like

extension String {

    func localized() -> String {
        NSLocalizedString(self, comment: "")
    }

}