Server/project/src/models/spt/config/ILocaleConfig.ts
CZPZ 8c37bc7837 Lint: ts files (!82)
Co-authored-by: alimoncul <alimoncul@gmail.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/82
Co-authored-by: CZPZ <czpz@noreply.dev.sp-tarkov.com>
Co-committed-by: CZPZ <czpz@noreply.dev.sp-tarkov.com>
2023-03-22 14:31:05 +00:00

13 lines
422 B
TypeScript

import { IBaseConfig } from "./IBaseConfig";
export interface ILocaleConfig extends IBaseConfig
{
kind: "aki-locale"
/** e.g. ru/en/cn/fr etc, or 'system', will take computer locale setting */
gameLocale: string
/** e.g. ru/en/cn/fr etc, or 'system', will take computer locale setting */
serverLocale: string
/** Languages server can be translated into */
serverSupportedLocales: string[]
}