HomeGenie Forum
Automation Program Plugins and Wizard Scripting => Help => Topic started by: KaZe on March 19, 2015, 11:51:56 AM
-
I try Program.Say with other language, but say the the words wrong.
For example:
Program.Say("élesitve", "hu-HU");
Instead of the "é", "©" say. ©lesitve (© = "copyright"; translated into Hungarian: "szerzői jog") and she said this: "szerzői joglesitve" :)
The speech feature works in another language or only in English?
-
Please try:
Program.Say(Uri.EscapeDataString("élesitve"), "hu-HU");
if this is working, file a issue to github, so I will fix it asap.
Cheers,
g.
-
Unfortunately does not work. Says the same now.
-
Ok... found the solution and already fixed in hg source code.
As a momentary work-around you can try:
Program.Say("élesitve&ie=UTF-8", "hu-HU");
Cheers,
g.
-
It's works!
Thanks!