86 lines
3.3 KiB
Plaintext
86 lines
3.3 KiB
Plaintext
// swiftlint:disable all
|
|
// Generated using SwiftGen — https://github.com/SwiftGen/SwiftGen
|
|
|
|
{% if tables.count > 0 %}
|
|
{% set accessModifier %}{% if param.publicAccess %}public{% else %}internal{% endif %}{% endset %}
|
|
import Foundation
|
|
|
|
// swiftlint:disable superfluous_disable_command file_length implicit_return
|
|
|
|
// MARK: - Strings
|
|
|
|
{% macro parametersBlock types %}{% filter removeNewlines:"leading" %}
|
|
{% for type in types %}
|
|
{% if type == "String" %}
|
|
_ p{{forloop.counter}}: Any
|
|
{% else %}
|
|
_ p{{forloop.counter}}: {{type}}
|
|
{% endif %}
|
|
{{ ", " if not forloop.last }}
|
|
{% endfor %}
|
|
{% endfilter %}{% endmacro %}
|
|
{% macro argumentsBlock types %}{% filter removeNewlines:"leading" %}
|
|
{% for type in types %}
|
|
{% if type == "String" %}
|
|
String(describing: p{{forloop.counter}})
|
|
{% elif type == "UnsafeRawPointer" %}
|
|
Int(bitPattern: p{{forloop.counter}})
|
|
{% else %}
|
|
p{{forloop.counter}}
|
|
{% endif %}
|
|
{{ ", " if not forloop.last }}
|
|
{% endfor %}
|
|
{% endfilter %}{% endmacro %}
|
|
{% macro recursiveBlock table item %}
|
|
{% for string in item.strings %}
|
|
{% if not param.noComments %}
|
|
{% for line in string.translation|split:"\n" %}
|
|
/// {{line}}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if string.types %}
|
|
{{accessModifier}} static func {{string.name|swiftIdentifier:"pretty"|lowerFirstWord|escapeReservedKeywords}}({% call parametersBlock string.types %}) -> String {
|
|
{{enumName}}.tr("{{table}}", "{{string.key}}", {% call argumentsBlock string.types %})
|
|
}
|
|
{% else %}
|
|
{{accessModifier}} static var {{string.name|swiftIdentifier:"pretty"|lowerFirstWord|escapeReservedKeywords}}: String { {{enumName}}.tr("{{table}}", "{{string.key}}") }
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% for child in item.children %}
|
|
|
|
{{accessModifier}} enum {{child.name|swiftIdentifier:"pretty"|escapeReservedKeywords}} {
|
|
{% filter indent:2 %}{% call recursiveBlock table child %}{% endfilter %}
|
|
}
|
|
{% endfor %}
|
|
{% endmacro %}
|
|
// swiftlint:disable explicit_type_interface function_parameter_count identifier_name line_length
|
|
// swiftlint:disable nesting type_body_length type_name vertical_whitespace_opening_braces
|
|
{% set enumName %}{{param.enumName|default:"L10n"}}{% endset %}
|
|
{{accessModifier}} enum {{enumName}} {
|
|
{% if tables.count > 1 or param.forceFileNameEnum %}
|
|
{% for table in tables %}
|
|
{{accessModifier}} enum {{table.name|swiftIdentifier:"pretty"|escapeReservedKeywords}} {
|
|
{% filter indent:2 %}{% call recursiveBlock table.name table.levels %}{% endfilter %}
|
|
}
|
|
{% endfor %}
|
|
{% else %}
|
|
{% call recursiveBlock tables.first.name tables.first.levels %}
|
|
{% endif %}
|
|
}
|
|
// swiftlint:enable explicit_type_interface function_parameter_count identifier_name line_length
|
|
// swiftlint:enable nesting type_body_length type_name vertical_whitespace_opening_braces
|
|
|
|
// MARK: - Implementation Details
|
|
import Localize_Swift
|
|
extension {{enumName}} {
|
|
static func tr(_ table: String, _ key: String, _ args: CVarArg...) -> String {
|
|
let selectedLanguage = Localize.currentLanguage()
|
|
guard let path = Bundle.main.path(forResource: selectedLanguage, ofType: "lproj"),
|
|
let bundle = Bundle(path: path) else { return "Setup language error" }
|
|
return NSLocalizedString(key, tableName: table, bundle: bundle, comment: "")
|
|
}
|
|
}
|
|
|
|
{% endif %}
|
|
// swiftlint: enable all
|