ctrans run (scripting language)
public text v1 · immutable<monalisa: ~/code/ctrans> $ cat test.py
#!/usr/bin/python
# un ejemplo bastante artificial en español
## algun mas
foo() # och här i svenska
exit(0)
<monalisa: ~/code/ctrans> $ ./ctrans.py -s test.py
[+] translated test.py to test.py.en...
<monalisa: ~/code/ctrans> $ cat test.py.en
#!/usr/bin/python
# -*- coding: utf-8 -*-
# a rather artificial example in Spanish
# some more
foo() # and here in Swedish
exit(0)
<monalisa: ~/code/ctrans> $