I'm new at using jFairy. I tried to produce 100 English words through the following code:
for(int i=0; i<100; i++)
{
System.out.println(Fairy.create(Locale.ENGLISH).text().word());
System.out.println("-----------------------");
}
and the outputs were like this( all of them were LATIN words):
vitae massa at
-----------------------
dolor lorem sed
-----------------------
posuere praesent at
-----------------------
nec metus dolor
-----------------------
aliquet purus magna
-----------------------
How do I get English words here instead of Latins?