Hi:
I develop a smart home skill, and skill-id is: amzn1.ask.skill.2364d6e7-36b0-43cd-b749-e30035ab40c0 , i set the mode like this, all the other language except for fr-CA and fr-FR work just fine. And I check the discovery json is include fr-CA and fr-FR . Here tony is my device's nickname. I use google translate the mode value text, i suppose not the translation's problem, because other language like: en-US en-GB es-ES de-DE it-IT pt-BR work just fine on the same mode, what can i do?
{ "value": "cleaner.mode.FindMe", "modeResources": { "friendlyNames": [ { "@type": "text", "value": { "text": "where are you", #ok: "locale": "en-US", }, }, { "@type": "text", "value": { "text": "locate robot", #ok: "locale": "en-GB", }, }, { "@type": "text", "value": { "text": "localizar robot", #ok: "locale": "es-ES", }, }, { "@type": "text", "value": { "text": "Roboter lokalisieren", #ok: locaterobot"locale": "de-DE", }, }, { "@type": "text", "value": { "text": "Robot de positionnement", #locaterobot"locale": "fr-FR", }, }, { "@type": "text", "value": { "text": "Robot de positionnement", #locaterobot"locale": "fr-CA", }, }, { "@type": "text", "value": { "text": "localizzare robot", #ok: locaterobot"locale": "it-IT", }, }, { "@type": "text", "value": { "text": "zlokalizuj robota", #ok: locaterobot"locale": "pt-BR", }, }, ] }, },