.po updates

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@309 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2001-11-17 13:02:22 +00:00
parent 8d21458d62
commit 1444190f3f
6 changed files with 29 additions and 42 deletions

3
debian/changelog vendored
View file

@ -3,8 +3,9 @@ linkchecker (1.3.9) unstable; urgency=low
* new config option --interactive for interactive URL input
* on Windows, install a .bat file on the Desktop (with interactive
input)
* updated german .po file
-- Bastian Kleineidam <calvin@debian.org> Fri, 16 Nov 2001 17:52:42 +0100
-- Bastian Kleineidam <calvin@debian.org> Sat, 17 Nov 2001 14:02:46 +0100
linkchecker (1.3.8) unstable; urgency=low

View file

@ -463,6 +463,9 @@ class Configuration(UserDict.UserDict):
try:
self["nntpserver"] = cfgparser.get(section, "nntpserver")
except ConfigParser.Error: pass
try:
self["interactive"] = cfgparser.getboolean(section, "interactive")
except ConfigParser.Error: pass
section = "authentication"
try:

View file

@ -285,7 +285,7 @@ for opt,arg in options:
if os.name!='nt':
timeoutsocket.setDefaultSocketTimeout(int(arg))
else:
print >> sys.stderr, _("warning: timeoutsocket not support on this platform")
print >> sys.stderr, _("warning: timeoutsocket is not support on this system")
elif opt=="-u" or opt=="--user":
_user = arg
@ -338,3 +338,5 @@ for url in args:
# check the urls
linkcheck.checkUrls(config)
if config['interactive']:
raw_input(_("Hit RETURN to finish"))

View file

@ -108,6 +108,8 @@ strict=0
warningregex=
# Basic NNTP server. Overrides NNTP_SERVER environment variable.
nntpserver=
# interactive operation
interactive=0
# filtering options (see FAQ)
# for each extern link we can specify if it is strict or not

View file

@ -7,10 +7,10 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2000-07-10 23:52+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Last-Translator: Bastian Kleineidam <calvin@users.sourceforge.net>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Type: text/plain; charset=iso8859-1\n"
"Content-Transfer-Encoding: ENCODING\n"
msgid "Illegal telnet link syntax"
@ -48,7 +48,7 @@ msgid "Illegal argument '%s' for option "
msgstr "Ungültiges Argument '%s' für Option "
msgid "Verified adress: %s"
msgstr ""
msgstr "Gültige Adresse: %s"
#, fuzzy
msgid ""
@ -71,7 +71,7 @@ msgstr ""
" linkchecker -r0 ftp.linux.org\n"
msgid "too much redirections (>= 5)"
msgstr ""
msgstr "zu viele Weiterleitungen (>= 5)"
msgid "Effective URL %s"
msgstr "Effektive URL %s"
@ -201,6 +201,8 @@ msgstr ""
" Sie können diese Option mehr als einmal verwenden. Es gibt keine\n"
" Ausgabedatei für den blacklist Logger. Standard ist keine Ausgabe\n"
" in eine Datei.\n"
"-I, --interactive\n"
" Frage nach URLs, falls keine auf der Kommandozeile eingegeben wurde.\n"
"-i regex, --intern=regex\n"
" Behandle URLs welche diese Ausdruck matchen als intern.\n"
"-h, --help\n"
@ -330,6 +332,9 @@ msgid ""
"urls which point to (home) directories should end with a / to avoid "
"redirection"
msgstr ""
"Es trat eine HTTP 301 Weiterleitung auf und die URL endet nicht mit /. Alle "
"URLs, die auf (Home-) Verzeichnisse verweisen, sollten mit einem / enden, "
"um Weiterleitungen zu verhindern"
msgid " in %d links"
msgstr " in %d URLs"
@ -442,8 +447,8 @@ msgstr ""
"o Beim Prüfen von 'news:' Links muß der angegebene NNTP Rechner nicht\n"
" unbedingt derselbe wie der des Benutzers sein!\n"
msgid "warning: timeoutsocket not support on this platform"
msgstr ""
msgid "warning: timeoutsocket is not supported on this system"
msgstr "Warnung: timeoutsocket wird auf diesem System nicht unterstützt"
msgid "Articel number %s found"
msgstr "Artikel nummer %s wurde gefunden"
@ -474,6 +479,8 @@ msgid ""
"enter one or more urls, separated by white-space\n"
"--> "
msgstr ""
"geben Sie eine oder mehrere durch Leerzeichen getrennte URLs ein\n"
"--> "
msgid ""
"\n"
@ -508,33 +515,3 @@ msgstr "# Format der Eintr
msgid "Parent URL"
msgstr "Vater URL"
#~ msgid "1 warning, "
#~ msgstr "1 Warnung, "
#~ msgid " warnings, "
#~ msgstr " Warnungen, "
#~ msgid "HTTPS not supported"
#~ msgstr "HTTPS nicht unterstützt"
#~ msgid " (%.3f seconds)"
#~ msgstr " (%.3f Sekunden)"
#~ msgid "Illegal NNTP link syntax"
#~ msgstr "Illegale NNTP link Syntax"
#~ msgid "Thats it. "
#~ msgstr "Das wars. "
#~ msgid "Write comments and bugs to %s\n"
#~ msgstr "Kommentare und Fehler mailen Sie bitte an %s\n"
#~ msgid "robots.txt:%d: allow without user agents"
#~ msgstr "robots.txt:%d: allow ohne user agents"
#~ msgid "robots.txt:%d: disallow without user agents"
#~ msgstr "robots.txt:%d: disallow ohne user agents"
#~ msgid "robots.txt:%d: user-agent in the middle of rules"
#~ msgstr "robots.txt:%d: user-agent zwischen Regeln"

View file

@ -52,12 +52,14 @@ class MyInstall(install):
if os.name=="nt":
path = self.install_scripts
if os.environ.has_key("ALLUSERSPROFILE"):
path = os.environ["ALLUSERSPROFILE"]
path = os.path.join(os.environ["ALLUSERSPROFILE"], "Desktop")
elif os.environ.has_key("USERPROFILE"):
path = os.environ["USERPROFILE"]
path = os.path.join(os.environ["USERPROFILE"], "Desktop")
data = open("linkchecker.bat").readlines()
data = map(string.strip, data)
data = map(lambda s: s.replace("$python", sys.executable), data)
data = map(lambda s: s+"\r", data)
data = map(lambda s, self=self: s.replace("$install_scripts",
self.install_scripts), data)
self.distribution.create_batch_file(path, data)
@ -177,7 +179,7 @@ class MyDistribution(Distribution):
def create_batch_file(self, directory, data):
filename = os.path.join(path, "linkchecker.bat")
filename = os.path.join(directory, "linkchecker.bat")
# write the batch file
util.execute(write_file, (filename, data),
"creating %s" % filename, self.verbose>=1, self.dry_run)