I was running script translate_cas.py, and found the spaces between a value and the inline comment will be removed in the translated case files (English and French). The translated case files will not run - I believe the FORTRAN code is expecting at least one space between a value and the following comment.
E.g. the space between 0 and /NO FRICTION is removed in the translated case files
LAW OF BOTTOM FRICTION = 0 /NO FRICTION
I debugged the Python3 script and found lines 375 and 376 in telemac_cas.py may be updated from
fr_lines.append(frline + tail)
gb_lines.append(gbline + tail)
to
fr_lines.append(frline + ' ' + tail)
gb_lines.append(gbline + ' ' + tail)