summaryrefslogtreecommitdiff
path: root/createpot.sh
blob: 8c73f76e68d5e52416a4134b2a1892ef41c4ae8a (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

# Create the .pot file
# Thanks to porthole for inspiration ;)

files=$(find -name "*.py")
xgettext -k_ -kN_ -L glade -o i18n/messages.pot  portato/gui/templates/portato.glade
xgettext -k_ -kN_ -j --from-code=UTF-8 -o i18n/messages.pot $files
8-03-06 22:33:20 +0100'>2008-03-06Update translationRené 'Necoro' Neumann2-349/+393 2008-03-06Update createpot.shRené 'Necoro' Neumann1-3/+2 2008-03-06Use 'nofork' instead of 'nolistener'René 'Necoro' Neumann1-3/+3 2008-03-05Install glade files into template dir and not data dirRené 'Necoro' Neumann2-2/+1 2008-03-05Added dependency listRené 'Necoro' Neumann3-117/+237