I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit b18f654e authored by kytv's avatar kytv
Browse files

look for ^# so there aren't surprises later (thanks for pointing it out, darrob!)

parent a70d9394
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ then ...@@ -38,7 +38,7 @@ then
mkdir -p build mkdir -p build
echo '// Automatically generated pseudo-java for xgettext - do not edit' > $JFILE echo '// Automatically generated pseudo-java for xgettext - do not edit' > $JFILE
echo '// Translators may wish to translate a few of these, do not bother to translate all of them!!' >> $JFILE echo '// Translators may wish to translate a few of these, do not bother to translate all of them!!' >> $JFILE
sed -e '/#/d' -e 's/..,\(..*\)/_("\1");/' $CFILE >> $JFILE sed -e '/^#/d' -e 's/..,\(..*\)/_("\1");/' $CFILE >> $JFILE
fi fi
# list specific files in core/ and router/ here, so we don't scan the whole tree # list specific files in core/ and router/ here, so we don't scan the whole tree
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment