github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/cf/formatters/bools.go (about)

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