github.com/rakutentech/cli@v6.12.5-0.20151006231303-24468b65536e+incompatible/cf/formatters/bools.go (about)

     1  package formatters
     2  
     3  import (
     4  	. "github.com/cloudfoundry/cli/cf/i18n"
     5  )
     6  
     7  func Allowed(allowed bool) string {
     8  	if allowed {
     9  		return T("allowed")
    10  	} else {
    11  		return T("disallowed")
    12  	}
    13  }