Skip to content

Instantly share code, notes, and snippets.

View Juanpe's full-sized avatar

Juanpe Catalán Juanpe

View GitHub Profile
@Juanpe
Juanpe / String+Localization.swift
Last active July 31, 2023 11:42
String extension to localize more easy way
extension String {
var localized: String {
return NSLocalizedString(self, comment: "\(self)_comment")
}
func localized(_ args: [CVarArg]) -> String {
return localized(args)
}