Extracting i18n functionality to i18n core library (#16914)
* 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
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
85293fcf41
Коммит
5dd2e75c10
@@ -16,7 +16,7 @@ import (
|
||||
|
||||
"github.com/mattermost/mattermost-server/v5/mlog"
|
||||
"github.com/mattermost/mattermost-server/v5/model"
|
||||
"github.com/mattermost/mattermost-server/v5/utils"
|
||||
"github.com/mattermost/mattermost-server/v5/shared/i18n"
|
||||
)
|
||||
|
||||
type PluginAPI struct {
|
||||
@@ -76,7 +76,7 @@ func (api *PluginAPI) ExecuteSlashCommand(commandArgs *model.CommandArgs) (*mode
|
||||
if appErr != nil {
|
||||
return nil, appErr
|
||||
}
|
||||
commandArgs.T = utils.GetUserTranslations(user.Locale)
|
||||
commandArgs.T = i18n.GetUserTranslations(user.Locale)
|
||||
commandArgs.SiteURL = api.app.GetSiteURL()
|
||||
response, appErr := api.app.ExecuteCommand(commandArgs)
|
||||
if appErr != nil {
|
||||
@@ -1007,7 +1007,7 @@ func (api *PluginAPI) ListBuiltInCommands() ([]*model.Command, error) {
|
||||
seen := make(map[string]bool)
|
||||
|
||||
for _, value := range commandProviders {
|
||||
if cmd := value.GetCommand(api.app, utils.T); cmd != nil {
|
||||
if cmd := value.GetCommand(api.app, i18n.T); cmd != nil {
|
||||
cpy := *cmd
|
||||
if cpy.AutoComplete && !seen[cpy.Trigger] {
|
||||
cpy.Sanitize()
|
||||
|
||||
Ссылка в новой задаче
Block a user