Wonach suchst Du?
What are you looking for?

How to change the language of the metasfresh user

  1. Log in to the system where you want to change the language of your current user session.
  2. Open swagger via

    https://<yourserver:port>/app/swagger-ui/index.html#/user-session-rest-controller/setLanguageUsingPUT
    
  3. Click “Try it out”.
  4. Enter this code:

    For English
    {
         "key": "en_US",
         "caption": "null"
    }
    
    For German
    {
         "key": "de_DE",
         "caption": "null"
    }
    
    For Swiss German
    {
         "key": "de_CH",
         "caption": "null"
    }
    
  5. Click “Execute”.

Example


View source file on GitHub.com