Load translations from folder
Cette révision appartient à :
Parent
c5e226c7a6
révision
960ef9babf
1 fichiers modifiés avec 7 ajouts et 0 suppressions
7
main.go
7
main.go
|
@ -15,12 +15,19 @@ import (
|
|||
|
||||
"net/http"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"time"
|
||||
)
|
||||
|
||||
func initI18N() {
|
||||
/* Initialize the languages translation */
|
||||
i18n.MustLoadTranslationFile("translations/en-us.all.json")
|
||||
paths, err := filepath.Glob("translations/*.json")
|
||||
if err == nil {
|
||||
for _, path := range paths {
|
||||
i18n.LoadTranslationFile(path)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func RunServer(conf *config.Config) {
|
||||
|
|
Référencer dans un nouveau ticket