WIP: feat: translation support
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
See #483
This commit is contained in:
@ -6,6 +6,7 @@ import (
|
||||
|
||||
"coopcloud.tech/abra/pkg/config"
|
||||
"coopcloud.tech/abra/pkg/log"
|
||||
"coopcloud.tech/abra/pkg/i18n"
|
||||
)
|
||||
|
||||
// CreateServerDir creates a server directory under ~/.abra.
|
||||
@ -17,11 +18,11 @@ func CreateServerDir(serverName string) error {
|
||||
return err
|
||||
}
|
||||
|
||||
log.Debugf("%s already exists", serverPath)
|
||||
log.Debug(i18n.G("%s already exists", serverPath))
|
||||
return nil
|
||||
}
|
||||
|
||||
log.Debugf("successfully created %s", serverPath)
|
||||
log.Debug(i18n.G("successfully created %s", serverPath))
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user