README
-------

This prototype basically attempts to get those strings out of the Eden code which are required for translation. However, since this is an initial version of the prototype, several cases are not handled and only the very basic ones are addressed. 
To run the prototype, place the "get_strings.py" in the Eden application folder. Execute the script. The output will be produced as "allstrings.txt" in the same folder. Below are some points regarding the functionality :-

1) Each and every file in the Eden directory (including hidden files and error files) are taken into consideration. This is unnecessary and can be modified at later stages.

2) The strings inside T(...) are matched as of now. But the case  where some T(...) appears inside another T(...) is not yet handled. 

5)Commented lines have also been considered in this prototype. To remove the commented lines, some more analysis is required through which the prototype can be improved.

4)As of now, the matching is done purely on the basis of regular expressions. We would require further techniques to facilitate translations of %s substitutions.

5) All the matched strings are stored with their file path and line number "in allstrings.txt". Each record in this file is of the form <file path>#<line number> <string>
