mirror of
https://github.com/tucnak/telebot
synced 2024-11-11 01:10:39 +00:00
layout: parse default locale from settings
This commit is contained in:
parent
3e050a95e5
commit
e9dd8a775f
@ -17,6 +17,7 @@ type (
|
|||||||
Updates int
|
Updates int
|
||||||
|
|
||||||
LocalesDir string `json:"locales_dir"`
|
LocalesDir string `json:"locales_dir"`
|
||||||
|
DefaultLocale string `json:"default_locale"`
|
||||||
TokenEnv string `json:"token_env"`
|
TokenEnv string `json:"token_env"`
|
||||||
ParseMode string `json:"parse_mode"`
|
ParseMode string `json:"parse_mode"`
|
||||||
|
|
||||||
@ -39,6 +40,8 @@ func (lt *Layout) UnmarshalYAML(data []byte) error {
|
|||||||
lt.Config = aux.Config
|
lt.Config = aux.Config
|
||||||
|
|
||||||
if pref := aux.Settings; pref != nil {
|
if pref := aux.Settings; pref != nil {
|
||||||
|
lt.DefaultLocale = pref.DefaultLocale
|
||||||
|
|
||||||
lt.pref = &tele.Settings{
|
lt.pref = &tele.Settings{
|
||||||
URL: pref.URL,
|
URL: pref.URL,
|
||||||
Token: pref.Token,
|
Token: pref.Token,
|
||||||
@ -46,9 +49,6 @@ func (lt *Layout) UnmarshalYAML(data []byte) error {
|
|||||||
ParseMode: pref.ParseMode,
|
ParseMode: pref.ParseMode,
|
||||||
}
|
}
|
||||||
|
|
||||||
if pref.LocalesDir == "" {
|
|
||||||
aux.Settings.LocalesDir = "locales"
|
|
||||||
}
|
|
||||||
if pref.TokenEnv != "" {
|
if pref.TokenEnv != "" {
|
||||||
lt.pref.Token = os.Getenv(pref.TokenEnv)
|
lt.pref.Token = os.Getenv(pref.TokenEnv)
|
||||||
}
|
}
|
||||||
@ -136,6 +136,9 @@ func (lt *Layout) UnmarshalYAML(data []byte) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if aux.Locales == nil {
|
if aux.Locales == nil {
|
||||||
|
if aux.Settings.LocalesDir == "" {
|
||||||
|
aux.Settings.LocalesDir = "locales"
|
||||||
|
}
|
||||||
return lt.parseLocales(aux.Settings.LocalesDir)
|
return lt.parseLocales(aux.Settings.LocalesDir)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user