8c37bc7837
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>
13 lines
422 B
TypeScript
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[]
|
|
}
|