0

I am following this basic tutorial for C# console app internationalization. I am at the final step for displaying translated text which requires to input this command in mono console:

LANGUAGE=es mono i18n.exe But the LANGUAGE command isn't recognized. Am I missing something, or is this command not intended for windows? Because it's funny, that the tutorial is for C#, but command lines there are for unix system. There are some other small mistakes as well.

Jānis
  • 1,773
  • 1
  • 21
  • 30

1 Answers1

2

But the LANGUAGE command isn't recognized

LANGUAGE=es mono i18n.exe

LANGUAGE in that context is an environment variable. In *nix shell environments that is a way to pass env. vars to a cmd without setting/exporting them first.

Under Windows that cmd would be:

SET LANGUAGE=es 
mono i18n.exe
SET LANGUAGE=
SushiHangover
  • 73,120
  • 10
  • 106
  • 165