Represents the definition of a translation file.
interface Section {
name: string;
alias?: string;
path?: string;
format?: string;
type?: LoaderType;
}
The name of the translation file without the file extension.
An optional value used to refer to the translation items in the application instead of the name.
The path of the translation file when the default translationPath or the group path are not applicable.
The format of the translation file when it is different from the default value and the group format.
The type of the loader to download the translation file when it is different from the default value and the group format.