-
Hi, Is it able to change the Round Name from Round 1, Round 2 to Quarter Finals, Semi Finals. Somemore, for the case BYE, is it able to change the BYE copywriting to 'No opponent'? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 11 replies
-
No it wasn't possible to do so yet, because I'm relying on I just added a new config property for this, named brackets-viewer.js/demo/with-api.html Lines 46 to 52 in ed31fc4 For Quarter Finals, then the condition will be And the result is:
Yes, you can change it by overriding a single key of Example: window.bracketsViewer.addLocale('en', {
"common": {
"bye": "No opponent",
}
}); |
Beta Was this translation helpful? Give feedback.
-
Thanks for your answer, how about disable the match hover effect ya? |
Beta Was this translation helpful? Give feedback.
-
Hi, now facing another issue, hope you could help🙏 For double elimination, if the participant number is not 2^n, Lower bound if the match have no opponent, the other participant for the match wont proceed to next game like upper bound |
Beta Was this translation helpful? Give feedback.
No it wasn't possible to do so yet, because I'm relying on
i18next
, which doesn't support what I wanted.I just added a new config property for this, named
customRoundName
.You can use it like this (🚧 edit:
info.group
was renamed toinfo.groupType
):brackets-viewer.js/demo/with-api.html
Lines 46 to 52 in ed31fc4