Lia
New Member
Posts: 2
|
Post by Lia on Jan 2, 2012 16:06:04 GMT -8
Is the greek language supported from the aiml plugin? I tried with a greek .aiml file but the text is not recognized by the bot-avatar.
|
|
|
Post by shyrana on Feb 26, 2012 10:53:38 GMT -8
Not sure it helps, but take a look into the aiml_config\Settings.xml file and try the following.
Lookup the following line: <item name="stripperregex" value="[^0-9a-zA-Z]" />
... and change it to: <item name="stripperregex" value="[^\p{L}0-9]" />
This regex rule strips any non-alphanumeric character. The new regex rule does basically the same but extends the character set from ASCII to UNICODE. I used this for German Umlauts and it worked. However, for Greek it might not work, as it is not a Latin character set. I'm not experienced with this.
Make sure to restart Radegast or to reload the plugin at least.
|
|
Lia
New Member
Posts: 2
|
Post by Lia on Dec 11, 2012 10:41:50 GMT -8
Shyrana thank you so much for your help and excuse my late reply!
|
|