Translating AvsPCreating a translation to different language for AvsP for is very easy. Included with the AvsP download is a file called "__translation.py". The first couple of lines in the file look like this: # -*- coding: utf-8 -*- The file contains every translatable message in AvsP. To translate, simply add translated messages next to each message. For example, to translate the message "Find", modify the line to look like this: "Find" : u"Finden", (Now you know how to say "find" in German!) You can even type unicode directly into the file. Depending on the language and how you enter the text, you may need to change the coding in first line of the file. Once you've translated the messages, simply rename the file to "translation.py" and make sure it's in the same directory as AvsP.exe. The next time you run AvsP you should see all your translated messages! If you choose to translate AvsP to a new language, please post a message in the discussion on doom9's forum, and I will add the link to your translation on the download page. |
|