But it will become much easier to access localizable.strings, if L.swift generate a function or a computed property returning localized string. Like this:
label?.text = L.foo.bar.message.localizedString()
// Is this much better?
label?.text = L.foo.bar.message.localizedString
Currently, we have to call NSLocalizedString function to access every localized string resource.
But it will become much easier to access localizable.strings, if L.swift generate a function or a computed property returning localized string. Like this:
Thanks in advance :)