All pastes #2058559 Raw Edit

ctrans run (scripting language)

public text v1 · immutable
#2058559 ·published 2011-05-13 20:36 UTC
rendered paste body
<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> $