Re: Extracting string literals from codebase

2012-04-16 Thread Mark Fredrickson
Thanks for the suggestion. This ended up being just what I was looking for. I wrote a version that used this, then went to try the analyze library recently announced (in hopes of getting line numbers). The analyze library depends on a beta release of Clojure 1.4, and I decided just to stick with

Re: Extracting string literals from codebase

2012-04-11 Thread Armando Blancas
Maybe walking the result of (read-string (str "(" (slurp "somefile.clj") ")")) On Wednesday, April 11, 2012 9:20:31 AM UTC-7, Mark Fredrickson wrote: > > Hello, > > I have a web survey/survey experiment written in Clojure. The survey is > currently in English and needs to be translated into Fren

Extracting string literals from codebase

2012-04-11 Thread Mark Fredrickson
Hello, I have a web survey/survey experiment written in Clojure. The survey is currently in English and needs to be translated into French as well. Since the program has a relatively short life span (only a few weeks) and to make life easiest for my translator, I figured my best solution would