missing localisation in StandardApplicationCommandIDs::quit

There is a reason why no TRANS is surrounding the application command modifier here ? I’m trying to localise my application in italian but i’m getting a mixed output:

void JUCEApplication::getCommandInfo (const CommandID commandID, ApplicationCommandInfo& result)
{
    if (commandID == StandardApplicationCommandIDs::quit)
    {
        result.setInfo ("Quit",
                        "Quits the application",
                        "Application",
                        0);

        result.defaultKeypresses.add (KeyPress (T('q'), ModifierKeys::commandModifier, 0));
    }
}

?

No, there’s no reason - sorry! I’ll tidy that up!

thanx !