Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Load translations from folder

Cette révision appartient à :
ElegantMonkey 2017-05-09 14:46:16 -03:00
Parent c5e226c7a6
révision 960ef9babf

Voir le fichier

@ -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) {