Picroft: italian language

Ciao Francesco,
I used the suggestion from gez-mycroft, check the files located here:

  1. mycroft-core/mycroft/configuration/mycroft.conf (Defaults)
  2. https://home.mycroft.ai (Remote)
  3. /etc/mycroft/mycroft.conf (Machine)
  4. ~/.mycroft/mycroft.conf (User)

and setup this config:

{
   "lang": "it-it",
   "max_allowed_core_version": 18.8,
   "play_wav_cmdline": "aplay -Dhw:0,0 %1",
   "play_mp3_cmdline": "mpg123 -a hw:0,0 %1",
   "enclosure": {
      "platform": "picroft"
   },
   "stt": {
      "module": "mycroft",    
      "mycroft": {            
         "lang": "it-it"          
      }
   },
   "tts": {
      "mimic": {
         "lang": "it"
      }
   },
   "ipc_path": "/ramdisk/mycroft/ipc/"

}

otherwise try this other config:

{
  "lang": "it-it",
  "max_allowed_core_version": 18.8,
  "stt": {
    "module": "mycroft",
    "mycroft": {
      "lang": "it-it"
    }
  },
  "tts": {
    "module": "google",
    "google": {
      "lang": "it"
    }
  }
}

the important think is to understand which of the first 4 listed files is used as default config by your installation.

let me know.