Introducing nested replies

This is amazing, thanks team Discourse!!
I’m wondering if this could be combined with / replace the Post Voting Plugin.
Edit: Also, is “Top” sorted by likes, or how does this work?

2 Likes

One of the options we explored for nesting like this was enhancing the Post Voting plugin, but we decided not to go that route. This is much easier to maintain, the experience is better. I think absolutely it could replace Post Voting one day – or already does in some cases.

6 Likes

I know this isn’t the best solution, but you can still use CSS.

You only need to add a rule for each language, using the correct selector:

/* Instead of using this selector ... */
nav.post-controls .actions button.reply pan.d-button-label:after {
}

/* ... start the selector with the language */
html[lang=pt-BR] nav.post-controls .actions button.reply pan.d-button-label:after {
  content: " text in Portuguese";
}

i alread posted a better solution: Discourse Reply Button Labels and it includes portuguese and other translations

1 Like