i18n compilation fixed

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@208 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2000-12-07 11:29:32 +00:00
parent c7d8f6fd60
commit 93d5c67e76
3 changed files with 12 additions and 4 deletions

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
linkchecker (1.2.10) unstable; urgency=low
* i18n gettext data compilation fixed
-- Bastian Kleineidam <calvin@users.sourceforge.net> Thu, 7 Dec 2000 12:24:38 +0100
linkchecker (1.2.9) unstable; urgency=low
* changed specification and better documentation of intern/extern

View file

@ -1,7 +1,8 @@
# we use the scripts in Tools/i18n of the Python 2.0 distribution
I18NTOOLS=.
GETTEXT=python $(I18NTOOLS)/pygettext.py
MSGFMT=python $(I18NTOOLS)/msgfmt.py
#MSGFMT=python $(I18NTOOLS)/msgfmt.py
MSGFMT=msgfmt
MSGMERGE=msgmerge
SOURCES=\
../linkcheck/Config.py \
@ -36,7 +37,8 @@ all:
touch .time.pot
%.mo: %.po
$(MSGFMT) $< && mv $@ ../locale/$*/LC_MESSAGES/$(PACKAGE).mo
$(MSGFMT) $< -o $@ && mkdir -p ../locale/$*/LC_MESSAGES && mv $@ ../locale/$*/LC_MESSAGES/$(PACKAGE).mo
clean:
rm -f .time.pot
rm -rf ../locale

View file

@ -215,7 +215,7 @@ myname = "Bastian Kleineidam"
myemail = "calvin@users.sourceforge.net"
setup (name = "LinkChecker",
version = "1.2.9",
version = "1.2.10",
description = "check HTML documents for broken links",
author = myname,
author_email = myemail,