Is there a way to generate properties from comments, rather than localization keys using SwiftGen?
Here's an example for better illustration of what I mean:
Lozalizable.strings:
...
/* file_detail.button.download */
"T00014" = "Download";
...
Strings+Generated.swift:
internal enum L10n {
    internal enum FileDetail {
        internal enum Button {
            /// Download
            internal static let download = L10n.tr("Localizable", "T00014")
        }
    }
}