Add validation tests to translations files

This commit is contained in:
Deluan 2020-05-04 19:54:10 -04:00
parent 8f66e87099
commit 8d99c3ab92
3 changed files with 63 additions and 10 deletions

View file

@ -27,6 +27,8 @@ const (
RequestThrottleBacklogLimit = 100
RequestThrottleBacklogTimeout = time.Minute
I18nFolder = "i18n"
)
// Cache options
@ -62,5 +64,4 @@ var (
VariousArtists = "Various Artists"
VariousArtistsID = fmt.Sprintf("%x", md5.Sum([]byte(strings.ToLower(VariousArtists))))
UnknownArtist = "[Unknown Artist]"
UnknownArtistID = fmt.Sprintf("%x", md5.Sum([]byte(strings.ToLower(UnknownArtist))))
)