We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96b2d69 commit d234148Copy full SHA for d234148
modules/filespec.groovy
@@ -28,7 +28,7 @@
28
}
29
{
30
def textLangCount = any { textLanguages.size() } { 0 }
31
- def substat = textLangCount > 2 ? ", MULTi" : textLangCount > 1 ? ", DUAL" : textLangCount = 1 ? ", SUB" : null
+ def substat = textLangCount > 2 ? ", MULTi" : textLangCount > 1 ? ", DUAL" : textLangCount == 1 ? ", SUB" : null
32
def langs_ = textLangCount > 5 ? textLanguages.take(5) : textLanguages
33
substat ? substat + langs_.joining(" ", " (", "").upper() + (textLangCount > 6 ? " ...)" : ")") : ""
34
0 commit comments