I have a small Python project (a few hundred lines) in a Git repository. I started it myself, and wrote it in French. That is, all identifiers, comments, and text strings.
Now, in order for other, non-French speaking people, to be able to use it, I am thinking of translating the project in English. What would be a good strategy to do so ?
- Should I just create extra commit(s) at the tip of my main branch, and translate the whole thing?
- Or should I re-create the history and translate each commit separately? If so, what workflow would you recommend ?
For what it is worth, I have kept the history linear until now. Also, I'm pretty sure there are no clones of the repository other that the ones on my computer and on my Gitorious account. So, for that matter, I don't think it would be a problem to rewrite history.
All input is welcome: remarks, suggestions, questions. Thanks !