Yes you're right. It doesn't depend on the language.
To fix this open up style.css and search for:
#top .comment-reply-link{
font-size: 11px;
text-decoration: none;
position: absolute;
display: block;
padding:0px 7px;
bottom: 0;
left:0;
line-height: 22px;
}
add a width attribute like:
#top .comment-reply-link{
font-size: 11px;
text-decoration: none;
position: absolute;
display: block;
padding:0px 7px;
bottom: 0;
left:0;
line-height: 22px;
width: 80px;
}
Adjust the value of width as you like (so that the word "Réponse" fits into the reply link box)