1
1

2000-01-04 Kjartan Maraas <kmaraas@online.no>

* update.sh: A little script that lets people
	update the .pot file without makefiles etc.
Этот коммит содержится в:
Kjartan Maraas 2000-01-03 23:42:28 +00:00
родитель 6028fd42da
Коммит dea567ca7a
2 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2000-01-04 Kjartan Maraas <kmaraas@online.no>
* update.sh: A little script that lets people
update the .pot file without makefiles etc.
2000-01-03 Fatih Demir <kabalak@gmx.net>
* tr.po: Added a first-translation try ...

8
po/update.sh Исполняемый файл
Просмотреть файл

@ -0,0 +1,8 @@
#!/bin/sh
xgettext --default-domain=mc --directory=.. \
--add-comments --keyword=_ --keyword=N_ \
--files-from=./POTFILES.in \
&& test ! -f mc.po \
|| ( rm -f ./mc.pot \
&& mv mc.po ./mc.pot )