0
Is there a quick way to see how many (count) target languages are in a project from views?
Hi,
Is there a quick way to see how many (count) target languages are in a project from views?
I'm really unable to get any useful information from the current "Language" combination column in views without spending some time copying the list out and manipulating it:
Thanks,
Will
Customer support service by UserEcho
The best thing you could do is to create a Virtual Column.
This is my trick for getting a count of all language pairs in a Virtual Column:
#foreach ($lang in ${utils.unwrap($this).getLanguageCombinationsShortDisplay().split(",")})
#set ($langcount = $foreach.count)
#end
$langcount
But there may be a better way.
If this works, you could also change it to this.
I haven't tried it, but should work:
Thanks guys!