未验证 提交 9002a70a 编写于 作者: S Sharif Elgamal 提交者: GitHub

Merge pull request #7668 from afbjorklund/translate-experimental

Make it possible to translate (experimental)
......@@ -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.
先完成此消息的编辑!
想要评论请 注册