The config files in this directory contain error-message values
for different languages. The Google Translate API is used
to generate the error message strings.

  > sudo pip install googletrans

Each configuration file contains the errmsg parameters for one
language.  The language codes are defined by ISO-639-1
The codes allowed by Google translate are listed here:

   https://cloud.google.com/translate/docs/languages

The file naming convention is errmsg-<lang>.conf

To create a new language-specific error-message file:

1) generate err.txt

  > yangdump-pro --lang-errors > err.txt

At this point the err.txt file contains all the default
English errmsg strings. This file can be edited to change
the default strings, if desired.

2) run errmsg-tr.py (from netconf/util dir)

  > python errmsg-tr.py err.txt <lang>

Example: Russian

  > python errmsg-tr.py err.txt ru
  (Will create file errmsg-ru.conf)

Example: French

  > python errmsg-tr.py err.txt fr
  (Will create file errmsg-fr.conf)
