translational software
-
My friends and I wanted to develope a software that helps us write in our own language,'Amharic-just a language:)' like in composing email, in searching for a text ... That means if I want to search an 'amharic text', I entered a key word in 'amharic alphabets'. However our problem is the starting point. Ofcourse as a computer science and engineer student we know some programming language, but still we needed some hint to start with. Please help us ... this a great help for us. Many Thanks!!
love U much...
-
My friends and I wanted to develope a software that helps us write in our own language,'Amharic-just a language:)' like in composing email, in searching for a text ... That means if I want to search an 'amharic text', I entered a key word in 'amharic alphabets'. However our problem is the starting point. Ofcourse as a computer science and engineer student we know some programming language, but still we needed some hint to start with. Please help us ... this a great help for us. Many Thanks!!
love U much...
Just as in basic forms of encryption, your whole system will have to be based on methods of converting text/characters/words between your language and intelligible expressions.
-
Just as in basic forms of encryption, your whole system will have to be based on methods of converting text/characters/words between your language and intelligible expressions.
-
I appreciate for the reply, but what do you mean by intelligible expressions? And if you could mension us some topics to read that would be great;especially, to start with. thanks
love U much...
:cool: OK. "Intelligible" expressions are human readable form. Now, if on the other hand your "language" is simply one you and those initiated into your cult understand as is, then you simply store the data in that form. Google "encryption" and you will trip over all the information you need -- for whatever programming language you want to deploy. Note that Visual Studio and .Net provide substantial encryption libraries, which you can use as is. Again, just search for "encryption" in your local help, and you can't help but trip on the information you want. :laugh:
-
I appreciate for the reply, but what do you mean by intelligible expressions? And if you could mension us some topics to read that would be great;especially, to start with. thanks
love U much...
In re-reading your original question, one other issue may exist -- input. If you cannot type your language with a conventional keyboard, then your interface of your application will have to map keystrokes to the characters of your language. To simply the whole system (as for a project), you might build a simple text editor or memo field editor. The input algorithm could translate characters. If on the other hand, your language involves words of different lengths (when translated back and forth to and from the human intelligible language), then you will have to build a dictionary which looks up the word of one language and converts it to the other. This content can be pasted or programmatically transferred to targeted media, and re-converted on the other end. If you have a language which the human understands however, you hav no computer project at all, except perhaps in the case of searching, where your dictionary is going to have to translate from the new language to forms which are friendly to the search engine.