in internal/platform/product/product_info.go [180:215]
func GetProductNameFromCode(code string) string {
switch code {
case QDJVMC:
return "Qodana Community for JVM"
case QDPYC:
return "Qodana Community for Python"
case QDANDC:
return "Qodana Community for Android"
case QDAND:
return "Qodana for Android"
case QDJVM:
return "Qodana for JVM"
case QDPHP:
return "Qodana for PHP"
case QDJS:
return "Qodana for JS"
case QDNET:
return "Qodana for .NET"
case QDNETC:
return "Qodana Community for .NET"
case QDCLC:
return "Qodana for C/C++"
case QDPY:
return "Qodana for Python"
case QDGO:
return "Qodana for Go"
case QDRST:
return "Qodana for Rust"
case QDRUBY:
return "Qodana for Ruby"
case QDCPP:
return "Qodana for C/C++"
default:
return "Qodana"
}
}