Hi Fajas ,
Thanks for reaching out to us and sorry for the late reply! We were on a break last week.
It seems like the cause of this issue is a conflict between TranslatePress and our setting, "Make all labels have same width".
We make the width of our labels have the same width using a JavaScript function. I'm guessing that what's happening here is that TranslatePress is changing the label while our function is calculating the width so it ends up with the incorrect width. 🤔
You can perhaps add this custom CSS to your site:
.buttonizer-group {
width: 230px;
}
.buttonizer-button {
width: 100% !important;
}
This should make your buttons have the same width. We will perhaps improve our setting so that it can be compatible with TranslatePress in the future. 😃
Please let me know if this works for you!