提交 dc3dd016 编写于 作者: A Anders F Björklund

Make it possible to translate (experimental)

上级 a2a1d855
......@@ -22,6 +22,7 @@ import (
"sort"
"github.com/golang/glog"
"k8s.io/minikube/pkg/minikube/translate"
)
const (
......@@ -74,7 +75,8 @@ type DriverState struct {
func (d DriverState) String() string {
if d.Priority == Experimental {
return fmt.Sprintf("%s (experimental)", d.Name)
experimental := translate.T("experimental")
return fmt.Sprintf("%s (%s)", d.Name, experimental)
}
return d.Name
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册