Gettext 1.11.5 compatibility.
This commit is contained in:
parent
18948c5784
commit
912e7e968f
14 changed files with 209 additions and 188 deletions
10
Makefile.am
10
Makefile.am
|
@ -2,16 +2,17 @@
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = gnu
|
AUTOMAKE_OPTIONS = gnu
|
||||||
|
|
||||||
SUBDIRS = m4 intl lib src doc po
|
SUBDIRS = m4 lib src doc po
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS =
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
|
|
||||||
EXTRA_DIST = system.h COPYING.README depcomp
|
EXTRA_DIST = config.rpath mkinstalldirs system.h COPYING.README depcomp
|
||||||
|
|
||||||
CVS_CREATED = ABOUT-NLS configure aclocal.m4 config.h.in config.guess \
|
CVS_CREATED = ABOUT-NLS configure aclocal.m4 config.h.in config.guess \
|
||||||
config.sub install-sh ltconfig ltmain.sh missing mkinstalldirs \
|
config.sub install-sh ltconfig ltmain.sh missing mkinstalldirs \
|
||||||
stamp-h.in m4/Makefile.am ChangeLog po/Makefile.in.in \
|
stamp-h.in m4/Makefile.am ChangeLog po/Makefile.in.in \
|
||||||
po/tinc.pot src/.libs intl depcomp
|
po/tinc.pot po/*.sed po/*.header po/*.sin po/Rules-quot \
|
||||||
|
src/.libs intl depcomp
|
||||||
|
|
||||||
ChangeLog:
|
ChangeLog:
|
||||||
cvs2cl -U cvsusers --fsf
|
cvs2cl -U cvsusers --fsf
|
||||||
|
@ -20,6 +21,7 @@ cvs-clean: maintainer-clean
|
||||||
for f in $(CVS_CREATED) `find . -name Makefile.in` tinc-$(VERSION).tar.gz; do\
|
for f in $(CVS_CREATED) `find . -name Makefile.in` tinc-$(VERSION).tar.gz; do\
|
||||||
rm -Rf "$$f"; \
|
rm -Rf "$$f"; \
|
||||||
done
|
done
|
||||||
|
grep -l gettext `find m4 -type f` | xargs rm -f
|
||||||
|
|
||||||
deb:
|
deb:
|
||||||
dpkg-buildpackage -rfakeroot
|
dpkg-buildpackage -rfakeroot
|
||||||
|
|
|
@ -114,8 +114,8 @@ do
|
||||||
else
|
else
|
||||||
echo "Creating $dr/aclocal.m4 ..."
|
echo "Creating $dr/aclocal.m4 ..."
|
||||||
test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
|
test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
|
||||||
echo "Running gettextize... Ignore non-fatal messages."
|
echo "Running autopoint..."
|
||||||
echo "no" | gettextize --force --copy
|
autopoint --force
|
||||||
echo "Making $dr/aclocal.m4 writable ..."
|
echo "Making $dr/aclocal.m4 writable ..."
|
||||||
test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
|
test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
|
||||||
fi
|
fi
|
||||||
|
@ -123,8 +123,8 @@ do
|
||||||
if grep "^AM_GNOME_GETTEXT" configure.in >/dev/null; then
|
if grep "^AM_GNOME_GETTEXT" configure.in >/dev/null; then
|
||||||
echo "Creating $dr/aclocal.m4 ..."
|
echo "Creating $dr/aclocal.m4 ..."
|
||||||
test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
|
test -r $dr/aclocal.m4 || touch $dr/aclocal.m4
|
||||||
echo "Running gettextize... Ignore non-fatal messages."
|
echo "Running autopoint..."
|
||||||
echo "no" | gettextize --force --copy
|
autopoint --force
|
||||||
echo "Making $dr/aclocal.m4 writable ..."
|
echo "Making $dr/aclocal.m4 writable ..."
|
||||||
test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
|
test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
|
||||||
fi
|
fi
|
||||||
|
|
11
configure.in
11
configure.in
|
@ -1,7 +1,8 @@
|
||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
|
|
||||||
dnl $Id: configure.in,v 1.13.2.53 2002/07/12 11:45:20 guus Exp $
|
dnl $Id: configure.in,v 1.13.2.54 2002/08/24 12:11:38 guus Exp $
|
||||||
|
|
||||||
|
AC_PREREQ(2.50)
|
||||||
AC_INIT(src/tincd.c)
|
AC_INIT(src/tincd.c)
|
||||||
AM_INIT_AUTOMAKE(tinc, 1.0-cvs)
|
AM_INIT_AUTOMAKE(tinc, 1.0-cvs)
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
|
@ -9,6 +10,9 @@ AM_CONFIG_HEADER(config.h)
|
||||||
dnl Include the macros from the m4/ directory
|
dnl Include the macros from the m4/ directory
|
||||||
AM_ACLOCAL_INCLUDE(m4)
|
AM_ACLOCAL_INCLUDE(m4)
|
||||||
|
|
||||||
|
AM_GNU_GETTEXT([external])
|
||||||
|
AM_GNU_GETTEXT_VERSION(0.11.5)
|
||||||
|
|
||||||
# Enable GNU extensions.
|
# Enable GNU extensions.
|
||||||
# Define this here, not in acconfig's @TOP@ section, since definitions
|
# Define this here, not in acconfig's @TOP@ section, since definitions
|
||||||
# in the latter don't make it into the configure-time tests.
|
# in the latter don't make it into the configure-time tests.
|
||||||
|
@ -129,8 +133,6 @@ freeaddrinfo gai_strerror getaddrinfo getnameinfo])
|
||||||
jm_FUNC_MALLOC
|
jm_FUNC_MALLOC
|
||||||
jm_FUNC_REALLOC
|
jm_FUNC_REALLOC
|
||||||
|
|
||||||
AM_GNU_GETTEXT
|
|
||||||
|
|
||||||
dnl Support for SunOS
|
dnl Support for SunOS
|
||||||
|
|
||||||
AC_CHECK_FUNC(socket, [], [
|
AC_CHECK_FUNC(socket, [], [
|
||||||
|
@ -161,11 +163,10 @@ AC_ARG_ENABLE(tracing,
|
||||||
|
|
||||||
AC_SUBST(INCLUDES)
|
AC_SUBST(INCLUDES)
|
||||||
|
|
||||||
AC_OUTPUT(Makefile
|
AC_OUTPUT(Makefile po/Makefile.in
|
||||||
src/Makefile
|
src/Makefile
|
||||||
doc/Makefile
|
doc/Makefile
|
||||||
doc/es/Makefile
|
doc/es/Makefile
|
||||||
intl/Makefile
|
|
||||||
lib/Makefile
|
lib/Makefile
|
||||||
m4/Makefile
|
m4/Makefile
|
||||||
po/Makefile.in
|
po/Makefile.in
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
## Process this file with automake to produce Makefile.in
|
||||||
# $Id: Makefile.am,v 1.2.4.9 2002/07/12 11:45:21 guus Exp $
|
# $Id: Makefile.am,v 1.2.4.10 2002/08/24 12:11:39 guus Exp $
|
||||||
|
|
||||||
noinst_LIBRARIES = libvpn.a
|
noinst_LIBRARIES = libvpn.a
|
||||||
|
|
||||||
INCLUDES = @INCLUDES@ -I. -I$(top_builddir) -I$(top_srcdir)/intl
|
INCLUDES = @INCLUDES@ -I. -I$(top_builddir)
|
||||||
|
|
||||||
libvpn_a_SOURCES = xmalloc.c pidfile.c utils.c getopt.c getopt1.c list.c avl_tree.c dropin.c fake-getaddrinfo.c fake-getnameinfo.c
|
libvpn_a_SOURCES = xmalloc.c pidfile.c utils.c getopt.c getopt1.c list.c avl_tree.c dropin.c fake-getaddrinfo.c fake-getnameinfo.c
|
||||||
|
|
||||||
|
|
11
lib/getopt.c
11
lib/getopt.c
|
@ -85,16 +85,7 @@ USA. */
|
||||||
#define getpid() GetCurrentProcessId()
|
#define getpid() GetCurrentProcessId()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _
|
#include "gettext.h"
|
||||||
/* This is for other GNU distributions with internationalized messages.
|
|
||||||
When compiling libc, the _ macro is predefined. */
|
|
||||||
#ifdef HAVE_LIBINTL_H
|
|
||||||
# include <libintl.h>
|
|
||||||
# define _(msgid) gettext (msgid)
|
|
||||||
#else
|
|
||||||
# define _(msgid) (msgid)
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* This version of `getopt' appears to the caller like standard Unix `getopt'
|
/* This version of `getopt' appears to the caller like standard Unix `getopt'
|
||||||
but it behaves differently for the user, since it allows the user
|
but it behaves differently for the user, since it allows the user
|
||||||
|
|
77
lib/gettext.h
Normal file
77
lib/gettext.h
Normal file
|
@ -0,0 +1,77 @@
|
||||||
|
/* Convenience header for conditional use of GNU <libintl.h>.
|
||||||
|
Copyright (C) 1995-1998, 2000-2002 Free Software Foundation, Inc.
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU Library General Public License as published
|
||||||
|
by the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
Library General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Library General Public
|
||||||
|
License along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
||||||
|
USA. */
|
||||||
|
|
||||||
|
#ifndef _LIBGETTEXT_H
|
||||||
|
#define _LIBGETTEXT_H 1
|
||||||
|
|
||||||
|
/* NLS can be disabled through the configure --disable-nls option. */
|
||||||
|
#if ENABLE_NLS
|
||||||
|
|
||||||
|
/* Get declarations of GNU message catalog functions. */
|
||||||
|
# include <libintl.h>
|
||||||
|
|
||||||
|
/* Shorthand notation */
|
||||||
|
|
||||||
|
# define _(Text) gettext (Text)
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
/* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which
|
||||||
|
chokes if dcgettext is defined as a macro. So include it now, to make
|
||||||
|
later inclusions of <locale.h> a NOP. We don't include <libintl.h>
|
||||||
|
as well because people using "gettext.h" will not include <libintl.h>,
|
||||||
|
and also including <libintl.h> would fail on SunOS 4, whereas <locale.h>
|
||||||
|
is OK. */
|
||||||
|
#if defined(__sun)
|
||||||
|
# include <locale.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Disabled NLS.
|
||||||
|
The casts to 'const char *' serve the purpose of producing warnings
|
||||||
|
for invalid uses of the value returned from these functions.
|
||||||
|
On pre-ANSI systems without 'const', the config.h file is supposed to
|
||||||
|
contain "#define const". */
|
||||||
|
# define gettext(Msgid) ((const char *) (Msgid))
|
||||||
|
# define dgettext(Domainname, Msgid) ((const char *) (Msgid))
|
||||||
|
# define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
|
||||||
|
# define ngettext(Msgid1, Msgid2, N) \
|
||||||
|
((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
|
||||||
|
# define dngettext(Domainname, Msgid1, Msgid2, N) \
|
||||||
|
((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
|
||||||
|
# define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
|
||||||
|
((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
|
||||||
|
# define textdomain(Domainname) ((const char *) (Domainname))
|
||||||
|
# define bindtextdomain(Domainname, Dirname) ((const char *) (Dirname))
|
||||||
|
# define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset))
|
||||||
|
|
||||||
|
# define _(Text) Text
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* A pseudo function call that serves as a marker for the automated
|
||||||
|
extraction of messages, but does not call gettext(). The run-time
|
||||||
|
translation is done at a different place in the code.
|
||||||
|
The argument, String, should be a literal string. Concatenated strings
|
||||||
|
and other string expressions won't work.
|
||||||
|
The macro's expansion is not parenthesized, so that it is suitable as
|
||||||
|
initializer for static 'char[]' or 'const char[]' variables. */
|
||||||
|
#define gettext_noop(String) String
|
||||||
|
|
||||||
|
#define N_(Text) Text
|
||||||
|
|
||||||
|
#endif /* _LIBGETTEXT_H */
|
|
@ -32,15 +32,7 @@ void *realloc ();
|
||||||
void free ();
|
void free ();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLE_NLS
|
#include "gettext.h"
|
||||||
# include <libintl.h>
|
|
||||||
# define _(Text) gettext (Text)
|
|
||||||
#else
|
|
||||||
# define textdomain(Domain)
|
|
||||||
# define _(Text) Text
|
|
||||||
#endif
|
|
||||||
#define N_(Text) Text
|
|
||||||
|
|
||||||
#include "xalloc.h"
|
#include "xalloc.h"
|
||||||
|
|
||||||
#ifndef EXIT_FAILURE
|
#ifndef EXIT_FAILURE
|
||||||
|
|
|
@ -37,8 +37,8 @@ AC_DEFUN(jm_FUNC_MALLOC,
|
||||||
jm_cv_func_working_malloc=no)
|
jm_cv_func_working_malloc=no)
|
||||||
])
|
])
|
||||||
if test $jm_cv_func_working_malloc = no; then
|
if test $jm_cv_func_working_malloc = no; then
|
||||||
dnl This should be converted to: AC_LIBOBJ([malloc])
|
dnl This was: LIBOBJS="$LIBOBJS malloc.$ac_objext"
|
||||||
LIBOBJS="$LIBOBJS malloc.$ac_objext"
|
AC_LIBOBJ([malloc])
|
||||||
AC_DEFINE(malloc, rpl_malloc, [Replacement malloc()])
|
AC_DEFINE(malloc, rpl_malloc, [Replacement malloc()])
|
||||||
fi
|
fi
|
||||||
])
|
])
|
||||||
|
|
39
m4/perl.m4
39
m4/perl.m4
|
@ -1,39 +0,0 @@
|
||||||
#serial 1
|
|
||||||
|
|
||||||
dnl From Jim Meyering.
|
|
||||||
dnl Find a new-enough version of Perl.
|
|
||||||
dnl
|
|
||||||
|
|
||||||
AC_DEFUN(jm_PERL,
|
|
||||||
[
|
|
||||||
dnl FIXME: don't hard-code 5.003
|
|
||||||
dnl FIXME: should we cache the result?
|
|
||||||
AC_MSG_CHECKING([for perl5.003 or newer])
|
|
||||||
if test "${PERL+set}" = set; then
|
|
||||||
# `PERL' is set in the user's environment.
|
|
||||||
candidate_perl_names="$PERL"
|
|
||||||
perl_specified=yes
|
|
||||||
else
|
|
||||||
candidate_perl_names='perl perl5'
|
|
||||||
perl_specified=no
|
|
||||||
fi
|
|
||||||
|
|
||||||
found=no
|
|
||||||
AC_SUBST(PERL)
|
|
||||||
PERL="$missing_dir/missing perl"
|
|
||||||
for perl in $candidate_perl_names; do
|
|
||||||
# Run test in a subshell; some versions of sh will print an error if
|
|
||||||
# an executable is not found, even if stderr is redirected.
|
|
||||||
if ( $perl -e 'require 5.003' ) > /dev/null 2>&1; then
|
|
||||||
PERL=$perl
|
|
||||||
found=yes
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
AC_MSG_RESULT($found)
|
|
||||||
test $found = no && AC_MSG_WARN([
|
|
||||||
*** You don't seem to have perl5.003 or newer installed.
|
|
||||||
*** Because of that, you may be unable to regenerate certain files
|
|
||||||
*** if you modify the sources from which they are derived.] )
|
|
||||||
])
|
|
|
@ -37,8 +37,8 @@ AC_DEFUN(jm_FUNC_REALLOC,
|
||||||
jm_cv_func_working_realloc=no)
|
jm_cv_func_working_realloc=no)
|
||||||
])
|
])
|
||||||
if test $jm_cv_func_working_realloc = no; then
|
if test $jm_cv_func_working_realloc = no; then
|
||||||
dnl This should be converted to: AC_LIBOBJ([realloc])
|
dnl This was: LIBOBJS="$LIBOBJS realloc.$ac_objext"
|
||||||
LIBOBJS="$LIBOBJS realloc.$ac_objext"
|
AC_LIBOBJ([realloc])
|
||||||
AC_DEFINE(realloc, rpl_realloc, [Replacement realloc()])
|
AC_DEFINE(realloc, rpl_realloc, [Replacement realloc()])
|
||||||
fi
|
fi
|
||||||
])
|
])
|
||||||
|
|
25
po/Makevars
Normal file
25
po/Makevars
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# Makefile variables for PO directory in any package using GNU gettext.
|
||||||
|
|
||||||
|
# Usually the message domain is the same as the package name.
|
||||||
|
DOMAIN = $(PACKAGE)
|
||||||
|
|
||||||
|
# These two variables depend on the location of this directory.
|
||||||
|
subdir = po
|
||||||
|
top_builddir = ..
|
||||||
|
|
||||||
|
# These options get passed to xgettext.
|
||||||
|
XGETTEXT_OPTIONS = --keyword=_ --keyword=N_
|
||||||
|
|
||||||
|
# This is the copyright holder that gets inserted into the header of the
|
||||||
|
# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
|
||||||
|
# package. (Note that the msgstr strings, extracted from the package's
|
||||||
|
# sources, belong to the copyright holder of the package.) Translators are
|
||||||
|
# expected to transfer the copyright for their translations to this person
|
||||||
|
# or entity, or to disclaim their copyright. The empty string stands for
|
||||||
|
# the public domain; in this case the translators are expected to disclaim
|
||||||
|
# their copyright.
|
||||||
|
COPYRIGHT_HOLDER = Ivo Timmermans and Guus Sliepen
|
||||||
|
|
||||||
|
# This is the list of locale categories, beyond LC_MESSAGES, for which the
|
||||||
|
# message catalogs shall be used. It is usually empty.
|
||||||
|
EXTRA_LOCALE_CATEGORIES =
|
166
po/nl.po
166
po/nl.po
|
@ -5,8 +5,8 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: tinc 1.0-cvs\n"
|
"Project-Id-Version: tinc 1.0-cvs\n"
|
||||||
"POT-Creation-Date: 2002-06-09 17:28+0200\n"
|
"POT-Creation-Date: 2002-08-24 13:45+0200\n"
|
||||||
"PO-Revision-Date: 2002-03-27 16:59+0100\n"
|
"PO-Revision-Date: 2002-08-24 14:20+0200\n"
|
||||||
"Last-Translator: Guus Sliepen <guus@sliepen.eu.org>\n"
|
"Last-Translator: Guus Sliepen <guus@sliepen.eu.org>\n"
|
||||||
"Language-Team: Dutch <vertaling@nl.linux.org>\n"
|
"Language-Team: Dutch <vertaling@nl.linux.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -92,13 +92,11 @@ msgstr "Waarschuwing: `%s' is een symbolische link"
|
||||||
msgid "Unable to read symbolic link `%s': %s"
|
msgid "Unable to read symbolic link `%s': %s"
|
||||||
msgstr "Kan symbolische link `%s' niet lezen: %s"
|
msgstr "Kan symbolische link `%s' niet lezen: %s"
|
||||||
|
|
||||||
#. Accessible by others
|
|
||||||
#: src/conf.c:545
|
#: src/conf.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "`%s' has unsecure permissions"
|
msgid "`%s' has unsecure permissions"
|
||||||
msgstr "`%s' heeft onveilige permissies"
|
msgstr "`%s' heeft onveilige permissies"
|
||||||
|
|
||||||
#. Ask for a file and/or directory name.
|
|
||||||
#: src/conf.c:570
|
#: src/conf.c:570
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Please enter a file to save %s to [%s]: "
|
msgid "Please enter a file to save %s to [%s]: "
|
||||||
|
@ -258,10 +256,9 @@ msgstr "Fout tijdens comprimeren pakket naar %s (%s)"
|
||||||
msgid "Setting outgoing packet priority to %d"
|
msgid "Setting outgoing packet priority to %d"
|
||||||
msgstr "Instellen prioriteit uitgaand pakket op %d"
|
msgstr "Instellen prioriteit uitgaand pakket op %d"
|
||||||
|
|
||||||
#. SO_PRIORITY doesn't seem to work
|
|
||||||
#: src/net_packet.c:291 src/net_setup.c:483 src/net_socket.c:107
|
#: src/net_packet.c:291 src/net_setup.c:483 src/net_socket.c:107
|
||||||
#: src/net_socket.c:153 src/net_socket.c:180 src/process.c:272
|
#: src/net_socket.c:153 src/net_socket.c:180 src/tincd.c:360 src/process.c:251
|
||||||
#: src/process.c:309
|
#: src/process.c:288
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "System call `%s' failed: %s"
|
msgid "System call `%s' failed: %s"
|
||||||
msgstr "Systeemaanroep `%s' mislukte: %s"
|
msgstr "Systeemaanroep `%s' mislukte: %s"
|
||||||
|
@ -397,16 +394,16 @@ msgstr "Onzinnige MAC lengte!"
|
||||||
msgid "Bogus compression level!"
|
msgid "Bogus compression level!"
|
||||||
msgstr "Onzinnig compressieniveau!"
|
msgstr "Onzinnig compressieniveau!"
|
||||||
|
|
||||||
#: src/net_setup.c:498
|
#: src/net_setup.c:500
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Listening on %s"
|
msgid "Listening on %s"
|
||||||
msgstr "Luisterend op %s"
|
msgstr "Luisterend op %s"
|
||||||
|
|
||||||
#: src/net_setup.c:509
|
#: src/net_setup.c:511
|
||||||
msgid "Ready"
|
msgid "Ready"
|
||||||
msgstr "Gereed"
|
msgstr "Gereed"
|
||||||
|
|
||||||
#: src/net_setup.c:512
|
#: src/net_setup.c:514
|
||||||
msgid "Unable to create any listening socket!"
|
msgid "Unable to create any listening socket!"
|
||||||
msgstr "Kon geen enkele luistersocket aanmaken!"
|
msgstr "Kon geen enkele luistersocket aanmaken!"
|
||||||
|
|
||||||
|
@ -765,36 +762,36 @@ msgstr "Kreeg %s van %s (%s) voor %s welke niet voorkomt in de node boom"
|
||||||
msgid "Got %s from %s (%s) for %s which does not appear in his subnet tree"
|
msgid "Got %s from %s (%s) for %s which does not appear in his subnet tree"
|
||||||
msgstr "Kreeg %s van %s (%s) voor %s welke niet voorkomt in zijn subnet boom"
|
msgstr "Kreeg %s van %s (%s) voor %s welke niet voorkomt in zijn subnet boom"
|
||||||
|
|
||||||
#: src/subnet.c:99
|
#: src/subnet.c:115
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "subnet_compare() was called with unknown subnet type %d, exitting!"
|
msgid "subnet_compare() was called with unknown subnet type %d, exitting!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"subnet_compare() werd aangeroepen met onbekend subnet type %d, beëindigen!"
|
"subnet_compare() werd aangeroepen met onbekend subnet type %d, beëindigen!"
|
||||||
|
|
||||||
#: src/subnet.c:274
|
#: src/subnet.c:290
|
||||||
#, fuzzy, c-format
|
#, c-format
|
||||||
msgid "net2str() was called with unknown subnet type %d, exiting!"
|
msgid "net2str() was called with unknown subnet type %d, exiting!"
|
||||||
msgstr "net2str() werd aangeroepen met onbekend subnet type %d, beëindigen!"
|
msgstr "net2str() werd aangeroepen met onbekend subnet type %d, beëindigen!"
|
||||||
|
|
||||||
#: src/subnet.c:384
|
#: src/subnet.c:403
|
||||||
msgid "Subnet list:"
|
msgid "Subnet list:"
|
||||||
msgstr "Subnet lijst:"
|
msgstr "Subnet lijst:"
|
||||||
|
|
||||||
#: src/subnet.c:389
|
#: src/subnet.c:408
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " %s owner %s"
|
msgid " %s owner %s"
|
||||||
msgstr " %s eigenaar %s"
|
msgstr " %s eigenaar %s"
|
||||||
|
|
||||||
#: src/subnet.c:392
|
#: src/subnet.c:411
|
||||||
msgid "End of subnet list."
|
msgid "End of subnet list."
|
||||||
msgstr "Einde van subnet lijst."
|
msgstr "Einde van subnet lijst."
|
||||||
|
|
||||||
#: src/tincd.c:100
|
#: src/tincd.c:105
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Try `%s --help' for more information.\n"
|
msgid "Try `%s --help' for more information.\n"
|
||||||
msgstr "Probeer `%s --help' voor meer informatie.\n"
|
msgstr "Probeer `%s --help' voor meer informatie.\n"
|
||||||
|
|
||||||
#: src/tincd.c:103
|
#: src/tincd.c:108
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Usage: %s [option]...\n"
|
"Usage: %s [option]...\n"
|
||||||
|
@ -803,13 +800,18 @@ msgstr ""
|
||||||
"Gebruik: %s [optie]...\n"
|
"Gebruik: %s [optie]...\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
|
||||||
#: src/tincd.c:104
|
#: src/tincd.c:109
|
||||||
msgid ""
|
msgid ""
|
||||||
" -c, --config=DIR Read configuration options from DIR.\n"
|
" -c, --config=DIR Read configuration options from DIR.\n"
|
||||||
" -D, --no-detach Don't fork and detach.\n"
|
" -D, --no-detach Don't fork and detach.\n"
|
||||||
" -d, --debug[=LEVEL] Increase debug level or set it to LEVEL.\n"
|
" -d, --debug[=LEVEL] Increase debug level or set it to LEVEL.\n"
|
||||||
" -k, --kill[=SIGNAL] Attempt to kill a running tincd and exit.\n"
|
" -k, --kill[=SIGNAL] Attempt to kill a running tincd and exit.\n"
|
||||||
" -n, --net=NETNAME Connect to net NETNAME.\n"
|
" -n, --net=NETNAME Connect to net NETNAME.\n"
|
||||||
|
" -K, --generate-keys[=BITS] Generate public/private RSA keypair.\n"
|
||||||
|
" -L, --mlock Lock tinc into main memory.\n"
|
||||||
|
" --help Display this help and exit.\n"
|
||||||
|
" --version Output version information and exit.\n"
|
||||||
|
"\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
" -c, --config=MAP Lees configuratie uit MAP.\n"
|
" -c, --config=MAP Lees configuratie uit MAP.\n"
|
||||||
" -D, --no-detach Start geen nieuw proces.\n"
|
" -D, --no-detach Start geen nieuw proces.\n"
|
||||||
|
@ -817,26 +819,19 @@ msgstr ""
|
||||||
" -k, --kill[=SIGNAAL] Poging tot zenden signaal naar lopende tincd en "
|
" -k, --kill[=SIGNAAL] Poging tot zenden signaal naar lopende tincd en "
|
||||||
"beëindig.\n"
|
"beëindig.\n"
|
||||||
" -n, --net=NETNAAM Verbind met net NETNAAM.\n"
|
" -n, --net=NETNAAM Verbind met net NETNAAM.\n"
|
||||||
|
|
||||||
#: src/tincd.c:109
|
|
||||||
msgid ""
|
|
||||||
" -K, --generate-keys[=BITS] Generate public/private RSA keypair.\n"
|
|
||||||
" --help Display this help and exit.\n"
|
|
||||||
" --version Output version information and exit.\n"
|
|
||||||
"\n"
|
|
||||||
msgstr ""
|
|
||||||
" -K, --generate-keys[=BITS] Genereer publiek/privé RSA sleutelpaar.\n"
|
" -K, --generate-keys[=BITS] Genereer publiek/privé RSA sleutelpaar.\n"
|
||||||
|
" -L, --mlock Houd tinc vast in het centrale geheugen.\n"
|
||||||
" --help Geef deze hulp en beëindig.\n"
|
" --help Geef deze hulp en beëindig.\n"
|
||||||
" --version Geef versie informatie en beëindig.\n"
|
" --version Geef versie informatie en beëindig.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
|
||||||
#: src/tincd.c:112
|
#: src/tincd.c:118
|
||||||
msgid "Report bugs to tinc@nl.linux.org.\n"
|
msgid "Report bugs to tinc@nl.linux.org.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Meld fouten in het programma aan tinc@nl.linux.org;\n"
|
"Meld fouten in het programma aan tinc@nl.linux.org;\n"
|
||||||
"Meld fouten in de vertaling aan vertaling@nl.linux.org.\n"
|
"Meld fouten in de vertaling aan vertaling@nl.linux.org.\n"
|
||||||
|
|
||||||
#: src/tincd.c:166
|
#: src/tincd.c:175
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Invalid argument `%s'; SIGNAL must be a number or one of HUP, TERM, KILL, "
|
"Invalid argument `%s'; SIGNAL must be a number or one of HUP, TERM, KILL, "
|
||||||
|
@ -845,7 +840,7 @@ msgstr ""
|
||||||
"Ongeldig argument `%s'; SIGNAAL moet een getal zijn of één van HUP, TERM, "
|
"Ongeldig argument `%s'; SIGNAAL moet een getal zijn of één van HUP, TERM, "
|
||||||
"KILL, USR1, USR2, WINCH, INT of ALRM.\n"
|
"KILL, USR1, USR2, WINCH, INT of ALRM.\n"
|
||||||
|
|
||||||
#: src/tincd.c:184
|
#: src/tincd.c:193
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Invalid argument `%s'; BITS must be a number equal to or greater than 512.\n"
|
"Invalid argument `%s'; BITS must be a number equal to or greater than 512.\n"
|
||||||
|
@ -853,24 +848,24 @@ msgstr ""
|
||||||
"Ongeldig argument `%s'; BITS moet een nummer zijn gelijk aan of groter dan "
|
"Ongeldig argument `%s'; BITS moet een nummer zijn gelijk aan of groter dan "
|
||||||
"512.\n"
|
"512.\n"
|
||||||
|
|
||||||
#: src/tincd.c:245
|
#: src/tincd.c:254
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Generating %d bits keys:\n"
|
msgid "Generating %d bits keys:\n"
|
||||||
msgstr "Bezig met genereren van een %d bits sleutel:\n"
|
msgstr "Bezig met genereren van een %d bits sleutel:\n"
|
||||||
|
|
||||||
#: src/tincd.c:250
|
#: src/tincd.c:259
|
||||||
msgid "Error during key generation!\n"
|
msgid "Error during key generation!\n"
|
||||||
msgstr "Fout tijdens genereren sleutel!\n"
|
msgstr "Fout tijdens genereren sleutel!\n"
|
||||||
|
|
||||||
#: src/tincd.c:254
|
#: src/tincd.c:263
|
||||||
msgid "Done.\n"
|
msgid "Done.\n"
|
||||||
msgstr "Klaar.\n"
|
msgstr "Klaar.\n"
|
||||||
|
|
||||||
#: src/tincd.c:263
|
#: src/tincd.c:272
|
||||||
msgid "public RSA key"
|
msgid "public RSA key"
|
||||||
msgstr "openbare RSA sleutel"
|
msgstr "openbare RSA sleutel"
|
||||||
|
|
||||||
#: src/tincd.c:267 src/tincd.c:278
|
#: src/tincd.c:276 src/tincd.c:287
|
||||||
msgid ""
|
msgid ""
|
||||||
"Appending key to existing contents.\n"
|
"Appending key to existing contents.\n"
|
||||||
"Make sure only one key is stored in the file.\n"
|
"Make sure only one key is stored in the file.\n"
|
||||||
|
@ -878,21 +873,21 @@ msgstr ""
|
||||||
"Sleutel wordt toegevoegd aan bestaande inhoud.\n"
|
"Sleutel wordt toegevoegd aan bestaande inhoud.\n"
|
||||||
"Let er op dat er slechts één sleutel in het bestand is.\n"
|
"Let er op dat er slechts één sleutel in het bestand is.\n"
|
||||||
|
|
||||||
#: src/tincd.c:274
|
#: src/tincd.c:283
|
||||||
msgid "private RSA key"
|
msgid "private RSA key"
|
||||||
msgstr "geheime RSA sleutel"
|
msgstr "geheime RSA sleutel"
|
||||||
|
|
||||||
#: src/tincd.c:299
|
#: src/tincd.c:308
|
||||||
msgid "Both netname and configuration directory given, using the latter..."
|
msgid "Both netname and configuration directory given, using the latter..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Zowel netnaam als configuratiemap zijn gegeven, laatste wordt gebruikt..."
|
"Zowel netnaam als configuratiemap zijn gegeven, laatste wordt gebruikt..."
|
||||||
|
|
||||||
#: src/tincd.c:328
|
#: src/tincd.c:337
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s version %s (built %s %s, protocol %d)\n"
|
msgid "%s version %s (built %s %s, protocol %d)\n"
|
||||||
msgstr "%s versie %s (gemaakt %s %s, protocol %d)\n"
|
msgstr "%s versie %s (gemaakt %s %s, protocol %d)\n"
|
||||||
|
|
||||||
#: src/tincd.c:329
|
#: src/tincd.c:338
|
||||||
msgid ""
|
msgid ""
|
||||||
"Copyright (C) 1998-2002 Ivo Timmermans, Guus Sliepen and others.\n"
|
"Copyright (C) 1998-2002 Ivo Timmermans, Guus Sliepen and others.\n"
|
||||||
"See the AUTHORS file for a complete list.\n"
|
"See the AUTHORS file for a complete list.\n"
|
||||||
|
@ -909,16 +904,16 @@ msgstr ""
|
||||||
"en je bent welkom om het te distribueren onder bepaalde voorwaarden;\n"
|
"en je bent welkom om het te distribueren onder bepaalde voorwaarden;\n"
|
||||||
"zie het bestand COPYING voor details.\n"
|
"zie het bestand COPYING voor details.\n"
|
||||||
|
|
||||||
#: src/tincd.c:386
|
#: src/tincd.c:403
|
||||||
msgid "Unrecoverable error"
|
msgid "Unrecoverable error"
|
||||||
msgstr "Onherstelbare fout"
|
msgstr "Onherstelbare fout"
|
||||||
|
|
||||||
#: src/tincd.c:391
|
#: src/tincd.c:408
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Restarting in %d seconds!"
|
msgid "Restarting in %d seconds!"
|
||||||
msgstr "Herstart in %d seconden!"
|
msgstr "Herstart in %d seconden!"
|
||||||
|
|
||||||
#: src/process.c:372 src/tincd.c:396
|
#: src/tincd.c:413 src/process.c:351
|
||||||
msgid "Not restarting."
|
msgid "Not restarting."
|
||||||
msgstr "Geen herstart."
|
msgstr "Geen herstart."
|
||||||
|
|
||||||
|
@ -978,63 +973,63 @@ msgstr "tincd %s (%s %s) start, debug niveau %d"
|
||||||
msgid "tincd %s starting"
|
msgid "tincd %s starting"
|
||||||
msgstr "tincd %s wordt gestart"
|
msgstr "tincd %s wordt gestart"
|
||||||
|
|
||||||
#: src/process.c:249
|
#: src/process.c:228
|
||||||
#, fuzzy, c-format
|
#, c-format
|
||||||
msgid "Could not execute `%s': %s"
|
msgid "Could not execute `%s': %s"
|
||||||
msgstr "Kon `%s' niet openen: %s"
|
msgstr "Kon `%s' niet uitvoeren: %s"
|
||||||
|
|
||||||
#: src/process.c:279
|
#: src/process.c:258
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Executing script %s"
|
msgid "Executing script %s"
|
||||||
msgstr "Uitvoeren script %s"
|
msgstr "Uitvoeren script %s"
|
||||||
|
|
||||||
#: src/process.c:289
|
#: src/process.c:268
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Process %d (%s) exited with non-zero status %d"
|
msgid "Process %d (%s) exited with non-zero status %d"
|
||||||
msgstr "Proces %d (%s) beëindigde met status %d"
|
msgstr "Proces %d (%s) beëindigde met status %d"
|
||||||
|
|
||||||
#: src/process.c:297
|
#: src/process.c:276
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Process %d (%s) was killed by signal %d (%s)"
|
msgid "Process %d (%s) was killed by signal %d (%s)"
|
||||||
msgstr "Proces %d (%s) was gestopt door signaal %d (%s)"
|
msgstr "Proces %d (%s) was gestopt door signaal %d (%s)"
|
||||||
|
|
||||||
#: src/process.c:303
|
#: src/process.c:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Process %d (%s) terminated abnormally"
|
msgid "Process %d (%s) terminated abnormally"
|
||||||
msgstr "Proces %d (%s) abnormaal beëindigd"
|
msgstr "Proces %d (%s) abnormaal beëindigd"
|
||||||
|
|
||||||
#: src/process.c:328
|
#: src/process.c:307
|
||||||
msgid "Got TERM signal"
|
msgid "Got TERM signal"
|
||||||
msgstr "Kreeg TERM signaal"
|
msgstr "Kreeg TERM signaal"
|
||||||
|
|
||||||
#: src/process.c:337
|
#: src/process.c:316
|
||||||
msgid "Got QUIT signal"
|
msgid "Got QUIT signal"
|
||||||
msgstr "Kreeg QUIT signaal"
|
msgstr "Kreeg QUIT signaal"
|
||||||
|
|
||||||
#: src/process.c:344
|
#: src/process.c:323
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Got another fatal signal %d (%s): not restarting."
|
msgid "Got another fatal signal %d (%s): not restarting."
|
||||||
msgstr "Kreeg nog een fataal signaal %s (%s): geen herstart."
|
msgstr "Kreeg nog een fataal signaal %d (%s): geen herstart."
|
||||||
|
|
||||||
#: src/process.c:353
|
#: src/process.c:332
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Got fatal signal %d (%s)"
|
msgid "Got fatal signal %d (%s)"
|
||||||
msgstr "Kreeg fataal signaal %d (%s)"
|
msgstr "Kreeg fataal signaal %d (%s)"
|
||||||
|
|
||||||
#: src/process.c:358
|
#: src/process.c:337
|
||||||
msgid "Trying to re-execute in 5 seconds..."
|
msgid "Trying to re-execute in 5 seconds..."
|
||||||
msgstr "Poging tot herstarten over 5 seconden..."
|
msgstr "Poging tot herstarten over 5 seconden..."
|
||||||
|
|
||||||
#: src/process.c:381
|
#: src/process.c:360
|
||||||
msgid "Got HUP signal"
|
msgid "Got HUP signal"
|
||||||
msgstr "Kreeg HUP signaal"
|
msgstr "Kreeg HUP signaal"
|
||||||
|
|
||||||
#: src/process.c:390
|
#: src/process.c:369
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Reverting to old debug level (%d)"
|
msgid "Reverting to old debug level (%d)"
|
||||||
msgstr "Herstellen van oud debug niveau (%d)"
|
msgstr "Herstellen van oud debug niveau (%d)"
|
||||||
|
|
||||||
#: src/process.c:397
|
#: src/process.c:376
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Temporarily setting debug level to 5. Kill me with SIGINT again to go back "
|
"Temporarily setting debug level to 5. Kill me with SIGINT again to go back "
|
||||||
|
@ -1043,21 +1038,21 @@ msgstr ""
|
||||||
"Tijdelijk instellen debug niveau op 5. Zend nog een SIGINT signaal om niveau "
|
"Tijdelijk instellen debug niveau op 5. Zend nog een SIGINT signaal om niveau "
|
||||||
"%d te herstellen."
|
"%d te herstellen."
|
||||||
|
|
||||||
#: src/process.c:408
|
#: src/process.c:387
|
||||||
msgid "Got ALRM signal"
|
msgid "Got ALRM signal"
|
||||||
msgstr "Kreeg ALRM signaal"
|
msgstr "Kreeg ALRM signaal"
|
||||||
|
|
||||||
#: src/process.c:437
|
#: src/process.c:416
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Got unexpected signal %d (%s)"
|
msgid "Got unexpected signal %d (%s)"
|
||||||
msgstr "Kreeg onverwacht signaal %d (%s)"
|
msgstr "Kreeg onverwacht signaal %d (%s)"
|
||||||
|
|
||||||
#: src/process.c:446
|
#: src/process.c:425
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Ignored signal %d (%s)"
|
msgid "Ignored signal %d (%s)"
|
||||||
msgstr "Signaal %d (%s) genegeerd"
|
msgstr "Signaal %d (%s) genegeerd"
|
||||||
|
|
||||||
#: src/process.c:503
|
#: src/process.c:482
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Installing signal handler for signal %d (%s) failed: %s\n"
|
msgid "Installing signal handler for signal %d (%s) failed: %s\n"
|
||||||
msgstr "Installeren van signaal afhandelaar voor signaal %d (%s) faalde: %s\n"
|
msgstr "Installeren van signaal afhandelaar voor signaal %d (%s) faalde: %s\n"
|
||||||
|
@ -1151,18 +1146,18 @@ msgstr " %s op %s - %s op %s opties %lx gewicht %d"
|
||||||
msgid "End of edges."
|
msgid "End of edges."
|
||||||
msgstr "Einde van edges."
|
msgstr "Einde van edges."
|
||||||
|
|
||||||
#: src/graph.c:261
|
#: src/graph.c:265
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Node %s (%s) became reachable"
|
msgid "Node %s (%s) became reachable"
|
||||||
msgstr "Node %s (%s) werd bereikbaar"
|
msgstr "Node %s (%s) werd bereikbaar"
|
||||||
|
|
||||||
#: src/graph.c:273
|
#: src/graph.c:267
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Node %s (%s) became unreachable"
|
msgid "Node %s (%s) became unreachable"
|
||||||
msgstr "Node %s (%s) is niet meer bereikbaar"
|
msgstr "Node %s (%s) is niet meer bereikbaar"
|
||||||
|
|
||||||
#: src/freebsd/device.c:70 src/linux/device.c:89 src/netbsd/device.c:74
|
#: src/linux/device.c:89 src/freebsd/device.c:70 src/solaris/device.c:75
|
||||||
#: src/openbsd/device.c:74 src/solaris/device.c:75
|
#: src/netbsd/device.c:74 src/openbsd/device.c:74
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Could not open %s: %s"
|
msgid "Could not open %s: %s"
|
||||||
msgstr "Kon `%s' niet openen: %s"
|
msgstr "Kon `%s' niet openen: %s"
|
||||||
|
@ -1180,50 +1175,50 @@ msgstr "Oud ioctl() verzoek was nodig voor %s"
|
||||||
msgid "Linux ethertap device"
|
msgid "Linux ethertap device"
|
||||||
msgstr "Linux ethertap apparaat"
|
msgstr "Linux ethertap apparaat"
|
||||||
|
|
||||||
#: src/freebsd/device.c:87 src/linux/device.c:136 src/netbsd/device.c:90
|
#: src/linux/device.c:136 src/freebsd/device.c:87 src/solaris/device.c:132
|
||||||
#: src/openbsd/device.c:90 src/solaris/device.c:132
|
#: src/netbsd/device.c:90 src/openbsd/device.c:90
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s is a %s"
|
msgid "%s is a %s"
|
||||||
msgstr "%s is een %s"
|
msgstr "%s is een %s"
|
||||||
|
|
||||||
#: src/freebsd/device.c:108 src/linux/device.c:159 src/linux/device.c:169
|
#: src/linux/device.c:159 src/linux/device.c:169 src/freebsd/device.c:108
|
||||||
#: src/netbsd/device.c:109 src/openbsd/device.c:111 src/solaris/device.c:149
|
#: src/solaris/device.c:149 src/netbsd/device.c:109 src/openbsd/device.c:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Error while reading from %s %s: %s"
|
msgid "Error while reading from %s %s: %s"
|
||||||
msgstr "Fout tijdens lezen van %s %s: %s"
|
msgstr "Fout tijdens lezen van %s %s: %s"
|
||||||
|
|
||||||
#: src/freebsd/device.c:117 src/linux/device.c:180 src/netbsd/device.c:124
|
#: src/linux/device.c:180 src/freebsd/device.c:117 src/solaris/device.c:164
|
||||||
#: src/openbsd/device.c:140 src/solaris/device.c:164
|
#: src/netbsd/device.c:124 src/openbsd/device.c:140
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Read packet of %d bytes from %s"
|
msgid "Read packet of %d bytes from %s"
|
||||||
msgstr "Pakket van %d bytes gelezen van %s"
|
msgstr "Pakket van %d bytes gelezen van %s"
|
||||||
|
|
||||||
#: src/freebsd/device.c:128 src/linux/device.c:191 src/netbsd/device.c:135
|
#: src/linux/device.c:191 src/freebsd/device.c:128 src/solaris/device.c:175
|
||||||
#: src/openbsd/device.c:154 src/solaris/device.c:175
|
#: src/netbsd/device.c:135 src/openbsd/device.c:154
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Writing packet of %d bytes to %s"
|
msgid "Writing packet of %d bytes to %s"
|
||||||
msgstr "Pakket van %d bytes geschreven naar %s"
|
msgstr "Pakket van %d bytes geschreven naar %s"
|
||||||
|
|
||||||
#: src/linux/device.c:198 src/linux/device.c:207 src/netbsd/device.c:140
|
#: src/linux/device.c:198 src/linux/device.c:207 src/solaris/device.c:180
|
||||||
#: src/openbsd/device.c:180 src/solaris/device.c:180
|
#: src/netbsd/device.c:140 src/openbsd/device.c:180
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Can't write to %s %s: %s"
|
msgid "Can't write to %s %s: %s"
|
||||||
msgstr "Kan niet schrijven naar %s %s: %s"
|
msgstr "Kan niet schrijven naar %s %s: %s"
|
||||||
|
|
||||||
#: src/freebsd/device.c:144 src/linux/device.c:220 src/netbsd/device.c:151
|
#: src/linux/device.c:220 src/freebsd/device.c:144 src/solaris/device.c:192
|
||||||
#: src/openbsd/device.c:191 src/solaris/device.c:192
|
#: src/netbsd/device.c:151 src/openbsd/device.c:191
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Statistics for %s %s:"
|
msgid "Statistics for %s %s:"
|
||||||
msgstr "Statistieken voor %s %s:"
|
msgstr "Statistieken voor %s %s:"
|
||||||
|
|
||||||
#: src/freebsd/device.c:145 src/linux/device.c:221 src/netbsd/device.c:152
|
#: src/linux/device.c:221 src/freebsd/device.c:145 src/solaris/device.c:193
|
||||||
#: src/openbsd/device.c:192 src/solaris/device.c:193
|
#: src/netbsd/device.c:152 src/openbsd/device.c:192
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " total bytes in: %10d"
|
msgid " total bytes in: %10d"
|
||||||
msgstr " totaal aantal bytes in: %10d"
|
msgstr " totaal aantal bytes in: %10d"
|
||||||
|
|
||||||
#: src/freebsd/device.c:146 src/linux/device.c:222 src/netbsd/device.c:153
|
#: src/linux/device.c:222 src/freebsd/device.c:146 src/solaris/device.c:194
|
||||||
#: src/openbsd/device.c:193 src/solaris/device.c:194
|
#: src/netbsd/device.c:153 src/openbsd/device.c:193
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " total bytes out: %10d"
|
msgid " total bytes out: %10d"
|
||||||
msgstr " totaal aantal bytes uit: %10d"
|
msgstr " totaal aantal bytes uit: %10d"
|
||||||
|
@ -1282,12 +1277,9 @@ msgstr "OpenBSD tun apparaat"
|
||||||
#: src/openbsd/device.c:130
|
#: src/openbsd/device.c:130
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unknown address family %d while reading packet from %s %s"
|
msgid "Unknown address family %d while reading packet from %s %s"
|
||||||
msgstr "Onbekende adresfamilie tijdens lezen pakket van %s %s"
|
msgstr "Onbekende adresfamilie %d tijdens lezen pakket van %s %s"
|
||||||
|
|
||||||
#: src/openbsd/device.c:169
|
#: src/openbsd/device.c:169
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unknown address family %d while writing packet to %s %s"
|
msgid "Unknown address family %d while writing packet to %s %s"
|
||||||
msgstr "Onbekende adresfamilie tijdens schrijven pakket naar %s %s"
|
msgstr "Onbekende adresfamilie %d tijdens schrijven pakket naar %s %s"
|
||||||
|
|
||||||
#~ msgid "Invalid public/private keypair!"
|
|
||||||
#~ msgstr "Ongeldig publiek/privé sleutelpaar!"
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
## Produce this file with automake to get Makefile.in
|
## Produce this file with automake to get Makefile.in
|
||||||
# $Id: Makefile.am,v 1.4.4.24 2002/07/11 12:55:58 guus Exp $
|
# $Id: Makefile.am,v 1.4.4.25 2002/08/24 12:11:40 guus Exp $
|
||||||
|
|
||||||
sbin_PROGRAMS = tincd
|
sbin_PROGRAMS = tincd
|
||||||
|
|
||||||
|
@ -9,12 +9,12 @@ tincd_SOURCES = conf.c connection.c device.c edge.c event.c graph.c meta.c net.c
|
||||||
net_socket.c netutl.c node.c process.c protocol.c protocol_auth.c protocol_edge.c protocol_misc.c \
|
net_socket.c netutl.c node.c process.c protocol.c protocol_auth.c protocol_edge.c protocol_misc.c \
|
||||||
protocol_key.c protocol_subnet.c route.c subnet.c tincd.c
|
protocol_key.c protocol_subnet.c route.c subnet.c tincd.c
|
||||||
|
|
||||||
INCLUDES = @INCLUDES@ -I$(top_builddir) -I$(top_srcdir)/lib -I$(top_srcdir)/intl
|
INCLUDES = @INCLUDES@ -I$(top_builddir) -I$(top_srcdir)/lib
|
||||||
|
|
||||||
noinst_HEADERS = conf.h connection.h device.h edge.h event.h graph.h meta.h net.h netutl.h node.h process.h \
|
noinst_HEADERS = conf.h connection.h device.h edge.h event.h graph.h meta.h net.h netutl.h node.h process.h \
|
||||||
protocol.h route.h subnet.h
|
protocol.h route.h subnet.h
|
||||||
|
|
||||||
LIBS = @LIBS@ @INTLLIBS@
|
LIBS = @LIBS@
|
||||||
|
|
||||||
tincd_LDADD = \
|
tincd_LDADD = \
|
||||||
$(top_builddir)/lib/libvpn.a
|
$(top_builddir)/lib/libvpn.a
|
||||||
|
|
22
system.h
22
system.h
|
@ -20,26 +20,7 @@
|
||||||
#ifndef __TINC_SYSTEM_H__
|
#ifndef __TINC_SYSTEM_H__
|
||||||
#define __TINC_SYSTEM_H__
|
#define __TINC_SYSTEM_H__
|
||||||
|
|
||||||
/* Take care of NLS matters. -- from fileutils 4.0 */
|
#include "gettext.h"
|
||||||
|
|
||||||
#if HAVE_LOCALE_H
|
|
||||||
# include <locale.h>
|
|
||||||
#endif
|
|
||||||
#if !HAVE_SETLOCALE
|
|
||||||
# define setlocale(Category, Locale) /* empty */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ENABLE_NLS
|
|
||||||
# include <libintl.h>
|
|
||||||
# define _(Text) gettext (Text)
|
|
||||||
#else
|
|
||||||
# undef bindtextdomain
|
|
||||||
# define bindtextdomain(Domain, Directory) /* empty */
|
|
||||||
# undef textdomain
|
|
||||||
# define textdomain(Domain) /* empty */
|
|
||||||
# define _(Text) Text
|
|
||||||
#endif
|
|
||||||
#define N_(Text) Text
|
|
||||||
|
|
||||||
#ifndef HAVE_STRSIGNAL
|
#ifndef HAVE_STRSIGNAL
|
||||||
# define strsignal(p) ""
|
# define strsignal(p) ""
|
||||||
|
@ -53,4 +34,3 @@ typedef int socklen_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* __TINC_SYSTEM_H__ */
|
#endif /* __TINC_SYSTEM_H__ */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue