- What exactly you did to get this listing?
I really used Copilot. Recent versions of Edge should have a button in the top right corner to open it.
I didn't explicitly ask for the Slovenian translation. Instead I entered something like "What are localized messages of the PAUSE command in cmd.exe?" (maybe not exactly that, I don't remember). Copilot came around with the first 5 or 6 languages. Then I entered "Are there more languages?" and got a few more. Then Copilot proposed a question like "Are there messages in less common languages?" After that I got those translations in Nahuatl and Cherokee. But still no Slovenian ¯\_(ツ)_/¯
I actually entered the question in English for two reasons
- I get English answers.
- I almost always use English, also for search terms in Google. It's more likely that specific informations exist in English (rather than German in my case) and documentations like for programming or computer-related things are also commonly in English (at least in their original edition).
- Why Slovenian don't appear in the list?
That's a real good question. I'm afraid I don't have any good answer for you.
However, Saso could do some local investigation. A few years ago I wrote a quick'n'dirty getmessagetable tool and published it here for purposes like that
viewtopic.php?t=9936
Run ...
Code: Select all
getmessagetable "%comspec%" "dump.txt"
... and you should always find the en-US messages of cmd.exe, along with their localized translations from the analyzed MUI files.
If I'm doing that and search for "Press any key" (really the English message) in the dump file, this is found:
Code: Select all
#M 0x0000232B #L 0x0409 :
Press any key to continue . . . %0
By searching for message ID "0x0000232B" to get other entries with this ID in the dump file, I also find:
Code: Select all
#M 0x0000232B #L 0x0407 :
Drücken Sie eine beliebige Taste . . . %0
This time with the German LCID 0x0407 though. (No other languages are installed on my notebook.)
Note: Don't rely on the ID being 0x0000232B for the PAUSE message as this may differ depending on the installed Windows version.
So, this might be a way to figure out what's going wrong.
1) If the message ID is not found for the local language
- maybe the MUI file is missing and no localization is in place for any of the internal commands of cmd.exe
- there might be a translation but with a wrong message ID, where the the fallback language is en-US
2) If the message ID is found for the Slovenian translation (LCID for sl-SI is 0x0424 as to my knowledge) but the message is in English, then Microsoft may have forgotten to translate it.
Steffen