mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
dea567ca7a
* update.sh: A little script that lets people update the .pot file without makefiles etc.
9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/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 )
|