You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Path to the directory with translations where l10n_[language code]-[optional country code].json files are stored.
output_localization_file
The path where the file will be generated, you must first create a directory where the file will be saved.
template
Default translation where the translation status will always be 100%, no need to specify the full path to the file, just the name.
class_name
The name of the class whose name will be assigned to the main class.
programming_language
Programming language for which the code will be generated. In programming languages where a package name is required, such as Java, Kotlin, etc. It can be specified in the value for programming_language. For example Java.dev.example, then the package name will be dev.example, the default package name is l10n.
The file contains translations in json format. Define translation and its optional parameters (keys whose value starts with #, e.g. #bye).
{
"key": "Translate",
"#key": {}
}
Values such as, for example, description optional, example optional can be added internally. The variables to be inserted into the text are defined here in variables is optional if no variables are required to be inserted into the text.
The names of the variables should be different within the same translation. In variables, you must set the variable type, defaultValue optional (the defaultValue type must match the specified variable type, otherwise an error will occur).