In our last meeting Robert mentioned it is desirable to be able to have some rough idea of the language of the SMS. This will be a milestone achievement I suppose.
Again it can be a bruteforce module. We will need to store a lot of words in our database
The model used will be the following:
class Word(models.Model):
language = models.CharField(max_length=20)
translation = models.CharField(max_length=30)
We will have another view which let the user to upload and define new dictionaries
In our last meeting Robert mentioned it is desirable to be able to have some rough idea of the language of the SMS. This will be a milestone achievement I suppose.
Again it can be a bruteforce module. We will need to store a lot of words in our database
The model used will be the following:
We will have another view which let the user to upload and define new dictionaries