diff options
| author | 2025-10-23 13:37:50 +0700 | |
|---|---|---|
| committer | 2025-10-23 13:37:50 +0700 | |
| commit | 4b2da2abbc7376ce0de71a00b18b7091b00dbcd1 (patch) | |
| tree | 89e0aa5c62230ae91460231f521b6d7c5a19c740 /locale/localization.go | |
| parent | bdd7f88f8bdb951babd18883ae20e6dbd9632202 (diff) | |
| download | web-4b2da2abbc7376ce0de71a00b18b7091b00dbcd1.tar.gz web-4b2da2abbc7376ce0de71a00b18b7091b00dbcd1.zip | |
feat: subscription settings
Diffstat (limited to 'locale/localization.go')
| -rw-r--r-- | locale/localization.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/locale/localization.go b/locale/localization.go index 9022b50..cd83aa1 100644 --- a/locale/localization.go +++ b/locale/localization.go @@ -86,6 +86,16 @@ type UserProfileConfig struct { VerificationSuccess string `yaml:"VerificationSuccess" json:"VerificationSuccess"` VerificationFailed string `yaml:"VerificationFailed" json:"VerificationFailed"` VerificationEmpty string `yaml:"VerificationEmpty" json:"VerificationEmpty"` + SubscriptionHeader string `yaml:"SubscriptionHeader" json:"SubscriptionHeader"` + TagsNone string `yaml:"TagsNone" json:"TagsNone"` + TagsAll string `yaml:"TagsAll" json:"TagsAll"` + TagsSpecific string `yaml:"TagsSpecific" json:"TagsSpecific"` + TagDoesNotExist string `yaml:"TagDoesNotExist" json:"TagDoesNotExist"` + TagAlreadyAdded string `yaml:"TagAlreadyAdded" json:"TagAlreadyAdded"` + SaveButton string `yaml:"SaveButton" json:"SaveButton"` + SubscribeInvalidType string `yaml:"SubscribeInvalidType" json:"SubscribeInvalidType"` + FailedToSubscribe string `yaml:"FailedToSubscribe" json:"FailedToSubscribe"` + SubscribedSuccessfully string `yaml:"SubscribedSuccessfully" json:"SubscribedSuccessfully"` } func LoadConfig(path string, config *LocaleConfig) error { |