1
0
forked from 0ad/0ad

[gui] replace hyphen-minus with em-dash in credits

Patch by: Nescio
Differential Revision: https://code.wildfiregames.com/D2820
This was SVN commit r23870.
This commit is contained in:
Imarok 2020-07-22 16:24:29 +00:00
parent 8dca7f221c
commit d5fbba314a

View File

@ -78,7 +78,7 @@ function parseHelper(list)
{
let credit;
if (element.nick && element.name)
credit = sprintf(translate("%(nick)s - %(name)s"), { "nick": element.nick, "name": element.name });
credit = sprintf(translate("%(nick)s %(name)s"), { "nick": element.nick, "name": element.name });
else if (element.nick)
credit = element.nick;
else if (element.name)