[needs gcs linkage] CMD French Translation Error (#17600) #22864

Open
opened 2026-01-31 08:25:37 +00:00 by claunia · 0 comments
Owner

Originally created by @AntoinePerrin25 on GitHub (Feb 7, 2025).

Originally assigned to: @lhecker on GitHub.

Description of the new feature

In a cmd, when executing 'for /?'
There is a wrong translation resulting in the example command not working

[...] Ainsi l’exemple suivant :

  FOR /F "usebackq delims==" %i IN (`ensemble`) DO @echo %i

énumérerait les noms de variables d’environnement de l’environnement
en cours. [...]

The command need to be modified to :

  FOR /F "usebackq delims==" %i IN (`set`) DO @echo %i

as 'set' was translated as a word when it shouldn't have, because it is a command
This is the only occurence there is in this helper's documentation but it could appear in others

Proposed technical implementation details

No response

Originally created by @AntoinePerrin25 on GitHub (Feb 7, 2025). Originally assigned to: @lhecker on GitHub. ### Description of the new feature In a cmd, when executing 'for /?' There is a wrong translation resulting in the example command not working [...] Ainsi l’exemple suivant : FOR /F "usebackq delims==" %i IN (`ensemble`) DO @echo %i énumérerait les noms de variables d’environnement de l’environnement en cours. [...] The command need to be modified to : FOR /F "usebackq delims==" %i IN (`set`) DO @echo %i as 'set' was translated as a word when it shouldn't have, because it is a command This is the only occurence there is in this helper's documentation but it could appear in others ### Proposed technical implementation details _No response_
claunia added the Issue-BugProduct-Cmd.exeTracking-ExternalArea-Localization labels 2026-01-31 08:25:38 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#22864