add ability to configure language in config file

This commit is contained in:
Drew Weymouth
2024-12-17 18:07:28 -08:00
parent 507d6332c1
commit dd3f5874c4
3 changed files with 45 additions and 3 deletions
+4 -2
View File
@@ -48,7 +48,8 @@ type AppConfig struct {
ShowTrackChangeNotification bool
EnableLrcLib bool
SkipSSLVerify bool
EnqueueBatchSize int
EnqueueBatchSize int
Language string
// Experimental - may be removed in future
FontNormalTTF string
@@ -174,7 +175,8 @@ func DefaultConfig(appVersionTag string) *Config {
ShowTrackChangeNotification: false,
EnableLrcLib: true,
SkipSSLVerify: false,
EnqueueBatchSize: 100,
EnqueueBatchSize: 100,
Language: "auto",
},
AlbumPage: AlbumPageConfig{
TracklistColumns: []string{"Artist", "Time", "Plays", "Favorite", "Rating"},