Roland Baudin - 2026-07-10

Hi and sorry for the late replay.

Here follows the reason of the error. The english string that contains the '%' is:

" * Zoom image to 100% - Ctrl-I\n"

Since the msgid string to translate has the 'c-format' attribute, the '% - C' part of the string is interpreted as a printf format and you must keep the same format in your translated string.

So your translated string must look like:

" xxxxxxxxxxxxxx100% - Ctrl-I\n"

where xxxxxxxxxx are some characters (including spaces) in any number but without any other ' %'. The number of spaces between '%' and '-C' doesn't matter.