mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-12 08:33:10 +00:00
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:
parent
c7d8f6fd60
commit
93d5c67e76
3 changed files with 12 additions and 4 deletions
6
debian/changelog
vendored
6
debian/changelog
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue