import Foundation

struct Localized {

static func localized(_ key: String, comment: String = "") -> String {
    return NSLocalizedString(key, comment: comment)
}

%s }