diff options
author | Kjartan Maraas <kmaraas@src.gnome.org> | 2000-05-04 05:04:54 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2000-05-04 05:04:54 +0800 |
commit | 932ea694649727e1f0e17b5bc79fae12eafbcecd (patch) | |
tree | 359b558e5a9e326839d951a7d0fb8e5ebdca2d2f | |
parent | 2667c09e08e3701747ed1878ab8969b1fdca311c (diff) | |
download | gsoc2013-evolution-932ea694649727e1f0e17b5bc79fae12eafbcecd.tar gsoc2013-evolution-932ea694649727e1f0e17b5bc79fae12eafbcecd.tar.gz gsoc2013-evolution-932ea694649727e1f0e17b5bc79fae12eafbcecd.tar.bz2 gsoc2013-evolution-932ea694649727e1f0e17b5bc79fae12eafbcecd.tar.lz gsoc2013-evolution-932ea694649727e1f0e17b5bc79fae12eafbcecd.tar.xz gsoc2013-evolution-932ea694649727e1f0e17b5bc79fae12eafbcecd.tar.zst gsoc2013-evolution-932ea694649727e1f0e17b5bc79fae12eafbcecd.zip |
Make it easier for us all
svn path=/trunk/; revision=2782
-rwxr-xr-x | po/update.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/po/update.sh b/po/update.sh new file mode 100755 index 0000000000..0f8d517b0d --- /dev/null +++ b/po/update.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +xgettext --default-domain=evolution --directory=.. \ + --add-comments --keyword=_ --keyword=N_ \ + --files-from=./POTFILES.in \ +&& test ! -f evolution.po \ + || ( rm -f ./evolution.pot \ + && mv evolution.po ./evolution.pot ) |