mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* extracting i18n functionality to i18n core library * Removing utils.T * Adding documentation and changing one function name for better explanation * Changing other missing utils.T * Adding license string * Renaming corelibs to pkg * Renaming corelibs to pkg (moving directory) * Renaming from pkg to shared * Fixing bodyPage.Html casing * Fixing merges * Fixing merge problem * Fixing tests
30 lines
836 B
Go
30 lines
836 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/mattermost/mattermost-server/v5/shared/i18n"
|
|
"github.com/mattermost/mattermost-server/v5/utils/fileutils"
|
|
)
|
|
|
|
// this functions loads translations from filesystem if they are not
|
|
// loaded already and assigns english while loading server config
|
|
func TranslationsPreInit() error {
|
|
translationsDir := "i18n"
|
|
if mattermostPath := os.Getenv("MM_SERVER_PATH"); mattermostPath != "" {
|
|
translationsDir = filepath.Join(mattermostPath, "i18n")
|
|
}
|
|
|
|
i18nDirectory, found := fileutils.FindDirRelBinary(translationsDir)
|
|
if !found {
|
|
return fmt.Errorf("unable to find i18n directory at %q", translationsDir)
|
|
}
|
|
|
|
return i18n.TranslationsPreInit(i18nDirectory)
|
|
}
|