diff --git a/configure.ac b/configure.ac index 50e3c3c..fab2650 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ AC_DEFUN([AC_DEFINE_DIR], [ test "$exec_prefix_NONE" && exec_prefix=NONE ]) -AC_INIT([ipx-utils], [1.2], [pasis.ua@gmail.com]) +AC_INIT([ipx-utils], [1.2], [mario.fetka@disconnected-by-peer.at]) AM_INIT_AUTOMAKE([subdir-objects]) AC_CONFIG_SRCDIR([src/ipx_configure.c]) AC_CONFIG_HEADERS([config.h]) diff --git a/po/LINGUAS b/po/LINGUAS new file mode 100644 index 0000000..f6c508a --- /dev/null +++ b/po/LINGUAS @@ -0,0 +1 @@ +cs de es fr hu it ja pt_BR zh_CN zh_TW diff --git a/po/Makefile.in.in b/po/Makefile.in.in new file mode 100644 index 0000000..1f5cc28 --- /dev/null +++ b/po/Makefile.in.in @@ -0,0 +1,384 @@ +# Makefile for PO directory in any package using GNU gettext. +# Copyright (C) 1995-1997, 2000-2005 by Ulrich Drepper +# +# This file can be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU General Public +# License but which still want to provide support for the GNU gettext +# functionality. +# Please note that the actual code of GNU gettext is covered by the GNU +# General Public License and is *not* in the public domain. +# +# Origin: gettext-0.14.4 + +PACKAGE = @PACKAGE@ +VERSION = @VERSION@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + +SHELL = /bin/sh +@SET_MAKE@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datadir = @datadir@ +localedir = $(datadir)/locale +gettextsrcdir = $(datadir)/gettext/po + +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) + +GMSGFMT = @GMSGFMT@ +MSGFMT = @MSGFMT@ +XGETTEXT = @XGETTEXT@ +MSGMERGE = msgmerge +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +POFILES = @POFILES@ +GMOFILES = @GMOFILES@ +UPDATEPOFILES = @UPDATEPOFILES@ +DUMMYPOFILES = @DUMMYPOFILES@ +DISTFILES.common = Makefile.in.in remove-potcdate.sin \ +$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) +DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \ +$(POFILES) $(GMOFILES) \ +$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) + +POTFILES = \ + +CATALOGS = @CATALOGS@ + +# Makevars gets inserted here. (Don't remove this line!) + +.SUFFIXES: +.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update + +.po.mo: + @echo "$(MSGFMT) -c -o $@ $<"; \ + $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ + +.po.gmo: + @lang=`echo $* | sed -e 's,.*/,,'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ + cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo + +.sin.sed: + sed -e '/^#/d' $< > t-$@ + mv t-$@ $@ + + +all: all-@USE_NLS@ + +all-yes: stamp-po +all-no: + +# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no +# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because +# we don't want to bother translators with empty POT files). We assume that +# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. +# In this case, stamp-po is a nop (i.e. a phony target). + +# stamp-po is a timestamp denoting the last time at which the CATALOGS have +# been loosely updated. Its purpose is that when a developer or translator +# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, +# "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent +# invocations of "make" will do nothing. This timestamp would not be necessary +# if updating the $(CATALOGS) would always touch them; however, the rule for +# $(POFILES) has been designed to not touch files that don't need to be +# changed. +stamp-po: $(srcdir)/$(DOMAIN).pot + test ! -f $(srcdir)/$(DOMAIN).pot || \ + test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) + @test ! -f $(srcdir)/$(DOMAIN).pot || { \ + echo "touch stamp-po" && \ + echo timestamp > stamp-poT && \ + mv stamp-poT stamp-po; \ + } + +# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', +# otherwise packages like GCC can not be built if only parts of the source +# have been downloaded. + +# This target rebuilds $(DOMAIN).pot; it is an expensive operation. +# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. +$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed + if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \ + msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ + else \ + msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ + fi; \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ + --files-from=$(srcdir)/POTFILES.in \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --msgid-bugs-address="$$msgid_bugs_address" + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +# This rule has no dependencies: we don't need to update $(DOMAIN).pot at +# every "make" invocation, only create it when it is missing. +# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +# This target rebuilds a PO file if $(DOMAIN).pot has changed. +# Note that a PO file is not touched if it doesn't need to be changed. +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + if test -f "$(srcdir)/$${lang}.po"; then \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \ + else \ + $(MAKE) $${lang}.po-create; \ + fi + + +install: install-exec install-data +install-exec: +install-data: install-data-@USE_NLS@ + if test "$(PACKAGE)" = "gettext-tools"; then \ + $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + for file in $(DISTFILES.common) Makevars.template; do \ + $(INSTALL_DATA) $(srcdir)/$$file \ + $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + for file in Makevars; do \ + rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +install-data-no: all +install-data-yes: all + $(mkinstalldirs) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ + echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ + fi; \ + done; \ + done + +install-strip: install + +installdirs: installdirs-exec installdirs-data +installdirs-exec: +installdirs-data: installdirs-data-@USE_NLS@ + if test "$(PACKAGE)" = "gettext-tools"; then \ + $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + else \ + : ; \ + fi +installdirs-data-no: +installdirs-data-yes: + $(mkinstalldirs) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + fi; \ + done; \ + done + +# Define this as empty until I found a useful application. +installcheck: + +uninstall: uninstall-exec uninstall-data +uninstall-exec: +uninstall-data: uninstall-data-@USE_NLS@ + if test "$(PACKAGE)" = "gettext-tools"; then \ + for file in $(DISTFILES.common) Makevars.template; do \ + rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +uninstall-data-no: +uninstall-data-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done + +check: all + +info dvi ps pdf html tags TAGS ctags CTAGS ID: + +mostlyclean: + rm -f remove-potcdate.sed + rm -f stamp-poT + rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + rm -fr *.o + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES *.mo + +maintainer-clean: distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + rm -f stamp-po $(GMOFILES) + +distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) +dist distdir: + $(MAKE) update-po + @$(MAKE) dist2 +# This is a separate target because 'update-po' must be executed before. +dist2: stamp-po $(DISTFILES) + dists="$(DISTFILES)"; \ + if test "$(PACKAGE)" = "gettext-tools"; then \ + dists="$$dists Makevars.template"; \ + fi; \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + dists="$$dists $(DOMAIN).pot stamp-po"; \ + fi; \ + if test -f $(srcdir)/ChangeLog; then \ + dists="$$dists ChangeLog"; \ + fi; \ + for i in 0 1 2 3 4 5 6 7 8 9; do \ + if test -f $(srcdir)/ChangeLog.$$i; then \ + dists="$$dists ChangeLog.$$i"; \ + fi; \ + done; \ + if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ + for file in $$dists; do \ + if test -f $$file; then \ + cp -p $$file $(distdir) || exit 1; \ + else \ + cp -p $(srcdir)/$$file $(distdir) || exit 1; \ + fi; \ + done + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-gmo + +# General rule for creating PO files. + +.nop.po-create: + @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ + echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ + exit 1 + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-gmo: Makefile $(GMOFILES) + @: + +Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ + cd $(top_builddir) \ + && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ + $(SHELL) ./config.status + +force: + +# Tell versions [3.59,3.63) of GNU make not to export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/po/Makevars b/po/Makevars new file mode 100644 index 0000000..32692ab --- /dev/null +++ b/po/Makevars @@ -0,0 +1,41 @@ +# 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 = Free Software Foundation, Inc. + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = + +# 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 = diff --git a/po/Makevars.template b/po/Makevars.template new file mode 100644 index 0000000..32692ab --- /dev/null +++ b/po/Makevars.template @@ -0,0 +1,41 @@ +# 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 = Free Software Foundation, Inc. + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = + +# 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 = diff --git a/po/POTFILES.in b/po/POTFILES.in new file mode 100644 index 0000000..be6fd18 --- /dev/null +++ b/po/POTFILES.in @@ -0,0 +1,7 @@ +src/ipx_configure.c +src/ipx_interface.c +src/ipx_internal_net.c +src/ipx_route.c +src/ipx_cmd.c +tools/ipxdump.c +tools/ipxparse.c diff --git a/po/Rules-quot b/po/Rules-quot new file mode 100644 index 0000000..9c2a995 --- /dev/null +++ b/po/Rules-quot @@ -0,0 +1,47 @@ +# Special Makefile rules for English message catalogs with quotation marks. + +DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot + +.SUFFIXES: .insert-header .po-update-en + +en@quot.po-create: + $(MAKE) en@quot.po-update +en@boldquot.po-create: + $(MAKE) en@boldquot.po-update + +en@quot.po-update: en@quot.po-update-en +en@boldquot.po-update: en@boldquot.po-update-en + +.insert-header.po-update-en: + @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ + if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + ll=`echo $$lang | sed -e 's/@.*//'`; \ + LC_ALL=C; export LC_ALL; \ + cd $(srcdir); \ + if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "creation of $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +en@quot.insert-header: insert-header.sin + sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header + +en@boldquot.insert-header: insert-header.sin + sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header + +mostlyclean: mostlyclean-quot +mostlyclean-quot: + rm -f *.insert-header diff --git a/po/boldquot.sed b/po/boldquot.sed new file mode 100644 index 0000000..4b937aa --- /dev/null +++ b/po/boldquot.sed @@ -0,0 +1,10 @@ +s/"\([^"]*\)"/“\1”/g +s/`\([^`']*\)'/‘\1’/g +s/ '\([^`']*\)' / ‘\1’ /g +s/ '\([^`']*\)'$/ ‘\1’/g +s/^'\([^`']*\)' /‘\1’ /g +s/“”/""/g +s/“/“/g +s/”/”/g +s/‘/‘/g +s/’/’/g diff --git a/po/cat-id-tbl.c b/po/cat-id-tbl.c new file mode 100644 index 0000000..c5f0d46 --- /dev/null +++ b/po/cat-id-tbl.c @@ -0,0 +1,1264 @@ +/* Automatically generated by po2tbl.sed from ncpfs.pot. */ + +#if HAVE_CONFIG_H +# include +#endif + +#include "libgettext.h" + +const struct _msg_ent _msg_tbl[] = { + {"", 1}, + {"\ +Usage: %s --auto_primary=[on|off]\n\ +Usage: %s --auto_interface=[on|off]\n\ +Usage: %s --help\n\ +Usage: %s\n", 2}, + {"%s: socket: %s\n", 3}, + {"Probably you have no IPX support in your kernel\n", 4}, + {"%s: ioctl: %s\n", 5}, + {"\ +Auto Primary Select is %s\n\ +Auto Interface Create is %s\n", 6}, + {"ON", 7}, + {"OFF", 8}, + {"\ +Usage: %s add [-p] device frame_type [net_number[:node]]\n\ +Usage: %s del device frame_type\n\ +Usage: %s delall\n\ +Usage: %s check device frame_type\n", 9}, + {"%s: Frame type must be", 10}, + {" or ", 11}, + {"%s: Inappropriate network number %08lX\n", 12}, + {"%s: Primary network already selected.\n", 13}, + {"%s: Network number (%08X) already in use.\n", 14}, + {"%s: Invalid frame type (%s).\n", 15}, + {"%s: No such device (%s).\n", 16}, + {"%s: Requested device (%s) is down.\n", 17}, + {"%s: Invalid device (%s).\n", 18}, + {"%s: Insufficient memory to create interface.\n", 19}, + {"%s: Unable to open \"%s.\"\n", 20}, + {"%s: No such IPX interface %s %s.\n", 21}, + {"IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n", 22}, + {"\ +Usage: %s add net_number(hex) node(hex)\n\ +Usage: %s del\n", 23}, + {"%s: Invalid internal network address %s\n", 24}, + {"%s: Invalid internal network node %s\n", 25}, + {"%s: Node is invalid.\n", 26}, + {"%s: Insufficient memory to create internal net.\n", 27}, + {"%s: No internal network configured.\n", 28}, + {"\ +Usage: %s add network(hex) router_network(hex) router_node(hex)\n\ +Usage: %s del network(hex)\n", 29}, + {"%s: Invalid network number %s\n", 30}, + {"%s: Invalid router address %s\n", 31}, + {"%s: Invalid router node %s\n", 32}, + {"%s: Node (%s) is invalid.\n", 33}, + {"%s: Router network (%08X) not reachable.\n", 34}, + {"%s: Inappropriate network number %08lX.\n", 35}, + {"%s: Route not found for network %08lX.\n", 36}, + {"%s: Network %08lX is directly connected.\n", 37}, + {"ncp_request_error: %d\n", 38}, + {"Your password has expired\n", 39}, + {"Unable to NDS log-in (error %d [0x%04X]), trying bindery...\n", 40}, + {"Logging into %s as %s\n", 41}, + {"Password: ", 42}, + {"ncpfs: string too long: %s\n", 43}, + {"You have %d login attempts left\n", 44}, + {"Error in ncp_request\n", 45}, + {"Fragment too short\n", 46}, + {"Fragment too large, len=%d, max=%d\n", 47}, + {"Why next fragment?\n", 48}, + {"Fragmented\n", 49}, + {"InBufLen after request=%d, FirstReply=%d\n", 50}, + {"NDS error %d\n", 51}, + {"ncpfs: volume name too long: %d\n", 52}, + {"Ouch! Server didn't reply with same queue id in ncp_get_queue_length!\n", 53}, + {"\ +User %s not found in current context.\n\ +Trying server context...\n", 54}, + {"error %d logging in\n", 55}, + {"error %d authenticating\n", 56}, + {"Not enough memory", 57}, + {"Bad key passed to NWDS{Get|Set}Context", 58}, + {"Invalid context handle", 59}, + {"Buffer full", 60}, + {"Bad syntax", 61}, + {"Buffer empty", 62}, + {"Bad verb", 63}, + {"Expected identifier", 64}, + {"Attribute type expected", 65}, + {"Attribute type not expected", 66}, + {"Filter tree empty", 67}, + {"Invalid object name", 68}, + {"Expected RDN delimiter", 69}, + {"Too many tokens", 70}, + {"Inconsistent multiava", 71}, + {"Country name too long", 72}, + {"System error", 73}, + {"Invalid iteration handle", 74}, + {"Empty buffer passed to API", 75}, + {"Cannot create context", 76}, + {"Invalid server response", 77}, + {"NULL pointer seen", 78}, + {"No connection exists", 79}, + {"RDN too long", 80}, + {"Duplicate type", 81}, + {"Not logged in", 82}, + {"Invalid password characters", 83}, + {"Bad transport", 84}, + {"No such syntax", 85}, + {"Invalid DS name", 86}, + {"Required unicode translation not available", 87}, + {"DN too long", 88}, + {"Rename not allowed", 89}, + {"No such entry", 90}, + {"No such attribute", 91}, + {"Transport failure", 92}, + {"All referrals failed", 93}, + {"No referrals", 94}, + {"Remote failure", 95}, + {"Unreachable server", 96}, + {"Invalid request", 97}, + {"Crucial replica", 98}, + {"Time not synchronized", 99}, + {"Invalid password", 100}, + {"Alias of an alias", 101}, + {"Invalid API version", 102}, + {"Obsolete API", 103}, + {"Unknown NDS error", 104}, + {"Too many request/reply fragments", 105}, + {"Server reply too long", 106}, + {"Connection to specified server does not exist", 107}, + {"Invalid NCP packet length", 108}, + {"Invalid buffer length", 109}, + {"User name is not specified", 110}, + {"Invalid parameter", 111}, + {"Server not found", 112}, + {"Signature level conflict", 113}, + {"Invalid information level", 114}, + {"Unsupported transport type", 115}, + {"Unknown Requester error", 116}, + {"Connection limit count exceeded", 117}, + {"Unauthorized time", 118}, + {"Unauthorized station", 119}, + {"Account disabled", 120}, + {"Password really expired", 121}, + {"Password expired", 122}, + {"Member already exists", 123}, + {"NCP not supported", 124}, + {"Unknown server", 125}, + {"Invalid connection number", 126}, + {"Server failure", 127}, + {"Unknown Server error", 128}, + {"Unknown error %d (0x%X)", 129}, + {"Error: \"/proc/filesystems\" could not be read:", 130}, + {"Cannot get kernel release\n", 131}, + {"Cannot convert kernel release \"%s\" to number\n", 132}, + {"This kernel requires mount version %d which is not available\n", 133}, + {"could not create pipe: %s\n", 134}, + {"could not fork: %s\n", 135}, + {"\ +Remote directory is specified but kernel does not support subdir mounts\n", 136}, + {"\ +Remote directory is specified but ncpmount does not support subdir mounts\n", 137}, + {"Remounting not supported, sorry\n", 138}, + {"Timeout must be between 1 and 900 secs inclusive\n", 139}, + {"Retry count must be between 1 and 65536 inclusive\n", 140}, + {"owner parameter `%s' is not valid decimal number\n", 141}, + {"User `%s' does not exist on this machine\n", 142}, + {"uid parameter `%s' is not valid decimal number\n", 143}, + {"gid parameter `%s' is not valid decimal number\n", 144}, + {"Group `%s' does not exist on this machine\n", 145}, + {"Specified password is too long\n", 146}, + {"Specified server name `%s' is too long\n", 147}, + {"Specified tree name `%s' is too long\n", 148}, + {"Volume path `%s' is invalid: `%s'\n", 149}, + {"Volume name `%s' is too long\n", 150}, + {"NCP signature level must be number between 0 and 3. You specified %u\n", 151}, + {"NCP cache time to live must be less than 20000 ms. You specified %u\n", 152}, + {"File mode `%s' is not valid octal number\n", 153}, + {"Directory mode `%s' is not valid octal number\n", 154}, + {"I/O charset name `%s' is too long\n", 155}, + {"Codepage name `%s' is too long\n", 156}, + {"Value `%s' for option `%s' is not a number\n", 157}, + {"Ignoring unneeded value for option `%s'\n", 158}, + {"Required parameter for option `%s' missing\n", 159}, + {"Unknown option `%s', ignoring it\n", 160}, + {"%s must be installed suid root\n", 161}, + {"%s: out of memory\n", 162}, + {"Unknown namespace \"%s\"\n", 163}, + {"ncpfs version %s\n", 164}, + {"Both tree and server name were specified. It is not allowed.\n", 165}, + {"could not find mount point %s: %s\n", 166}, + {"cannot to mount on %s: %s\n", 167}, + {"Error: Unable to load ncpfs, exiting...\n", 168}, + {"in create context", 169}, + {"in tree search", 170}, + {"in nds login", 171}, + {"in volume search", 172}, + {"in find_conn_spec", 173}, + {"Get host address `%s': ", 174}, + {"Get host address `%s': Not AF_INET\n", 175}, + {"Get host address `%s': Bad address length\n", 176}, + {"\ +You already have mounted server %s\n\ +as user %s\n\ +on mount point %s\n", 177}, + {"when trying to find %s", 178}, + {"opening ncp_socket", 179}, + {"Invalid transport requested", 180}, + {"could not open wdog socket: %s\n", 181}, + {"\ +\n\ +No transport available\n", 182}, + {"\ +\n\ +bind: %s\n", 183}, + {"\ +\n\ +Maybe you want to use \n\ +ipx_configure --auto_interface=on --auto_primary=on\n\ +and try again after waiting a minute.\n\ +\n", 184}, + {"getsockname ncp socket", 185}, + {"bind(wdog_sock, ): %s\n", 186}, + {"could not open message socket: %s\n", 187}, + {"bind(message_sock, ): %s\n", 188}, + {"connect(ncp_fd, ): %s\n", 189}, + {"Unsupported mount protocol version %d\n", 190}, + {"in mount(2)", 191}, + {"attempt to open mount point", 192}, + {"\ +Your kernel does not support character mapping. You should upgrade to latest \ +version.\n", 193}, + {"Warning: Unable to load NLS charsets", 194}, + {"\ +Your kernel does not support filename caching. You should upgrade to latest \ +kernel version.\n", 195}, + {"Warning: Cannot enable filename caching: %s\n", 196}, + {"Unable to negotiate requested security level\n", 197}, + {"Packet signing is required, but is not supported by this ncpmount\n", 198}, + {"Login denied.\n", 199}, + {"in login", 200}, + {"Login denied\n", 201}, + {"Cannot access path \"%s\": %s\n", 202}, + {"Can't get %s~ lock file\n", 203}, + {"Can't open %s\n", 204}, + {"Can't write mount entry\n", 205}, + {"Can't set perms on %s\n", 206}, + {"Can't remove %s~\n", 207}, + {"usage: %s [options] mount-point\n", 208}, + {"Try `%s -h' for more information\n", 209}, + {"\ +\n\ +usage: %s [options] mount-point\n", 210}, + {"\ +\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-V volume Volume to mount, for NFS re-export\n\ +-u uid uid the mounted files get\n\ +-g gid gid the mounted files get\n\ +-f mode permission the files get (octal notation)\n\ +-d mode permission the dirs get (octal notation)\n\ +-c uid uid to identify the connection to mount on\n\ + Only makes sense for root\n\ +-t time_out Waiting time (in 1/100s) to wait for\n\ + an answer from the server. Default: 60\n\ +-r retry_count Number of retry attempts. Default: 5\n\ +-C Don't convert password to uppercase\n\ +-P password Use this password\n\ +-n Do not use any password\n\ + If neither -P nor -n are given, you are\n\ + asked for a password.\n\ +-s Enable renaming/deletion of read-only files\n\ +-h print this help text\n\ +-v print ncpfs version number\n\ +%s%s-m Allow multiple logins to server\n\ +-N os2,nfs Do not use specified namespaces on mounted volume\n\ +-y charset character set used for input and display\n\ +-p codepage codepage used on volume, including letters `cp'\n\ +\n", 211}, + {"-b Force bindery login to NDS servers\n", 212}, + {"\ +-i level Signature level, 0=never, 1=supported, 2=preferred, \ +3=required\n", 213}, + {"usage: %s mount-point\n", 214}, + {"Could not open %s: %s\n", 215}, + {"%s probably not ncp-filesystem\n", 216}, + {"You are not allowed to umount %s\n", 217}, + {"Invalid mount point: %s\n", 218}, + {"Could not umount %s: %s\n", 219}, + {"Can't get %s~ lock file", 220}, + {"Can't open %s: %s\n", 221}, + {"Error changing mode of %s: %s\n", 222}, + {"Cannot rename %s to %s: %s\n", 223}, + {"Can't remove %s~", 224}, + {"usage: %s [server]\n", 225}, + {"\ +\n\ +usage: %s [server]\n", 226}, + {"\ +\n\ +-t Server type, default: File server\n\ +-a server is in form ::\n\ +-h Print this help text\n\ +\n", 227}, + {"server name too long", 228}, + {"when trying to find server", 229}, + {"Tree name `%s' is too long\n", 230}, + {"context name `%s' is too long\n", 231}, + {"could not autocreate mount point %s: %s\n", 232}, + {"cannot mount on %s: %s\n", 233}, + {"%s:could not open wdog socket: %s\n", 234}, + {"usage: %s [options]\n", 235}, + {"\ +\n\ +usage: %s [options]\n", 236}, + {"\ +\n\ +%s-T tree Tree name to be used\n\ +-S server Server name to be used\n\ + these two options are exclusive\n", 237}, + {" mount_point is optional if -a option specified\n", 238}, + {"\ +\n\ +-U username Username sent to server\n\ +-u uid uid the mounted files get\n\ +-g gid gid the mounted files get\n\ +-c uid uid to identify the connection to mount on\n\ + Only makes sense for root\n\ +-C Don't convert password to uppercase\n\ +-P password Use this password\n\ +-n Do not use any password\n\ + If neither -P nor -n are given, you are\n\ + asked for a password.\n", 239}, + {"\ +\n\ +-V volume Volume to mount\n\ + must be in bindery format if -S server\n\ + or in NDS format if -T tree\n\ +%s", 240}, + {"-R path Path in volume to 'map root'\n", 241}, + {"\ +\n\ +-f mode permission the files get (octal notation)\n\ +-d mode permission the dirs get (octal notation)\n\ +-t time_out Waiting time (in 1/100s) to wait for\n\ + an answer from the server. Default: 60\n\ +-r retry_count Number of retry attempts. Default: 5\n\ +-s Enable renaming/deletion of read-only files\n\ +-h print this help text\n\ +-v print ncpfs version number\n\ +%s-N os2,nfs Do not use specified namespaces on mounted volume\n\ +-y charset character set used for input and display\n\ +-p codepage codepage used on volume, including letters `cp'\n\ +-B bcast Broadcast mode =0 all 1= console 0= none (default=all)\n\ +%s\n", 242}, + {"\ +-a Autocreate mounting point if needed in ~/ncp/SERVER/VOLUME\n", 243}, + {"usage: %s [options] \n", 244}, + {"\ +\n\ +usage: %s [options] \n", 245}, + {"\ +\n\ +-h Print this help text\n\ +-a all my connections (NDS and Bindery) \n\ +-S servername all connections (NDS and/or Bindery) to that server\n\ +-T treename all NDS connections to that tree\n\ +-g all connections to Netware for all users!\n\ + only root can use this flag\n\ +\n", 246}, + {"type '%s -h' for help\n", 247}, + {"\ +\n\ +Probe an interface for ipx networks\n\ +\n", 248}, + {"\ +\n\ +-v Verbose output\n\ +-i interface Interface to probe, default: eth0\n\ +-t timeout Seconds to wait for answer, default: 3\n\ +-h Print this help text\n\ +\n", 249}, + {"probing %s on %s -- ", 250}, + {"%s: socket", 251}, + {"%s: Could not find socket address\n", 252}, + {"%s: could not delete interface\n", 253}, + {"no network found\n", 254}, + {"found IPX network %8.8lX\n", 255}, + {"%s: ioctl", 256}, + {"%s must be run with no interfaces configured. Found %d interface%s.\n", 257}, + {"%s: %s\n", 258}, + {"%s %8.8lX\n", 259}, + {"usage: %s [-V]\n", 260}, + {" %s [-vmMnppt] [-s amt] sourcefile destinationfile|directory\n", 261}, + {" %s [-vmMnppt] [-s amt] sourcefile [...] directory\n", 262}, + {" %s [-vmMnppt] [-s amt] -r sourcedir directory\n", 263}, + {"not a directory", 264}, + {"%s: -s option requires positive numeric argument > 0\n", 265}, + {"%s: No arguments specified.\n", 266}, + {"%s: No destination specified.\n", 267}, + {"%s: %s: %s\n", 268}, + {"Cannot convert ID %08X to name: %s\n", 269}, + {"Cannot convert name %s(%04X) to ID: %s\n", 270}, + {"%s: %s -> %s %5.1f%%", 271}, + {"%s: %s -> %s %lld", 272}, + {"%s: Cannot read %s\n", 273}, + {"%s: Cannot write %s\n", 274}, + {" %d retries", 275}, + {"%s: Unable to open source file: %s\n", 276}, + {"%s: Unable to stat source file: %s\n", 277}, + {"%s: Unable to open output file: %s\n", 278}, + {"%s: Unable to stat destination file: %s\n", 279}, + {"%s: Unable to open destination file: %s\n", 280}, + {"NetWare copy", 281}, + {"%s: Close failed for %s\n", 282}, + {"MAC namespace is not supported on source %s: %s\n", 283}, + {"Unable to open MAC resource fork on source %s: %s\n", 284}, + {"MAC namespace is not supported on destination %s: %s\n", 285}, + {"Unable to create MAC resource fork on destination %s: %s\n", 286}, + {"\ +Unable to copy MAC resource fork of %s because of %s does not support \ +resource forks\n", 287}, + {"Unable to copy MAC resource fork: %s: %s\n", 288}, + {"NetWare copy (resource fork)", 289}, + {"Cannot set trustees on %s because of %s\n", 290}, + {"not NetWare filesystem", 291}, + {"Cannot set file attributes on %s because of %s\n", 292}, + {"\ +Param Src '%s'\n\ +Param Dest '%s'\n", 293}, + {"%s: Cannot open %s, %s\n", 294}, + {"%s: Cannot stat %s, %s\n", 295}, + {"%s: Cannot chmod %s: %s\n", 296}, + {"%s: Cannot create %s: %s\n", 297}, + {"%s: Cannot read %s: %s\n", 298}, + {"%s: %s: omitting directory\n", 299}, + {"%s: Cannot create %s, %s\n", 300}, + {"%s: Reset to ignore SIGHUP signal failed: %s", 301}, + {"%s: Reset to ignore SIGINT signal failed: %s", 302}, + {"%s: Reset to ignore SIGQUIT signal failed: %s", 303}, + {"%s: Reset to ignore SIGTERM signal failed: %s", 304}, + {"%s: unclean close of output file", 305}, + {"%s: Get HANGUP signal action failed: %s", 306}, + {"%s: Reset HANGUP signal action failed: %s", 307}, + {"%s: Get INTERRUPT signal action failed: %s", 308}, + {"%s: Reset INTERRUPT signal action failed: %s", 309}, + {"%s: Get QUIT signal action failed: %s", 310}, + {"%s: Reset QUIT signal action failed: %s", 311}, + {"%s: Get TERMINATE signal action failed: %s", 312}, + {"%s: Reset TERMINATE signal action failed: %s", 313}, + {"%s version %s\n", 314}, + {"\ +\n\ +test_create:\n", 315}, + {"Volume %s not found! error %ld.\n", 316}, + {"lookup public error\n", 317}, + {"alloc_dir_handle error\n", 318}, + {"create error\n", 319}, + {"dealloc error\n", 320}, + {"test_create: Passed.\n", 321}, + {"\ +\n\ +test_readdir:\n", 322}, + {"lookup blub error\n", 323}, + {"init error\n", 324}, + {"\tfound\t\t: %s\n", 325}, + {"\tnfs name\t: %s\n", 326}, + {"\tos2 name\t: %s\n", 327}, + {"path translation error\n", 328}, + {"Search in subdir '", 329}, + {"' on volume '%s'\n", 330}, + {"init search2 error\n", 331}, + {"\tfound %s\t: %s\n", 332}, + {"test_readdir: Passed.\n", 333}, + {"\ +\n\ +test_rights:\n", 334}, + {"lookup me error\n", 335}, + {"get sys rights error\n", 336}, + {"%s right: %4.4x\n", 337}, + {"get me rights error\n", 338}, + {"me right: %4.4x\n", 339}, + {"test_rights: Passed.\n", 340}, + {"usage: %s [options] pattern\n", 341}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-v volume volume name\n\ +\n", 342}, + {"in ncp_initialize", 343}, + {"when initializing connection", 344}, + {"No Description", 345}, + {"invalid line number: %s\n", 346}, + {"invalid row number: %s\n", 347}, + {"invalid copies: %s\n", 348}, + {"invalid tab size: %s\n", 349}, + {"invalid form number: %s\n", 350}, + {"queue name too long: %s\n", 351}, + {"could not open file", 352}, + {"could not find queue %s\n", 353}, + {"close error\n", 354}, + {"usage: %s [options] file\n", 355}, + {"\ +\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +-q queue name Name of the printing queue to use\n\ +-d job desc Job description\n\ +-p pathname Pathname to appear on banner (up to 79 chars)\n\ +-B username Username to appear on banner (up to 12 chars)\n\ +-f filename Filename to appear on banner (up to 12 chars)\n\ +-s Supress banner page\n\ +-l lines Number of lines per page\n\ +-r rows Number of rows per page\n\ +-t tab Number of spaces per tab\n\ +-T Print server tab expantion\n\ +-N Surpress print server form feeds\n\ +-F form # Form number to print on\n\ +-h print this help text\n\ +\n", 356}, + {"Unable to send message to %s/%s: %s\n", 357}, + {"Illegal station number", 358}, + {"Client not logged in", 359}, + {"Client not accepting messages", 360}, + {"Client already has message", 361}, + {"Message was not sent to %s/%s (station %d): %s\n", 362}, + {"Message sent to %s/%s (station %d)\n", 363}, + {"Unable to get connection list for %s: %s\n", 364}, + {"No connection found for %s/%s\n", 365}, + {"usage: %s [options] [user|group] message\n", 366}, + {"\ +\n\ +-h Prints this help text\n\ +-S server Server name to be used\n\ +-U user Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Do not convert password to uppercase\n\ +\n\ +-o object_name Recipient name\n\ +-t object_type Recipient type (default=any)\n\ +-c connid Recipient connection number\n\ +-i object_ID Recipient object ID\n\ +-a Do not prepend 'From xxx[x]:' to message\n\ +\n", 367}, + {"when initializing", 368}, + {"%s: multiple -%c are not allowed\n", 369}, + {"%s: -%c cannot be used together with -%c\n", 370}, + {"From %s[%d]: %s", 371}, + {"%s: Unable to get connection list for %08X: %s\n", 372}, + {"No connection found for %s/%08X\n", 373}, + {"%s: Cannot convert member ID 0x%08lX to name: %s\n", 374}, + {"%s: Cannot read members of group %s: %s\n", 375}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-t type Object type (decimal value)\n\ +-P password User password\n\ +-b Bindery only mode\n\ +\n", 376}, + {"Password too long\n", 377}, + {"Enter password: ", 378}, + {"when trying to open connection", 379}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-o object_name Name of created object\n\ +-t type Object type (decimal value)\n\ +-r read-flag Read security\n\ +-w write-flag Write security\n\ +\n", 380}, + {"\ +%s: Wrong read security\n\ +Must be one of anyone, logged, object, supervisor or netware\n", 381}, + {"\ +%s: Wrong write security\n\ +Must be one of anyone, logged, object, supervisor or netware\n", 382}, + {"%s: You must specify an object type\n", 383}, + {"%s: You must specify an object name\n", 384}, + {"%s: Could not create the object\n", 385}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-t type Object type to be listed (decimal)\n\ +-o object Object pattern\n\ +-v Verbose listing\n\ +-a Alternative output format\n\ +-d Show object type in decimal\n\ +\n", 386}, + {"%s: %s is not on ncpfs filesystem\n", 387}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-o object_name Name of object inspected\n\ +-t type Object type (decimal value)\n\ +-v Verbose listing\n\ +\n", 388}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-o object_name Name of object to be removed\n\ +-t type Object type (decimal value)\n\ +\n", 389}, + {"%s: Could not delete the object\n", 390}, + {"\ +\n\ +usage: %s [options] [values]\n", 391}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-o object_name Name of accessed object\n\ +-t type Object type (decimal value)\n\ +-p property Name of property to be touched\n\ +value value to be added\n\ +\n\ +If property is of type SET, value is an object id (hex)\n\ +Otherwise, value is either a string value to be written, or\n\ +a count of bytes to be written. The latter is assumed if\n\ +more than one value argument is given. The count is decimal,\n\ +and the following arguments are interpreted as bytes in\n\ +hexadecimal notation.\n\ +\n", 392}, + {"%s: Property Name too long\n", 393}, + {"%s: You must specify a property name\n", 394}, + {"%s: You must specify a property value\n", 395}, + {"%s: Could not find property\n", 396}, + {"%s: For the SET property %s, you must specify an object id as value\n", 397}, + {"%s: %s is not a valid object id\n", 398}, + {"%s: could not add object %s\n", 399}, + {"%s: Value too long\n", 400}, + {"%s: Byte count does not match number of bytes\n", 401}, + {"%s: Could not write property\n", 402}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-o object_name Name of object\n\ +-t type Object type (decimal value)\n\ +-p property Name of property to be created\n\ +-s Property is SET, default: ITEM\n\ +-r read-flag Read security\n\ +-w write-flag Write security\n\ +\n", 403}, + {"%s: Could not create the property\n", 404}, + {"usage: %s [options] [pattern]\n", 405}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-o object_name Name of object\n\ +-t type Object type (decimal value)\n\ +-p property Name of property to be deleted\n\ +\n", 406}, + {"%s: Could not delete the property\n", 407}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n", 408}, + {"Illegal format on stdin\n", 409}, + {"Tried to write %s property\n", 410}, + {"SET over existing ITEM", 411}, + {"ITEM over existing SET", 412}, + {"Could not change property security\n", 413}, + {"Could not create property\n", 414}, + {"Could not write property\n", 415}, + {"Could not add object to set\n", 416}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-o object_name Name of object\n\ +-t type Object type (decimal value)\n\ +-p property Name of property to be listed\n\ +-v Verbose object listing\n\ +-c Canonical output, for use with nwbpadd\n\ +\n", 417}, + {"%s: %s is not ncpfs file or directory\n", 418}, + {"Last Login: %x, %X", 419}, + {"Never logged in\n", 420}, + {" --- Account disabled ---\n", 421}, + {"Account expires on: %x", 422}, + {"Password expires on: %x", 423}, + {"\ +GraceLogins left: %d\n\ +of max. : %d\n", 424}, + {"PasswortChangeInterval : %d days\n", 425}, + {"New password must be different when changing\n", 426}, + {"User is not allowed to change password\n", 427}, + {"Minimal password length : %d\n", 428}, + {"Maximum no of connections: %d\n", 429}, + {"Maximum DiskQuota : %8d blocks\n", 430}, + {"Failed Logins: %5d\n", 431}, + {"Account disabled still %8d seconds\n", 432}, + {"Last 'intruder' address: %s\n", 433}, + {"RestrictionMask : %02X\n", 434}, + {"Time restrictions: 1 1 1 1 1 1 1 1 1 1 2 2 2 2 ]\n", 435}, + {" Day [0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 ]\n", 436}, + {"Segment: %03d\n", 437}, + {"Nobody", 438}, + {"Unknown:N/A", 439}, + {"User:", 440}, + {"Group:", 441}, + {"FileServer:", 442}, + {"Unknown(%04X):", 443}, + {"never", 444}, + {"\ +Extended attributes: %u attributes\n\ + %u bytes in keys, %u bytes in data\n", 445}, + {"\ + Key %u:\n\ + Name: %s\n\ + Access Flag: 0x%08X\n\ + Value Length: %u\n", 446}, + {" Cannot determine file size: %s\n", 447}, + {" File size: %10Lu", 448}, + {" (allocated %Lu)", 449}, + {" No datastream exist\n", 450}, + {" Stream %3u size: %10Lu", 451}, + {"Cannot retrieve file attributes: %s\n", 452}, + {"Cannot retrieve file number: %s\n", 453}, + {"Cannot retrieve file name: %s\n", 454}, + {"Directory:\n", 455}, + {"File:\n", 456}, + {" DOS: ", 457}, + {" OS/2: ", 458}, + {" NFS: ", 459}, + {" MAC: ", 460}, + {"Rights:\n", 461}, + {" Inherited: ", 462}, + {"Cannot determine: %s\n", 463}, + {" Effective: ", 464}, + {"Owning namespace: ", 465}, + {"Miscellaneous NetWare Information:\n", 466}, + {" Last update: ", 467}, + {" Last archived: ", 468}, + {" Last accessed: ", 469}, + {" Created/Copied: ", 470}, + {" Flags: [%s%s%s%s]", 471}, + {"Trustees:\n", 472}, + {"File Usage:\n", 473}, + {"\ + Use Count: %5u Open Count: %5u\n\ + Open For Reading Count: %5u Open For Writting Count: %5u\n\ + Deny Read Count: %5u Deny Write Count: %5u\n\ + Locked: %-15s Fork Count: %5u\n", 474}, + {" Connection Count: %10u\n", 475}, + {" Connection: %u/%u", 476}, + {", ", 477}, + {"locked", 478}, + {"open shareable", 479}, + {"logged", 480}, + {"open normal", 481}, + {"rsvd", 482}, + {"TTS locked", 483}, + {"TTS", 484}, + {"read", 485}, + {"write", 486}, + {"deny read", 487}, + {"deny write", 488}, + {"detached", 489}, + {"TTS holding detach", 490}, + {"TTS holding open", 491}, + {"unlocked", 492}, + {"Not locked", 493}, + {"Locked by a file lock", 494}, + {"Locked by Begin Share File Set", 495}, + {"Unknown lock state", 496}, + {" Lock: (%02X) %s\n", 497}, + {" (%02X) %s\n", 498}, + {" Access: (%02X) %s\n", 499}, + {" Lock: %s\n", 500}, + {" %s\n", 501}, + {" Access: %s\n", 502}, + {"File Physical Locks:\n", 503}, + {" Range: 0x%08LX-0x%08LX\n", 504}, + {"Unable to begin scandir: 0x%04X\n", 505}, + {"Unexpected error in NextDir: %s\n", 506}, + {"\ +nwdir [options] [path]\n\ +\n\ + -d List information about directory itself instead\n\ + of directory content\n\ + -l List namespace informations\n\ + -e List extended attributes informations\n\ + -v Verbose listing\n\ + -f List connections using file\n\ + -p List physical locks on file\n\ + -t Technical - show values and their meaning\n\ + -h This help\n\ + path Path to list, may contain wildcards\n\ +\n\ +(c) 1998 Milan Vandrovec for ncpfs-2.0.12.8\n", 507}, + {"Unable to initialize: 0x%04X\n", 508}, + {"Invalid path: %s\n", 509}, + {"Specified path is not remote\n", 510}, + {"Directory %s\n", 511}, + {"Path does not exist: 0x%04X\n", 512}, + {"Cannot retrieve info: %s\n", 513}, + {"\ +\n\ +usage: %s [options] [ncp filesystem]\n", 514}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-o object_name Object name to be converted to ID\n\ +-q objectID Object ID to convert to name\n\ +-c context Base context name (use/return abbreviated names)\n\ +\n", 515}, + {"\ +\n\ +usage: %s [options] command\n", 516}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +-p path Permanent connection to server to be used\n\ +\n\ +command is one of:\n\ +load XXX load module XXX\n\ +unload XXX unload module XXX\n\ +mount XXX mount volume XXX\n\ +dismount XXX dismount volume XXX\n\ +down [force] down fileserver\n\ +open bindery open bindery\n\ +close bindery close bindery\n\ +disable login disable login to fileserver\n\ +enable login enable login to fileserver\n\ +disable tts disable TTS\n\ +enable tts enable TTS\n\ +set XXX=YYY set server variable XXX to value YYY\n\ +clear station XXX log-outs specified connection\n\ +XXX try execute XXX as .NCF file\n\ +\n\ +Warning: If you do not have sufficient priviledge level,\n\ + some of commands (load, unload, mount, dismount,\n\ + set, run .NCF) will emit server console broadcast\n\ + to all conected users!\n\ +\n", 517}, + {"%s: \"%s\" what?\n", 518}, + {"%s: Unable to load `%s', error 0x%04X (%u)\n", 519}, + {"%s: Unable to unload `%s', error 0x%04X (%u)\n", 520}, + {"%s: Unable to mount `%s', error 0x%04X (%u)\n", 521}, + {"Volume `%s' was mounted as #%u\n", 522}, + {"%s: Unable to dismount `%s', error 0x%04X (%u)\n", 523}, + {"%s: Unable to down file server, error 0x%04X (%u)\n", 524}, + {"%s: Unable to execute `%s', error 0x%04X (%u)\n", 525}, + {"%s: Syntax error in `set' command\n", 526}, + {"%s: Unable to set variable `%s' to value `%s', error 0x%04X (%u)\n", 527}, + {"%s: Unable to %s file server login, error 0x%04X (%u)\n", 528}, + {"enable", 529}, + {"disable", 530}, + {"%s: Unable to %s TTS, error 0x%04X (%u)\n", 531}, + {"%s: Warning: Bindery cannot be closed by temporary connection\n", 532}, + {"%s: Unable to %s bindery, error 0x%04X (%u)\n", 533}, + {"open", 534}, + {"close", 535}, + {"%s: Unable to clear station %u, error 0x%04X (%u)\n", 536}, + {"%s: `%.*s' is not a number, skipping\n", 537}, + {"%s: What is `%s'?\n", 538}, + {"-p and -S are incompatible\n", 539}, + {"%s: %s is not Netware directory/file\n", 540}, + {"%s: You must specify connection to server\n", 541}, + {"Compatibility option entered, rest of commandline ignored\n", 542}, + {"%s: Out of memory!\n", 543}, + {"%s: Missing command\n", 544}, + {"usage: %s [pattern]\n", 545}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +\n\ +-d Print Description Strings\n\ +-t Print File Server's time\n\ +-i Print File Server Information\n\ +-e List Server's NCP Extensions\n\ +\n", 546}, + {"\ +\n\ +Fileservername %-48.48s\n\ +\n", 547}, + {"Version %d.%d Revision %c\n", 548}, + {"Max. Connections %d\n", 549}, + {"currently in use %d\n", 550}, + {"peak connections %d\n", 551}, + {"Max. Volumes %d\n", 552}, + {"SFTLevel %d\n", 553}, + {"TTSLevel %d\n", 554}, + {"Accountversion %d\n", 555}, + {"Queueversion %d\n", 556}, + {"Printversion %d\n", 557}, + {"Virt.Consolvers. %d\n", 558}, + {"RestrictionLevel %d\n", 559}, + {"could not get strings", 560}, + {"could not get server time", 561}, + {"Could not get server information", 562}, + {"\ +Installed NCP Extensions:\n\ + Name Number Version\n\ + -------------------------------------------------------\n", 563}, + {" %-33s %08X %u.%u.%u\n", 564}, + {"No NCP Extensions registered\n", 565}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-a Be more accurate about reading the time\n\ +-g Update local time from file server\n\ +-s Set file server's time from local time\n\ +\n", 566}, + {"when setting file server time", 567}, + {"when getting file server time", 568}, + {"\ +\n\ +usage: %s [options] file/directory\n", 569}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-o object_name Name of object added as trustee\n\ +-t type Object type (decimal value)\n\ +-r rights Rights mask (see manual page)\n\ +\n\ +directory\n\ +\n", 570}, + {"%s: You must give a valid rights string\n", 571}, + {"%s: You must specify a rights mask\n", 572}, + {"%s: You must specify a directory\n", 573}, + {"%s: Could not find directory %s\n", 574}, + {"%s: Could not find object %s: %s\n", 575}, + {"%s: Invalid path: %s\n", 576}, + {"%s: Could not add trustee rights: %s\n", 577}, + {"in ncp_open_mount", 578}, + {"%s: could not get broadcast message\n", 579}, + {"no message", 580}, + {"message: %s", 581}, + {"%s: could not ioctl on connection: %s\n", 582}, + {"%s: user %d not known\n", 583}, + {"%s: can't open %s\n", 584}, + {"cannot find mtab entry\n", 585}, + {"%s: cannot open %s: %s\n", 586}, + {"\ +\r\n\ +Message from NetWare Server: %s\r\n", 587}, + {"%s\r\n", 588}, + {"write: %s: %s\n", 589}, + {"utmp", 590}, + {"nwmsg: %s is not logged in\n", 591}, + {"nwmsg: %s ignores messages\n", 592}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-O objectname Object name to change, default username\n\ +-t type Object type (decimal value)\n\ +\n", 593}, + {"trying to find server", 594}, + {"Changing password for user %s on server %s\n", 595}, + {"Enter old password: ", 596}, + {"Enter password for %s: ", 597}, + {"Enter new password: ", 598}, + {"Re-Enter new password: ", 599}, + {"You mistype the new password, try again\n", 600}, + {"not own password", 601}, + {"trying to change password", 602}, + {"\ +usage: nwpurge [options] [directory]\n\ +\n\ +-h Print this help text\n\ +-a Purge files in subdirectories\n\ +-l Do not purge files\n\ +-s Silent mode\n\ +\n\ +directory Directory to purge\n\ +\n", 603}, + {"%8s-- failed (%s)\n", 604}, + {"Unexpected option `-%c'\n", 605}, + {"when retrieving root entry", 606}, + {"No files were purged from server.\n", 607}, + {"1 file was purged from server.\n", 608}, + {"%d files were purged from server.\n", 609}, + {"1 file was not purged due to error.\n", 610}, + {"%d files were not purged due to errors.\n", 611}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-o object_name Name of object removed as trustee\n\ +-t type Object type (decimal value)\n\ +\n\ +file/directory\n\ +\n", 612}, + {"%s: Could not remove trustee rights: %s\n", 613}, + {"\ +\n\ +-h Print this help text\n\ +\n\ +file/directory\n\ +\n", 614}, + {"when finding rights", 615}, + {"Your effective rights for %s are: %s\n", 616}, + {"(S): You have SUPERVISOR rights\n", 617}, + {"(R): You may READ from files\n", 618}, + {"(W): You may WRITE to files\n", 619}, + {"(C): You may CREATE files\n", 620}, + {"(E): You may ERASE files\n", 621}, + {"(M): You may MODIFY directory\n", 622}, + {"(F): You may SCAN for files\n", 623}, + {"(A): You may change ACCESS control\n", 624}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-l volumeid Volume id to be searched\n\ +-L volname Volume name instead of id\n\ +-O objectid Object id\n\ +-o objname Object name ( type must be specified )\n\ +-t type Object type\n\ +-v Verbose listing\n\ +\n", 625}, + {"usage: %s [options] [file/directory...]\n", 626}, + {"\ +\n\ +usage: %s [options] [file/directory...]\n", 627}, + {"\ +\n\ +-v Verbose\n\ +\n\ +file/directory List of files to scan for trustees\n\ +\n", 628}, + {"%s: Could not find directory %s: %s\n", 629}, + {"%s: Could not find Netware information about directory %s: %s\n", 630}, + {"Trustee scan failed, %s\n", 631}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-a Print Station's addr\n\ +-q Print object ID\n\ +-f List open files\n\ +-ft Print raw information about open files\n\ +-fd Print detailed information about each open file\n\ +-fD Print DOS filename\n\ +-s List open semaphores\n\ +\n", 632}, + {"\ +\n\ +%-6s%-21s%-12s\n\ +---------------------------------------------------\n", 633}, + {"Conn", 634}, + {"User name", 635}, + {"Login time", 636}, + {"\ +\n\ +%-6s%-21s%-27s%-12s\n\ +-----------------------------------------------------------------------------\ +-\n", 637}, + {"Station Address", 638}, + {"\ +\n\ +%-6s%-9s%-21s%-12s\n\ +------------------------------------------------------------\n", 639}, + {"ObjectID", 640}, + {"\ +\n\ +%-6s%-9s%-21s%-27s%-12s\n\ +-----------------------------------------------------------------------------\ +----------\n", 641}, + {"%4d: %08X %-20s ", 642}, + {"%4d: %-20s ", 643}, + {"Unknown format", 644}, + {" File: (%02X:%08X) %s\n", 645}, + {" File: %s\n", 646}, + {" Task: %-5u Lock: (%02X) %s\n", 647}, + {" Fork count: %-3u (%02X) %s\n", 648}, + {" Namespace: (%02X) %-5s Access: (%02X) %s\n", 649}, + {" Task: %-5u Lock: %s\n", 650}, + {" Fork count: %-3u %s\n", 651}, + {" Namespace: %-5s Access: %s\n", 652}, + {" Semaphore: %s\n", 653}, + {" Task: %-5u Value: %-5d Open Count: %-5u\n", 654}, + {"\ +\n\ +-h Print this help text\n\ +-S server Server name to be used\n\ +-U username Username sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +\n\ +-v volume volume name\n\ +-N Numeric format\n\ +\n", 655}, + {"%s: Volume %s does not exist\n", 656}, + {"%s: Unable to get volume information\n", 657}, + {"Total : %dK\n", 658}, + {"Free : %dK\n", 659}, + {"Purgable : %dK\n", 660}, + {"No Purg. : %dK\n", 661}, + {"Dirs : %d\n", 662}, + {"Free dirs: %d\n", 663}, + {"\ +\n\ +Server: Unknown (%s)\n", 664}, + {"\ +\n\ +Server: %s\n", 665}, + {"Print queue name", 666}, + {"Queue ID", 667}, + {"No queues found\n", 668}, + {"usage: %s [ ...]\n", 669}, + {"Queue \"%s\" on server %s not found.\n", 670}, + {"Cannot parse \"%s\" - jobID must be hexadecimal number\n", 671}, + {"Job %08X does not exist\n", 672}, + {"You have not rights to cancel job %08X\n", 673}, + {"Cannot cancel job %08X: %s\n", 674}, + {"usage: %s []\n", 675}, + {"\ +\n\ +Server: %s\tQueue: %s\tQueue ID: %8.8X\n", 676}, + {"\ + %5s %-12s %-32s %-7s %-4s %-8s\n\ +-----------------------------------------------------------------------------\ +--\n", 677}, + {"Seq", 678}, + {"Name", 679}, + {"Description", 680}, + {"Status", 681}, + {"Form", 682}, + {"Job ID", 683}, + {"You have insufficient rights to list queue jobs\n", 684}, + {": cannot get queue length", 685}, + {"Error getting queue jobs ids: %ld\n", 686}, + {"", 687}, + {"Held", 688}, + {"Adding", 689}, + {"Active", 690}, + {"Ready", 691}, + {"Waiting", 692}, + {" %5d %-12s %-32.32s %-7s %4d %08X\n", 693}, + {"\ +\n\ +-S server Server name to be used\n\ +-U username Print Server name sent to server\n\ +-P password Use this password\n\ +-n Do not use any password\n\ +-C Don't convert password to uppercase\n\ +-q queue name Name of the printing queue to use\n\ +-c command Name of print command, default: 'lpr'\n\ +-j job type Type of job (Form number) to service\n\ +-t timeout Polling interval, default: 30 sec\n\ +-d Debug: don't daemonize\n\ +-h print this help text\n\ +\n", 694}, + {"You must specify a queue\n", 695}, + {"Queue %s not found: %s\n", 696}, + {"Could not attach to queue %s: %s\n", 697}, + {"pipe error: %m", 698}, + {"fork error: %m", 699}, + {"waitpid: %m\n", 700}, + {"dup2 error: %m\n", 701}, + {"exec error: %m\n", 702}, + {"in ncp_open", 703}, + {"Known NetWare File Servers", 704}, + {"Network", 705}, + {"Node Address", 706}, + {"No servers found\n", 707}, +}; + +int _msg_tbl_length = 707; diff --git a/po/cs.gmo b/po/cs.gmo new file mode 100644 index 0000000..f5e4e68 Binary files /dev/null and b/po/cs.gmo differ diff --git a/po/cs.po b/po/cs.po new file mode 100644 index 0000000..3c1e8ef --- /dev/null +++ b/po/cs.po @@ -0,0 +1,293 @@ +# translation of cs.po to cs_CZ +# Czech messages for ncpfs. +# Copyright (C) 2004 Free Software Foundation, Inc. +# Petr Vandrovec , 1999. +# Klara Cihlarova , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: ipx-utils 1.2 +" +"Report-Msgid-Bugs-To: mario.fetka@disconnected-by-peer.at\n" +"POT-Creation-Date: 2026-04-29 19:33+0200\n" +"PO-Revision-Date: 2004-12-10 09:26+0100\n" +"Last-Translator: Klara Cihlarova \n" +"Language-Team: cs_CZ \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9\n" + +#: src/ipx_configure.c:39 +#, c-format +msgid "" +"Usage: %s --auto_primary=[on|off]\n" +"Usage: %s --auto_interface=[on|off]\n" +"Usage: %s --help\n" +"Usage: %s\n" +msgstr "" +"Použití: %s --auto_primary=[on|off]\n" +"Použití: %s --auto_interface=[on|off]\n" +"Použití: %s --help\n" +"Použití: %s\n" + +#: src/ipx_configure.c:89 src/ipx_interface.c:154 src/ipx_interface.c:233 +#: src/ipx_interface.c:330 src/ipx_interface.c:389 src/ipx_internal_net.c:80 +#: src/ipx_internal_net.c:138 src/ipx_route.c:103 src/ipx_route.c:169 +#, c-format +msgid "%s: socket: %s\n" +msgstr "%s: soket: %s\n" + +#: src/ipx_configure.c:92 src/ipx_interface.c:158 +#, c-format +msgid "Probably you have no IPX support in your kernel\n" +msgstr "Asi nemáte podporu IPX v jádře\n" + +#: src/ipx_configure.c:120 src/ipx_configure.c:143 src/ipx_configure.c:156 +#: src/ipx_interface.c:209 src/ipx_interface.c:295 src/ipx_interface.c:357 +#: src/ipx_interface.c:422 src/ipx_internal_net.c:114 +#: src/ipx_internal_net.c:155 src/ipx_route.c:127 src/ipx_route.c:189 +#, c-format +msgid "%s: ioctl: %s\n" +msgstr "%s: ioctl: %s\n" + +#: src/ipx_configure.c:162 +#, c-format +msgid "" +"Auto Primary Select is %s\n" +"Auto Interface Create is %s\n" +msgstr "" +"Auto Primary Select je %s\n" +"Auto Interface Create je %s\n" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "ON" +msgstr "zapnuto" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "OFF" +msgstr "vypnuto" + +#: src/ipx_interface.c:31 +#, c-format +msgid "" +"Usage: %s add [-p] device frame_type [net_number[:node]]\n" +"Usage: %s del device frame_type\n" +"Usage: %s delall\n" +"Usage: %s check device frame_type\n" +msgstr "" +"Použití: %s add [-p] zařízení typ_rámce [číslo_sítě[:číslo uzlu]]\n" +"Použití: %s del zařízení typ_rámce\n" +"Použití: %s delall\n" +"Použití: %s check zařízení typ_rámce\n" + +#: src/ipx_interface.c:83 +#, c-format +msgid "%s: Frame type must be" +msgstr "%s: Typ rámce musí být" + +#: src/ipx_interface.c:87 +msgid " or " +msgstr " nebo " + +#: src/ipx_interface.c:142 src/ipx_internal_net.c:65 src/ipx_route.c:62 +#: src/ipx_route.c:86 +#, c-format +msgid "%s: Inappropriate network number %08lX\n" +msgstr "%s: Nevhodné číslo sítě %08lX\n" + +#: src/ipx_interface.c:180 src/ipx_internal_net.c:101 +#, c-format +msgid "%s: Primary network already selected.\n" +msgstr "%s: Primární síť již existuje.\n" + +#: src/ipx_interface.c:184 src/ipx_internal_net.c:105 +#, c-format +msgid "%s: Network number (%08X) already in use.\n" +msgstr "%s: Číslo sítě (%08X) se již používá.\n" + +#: src/ipx_interface.c:188 src/ipx_interface.c:283 src/ipx_interface.c:345 +#: src/ipx_interface.c:410 +#, c-format +msgid "%s: Invalid frame type (%s).\n" +msgstr "%s: Chybný typ rámce (%s).\n" + +#: src/ipx_interface.c:192 src/ipx_interface.c:287 src/ipx_interface.c:349 +#: src/ipx_interface.c:414 +#, c-format +msgid "%s: No such device (%s).\n" +msgstr "%s: Zařízení %s neexistuje.\n" + +#: src/ipx_interface.c:196 +#, c-format +msgid "%s: Requested device (%s) is down.\n" +msgstr "%s: Požadované zařízení (%s) je vypnuto.\n" + +#: src/ipx_interface.c:200 +#, c-format +msgid "%s: Invalid device (%s).\n" +msgstr "%s: Chybné zařízení (%s).\n" + +#: src/ipx_interface.c:205 +#, c-format +msgid "%s: Insufficient memory to create interface.\n" +msgstr "%s: Nedostatek paměti k vytvoření rozhraní.\n" + +#: src/ipx_interface.c:245 +#, c-format +msgid "%s: Unable to open \"%s.\"\n" +msgstr "%s: Nemohu otevřít \"%s\".\n" + +#: src/ipx_interface.c:291 src/ipx_interface.c:353 src/ipx_interface.c:418 +#, c-format +msgid "%s: No such IPX interface %s %s.\n" +msgstr "%s: Neexistuje IPX rozhraní %s %s.\n" + +#: src/ipx_interface.c:399 +#, c-format +msgid "IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n" +msgstr "Adresa IPX pro (%s, %s) je %08X:%02X%02X%02X%02X%02X%02X.\n" + +#: src/ipx_internal_net.c:28 +#, c-format +msgid "" +"Usage: %s add net_number(hex) node(hex)\n" +"Usage: %s del\n" +msgstr "" +"Použití: %s add číslo_sítě(hex) číslo_uzlu(hex)\n" +"Použití: %s del\n" + +#: src/ipx_internal_net.c:49 +#, c-format +msgid "%s: Invalid internal network address %s\n" +msgstr "%s: Chybná interní síťová adresa %s\n" + +#: src/ipx_internal_net.c:57 +#, c-format +msgid "%s: Invalid internal network node %s\n" +msgstr "%s: Chybné číslo uzlu interní sítě %s\n" + +#: src/ipx_internal_net.c:72 +#, c-format +msgid "%s: Node is invalid.\n" +msgstr "%s: Číslo uzlu je chybné.\n" + +#: src/ipx_internal_net.c:110 +#, c-format +msgid "%s: Insufficient memory to create internal net.\n" +msgstr "%s: Nedostatek paměti pro vytvoření interní sítě.\n" + +#: src/ipx_internal_net.c:152 +#, c-format +msgid "%s: No internal network configured.\n" +msgstr "%s: Žádná interní síť není nakonfigurována.\n" + +#: src/ipx_route.c:31 +#, c-format +msgid "" +"Usage: %s add network(hex) router_network(hex) router_node(hex)\n" +"Usage: %s del network(hex)\n" +msgstr "" +"Použití: %s add síť(hex) síť_směrovače(hex) uzel_směrovače(hex)\n" +"Použití: %s del síť(hex)\n" + +#: src/ipx_route.c:55 src/ipx_route.c:153 +#, c-format +msgid "%s: Invalid network number %s\n" +msgstr "%s: Chybné číslo sítě %s\n" + +#: src/ipx_route.c:71 +#, c-format +msgid "%s: Invalid router address %s\n" +msgstr "%s: Chybná adresa směrovače %s\n" + +#: src/ipx_route.c:78 +#, c-format +msgid "%s: Invalid router node %s\n" +msgstr "%s: Chybný uzel směrovače %s\n" + +#: src/ipx_route.c:97 +#, c-format +msgid "%s: Node (%s) is invalid.\n" +msgstr "%s: Uzel (%s) je chybný.\n" + +#: src/ipx_route.c:123 +#, c-format +msgid "%s: Router network (%08X) not reachable.\n" +msgstr "%s: Síť směrovače (%08X) není dostupná.\n" + +#: src/ipx_route.c:160 +#, c-format +msgid "%s: Inappropriate network number %08lX.\n" +msgstr "%s: Nevhodné číslo sítě %08lX.\n" + +#: src/ipx_route.c:181 +#, c-format +msgid "%s: Route not found for network %08lX.\n" +msgstr "%s: Nenalezena cesta pro síť %08lX.\n" + +#: src/ipx_route.c:185 +#, c-format +msgid "%s: Network %08lX is directly connected.\n" +msgstr "%s: Síť %08lX je připojena přímo.\n" + +#: src/ipx_cmd.c:130 +#, c-format +msgid "usage: %s -A migration_agent [-l local_ip]\n" +msgstr "" + +#: src/ipx_cmd.c:175 src/ipx_cmd.c:209 +#, fuzzy, c-format +msgid "%s: %s: " +msgstr "%s: %s: %s\n" + +#: src/ipx_cmd.c:182 src/ipx_cmd.c:216 +#, c-format +msgid "%s: Address of %s is not IP\n" +msgstr "" + +#: src/ipx_cmd.c:188 src/ipx_cmd.c:222 +#, c-format +msgid "%s: Address of %s is not 4 bytes long\n" +msgstr "" + +#: src/ipx_cmd.c:232 +#, fuzzy, c-format +msgid "%s: Cannot create UDP/IP socket: %s\n" +msgstr "%s: Nemohu vytvořit %s: %s\n" + +#: src/ipx_cmd.c:241 +#, fuzzy, c-format +msgid "%s: Cannot get list of local interfaces: %s\n" +msgstr "%s: Nemohu přečíst členy skupiny %s: %s\n" + +#: src/ipx_cmd.c:265 +#, fuzzy, c-format +msgid "%s: Cannot find local requested address\n" +msgstr "%s: Nemohu zjistit adresu socketu\n" + +#: src/ipx_cmd.c:278 +#, c-format +msgid "%s: Cannot bind requested address to IP socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:289 +#, fuzzy, c-format +msgid "%s: Cannot create IPX socket: %s\n" +msgstr "%s: Nemohu vytvořit %s: %s\n" + +#: src/ipx_cmd.c:298 +#, fuzzy, c-format +msgid "%s: Cannot find ethertap interface: %s\n" +msgstr "Nemohu zjistit: %s\n" + +#: src/ipx_cmd.c:309 +#, fuzzy, c-format +msgid "%s: Cannot create NETLINK socket: %s\n" +msgstr "%s: Nemohu vytvořit %s: %s\n" + +#: src/ipx_cmd.c:322 +#, c-format +msgid "%s: Cannot bind requested address to NETLINK socket: %s\n" +msgstr "" diff --git a/po/de.gmo b/po/de.gmo new file mode 100644 index 0000000..a7c11ed Binary files /dev/null and b/po/de.gmo differ diff --git a/po/de.po b/po/de.po new file mode 100644 index 0000000..8047a50 --- /dev/null +++ b/po/de.po @@ -0,0 +1,295 @@ +# translation of de.po to +# German messages for ncpfs. +# Copyright (C) 1999, 2005 Free Software Foundation, Inc. +# +# 04/22/99 - Marco Dittert +# Any phrases improved and mistakes removed. +# Wolfram Pienkoss , 1999, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: ipx-utils 1.2 +" +"Report-Msgid-Bugs-To: mario.fetka@disconnected-by-peer.at\n" +"POT-Creation-Date: 2026-04-29 19:33+0200\n" +"PO-Revision-Date: 2005-01-11 10:19+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.10\n" + +#: src/ipx_configure.c:39 +#, c-format +msgid "" +"Usage: %s --auto_primary=[on|off]\n" +"Usage: %s --auto_interface=[on|off]\n" +"Usage: %s --help\n" +"Usage: %s\n" +msgstr "" +"Aufruf: %s --auto_primary=[on|off]\n" +"Aufruf: %s --auto_interface=[on|off]\n" +"Aufruf: %s --help\n" +"Aufruf: %s\n" + +#: src/ipx_configure.c:89 src/ipx_interface.c:154 src/ipx_interface.c:233 +#: src/ipx_interface.c:330 src/ipx_interface.c:389 src/ipx_internal_net.c:80 +#: src/ipx_internal_net.c:138 src/ipx_route.c:103 src/ipx_route.c:169 +#, c-format +msgid "%s: socket: %s\n" +msgstr "%s: Socket: %s\n" + +#: src/ipx_configure.c:92 src/ipx_interface.c:158 +#, c-format +msgid "Probably you have no IPX support in your kernel\n" +msgstr "Wahrscheinlich unterstützt der Kernel kein IPX\n" + +#: src/ipx_configure.c:120 src/ipx_configure.c:143 src/ipx_configure.c:156 +#: src/ipx_interface.c:209 src/ipx_interface.c:295 src/ipx_interface.c:357 +#: src/ipx_interface.c:422 src/ipx_internal_net.c:114 +#: src/ipx_internal_net.c:155 src/ipx_route.c:127 src/ipx_route.c:189 +#, c-format +msgid "%s: ioctl: %s\n" +msgstr "%s: ioctl: %s\n" + +#: src/ipx_configure.c:162 +#, c-format +msgid "" +"Auto Primary Select is %s\n" +"Auto Interface Create is %s\n" +msgstr "" +"Automatische Auswahl des primären Netzwerkes ist %s\n" +"Automatisches Erzeugen eines Interfaces ist %s\n" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "ON" +msgstr "EIN" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "OFF" +msgstr "AUS" + +#: src/ipx_interface.c:31 +#, c-format +msgid "" +"Usage: %s add [-p] device frame_type [net_number[:node]]\n" +"Usage: %s del device frame_type\n" +"Usage: %s delall\n" +"Usage: %s check device frame_type\n" +msgstr "" +"Aufruf: %s add [-p] Interface Rahmentyp [Netzwerk[:Knotenadresse]]\n" +"Aufruf: %s del Interface Rahmentyp\n" +"Aufruf: %s delall\n" +"Aufruf: %s check Interface Rahmentyp\n" + +#: src/ipx_interface.c:83 +#, c-format +msgid "%s: Frame type must be" +msgstr "%s: Zulässige Rahmentypen:" + +#: src/ipx_interface.c:87 +msgid " or " +msgstr " oder " + +#: src/ipx_interface.c:142 src/ipx_internal_net.c:65 src/ipx_route.c:62 +#: src/ipx_route.c:86 +#, c-format +msgid "%s: Inappropriate network number %08lX\n" +msgstr "%s: Unzulässige Netzwerkadresse %08lX\n" + +#: src/ipx_interface.c:180 src/ipx_internal_net.c:101 +#, c-format +msgid "%s: Primary network already selected.\n" +msgstr "%s: Ein primäres Netzwerk ist bereits ausgewählt.\n" + +#: src/ipx_interface.c:184 src/ipx_internal_net.c:105 +#, c-format +msgid "%s: Network number (%08X) already in use.\n" +msgstr "%s: Netzwerkadresse (%08X) wird bereits benutzt.\n" + +#: src/ipx_interface.c:188 src/ipx_interface.c:283 src/ipx_interface.c:345 +#: src/ipx_interface.c:410 +#, c-format +msgid "%s: Invalid frame type (%s).\n" +msgstr "%s: Ungültiger Rahmentyp: (%s).\n" + +#: src/ipx_interface.c:192 src/ipx_interface.c:287 src/ipx_interface.c:349 +#: src/ipx_interface.c:414 +#, c-format +msgid "%s: No such device (%s).\n" +msgstr "%s: Kein entsprechendes Interface (%s).\n" + +#: src/ipx_interface.c:196 +#, c-format +msgid "%s: Requested device (%s) is down.\n" +msgstr "%s: Gewähltes Interface (%s) ist deaktiviert.\n" + +#: src/ipx_interface.c:200 +#, c-format +msgid "%s: Invalid device (%s).\n" +msgstr "%s: Ungültiges Interface (%s).\n" + +#: src/ipx_interface.c:205 +#, c-format +msgid "%s: Insufficient memory to create interface.\n" +msgstr "%s: Zu wenig Speicher zum Anlegen des Interfaces.\n" + +#: src/ipx_interface.c:245 +#, c-format +msgid "%s: Unable to open \"%s.\"\n" +msgstr "%s: Unmöglich, \"%s\" zu öffnen.\n" + +#: src/ipx_interface.c:291 src/ipx_interface.c:353 src/ipx_interface.c:418 +#, c-format +msgid "%s: No such IPX interface %s %s.\n" +msgstr "%s: Kein entsprechendes IPX-Interface %s %s.\n" + +#: src/ipx_interface.c:399 +#, c-format +msgid "IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n" +msgstr "IPX-Adresse für (%s, %s) ist %08X:%02X%02X%02X%02X%02X%02X.\n" + +#: src/ipx_internal_net.c:28 +#, c-format +msgid "" +"Usage: %s add net_number(hex) node(hex)\n" +"Usage: %s del\n" +msgstr "" +"Aufruf: %s add Netzwerk(hex) Knotenadresse(hex)\n" +"Aufruf: %s del\n" + +#: src/ipx_internal_net.c:49 +#, c-format +msgid "%s: Invalid internal network address %s\n" +msgstr "%s: Ungültige interne Netzwerkadresse %s\n" + +#: src/ipx_internal_net.c:57 +#, c-format +msgid "%s: Invalid internal network node %s\n" +msgstr "%s: Ungültiger interner Netzwerkknoten %s\n" + +#: src/ipx_internal_net.c:72 +#, c-format +msgid "%s: Node is invalid.\n" +msgstr "%s: Ungültiger Knoten.\n" + +#: src/ipx_internal_net.c:110 +#, c-format +msgid "%s: Insufficient memory to create internal net.\n" +msgstr "%s: Zu wenig Speicher zum Anlegen des internen Netzwerkes.\n" + +#: src/ipx_internal_net.c:152 +#, c-format +msgid "%s: No internal network configured.\n" +msgstr "%s: Kein internes Netzwerk konfiguriert.\n" + +#: src/ipx_route.c:31 +#, c-format +msgid "" +"Usage: %s add network(hex) router_network(hex) router_node(hex)\n" +"Usage: %s del network(hex)\n" +msgstr "" +"Aufruf: %s add Netzwerk(hex) Router-Netzwerk(hex) Router-Knoten(hex)\n" +"Aufruf: %s del Netzwerk(hex)\n" + +#: src/ipx_route.c:55 src/ipx_route.c:153 +#, c-format +msgid "%s: Invalid network number %s\n" +msgstr "%s: Ungültige Netzwerknummer %s\n" + +#: src/ipx_route.c:71 +#, c-format +msgid "%s: Invalid router address %s\n" +msgstr "%s: Ungültige Routeradresse %s\n" + +#: src/ipx_route.c:78 +#, c-format +msgid "%s: Invalid router node %s\n" +msgstr "%s: Ungültiger Routerknoten %s\n" + +#: src/ipx_route.c:97 +#, c-format +msgid "%s: Node (%s) is invalid.\n" +msgstr "%s: Knoten (%s) is ungültig.\n" + +#: src/ipx_route.c:123 +#, c-format +msgid "%s: Router network (%08X) not reachable.\n" +msgstr "%s: Router-Netzwerk (%08X) ist nicht erreichbar.\n" + +#: src/ipx_route.c:160 +#, c-format +msgid "%s: Inappropriate network number %08lX.\n" +msgstr "%s: Unzulässige Netzwerkadresse %08lX.\n" + +#: src/ipx_route.c:181 +#, c-format +msgid "%s: Route not found for network %08lX.\n" +msgstr "%s: Route für Netzwerk %08lX nicht gefunden.\n" + +#: src/ipx_route.c:185 +#, c-format +msgid "%s: Network %08lX is directly connected.\n" +msgstr "%s: Netzwerk %08lX ist direkt verbunden.\n" + +#: src/ipx_cmd.c:130 +#, c-format +msgid "usage: %s -A migration_agent [-l local_ip]\n" +msgstr "" + +#: src/ipx_cmd.c:175 src/ipx_cmd.c:209 +#, fuzzy, c-format +msgid "%s: %s: " +msgstr "%s: %s: %s\n" + +#: src/ipx_cmd.c:182 src/ipx_cmd.c:216 +#, c-format +msgid "%s: Address of %s is not IP\n" +msgstr "" + +#: src/ipx_cmd.c:188 src/ipx_cmd.c:222 +#, c-format +msgid "%s: Address of %s is not 4 bytes long\n" +msgstr "" + +#: src/ipx_cmd.c:232 +#, fuzzy, c-format +msgid "%s: Cannot create UDP/IP socket: %s\n" +msgstr "%s: Kann %s nicht erzeugen: %s\n" + +#: src/ipx_cmd.c:241 +#, fuzzy, c-format +msgid "%s: Cannot get list of local interfaces: %s\n" +msgstr "%s: Kann Mitglieder der Gruppe %s nicht lesen: %s\n" + +#: src/ipx_cmd.c:265 +#, fuzzy, c-format +msgid "%s: Cannot find local requested address\n" +msgstr "%s: Kann Socket-Adresse nicht finden\n" + +#: src/ipx_cmd.c:278 +#, c-format +msgid "%s: Cannot bind requested address to IP socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:289 +#, fuzzy, c-format +msgid "%s: Cannot create IPX socket: %s\n" +msgstr "%s: Kann %s nicht erzeugen: %s\n" + +#: src/ipx_cmd.c:298 +#, fuzzy, c-format +msgid "%s: Cannot find ethertap interface: %s\n" +msgstr "Kann nicht ermitteln: %s\n" + +#: src/ipx_cmd.c:309 +#, fuzzy, c-format +msgid "%s: Cannot create NETLINK socket: %s\n" +msgstr "%s: Kann %s nicht erzeugen: %s\n" + +#: src/ipx_cmd.c:322 +#, c-format +msgid "%s: Cannot bind requested address to NETLINK socket: %s\n" +msgstr "" diff --git a/po/en@boldquot.header b/po/en@boldquot.header new file mode 100644 index 0000000..fedb6a0 --- /dev/null +++ b/po/en@boldquot.header @@ -0,0 +1,25 @@ +# All this catalog "translates" are quotation characters. +# The msgids must be ASCII and therefore cannot contain real quotation +# characters, only substitutes like grave accent (0x60), apostrophe (0x27) +# and double quote (0x22). These substitutes look strange; see +# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html +# +# This catalog translates grave accent (0x60) and apostrophe (0x27) to +# left single quotation mark (U+2018) and right single quotation mark (U+2019). +# It also translates pairs of apostrophe (0x27) to +# left single quotation mark (U+2018) and right single quotation mark (U+2019) +# and pairs of quotation mark (0x22) to +# left double quotation mark (U+201C) and right double quotation mark (U+201D). +# +# When output to an UTF-8 terminal, the quotation characters appear perfectly. +# When output to an ISO-8859-1 terminal, the single quotation marks are +# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to +# grave/acute accent (by libiconv), and the double quotation marks are +# transliterated to 0x22. +# When output to an ASCII terminal, the single quotation marks are +# transliterated to apostrophes, and the double quotation marks are +# transliterated to 0x22. +# +# This catalog furthermore displays the text between the quotation marks in +# bold face, assuming the VT100/XTerm escape sequences. +# diff --git a/po/en@quot.header b/po/en@quot.header new file mode 100644 index 0000000..a9647fc --- /dev/null +++ b/po/en@quot.header @@ -0,0 +1,22 @@ +# All this catalog "translates" are quotation characters. +# The msgids must be ASCII and therefore cannot contain real quotation +# characters, only substitutes like grave accent (0x60), apostrophe (0x27) +# and double quote (0x22). These substitutes look strange; see +# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html +# +# This catalog translates grave accent (0x60) and apostrophe (0x27) to +# left single quotation mark (U+2018) and right single quotation mark (U+2019). +# It also translates pairs of apostrophe (0x27) to +# left single quotation mark (U+2018) and right single quotation mark (U+2019) +# and pairs of quotation mark (0x22) to +# left double quotation mark (U+201C) and right double quotation mark (U+201D). +# +# When output to an UTF-8 terminal, the quotation characters appear perfectly. +# When output to an ISO-8859-1 terminal, the single quotation marks are +# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to +# grave/acute accent (by libiconv), and the double quotation marks are +# transliterated to 0x22. +# When output to an ASCII terminal, the single quotation marks are +# transliterated to apostrophes, and the double quotation marks are +# transliterated to 0x22. +# diff --git a/po/es.gmo b/po/es.gmo new file mode 100644 index 0000000..45a930c Binary files /dev/null and b/po/es.gmo differ diff --git a/po/es.po b/po/es.po new file mode 100644 index 0000000..6225876 --- /dev/null +++ b/po/es.po @@ -0,0 +1,292 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# +msgid "" +msgstr "" +"Project-Id-Version: ncpfs-2.2.4\n" +"Report-Msgid-Bugs-To: mario.fetka@disconnected-by-peer.at\n" +"POT-Creation-Date: 2026-04-29 19:33+0200\n" +"PO-Revision-Date: 204-12-08 14:07+0000\n" +"Last-Translator: Craig Jeffares \n" +"Language-Team: Novell Language \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/ipx_configure.c:39 +#, c-format +msgid "" +"Usage: %s --auto_primary=[on|off]\n" +"Usage: %s --auto_interface=[on|off]\n" +"Usage: %s --help\n" +"Usage: %s\n" +msgstr "" +"Uso: %s --auto_primary=[on|off]\n" +"Uso: %s --auto_interface=[on|off]\n" +"Uso: %s --help\n" +"Uso: %s\n" + +#: src/ipx_configure.c:89 src/ipx_interface.c:154 src/ipx_interface.c:233 +#: src/ipx_interface.c:330 src/ipx_interface.c:389 src/ipx_internal_net.c:80 +#: src/ipx_internal_net.c:138 src/ipx_route.c:103 src/ipx_route.c:169 +#, c-format +msgid "%s: socket: %s\n" +msgstr "%s: zócalo: %s\n" + +#: src/ipx_configure.c:92 src/ipx_interface.c:158 +#, c-format +msgid "Probably you have no IPX support in your kernel\n" +msgstr "Es probable que el kernel no sea compatible con IPX\n" + +#: src/ipx_configure.c:120 src/ipx_configure.c:143 src/ipx_configure.c:156 +#: src/ipx_interface.c:209 src/ipx_interface.c:295 src/ipx_interface.c:357 +#: src/ipx_interface.c:422 src/ipx_internal_net.c:114 +#: src/ipx_internal_net.c:155 src/ipx_route.c:127 src/ipx_route.c:189 +#, c-format +msgid "%s: ioctl: %s\n" +msgstr "%s: ioctl: %s\n" + +#: src/ipx_configure.c:162 +#, c-format +msgid "" +"Auto Primary Select is %s\n" +"Auto Interface Create is %s\n" +msgstr "" +"La selección primaria automática es %s\n" +"La creación de interfaz automática es %s\n" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "ON" +msgstr "ON (Activo)" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "OFF" +msgstr "OFF (Inactivo)" + +#: src/ipx_interface.c:31 +#, c-format +msgid "" +"Usage: %s add [-p] device frame_type [net_number[:node]]\n" +"Usage: %s del device frame_type\n" +"Usage: %s delall\n" +"Usage: %s check device frame_type\n" +msgstr "" +"Uso: %s add [-p] tipo_trama dispositivo [número_red[:nodo]]\n" +"Uso: %s del tipo_trama dispositivo\n" +"Uso: %s delall\n" +"Uso: %s check tipo_trama dispositivo\n" + +#: src/ipx_interface.c:83 +#, c-format +msgid "%s: Frame type must be" +msgstr "%s: El tipo de trama debe ser" + +#: src/ipx_interface.c:87 +msgid " or " +msgstr " o bien, " + +#: src/ipx_interface.c:142 src/ipx_internal_net.c:65 src/ipx_route.c:62 +#: src/ipx_route.c:86 +#, c-format +msgid "%s: Inappropriate network number %08lX\n" +msgstr "%s: Número de red %08lX inapropiado\n" + +#: src/ipx_interface.c:180 src/ipx_internal_net.c:101 +#, c-format +msgid "%s: Primary network already selected.\n" +msgstr "%s: Ya se ha seleccionado la red primaria.\n" + +#: src/ipx_interface.c:184 src/ipx_internal_net.c:105 +#, c-format +msgid "%s: Network number (%08X) already in use.\n" +msgstr "%s: El número de red (%08X) ya está en uso.\n" + +#: src/ipx_interface.c:188 src/ipx_interface.c:283 src/ipx_interface.c:345 +#: src/ipx_interface.c:410 +#, c-format +msgid "%s: Invalid frame type (%s).\n" +msgstr "%s: Tipo de trama (%s) no válido.\n" + +#: src/ipx_interface.c:192 src/ipx_interface.c:287 src/ipx_interface.c:349 +#: src/ipx_interface.c:414 +#, c-format +msgid "%s: No such device (%s).\n" +msgstr "%s: No existe dicho dispositivo (%s).\n" + +#: src/ipx_interface.c:196 +#, c-format +msgid "%s: Requested device (%s) is down.\n" +msgstr "%s: El dispositivo (%s) solicitado está inactivo.\n" + +#: src/ipx_interface.c:200 +#, c-format +msgid "%s: Invalid device (%s).\n" +msgstr "%s: Dispositivo (%s) no válido.\n" + +#: src/ipx_interface.c:205 +#, c-format +msgid "%s: Insufficient memory to create interface.\n" +msgstr "%s: Memoria insuficiente para crear la interfaz.\n" + +#: src/ipx_interface.c:245 +#, c-format +msgid "%s: Unable to open \"%s.\"\n" +msgstr "%s: No es posible abrir \"%s.\"\n" + +#: src/ipx_interface.c:291 src/ipx_interface.c:353 src/ipx_interface.c:418 +#, c-format +msgid "%s: No such IPX interface %s %s.\n" +msgstr "%s: No existe dicha interfaz de IPX %s %s.\n" + +#: src/ipx_interface.c:399 +#, c-format +msgid "IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n" +msgstr "La dirección IPX de (%s, %s) es %08X:%02X%02X%02X%02X%02X%02X.\n" + +#: src/ipx_internal_net.c:28 +#, c-format +msgid "" +"Usage: %s add net_number(hex) node(hex)\n" +"Usage: %s del\n" +msgstr "" +"Uso: %s add número_red(hexadecimales) nodo(hexadecimales)\n" +"Uso: %s del\n" + +#: src/ipx_internal_net.c:49 +#, c-format +msgid "%s: Invalid internal network address %s\n" +msgstr "%s: Dirección de red interna %s no válida\n" + +#: src/ipx_internal_net.c:57 +#, c-format +msgid "%s: Invalid internal network node %s\n" +msgstr "%s: Nodo de red interna %s no válido\n" + +#: src/ipx_internal_net.c:72 +#, c-format +msgid "%s: Node is invalid.\n" +msgstr "%s: El nodo no es válido.\n" + +#: src/ipx_internal_net.c:110 +#, c-format +msgid "%s: Insufficient memory to create internal net.\n" +msgstr "%s: Memoria insuficiente para crear la red interna.\n" + +#: src/ipx_internal_net.c:152 +#, c-format +msgid "%s: No internal network configured.\n" +msgstr "%s: No se ha configurado ninguna red interna.\n" + +#: src/ipx_route.c:31 +#, c-format +msgid "" +"Usage: %s add network(hex) router_network(hex) router_node(hex)\n" +"Usage: %s del network(hex)\n" +msgstr "" +"Uso: %s add red(hexadecimales) red_router(hexadecimales) " +"nodo_router(hexadecimales)\n" +"Uso: %s del red(hexadecimales)\n" + +#: src/ipx_route.c:55 src/ipx_route.c:153 +#, c-format +msgid "%s: Invalid network number %s\n" +msgstr "%s: Número de red %s no válido\n" + +#: src/ipx_route.c:71 +#, c-format +msgid "%s: Invalid router address %s\n" +msgstr "%s: Dirección de router %s no válida\n" + +#: src/ipx_route.c:78 +#, c-format +msgid "%s: Invalid router node %s\n" +msgstr "%s: Nodo de router %s no válido\n" + +#: src/ipx_route.c:97 +#, c-format +msgid "%s: Node (%s) is invalid.\n" +msgstr "%s: El nodo (%s) no es válido.\n" + +#: src/ipx_route.c:123 +#, c-format +msgid "%s: Router network (%08X) not reachable.\n" +msgstr "%s: La red de router (%08X) es inalcanzable.\n" + +#: src/ipx_route.c:160 +#, c-format +msgid "%s: Inappropriate network number %08lX.\n" +msgstr "%s: Número de red %08lX inapropiado.\n" + +#: src/ipx_route.c:181 +#, c-format +msgid "%s: Route not found for network %08lX.\n" +msgstr "%s: No se encuentra la ruta de la red %08lX.\n" + +#: src/ipx_route.c:185 +#, c-format +msgid "%s: Network %08lX is directly connected.\n" +msgstr "%s: La red %08lX está conectada directamente.\n" + +#: src/ipx_cmd.c:130 +#, c-format +msgid "usage: %s -A migration_agent [-l local_ip]\n" +msgstr "" + +#: src/ipx_cmd.c:175 src/ipx_cmd.c:209 +#, fuzzy, c-format +msgid "%s: %s: " +msgstr "%s: %s: %s\n" + +#: src/ipx_cmd.c:182 src/ipx_cmd.c:216 +#, c-format +msgid "%s: Address of %s is not IP\n" +msgstr "" + +#: src/ipx_cmd.c:188 src/ipx_cmd.c:222 +#, c-format +msgid "%s: Address of %s is not 4 bytes long\n" +msgstr "" + +#: src/ipx_cmd.c:232 +#, fuzzy, c-format +msgid "%s: Cannot create UDP/IP socket: %s\n" +msgstr "%s: No es posible crear %s: %s\n" + +#: src/ipx_cmd.c:241 +#, fuzzy, c-format +msgid "%s: Cannot get list of local interfaces: %s\n" +msgstr "%s: No es posible leer los miembros del grupo %s: %s\n" + +#: src/ipx_cmd.c:265 +#, fuzzy, c-format +msgid "%s: Cannot find local requested address\n" +msgstr "%s: No se encuentra la dirección de zócalo\n" + +#: src/ipx_cmd.c:278 +#, c-format +msgid "%s: Cannot bind requested address to IP socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:289 +#, fuzzy, c-format +msgid "%s: Cannot create IPX socket: %s\n" +msgstr "%s: No es posible crear %s: %s\n" + +#: src/ipx_cmd.c:298 +#, fuzzy, c-format +msgid "%s: Cannot find ethertap interface: %s\n" +msgstr "No es posible determinar: %s\n" + +#: src/ipx_cmd.c:309 +#, fuzzy, c-format +msgid "%s: Cannot create NETLINK socket: %s\n" +msgstr "%s: No es posible crear %s: %s\n" + +#: src/ipx_cmd.c:322 +#, c-format +msgid "%s: Cannot bind requested address to NETLINK socket: %s\n" +msgstr "" diff --git a/po/fr.gmo b/po/fr.gmo new file mode 100644 index 0000000..4126424 Binary files /dev/null and b/po/fr.gmo differ diff --git a/po/fr.po b/po/fr.po new file mode 100644 index 0000000..b22804e --- /dev/null +++ b/po/fr.po @@ -0,0 +1,291 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# +msgid "" +msgstr "" +"Project-Id-Version: ncpfs-2.2.4\n" +"Report-Msgid-Bugs-To: mario.fetka@disconnected-by-peer.at\n" +"POT-Creation-Date: 2026-04-29 19:33+0200\n" +"PO-Revision-Date: 2004-12-08 14:52+0000\n" +"Last-Translator: Craig Jeffares \n" +"Language-Team: Novell Language \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/ipx_configure.c:39 +#, c-format +msgid "" +"Usage: %s --auto_primary=[on|off]\n" +"Usage: %s --auto_interface=[on|off]\n" +"Usage: %s --help\n" +"Usage: %s\n" +msgstr "" +"Syntaxe : %s --auto_primary=[on|off]\n" +"Syntaxe : %s --auto_interface=[on|off]\n" +"Syntaxe : %s --help\n" +"Syntaxe : %s\n" + +#: src/ipx_configure.c:89 src/ipx_interface.c:154 src/ipx_interface.c:233 +#: src/ipx_interface.c:330 src/ipx_interface.c:389 src/ipx_internal_net.c:80 +#: src/ipx_internal_net.c:138 src/ipx_route.c:103 src/ipx_route.c:169 +#, c-format +msgid "%s: socket: %s\n" +msgstr "%s : socket : %s\n" + +#: src/ipx_configure.c:92 src/ipx_interface.c:158 +#, c-format +msgid "Probably you have no IPX support in your kernel\n" +msgstr "Votre noyau ne contient probablement pas le support IPX\n" + +#: src/ipx_configure.c:120 src/ipx_configure.c:143 src/ipx_configure.c:156 +#: src/ipx_interface.c:209 src/ipx_interface.c:295 src/ipx_interface.c:357 +#: src/ipx_interface.c:422 src/ipx_internal_net.c:114 +#: src/ipx_internal_net.c:155 src/ipx_route.c:127 src/ipx_route.c:189 +#, c-format +msgid "%s: ioctl: %s\n" +msgstr "%s : ioctl : %s\n" + +#: src/ipx_configure.c:162 +#, c-format +msgid "" +"Auto Primary Select is %s\n" +"Auto Interface Create is %s\n" +msgstr "" +"La fonction de sélection automatique d'interface principale est %s.\n" +"La fonction de création automatique d'interface est %s\n" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "ON" +msgstr "ACTIVÉE" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "OFF" +msgstr "DÉSACTIVÉE" + +#: src/ipx_interface.c:31 +#, c-format +msgid "" +"Usage: %s add [-p] device frame_type [net_number[:node]]\n" +"Usage: %s del device frame_type\n" +"Usage: %s delall\n" +"Usage: %s check device frame_type\n" +msgstr "" +"Syntaxe : %s add [-p] périphérique type_trame [numéro_réseau[:node]]\n" +"Syntaxe : %s del périphérique type_trame\n" +"Syntaxe : %s delall\n" +"Syntaxe : %s check périphérique type_trame\n" + +#: src/ipx_interface.c:83 +#, c-format +msgid "%s: Frame type must be" +msgstr "%s : Le type de trame doit être" + +#: src/ipx_interface.c:87 +msgid " or " +msgstr " ou " + +#: src/ipx_interface.c:142 src/ipx_internal_net.c:65 src/ipx_route.c:62 +#: src/ipx_route.c:86 +#, c-format +msgid "%s: Inappropriate network number %08lX\n" +msgstr "%s : Numéro de réseau inapproprié %08lX\n" + +#: src/ipx_interface.c:180 src/ipx_internal_net.c:101 +#, c-format +msgid "%s: Primary network already selected.\n" +msgstr "%s : Réseau principal déjà sélectionné.\n" + +#: src/ipx_interface.c:184 src/ipx_internal_net.c:105 +#, c-format +msgid "%s: Network number (%08X) already in use.\n" +msgstr "%s : Le numéro de réseau (%08X) est déjà utilisé.\n" + +#: src/ipx_interface.c:188 src/ipx_interface.c:283 src/ipx_interface.c:345 +#: src/ipx_interface.c:410 +#, c-format +msgid "%s: Invalid frame type (%s).\n" +msgstr "%s : Type de trame non valide (%s).\n" + +#: src/ipx_interface.c:192 src/ipx_interface.c:287 src/ipx_interface.c:349 +#: src/ipx_interface.c:414 +#, c-format +msgid "%s: No such device (%s).\n" +msgstr "%s : Ce périphérique n'existe pas (%s).\n" + +#: src/ipx_interface.c:196 +#, c-format +msgid "%s: Requested device (%s) is down.\n" +msgstr "%s : Le périphérique demandé (%s) est arrêté.\n" + +#: src/ipx_interface.c:200 +#, c-format +msgid "%s: Invalid device (%s).\n" +msgstr "%s : Périphérique non valide (%s).\n" + +#: src/ipx_interface.c:205 +#, c-format +msgid "%s: Insufficient memory to create interface.\n" +msgstr "%s : Mémoire insuffisante pour créer l'interface.\n" + +#: src/ipx_interface.c:245 +#, c-format +msgid "%s: Unable to open \"%s.\"\n" +msgstr "%s : Impossible d'ouvrir \"%s.\"\n" + +#: src/ipx_interface.c:291 src/ipx_interface.c:353 src/ipx_interface.c:418 +#, c-format +msgid "%s: No such IPX interface %s %s.\n" +msgstr "%s : L'interface %s %s IPX n'existe pas.\n" + +#: src/ipx_interface.c:399 +#, c-format +msgid "IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n" +msgstr "L'adresse IPX de (%s, %s) est %08X:%02X%02X%02X%02X%02X%02X.\n" + +#: src/ipx_internal_net.c:28 +#, c-format +msgid "" +"Usage: %s add net_number(hex) node(hex)\n" +"Usage: %s del\n" +msgstr "" +"Syntaxe : %s add numéro_réseau (hex) nœud (hex)\n" +"Syntaxe : %s del\n" + +#: src/ipx_internal_net.c:49 +#, c-format +msgid "%s: Invalid internal network address %s\n" +msgstr "%s : Adresse de réseau interne non valide %s\n" + +#: src/ipx_internal_net.c:57 +#, c-format +msgid "%s: Invalid internal network node %s\n" +msgstr "%s : Adresse de nœud de réseau interne non valide %s\n" + +#: src/ipx_internal_net.c:72 +#, c-format +msgid "%s: Node is invalid.\n" +msgstr "%s : Le nœud n'est pas valide.\n" + +#: src/ipx_internal_net.c:110 +#, c-format +msgid "%s: Insufficient memory to create internal net.\n" +msgstr "%s : Mémoire insuffisante pour créer le réseau interne.\n" + +#: src/ipx_internal_net.c:152 +#, c-format +msgid "%s: No internal network configured.\n" +msgstr "%s : Aucun réseau interne configuré.\n" + +#: src/ipx_route.c:31 +#, c-format +msgid "" +"Usage: %s add network(hex) router_network(hex) router_node(hex)\n" +"Usage: %s del network(hex)\n" +msgstr "" +"Syntaxe : %s add réseau (hex) réseau_routeur (hex) nœud_routeur (hex)\n" +"Syntaxe : %s del réseau (hex)\n" + +#: src/ipx_route.c:55 src/ipx_route.c:153 +#, c-format +msgid "%s: Invalid network number %s\n" +msgstr "%s : Numéro de réseau non valide %s\n" + +#: src/ipx_route.c:71 +#, c-format +msgid "%s: Invalid router address %s\n" +msgstr "%s : Adresse de routeur non valide %s\n" + +#: src/ipx_route.c:78 +#, c-format +msgid "%s: Invalid router node %s\n" +msgstr "%s : Adresse de nœud de routeur non valide %s\n" + +#: src/ipx_route.c:97 +#, c-format +msgid "%s: Node (%s) is invalid.\n" +msgstr "%s : Le nœud (%s) n'est pas valide.\n" + +#: src/ipx_route.c:123 +#, c-format +msgid "%s: Router network (%08X) not reachable.\n" +msgstr "%s : Réseau du routeur (%08X) inaccessible.\n" + +#: src/ipx_route.c:160 +#, c-format +msgid "%s: Inappropriate network number %08lX.\n" +msgstr "%s : Numéro de réseau inapproprié %08lX.\n" + +#: src/ipx_route.c:181 +#, c-format +msgid "%s: Route not found for network %08lX.\n" +msgstr "%s : Route introuvable pour le réseau %08lX.\n" + +#: src/ipx_route.c:185 +#, c-format +msgid "%s: Network %08lX is directly connected.\n" +msgstr "%s : Le réseau %08lX est connecté directement.\n" + +#: src/ipx_cmd.c:130 +#, c-format +msgid "usage: %s -A migration_agent [-l local_ip]\n" +msgstr "" + +#: src/ipx_cmd.c:175 src/ipx_cmd.c:209 +#, fuzzy, c-format +msgid "%s: %s: " +msgstr "%s : %s : %s\n" + +#: src/ipx_cmd.c:182 src/ipx_cmd.c:216 +#, c-format +msgid "%s: Address of %s is not IP\n" +msgstr "" + +#: src/ipx_cmd.c:188 src/ipx_cmd.c:222 +#, c-format +msgid "%s: Address of %s is not 4 bytes long\n" +msgstr "" + +#: src/ipx_cmd.c:232 +#, fuzzy, c-format +msgid "%s: Cannot create UDP/IP socket: %s\n" +msgstr "%s : Impossible de créer %s : %s\n" + +#: src/ipx_cmd.c:241 +#, fuzzy, c-format +msgid "%s: Cannot get list of local interfaces: %s\n" +msgstr "%s : Impossible de lire les membres du groupe %s : %s\n" + +#: src/ipx_cmd.c:265 +#, fuzzy, c-format +msgid "%s: Cannot find local requested address\n" +msgstr "%s : Impossible de trouver l'adresse de socket\n" + +#: src/ipx_cmd.c:278 +#, c-format +msgid "%s: Cannot bind requested address to IP socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:289 +#, fuzzy, c-format +msgid "%s: Cannot create IPX socket: %s\n" +msgstr "%s : Impossible de créer %s : %s\n" + +#: src/ipx_cmd.c:298 +#, fuzzy, c-format +msgid "%s: Cannot find ethertap interface: %s\n" +msgstr "Impossible de déterminer : %s\n" + +#: src/ipx_cmd.c:309 +#, fuzzy, c-format +msgid "%s: Cannot create NETLINK socket: %s\n" +msgstr "%s : Impossible de créer %s : %s\n" + +#: src/ipx_cmd.c:322 +#, c-format +msgid "%s: Cannot bind requested address to NETLINK socket: %s\n" +msgstr "" diff --git a/po/hu.gmo b/po/hu.gmo new file mode 100644 index 0000000..ef90f84 Binary files /dev/null and b/po/hu.gmo differ diff --git a/po/hu.po b/po/hu.po new file mode 100644 index 0000000..3624461 --- /dev/null +++ b/po/hu.po @@ -0,0 +1,295 @@ +# translation of ncpfs.po to Hungarian +# This file is distributed under the same license as the PACKAGE package. +# Szabolcs Varga, 2004. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# Szabolcs Varga , 2004. +# Kalman Kemenczy , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: ncpfs\n" +"Report-Msgid-Bugs-To: mario.fetka@disconnected-by-peer.at\n" +"POT-Creation-Date: 2026-04-29 19:33+0200\n" +"PO-Revision-Date: 2004-12-13 10:13+0100\n" +"Last-Translator: Kalman Kemenczy \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.3.1\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/ipx_configure.c:39 +#, c-format +msgid "" +"Usage: %s --auto_primary=[on|off]\n" +"Usage: %s --auto_interface=[on|off]\n" +"Usage: %s --help\n" +"Usage: %s\n" +msgstr "" +"Használat: %s --auto_primary=[on|off]\n" +"Használat: %s --auto_interface=[on|off]\n" +"Használat: %s --help\n" +"Használat: %s\n" + +#: src/ipx_configure.c:89 src/ipx_interface.c:154 src/ipx_interface.c:233 +#: src/ipx_interface.c:330 src/ipx_interface.c:389 src/ipx_internal_net.c:80 +#: src/ipx_internal_net.c:138 src/ipx_route.c:103 src/ipx_route.c:169 +#, c-format +msgid "%s: socket: %s\n" +msgstr "%s: socket: %s\n" + +#: src/ipx_configure.c:92 src/ipx_interface.c:158 +#, c-format +msgid "Probably you have no IPX support in your kernel\n" +msgstr "Valószínűleg hiányzik az IPX támogatás a kernelből\n" + +#: src/ipx_configure.c:120 src/ipx_configure.c:143 src/ipx_configure.c:156 +#: src/ipx_interface.c:209 src/ipx_interface.c:295 src/ipx_interface.c:357 +#: src/ipx_interface.c:422 src/ipx_internal_net.c:114 +#: src/ipx_internal_net.c:155 src/ipx_route.c:127 src/ipx_route.c:189 +#, c-format +msgid "%s: ioctl: %s\n" +msgstr "%s: ioctl: %s\n" + +#: src/ipx_configure.c:162 +#, c-format +msgid "" +"Auto Primary Select is %s\n" +"Auto Interface Create is %s\n" +msgstr "" +"Az Automatikus elsődleges választás: %s\n" +"Az Automatikus csatoló-létrehozás: %s\n" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "ON" +msgstr "ON" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "OFF" +msgstr "OFF" + +#: src/ipx_interface.c:31 +#, c-format +msgid "" +"Usage: %s add [-p] device frame_type [net_number[:node]]\n" +"Usage: %s del device frame_type\n" +"Usage: %s delall\n" +"Usage: %s check device frame_type\n" +msgstr "" +"Használat: %s add [-p] eszköz kerettípus [hálózatszám[:csomópont]]\n" +"Használat: %s del eszköz kerettípus\n" +"Használat: %s delall\n" +"Használat: %s check eszköz kerettípus\n" + +#: src/ipx_interface.c:83 +#, c-format +msgid "%s: Frame type must be" +msgstr "%s: A kerettípus értéke nem lehet más, mint" + +#: src/ipx_interface.c:87 +msgid " or " +msgstr "vagy" + +#: src/ipx_interface.c:142 src/ipx_internal_net.c:65 src/ipx_route.c:62 +#: src/ipx_route.c:86 +#, c-format +msgid "%s: Inappropriate network number %08lX\n" +msgstr "%s: Helytelen hálózatszám: %08lX\n" + +#: src/ipx_interface.c:180 src/ipx_internal_net.c:101 +#, c-format +msgid "%s: Primary network already selected.\n" +msgstr "%s: Az elsődleges hálózat már ki van választva.\n" + +#: src/ipx_interface.c:184 src/ipx_internal_net.c:105 +#, c-format +msgid "%s: Network number (%08X) already in use.\n" +msgstr "%s: A (%08X) hálózatszám már használatban van.\n" + +#: src/ipx_interface.c:188 src/ipx_interface.c:283 src/ipx_interface.c:345 +#: src/ipx_interface.c:410 +#, c-format +msgid "%s: Invalid frame type (%s).\n" +msgstr "%s: Érvénytelen kerettípus: (%s).\n" + +#: src/ipx_interface.c:192 src/ipx_interface.c:287 src/ipx_interface.c:349 +#: src/ipx_interface.c:414 +#, c-format +msgid "%s: No such device (%s).\n" +msgstr "%s: Nincs ilyen eszköz: (%s).\n" + +#: src/ipx_interface.c:196 +#, c-format +msgid "%s: Requested device (%s) is down.\n" +msgstr "%s: A kért eszköz (%s) nem működik.\n" + +#: src/ipx_interface.c:200 +#, c-format +msgid "%s: Invalid device (%s).\n" +msgstr "%s: Érvénytelen eszköz (%s).\n" + +#: src/ipx_interface.c:205 +#, c-format +msgid "%s: Insufficient memory to create interface.\n" +msgstr "%s: Nincs elegendő memória a csatoló létrehozásához.\n" + +#: src/ipx_interface.c:245 +#, c-format +msgid "%s: Unable to open \"%s.\"\n" +msgstr "%s: \"%s.\" nem nyitható meg.\n" + +#: src/ipx_interface.c:291 src/ipx_interface.c:353 src/ipx_interface.c:418 +#, c-format +msgid "%s: No such IPX interface %s %s.\n" +msgstr "%s: %s %s IPX csatoló nem létezik.\n" + +#: src/ipx_interface.c:399 +#, c-format +msgid "IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n" +msgstr "(%s, %s) IPX-címe: %08X:%02X%02X%02X%02X%02X%02X.\n" + +#: src/ipx_internal_net.c:28 +#, c-format +msgid "" +"Usage: %s add net_number(hex) node(hex)\n" +"Usage: %s del\n" +msgstr "" +"Használat: %s add hálózatszám(hex) csomópont(hex)\n" +"Használat: %s del\n" + +#: src/ipx_internal_net.c:49 +#, c-format +msgid "%s: Invalid internal network address %s\n" +msgstr "%s: Érvénytelen belső hálózatszám %s\n" + +#: src/ipx_internal_net.c:57 +#, c-format +msgid "%s: Invalid internal network node %s\n" +msgstr "%s: Érvénytelen belső hálózatszám: %s\n" + +#: src/ipx_internal_net.c:72 +#, c-format +msgid "%s: Node is invalid.\n" +msgstr "%s: A csomópont érvénytelen.\n" + +#: src/ipx_internal_net.c:110 +#, c-format +msgid "%s: Insufficient memory to create internal net.\n" +msgstr "%s: Nincs elegendő memória a belső hálózat létrehozásához.\n" + +#: src/ipx_internal_net.c:152 +#, c-format +msgid "%s: No internal network configured.\n" +msgstr "%s: Nincs belső hálózat beállítva.\n" + +#: src/ipx_route.c:31 +#, c-format +msgid "" +"Usage: %s add network(hex) router_network(hex) router_node(hex)\n" +"Usage: %s del network(hex)\n" +msgstr "" +"Használat: %s add hálózat(hex) útválasztó_hálózat(hex) " +"útválasztó_csomópont(hex)\n" +"Használat: %s del hálózat(hex)\n" + +#: src/ipx_route.c:55 src/ipx_route.c:153 +#, c-format +msgid "%s: Invalid network number %s\n" +msgstr "%s: Érvénytelen hálózatszám: %s\n" + +#: src/ipx_route.c:71 +#, c-format +msgid "%s: Invalid router address %s\n" +msgstr "%s: Érvénytelen útválasztó cím: %s\n" + +#: src/ipx_route.c:78 +#, c-format +msgid "%s: Invalid router node %s\n" +msgstr "%s: Érvénytelen útválasztó csomópont: %s\n" + +#: src/ipx_route.c:97 +#, c-format +msgid "%s: Node (%s) is invalid.\n" +msgstr "%s: A(z) (%s) csomópont érvénytelen.\n" + +#: src/ipx_route.c:123 +#, c-format +msgid "%s: Router network (%08X) not reachable.\n" +msgstr "%s: Az útválasztó hálózat (%08X) nem érhető el.\n" + +#: src/ipx_route.c:160 +#, c-format +msgid "%s: Inappropriate network number %08lX.\n" +msgstr "%s: Nem megfelelő hálózatszám: %08lX.\n" + +#: src/ipx_route.c:181 +#, c-format +msgid "%s: Route not found for network %08lX.\n" +msgstr "%s: A %08lX hálózat útvonala nem található.\n" + +#: src/ipx_route.c:185 +#, c-format +msgid "%s: Network %08lX is directly connected.\n" +msgstr "%s: A %08lX hálózat közvetlenül kapcsolódik.\n" + +#: src/ipx_cmd.c:130 +#, c-format +msgid "usage: %s -A migration_agent [-l local_ip]\n" +msgstr "" + +#: src/ipx_cmd.c:175 src/ipx_cmd.c:209 +#, fuzzy, c-format +msgid "%s: %s: " +msgstr "%s: %s: %s\n" + +#: src/ipx_cmd.c:182 src/ipx_cmd.c:216 +#, c-format +msgid "%s: Address of %s is not IP\n" +msgstr "" + +#: src/ipx_cmd.c:188 src/ipx_cmd.c:222 +#, c-format +msgid "%s: Address of %s is not 4 bytes long\n" +msgstr "" + +#: src/ipx_cmd.c:232 +#, fuzzy, c-format +msgid "%s: Cannot create UDP/IP socket: %s\n" +msgstr "%s: %s nem hozható létre: %s\n" + +#: src/ipx_cmd.c:241 +#, fuzzy, c-format +msgid "%s: Cannot get list of local interfaces: %s\n" +msgstr "%s: Nem olvashatók ki a(z) %s tagjai: %s\n" + +#: src/ipx_cmd.c:265 +#, fuzzy, c-format +msgid "%s: Cannot find local requested address\n" +msgstr "%s: Nem található a socketcím\n" + +#: src/ipx_cmd.c:278 +#, c-format +msgid "%s: Cannot bind requested address to IP socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:289 +#, fuzzy, c-format +msgid "%s: Cannot create IPX socket: %s\n" +msgstr "%s: %s nem hozható létre: %s\n" + +#: src/ipx_cmd.c:298 +#, fuzzy, c-format +msgid "%s: Cannot find ethertap interface: %s\n" +msgstr "Nem állapítható meg: %s\n" + +#: src/ipx_cmd.c:309 +#, fuzzy, c-format +msgid "%s: Cannot create NETLINK socket: %s\n" +msgstr "%s: %s nem hozható létre: %s\n" + +#: src/ipx_cmd.c:322 +#, c-format +msgid "%s: Cannot bind requested address to NETLINK socket: %s\n" +msgstr "" diff --git a/po/insert-header.sin b/po/insert-header.sin new file mode 100644 index 0000000..b26de01 --- /dev/null +++ b/po/insert-header.sin @@ -0,0 +1,23 @@ +# Sed script that inserts the file called HEADER before the header entry. +# +# At each occurrence of a line starting with "msgid ", we execute the following +# commands. At the first occurrence, insert the file. At the following +# occurrences, do nothing. The distinction between the first and the following +# occurrences is achieved by looking at the hold space. +/^msgid /{ +x +# Test if the hold space is empty. +s/m/m/ +ta +# Yes it was empty. First occurrence. Read the file. +r HEADER +# Output the file's contents by reading the next line. But don't lose the +# current line while doing this. +g +N +bb +:a +# The hold space was nonempty. Following occurrences. Do nothing. +x +:b +} diff --git a/po/ipx-utils.pot b/po/ipx-utils.pot new file mode 100644 index 0000000..7829d00 --- /dev/null +++ b/po/ipx-utils.pot @@ -0,0 +1,277 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the ipx-utils package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ipx-utils 1.2\n" +"Report-Msgid-Bugs-To: mario.fetka@disconnected-by-peer.at\n" +"POT-Creation-Date: 2026-04-29 19:33+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/ipx_configure.c:39 +#, c-format +msgid "" +"Usage: %s --auto_primary=[on|off]\n" +"Usage: %s --auto_interface=[on|off]\n" +"Usage: %s --help\n" +"Usage: %s\n" +msgstr "" + +#: src/ipx_configure.c:89 src/ipx_interface.c:154 src/ipx_interface.c:233 +#: src/ipx_interface.c:330 src/ipx_interface.c:389 src/ipx_internal_net.c:80 +#: src/ipx_internal_net.c:138 src/ipx_route.c:103 src/ipx_route.c:169 +#, c-format +msgid "%s: socket: %s\n" +msgstr "" + +#: src/ipx_configure.c:92 src/ipx_interface.c:158 +#, c-format +msgid "Probably you have no IPX support in your kernel\n" +msgstr "" + +#: src/ipx_configure.c:120 src/ipx_configure.c:143 src/ipx_configure.c:156 +#: src/ipx_interface.c:209 src/ipx_interface.c:295 src/ipx_interface.c:357 +#: src/ipx_interface.c:422 src/ipx_internal_net.c:114 +#: src/ipx_internal_net.c:155 src/ipx_route.c:127 src/ipx_route.c:189 +#, c-format +msgid "%s: ioctl: %s\n" +msgstr "" + +#: src/ipx_configure.c:162 +#, c-format +msgid "" +"Auto Primary Select is %s\n" +"Auto Interface Create is %s\n" +msgstr "" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "ON" +msgstr "" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "OFF" +msgstr "" + +#: src/ipx_interface.c:31 +#, c-format +msgid "" +"Usage: %s add [-p] device frame_type [net_number[:node]]\n" +"Usage: %s del device frame_type\n" +"Usage: %s delall\n" +"Usage: %s check device frame_type\n" +msgstr "" + +#: src/ipx_interface.c:83 +#, c-format +msgid "%s: Frame type must be" +msgstr "" + +#: src/ipx_interface.c:87 +msgid " or " +msgstr "" + +#: src/ipx_interface.c:142 src/ipx_internal_net.c:65 src/ipx_route.c:62 +#: src/ipx_route.c:86 +#, c-format +msgid "%s: Inappropriate network number %08lX\n" +msgstr "" + +#: src/ipx_interface.c:180 src/ipx_internal_net.c:101 +#, c-format +msgid "%s: Primary network already selected.\n" +msgstr "" + +#: src/ipx_interface.c:184 src/ipx_internal_net.c:105 +#, c-format +msgid "%s: Network number (%08X) already in use.\n" +msgstr "" + +#: src/ipx_interface.c:188 src/ipx_interface.c:283 src/ipx_interface.c:345 +#: src/ipx_interface.c:410 +#, c-format +msgid "%s: Invalid frame type (%s).\n" +msgstr "" + +#: src/ipx_interface.c:192 src/ipx_interface.c:287 src/ipx_interface.c:349 +#: src/ipx_interface.c:414 +#, c-format +msgid "%s: No such device (%s).\n" +msgstr "" + +#: src/ipx_interface.c:196 +#, c-format +msgid "%s: Requested device (%s) is down.\n" +msgstr "" + +#: src/ipx_interface.c:200 +#, c-format +msgid "%s: Invalid device (%s).\n" +msgstr "" + +#: src/ipx_interface.c:205 +#, c-format +msgid "%s: Insufficient memory to create interface.\n" +msgstr "" + +#: src/ipx_interface.c:245 +#, c-format +msgid "%s: Unable to open \"%s.\"\n" +msgstr "" + +#: src/ipx_interface.c:291 src/ipx_interface.c:353 src/ipx_interface.c:418 +#, c-format +msgid "%s: No such IPX interface %s %s.\n" +msgstr "" + +#: src/ipx_interface.c:399 +#, c-format +msgid "IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n" +msgstr "" + +#: src/ipx_internal_net.c:28 +#, c-format +msgid "" +"Usage: %s add net_number(hex) node(hex)\n" +"Usage: %s del\n" +msgstr "" + +#: src/ipx_internal_net.c:49 +#, c-format +msgid "%s: Invalid internal network address %s\n" +msgstr "" + +#: src/ipx_internal_net.c:57 +#, c-format +msgid "%s: Invalid internal network node %s\n" +msgstr "" + +#: src/ipx_internal_net.c:72 +#, c-format +msgid "%s: Node is invalid.\n" +msgstr "" + +#: src/ipx_internal_net.c:110 +#, c-format +msgid "%s: Insufficient memory to create internal net.\n" +msgstr "" + +#: src/ipx_internal_net.c:152 +#, c-format +msgid "%s: No internal network configured.\n" +msgstr "" + +#: src/ipx_route.c:31 +#, c-format +msgid "" +"Usage: %s add network(hex) router_network(hex) router_node(hex)\n" +"Usage: %s del network(hex)\n" +msgstr "" + +#: src/ipx_route.c:55 src/ipx_route.c:153 +#, c-format +msgid "%s: Invalid network number %s\n" +msgstr "" + +#: src/ipx_route.c:71 +#, c-format +msgid "%s: Invalid router address %s\n" +msgstr "" + +#: src/ipx_route.c:78 +#, c-format +msgid "%s: Invalid router node %s\n" +msgstr "" + +#: src/ipx_route.c:97 +#, c-format +msgid "%s: Node (%s) is invalid.\n" +msgstr "" + +#: src/ipx_route.c:123 +#, c-format +msgid "%s: Router network (%08X) not reachable.\n" +msgstr "" + +#: src/ipx_route.c:160 +#, c-format +msgid "%s: Inappropriate network number %08lX.\n" +msgstr "" + +#: src/ipx_route.c:181 +#, c-format +msgid "%s: Route not found for network %08lX.\n" +msgstr "" + +#: src/ipx_route.c:185 +#, c-format +msgid "%s: Network %08lX is directly connected.\n" +msgstr "" + +#: src/ipx_cmd.c:130 +#, c-format +msgid "usage: %s -A migration_agent [-l local_ip]\n" +msgstr "" + +#: src/ipx_cmd.c:175 src/ipx_cmd.c:209 +#, c-format +msgid "%s: %s: " +msgstr "" + +#: src/ipx_cmd.c:182 src/ipx_cmd.c:216 +#, c-format +msgid "%s: Address of %s is not IP\n" +msgstr "" + +#: src/ipx_cmd.c:188 src/ipx_cmd.c:222 +#, c-format +msgid "%s: Address of %s is not 4 bytes long\n" +msgstr "" + +#: src/ipx_cmd.c:232 +#, c-format +msgid "%s: Cannot create UDP/IP socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:241 +#, c-format +msgid "%s: Cannot get list of local interfaces: %s\n" +msgstr "" + +#: src/ipx_cmd.c:265 +#, c-format +msgid "%s: Cannot find local requested address\n" +msgstr "" + +#: src/ipx_cmd.c:278 +#, c-format +msgid "%s: Cannot bind requested address to IP socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:289 +#, c-format +msgid "%s: Cannot create IPX socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:298 +#, c-format +msgid "%s: Cannot find ethertap interface: %s\n" +msgstr "" + +#: src/ipx_cmd.c:309 +#, c-format +msgid "%s: Cannot create NETLINK socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:322 +#, c-format +msgid "%s: Cannot bind requested address to NETLINK socket: %s\n" +msgstr "" diff --git a/po/it.gmo b/po/it.gmo new file mode 100644 index 0000000..2d22fd9 Binary files /dev/null and b/po/it.gmo differ diff --git a/po/it.po b/po/it.po new file mode 100644 index 0000000..19241b6 --- /dev/null +++ b/po/it.po @@ -0,0 +1,292 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# +msgid "" +msgstr "" +"Project-Id-Version: ncpfs-2.2.4\n" +"Report-Msgid-Bugs-To: mario.fetka@disconnected-by-peer.at\n" +"POT-Creation-Date: 2026-04-29 19:33+0200\n" +"PO-Revision-Date: 2004-12-08 14:13+0000\n" +"Last-Translator: Craig Jeffares \n" +"Language-Team: Novell Language \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/ipx_configure.c:39 +#, c-format +msgid "" +"Usage: %s --auto_primary=[on|off]\n" +"Usage: %s --auto_interface=[on|off]\n" +"Usage: %s --help\n" +"Usage: %s\n" +msgstr "" +"Uso: %s --auto_primary=[on|off]\n" +"Uso: %s --auto_interface=[on|off]\n" +"Uso: %s --help\n" +"Uso: %s\n" + +#: src/ipx_configure.c:89 src/ipx_interface.c:154 src/ipx_interface.c:233 +#: src/ipx_interface.c:330 src/ipx_interface.c:389 src/ipx_internal_net.c:80 +#: src/ipx_internal_net.c:138 src/ipx_route.c:103 src/ipx_route.c:169 +#, c-format +msgid "%s: socket: %s\n" +msgstr "%s: socket: %s\n" + +#: src/ipx_configure.c:92 src/ipx_interface.c:158 +#, c-format +msgid "Probably you have no IPX support in your kernel\n" +msgstr "È possibile che non sia disponibile alcun supporto IPX nel kernel\n" + +#: src/ipx_configure.c:120 src/ipx_configure.c:143 src/ipx_configure.c:156 +#: src/ipx_interface.c:209 src/ipx_interface.c:295 src/ipx_interface.c:357 +#: src/ipx_interface.c:422 src/ipx_internal_net.c:114 +#: src/ipx_internal_net.c:155 src/ipx_route.c:127 src/ipx_route.c:189 +#, c-format +msgid "%s: ioctl: %s\n" +msgstr "%s: ioctl: %s\n" + +#: src/ipx_configure.c:162 +#, c-format +msgid "" +"Auto Primary Select is %s\n" +"Auto Interface Create is %s\n" +msgstr "" +"La selezione automatica primaria è %s\n" +"La creazione automatica interfaccia è %s\n" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "ON" +msgstr "ATTIVO" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "OFF" +msgstr "DISATTIVATO" + +#: src/ipx_interface.c:31 +#, c-format +msgid "" +"Usage: %s add [-p] device frame_type [net_number[:node]]\n" +"Usage: %s del device frame_type\n" +"Usage: %s delall\n" +"Usage: %s check device frame_type\n" +msgstr "" +"Uso: %s add [-p] tipo_frame dispositivo [numero_rete[:nodo]]\n" +"Uso: %s del tipo_frame dispositivo\n" +"Uso: %s delall\n" +"Uso: %s check tipo_frame dispositivo\n" + +#: src/ipx_interface.c:83 +#, c-format +msgid "%s: Frame type must be" +msgstr "%s: il tipo di frame deve essere" + +#: src/ipx_interface.c:87 +msgid " or " +msgstr " o " + +#: src/ipx_interface.c:142 src/ipx_internal_net.c:65 src/ipx_route.c:62 +#: src/ipx_route.c:86 +#, c-format +msgid "%s: Inappropriate network number %08lX\n" +msgstr "%s: numero di rete %08lX non appropriato.\n" + +#: src/ipx_interface.c:180 src/ipx_internal_net.c:101 +#, c-format +msgid "%s: Primary network already selected.\n" +msgstr "%s: rete primaria già selezionata.\n" + +#: src/ipx_interface.c:184 src/ipx_internal_net.c:105 +#, c-format +msgid "%s: Network number (%08X) already in use.\n" +msgstr "%s: numero di rete (%08X) già in uso.\n" + +#: src/ipx_interface.c:188 src/ipx_interface.c:283 src/ipx_interface.c:345 +#: src/ipx_interface.c:410 +#, c-format +msgid "%s: Invalid frame type (%s).\n" +msgstr "%s: tipo di frame (%s) non valido.\n" + +#: src/ipx_interface.c:192 src/ipx_interface.c:287 src/ipx_interface.c:349 +#: src/ipx_interface.c:414 +#, c-format +msgid "%s: No such device (%s).\n" +msgstr "%s: dispositivo inesistente (%s).\n" + +#: src/ipx_interface.c:196 +#, c-format +msgid "%s: Requested device (%s) is down.\n" +msgstr "%s: il dispositivo richiesto (%s) è disattivato.\n" + +#: src/ipx_interface.c:200 +#, c-format +msgid "%s: Invalid device (%s).\n" +msgstr "%s: dispositivo non valido (%s).\n" + +#: src/ipx_interface.c:205 +#, c-format +msgid "%s: Insufficient memory to create interface.\n" +msgstr "%s: memoria insufficiente per creare l'interfaccia.\n" + +#: src/ipx_interface.c:245 +#, c-format +msgid "%s: Unable to open \"%s.\"\n" +msgstr "%s: impossibile aprire \"%s.\"\n" + +#: src/ipx_interface.c:291 src/ipx_interface.c:353 src/ipx_interface.c:418 +#, c-format +msgid "%s: No such IPX interface %s %s.\n" +msgstr "%s: interfaccia IPX inesistente %s %s.\n" + +#: src/ipx_interface.c:399 +#, c-format +msgid "IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n" +msgstr "L'indirizzo IPX per (%s, %s) è %08X:%02X%02X%02X%02X%02X%02X.\n" + +#: src/ipx_internal_net.c:28 +#, c-format +msgid "" +"Usage: %s add net_number(hex) node(hex)\n" +"Usage: %s del\n" +msgstr "" +"Uso: %s add numero_rete(esadecimale) nodo(esadecimale)\n" +"Uso: %s del\n" + +#: src/ipx_internal_net.c:49 +#, c-format +msgid "%s: Invalid internal network address %s\n" +msgstr "%s: indirizzo di rete interna %s non valido.\n" + +#: src/ipx_internal_net.c:57 +#, c-format +msgid "%s: Invalid internal network node %s\n" +msgstr "%s: nodo di rete interna %s non valido.\n" + +#: src/ipx_internal_net.c:72 +#, c-format +msgid "%s: Node is invalid.\n" +msgstr "%s: nodo non valido.\n" + +#: src/ipx_internal_net.c:110 +#, c-format +msgid "%s: Insufficient memory to create internal net.\n" +msgstr "%s: memoria insufficiente per creare la rete interna.\n" + +#: src/ipx_internal_net.c:152 +#, c-format +msgid "%s: No internal network configured.\n" +msgstr "%s: nessuna rete interna configurata.\n" + +#: src/ipx_route.c:31 +#, c-format +msgid "" +"Usage: %s add network(hex) router_network(hex) router_node(hex)\n" +"Usage: %s del network(hex)\n" +msgstr "" +"Uso: %s add rete(esadecimale) rete_router(esadecimale) " +"nodo_router(esadecimale)\n" +"Uso: %s del rete(esadecimale)\n" + +#: src/ipx_route.c:55 src/ipx_route.c:153 +#, c-format +msgid "%s: Invalid network number %s\n" +msgstr "%s: numero di rete %s non valido.\n" + +#: src/ipx_route.c:71 +#, c-format +msgid "%s: Invalid router address %s\n" +msgstr "%s: indirizzo router %s non valido.\n" + +#: src/ipx_route.c:78 +#, c-format +msgid "%s: Invalid router node %s\n" +msgstr "%s: nodo router %s non valido.\n" + +#: src/ipx_route.c:97 +#, c-format +msgid "%s: Node (%s) is invalid.\n" +msgstr "%s: nodo (%s) non valido.\n" + +#: src/ipx_route.c:123 +#, c-format +msgid "%s: Router network (%08X) not reachable.\n" +msgstr "%s: rete router (%08X) non raggiungibile.\n" + +#: src/ipx_route.c:160 +#, c-format +msgid "%s: Inappropriate network number %08lX.\n" +msgstr "%s: numero di rete %08lX non appropriato.\n" + +#: src/ipx_route.c:181 +#, c-format +msgid "%s: Route not found for network %08lX.\n" +msgstr "%s: impossibile trovare l'instradamento per la rete %08lX.\n" + +#: src/ipx_route.c:185 +#, c-format +msgid "%s: Network %08lX is directly connected.\n" +msgstr "%s: rete %08lX connessa in modo diretto.\n" + +#: src/ipx_cmd.c:130 +#, c-format +msgid "usage: %s -A migration_agent [-l local_ip]\n" +msgstr "" + +#: src/ipx_cmd.c:175 src/ipx_cmd.c:209 +#, fuzzy, c-format +msgid "%s: %s: " +msgstr "%s: %s: %s\n" + +#: src/ipx_cmd.c:182 src/ipx_cmd.c:216 +#, c-format +msgid "%s: Address of %s is not IP\n" +msgstr "" + +#: src/ipx_cmd.c:188 src/ipx_cmd.c:222 +#, c-format +msgid "%s: Address of %s is not 4 bytes long\n" +msgstr "" + +#: src/ipx_cmd.c:232 +#, fuzzy, c-format +msgid "%s: Cannot create UDP/IP socket: %s\n" +msgstr "%s: impossibile creare %s: %s\n" + +#: src/ipx_cmd.c:241 +#, fuzzy, c-format +msgid "%s: Cannot get list of local interfaces: %s\n" +msgstr "%s: impossibile leggere i membri del gruppo %s: %s\n" + +#: src/ipx_cmd.c:265 +#, fuzzy, c-format +msgid "%s: Cannot find local requested address\n" +msgstr "%s: impossibile trovare l'indirizzo socket\n" + +#: src/ipx_cmd.c:278 +#, c-format +msgid "%s: Cannot bind requested address to IP socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:289 +#, fuzzy, c-format +msgid "%s: Cannot create IPX socket: %s\n" +msgstr "%s: impossibile creare %s: %s\n" + +#: src/ipx_cmd.c:298 +#, fuzzy, c-format +msgid "%s: Cannot find ethertap interface: %s\n" +msgstr "Impossibile determinare: %s\n" + +#: src/ipx_cmd.c:309 +#, fuzzy, c-format +msgid "%s: Cannot create NETLINK socket: %s\n" +msgstr "%s: impossibile creare %s: %s\n" + +#: src/ipx_cmd.c:322 +#, c-format +msgid "%s: Cannot bind requested address to NETLINK socket: %s\n" +msgstr "" diff --git a/po/ja.gmo b/po/ja.gmo new file mode 100644 index 0000000..0141a54 Binary files /dev/null and b/po/ja.gmo differ diff --git a/po/ja.po b/po/ja.po new file mode 100644 index 0000000..16dabac --- /dev/null +++ b/po/ja.po @@ -0,0 +1,291 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# +msgid "" +msgstr "" +"Project-Id-Version: ncpfs-2.2.4\n" +"Report-Msgid-Bugs-To: mario.fetka@disconnected-by-peer.at\n" +"POT-Creation-Date: 2026-04-29 19:33+0200\n" +"PO-Revision-Date: 2004-12-10 14:59+0000\n" +"Last-Translator: Craig Jeffares \n" +"Language-Team: Novell Language \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/ipx_configure.c:39 +#, c-format +msgid "" +"Usage: %s --auto_primary=[on|off]\n" +"Usage: %s --auto_interface=[on|off]\n" +"Usage: %s --help\n" +"Usage: %s\n" +msgstr "" +"利用法: %s --auto_primary=[on|off]\n" +"利用法: %s --auto_interface=[on|off]\n" +"利用法: %s --help\n" +"利用法: %s \n" + +#: src/ipx_configure.c:89 src/ipx_interface.c:154 src/ipx_interface.c:233 +#: src/ipx_interface.c:330 src/ipx_interface.c:389 src/ipx_internal_net.c:80 +#: src/ipx_internal_net.c:138 src/ipx_route.c:103 src/ipx_route.c:169 +#, c-format +msgid "%s: socket: %s\n" +msgstr "%s:socket:%s \n" + +#: src/ipx_configure.c:92 src/ipx_interface.c:158 +#, c-format +msgid "Probably you have no IPX support in your kernel\n" +msgstr "カーネルでIPXがサポートされていない可能性があります \n" + +#: src/ipx_configure.c:120 src/ipx_configure.c:143 src/ipx_configure.c:156 +#: src/ipx_interface.c:209 src/ipx_interface.c:295 src/ipx_interface.c:357 +#: src/ipx_interface.c:422 src/ipx_internal_net.c:114 +#: src/ipx_internal_net.c:155 src/ipx_route.c:127 src/ipx_route.c:189 +#, c-format +msgid "%s: ioctl: %s\n" +msgstr "%s:ioctl:%s \n" + +#: src/ipx_configure.c:162 +#, c-format +msgid "" +"Auto Primary Select is %s\n" +"Auto Interface Create is %s\n" +msgstr "" +"Auto Primary Selectは %s です \n" +"Auto Interface Createは %s です \n" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "ON" +msgstr "オン" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "OFF" +msgstr "オフ" + +#: src/ipx_interface.c:31 +#, c-format +msgid "" +"Usage: %s add [-p] device frame_type [net_number[:node]]\n" +"Usage: %s del device frame_type\n" +"Usage: %s delall\n" +"Usage: %s check device frame_type\n" +msgstr "" +"利用法:%s add [-p] device frame_type [net_number[:node]] \n" +"利用法:%s del device frame_type \n" +"利用法:%s delall \n" +"利用法:%s check device frame_type \n" + +#: src/ipx_interface.c:83 +#, c-format +msgid "%s: Frame type must be" +msgstr "%s:フレームタイプは次の必要があります" + +#: src/ipx_interface.c:87 +msgid " or " +msgstr " または " + +#: src/ipx_interface.c:142 src/ipx_internal_net.c:65 src/ipx_route.c:62 +#: src/ipx_route.c:86 +#, c-format +msgid "%s: Inappropriate network number %08lX\n" +msgstr "%s:不適切なネットワーク番号 %08lX \n" + +#: src/ipx_interface.c:180 src/ipx_internal_net.c:101 +#, c-format +msgid "%s: Primary network already selected.\n" +msgstr "%s:プライマリネットワークが既に選択されています。 \n" + +#: src/ipx_interface.c:184 src/ipx_internal_net.c:105 +#, c-format +msgid "%s: Network number (%08X) already in use.\n" +msgstr "%s:ネットワーク番号(%08X)は既に使用されています。 \n" + +#: src/ipx_interface.c:188 src/ipx_interface.c:283 src/ipx_interface.c:345 +#: src/ipx_interface.c:410 +#, c-format +msgid "%s: Invalid frame type (%s).\n" +msgstr "%s:フレームタイプ(%s)が無効です。 \n" + +#: src/ipx_interface.c:192 src/ipx_interface.c:287 src/ipx_interface.c:349 +#: src/ipx_interface.c:414 +#, c-format +msgid "%s: No such device (%s).\n" +msgstr "%s:そのようなデバイス(%s)はありません。 \n" + +#: src/ipx_interface.c:196 +#, c-format +msgid "%s: Requested device (%s) is down.\n" +msgstr "%s:要求されたデバイス(%s)は停止しています。 \n" + +#: src/ipx_interface.c:200 +#, c-format +msgid "%s: Invalid device (%s).\n" +msgstr "%s:デバイス(%s)が無効です。 \n" + +#: src/ipx_interface.c:205 +#, c-format +msgid "%s: Insufficient memory to create interface.\n" +msgstr "%s:インタフェースを作成するためのメモリが不足しています。 \n" + +#: src/ipx_interface.c:245 +#, c-format +msgid "%s: Unable to open \"%s.\"\n" +msgstr "%s:\"%s\" を開けません。\n" + +#: src/ipx_interface.c:291 src/ipx_interface.c:353 src/ipx_interface.c:418 +#, c-format +msgid "%s: No such IPX interface %s %s.\n" +msgstr "%s:そのようなIPXインタフェース %s %s はありません。 \n" + +#: src/ipx_interface.c:399 +#, c-format +msgid "IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n" +msgstr "(%s, %s)用のIPXアドレスは %08X:%02X%02X%02X%02X%02X%02X です。 \n" + +#: src/ipx_internal_net.c:28 +#, c-format +msgid "" +"Usage: %s add net_number(hex) node(hex)\n" +"Usage: %s del\n" +msgstr "" +"利用法:%s add net_number(hex) node(hex) \n" +"利用法:%s del \n" + +#: src/ipx_internal_net.c:49 +#, c-format +msgid "%s: Invalid internal network address %s\n" +msgstr "%s:無効な内部ネットワークアドレス %s \n" + +#: src/ipx_internal_net.c:57 +#, c-format +msgid "%s: Invalid internal network node %s\n" +msgstr "%s:無効な内部ネットワークノード %s \n" + +#: src/ipx_internal_net.c:72 +#, c-format +msgid "%s: Node is invalid.\n" +msgstr "%s:ノードが無効です。 \n" + +#: src/ipx_internal_net.c:110 +#, c-format +msgid "%s: Insufficient memory to create internal net.\n" +msgstr "%s:内部ネットを作成するためのメモリが不足しています。 \n" + +#: src/ipx_internal_net.c:152 +#, c-format +msgid "%s: No internal network configured.\n" +msgstr "%s:内部ネットワークが設定されていません。 \n" + +#: src/ipx_route.c:31 +#, c-format +msgid "" +"Usage: %s add network(hex) router_network(hex) router_node(hex)\n" +"Usage: %s del network(hex)\n" +msgstr "" +"利用法:%s add network(hex) router_network(hex) router_node(hex)\n" +"利用法:%s del network(hex) \n" + +#: src/ipx_route.c:55 src/ipx_route.c:153 +#, c-format +msgid "%s: Invalid network number %s\n" +msgstr "%s:無効なネットワーク番号 %s \n" + +#: src/ipx_route.c:71 +#, c-format +msgid "%s: Invalid router address %s\n" +msgstr "%s:無効なルータアドレス %s \n" + +#: src/ipx_route.c:78 +#, c-format +msgid "%s: Invalid router node %s\n" +msgstr "%s:無効なルータノード %s \n" + +#: src/ipx_route.c:97 +#, c-format +msgid "%s: Node (%s) is invalid.\n" +msgstr "%s:ノード(%s)が無効です。 \n" + +#: src/ipx_route.c:123 +#, c-format +msgid "%s: Router network (%08X) not reachable.\n" +msgstr "%s:ルータネットワーク(%08X)に接続できません。 \n" + +#: src/ipx_route.c:160 +#, c-format +msgid "%s: Inappropriate network number %08lX.\n" +msgstr "%s:不適切なネットワーク番号 %08lX。 \n" + +#: src/ipx_route.c:181 +#, c-format +msgid "%s: Route not found for network %08lX.\n" +msgstr "%s:ネットワーク %08lX への経路が見つかりません。 \n" + +#: src/ipx_route.c:185 +#, c-format +msgid "%s: Network %08lX is directly connected.\n" +msgstr "%s:ネットワーク %08lX に直接接続されています。 \n" + +#: src/ipx_cmd.c:130 +#, c-format +msgid "usage: %s -A migration_agent [-l local_ip]\n" +msgstr "" + +#: src/ipx_cmd.c:175 src/ipx_cmd.c:209 +#, fuzzy, c-format +msgid "%s: %s: " +msgstr "%s:%s:%s \n" + +#: src/ipx_cmd.c:182 src/ipx_cmd.c:216 +#, c-format +msgid "%s: Address of %s is not IP\n" +msgstr "" + +#: src/ipx_cmd.c:188 src/ipx_cmd.c:222 +#, c-format +msgid "%s: Address of %s is not 4 bytes long\n" +msgstr "" + +#: src/ipx_cmd.c:232 +#, fuzzy, c-format +msgid "%s: Cannot create UDP/IP socket: %s\n" +msgstr "%s:%s を作成できません:%s \n" + +#: src/ipx_cmd.c:241 +#, fuzzy, c-format +msgid "%s: Cannot get list of local interfaces: %s\n" +msgstr "%s:グループ %s のメンバを読み込めません:%s \n" + +#: src/ipx_cmd.c:265 +#, fuzzy, c-format +msgid "%s: Cannot find local requested address\n" +msgstr "%s:ソケットアドレスが見つかりませんでした \n" + +#: src/ipx_cmd.c:278 +#, c-format +msgid "%s: Cannot bind requested address to IP socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:289 +#, fuzzy, c-format +msgid "%s: Cannot create IPX socket: %s\n" +msgstr "%s:%s を作成できません:%s \n" + +#: src/ipx_cmd.c:298 +#, fuzzy, c-format +msgid "%s: Cannot find ethertap interface: %s\n" +msgstr "決定できません:%s \n" + +#: src/ipx_cmd.c:309 +#, fuzzy, c-format +msgid "%s: Cannot create NETLINK socket: %s\n" +msgstr "%s:%s を作成できません:%s \n" + +#: src/ipx_cmd.c:322 +#, c-format +msgid "%s: Cannot bind requested address to NETLINK socket: %s\n" +msgstr "" diff --git a/po/ncpfs.pot b/po/ncpfs.pot new file mode 100644 index 0000000..059d153 --- /dev/null +++ b/po/ncpfs.pot @@ -0,0 +1,4635 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: vandrove@vc.cvut.cz\n" +"POT-Creation-Date: 2005-07-03 22:05+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ipx-1.0/ipx_configure.c:37 +#, c-format +msgid "" +"Usage: %s --auto_primary=[on|off]\n" +"Usage: %s --auto_interface=[on|off]\n" +"Usage: %s --help\n" +"Usage: %s\n" +msgstr "" + +#: ipx-1.0/ipx_configure.c:85 ipx-1.0/ipx_interface.c:155 +#: ipx-1.0/ipx_interface.c:233 ipx-1.0/ipx_interface.c:324 +#: ipx-1.0/ipx_interface.c:383 ipx-1.0/ipx_internal_net.c:81 +#: ipx-1.0/ipx_internal_net.c:139 ipx-1.0/ipx_route.c:104 +#: ipx-1.0/ipx_route.c:170 +#, c-format +msgid "%s: socket: %s\n" +msgstr "" + +#: ipx-1.0/ipx_configure.c:88 ipx-1.0/ipx_interface.c:159 util/ipx_probe.c:207 +#: util/ipx_probe.c:373 +#, c-format +msgid "Probably you have no IPX support in your kernel\n" +msgstr "" + +#: ipx-1.0/ipx_configure.c:116 ipx-1.0/ipx_configure.c:139 +#: ipx-1.0/ipx_configure.c:152 ipx-1.0/ipx_interface.c:210 +#: ipx-1.0/ipx_interface.c:289 ipx-1.0/ipx_interface.c:351 +#: ipx-1.0/ipx_interface.c:416 ipx-1.0/ipx_internal_net.c:115 +#: ipx-1.0/ipx_internal_net.c:156 ipx-1.0/ipx_route.c:128 +#: ipx-1.0/ipx_route.c:190 +#, c-format +msgid "%s: ioctl: %s\n" +msgstr "" + +#: ipx-1.0/ipx_configure.c:158 +#, c-format +msgid "" +"Auto Primary Select is %s\n" +"Auto Interface Create is %s\n" +msgstr "" + +#: ipx-1.0/ipx_configure.c:160 ipx-1.0/ipx_configure.c:161 +msgid "ON" +msgstr "" + +#: ipx-1.0/ipx_configure.c:160 ipx-1.0/ipx_configure.c:161 +msgid "OFF" +msgstr "" + +#: ipx-1.0/ipx_interface.c:32 +#, c-format +msgid "" +"Usage: %s add [-p] device frame_type [net_number[:node]]\n" +"Usage: %s del device frame_type\n" +"Usage: %s delall\n" +"Usage: %s check device frame_type\n" +msgstr "" + +#: ipx-1.0/ipx_interface.c:84 +#, c-format +msgid "%s: Frame type must be" +msgstr "" + +#: ipx-1.0/ipx_interface.c:88 +msgid " or " +msgstr "" + +#: ipx-1.0/ipx_interface.c:143 ipx-1.0/ipx_internal_net.c:66 +#: ipx-1.0/ipx_route.c:63 ipx-1.0/ipx_route.c:87 +#, c-format +msgid "%s: Inappropriate network number %08lX\n" +msgstr "" + +#: ipx-1.0/ipx_interface.c:181 ipx-1.0/ipx_internal_net.c:102 +#, c-format +msgid "%s: Primary network already selected.\n" +msgstr "" + +#: ipx-1.0/ipx_interface.c:185 ipx-1.0/ipx_internal_net.c:106 +#, c-format +msgid "%s: Network number (%08X) already in use.\n" +msgstr "" + +#: ipx-1.0/ipx_interface.c:189 ipx-1.0/ipx_interface.c:277 +#: ipx-1.0/ipx_interface.c:339 ipx-1.0/ipx_interface.c:404 +#, c-format +msgid "%s: Invalid frame type (%s).\n" +msgstr "" + +#: ipx-1.0/ipx_interface.c:193 ipx-1.0/ipx_interface.c:281 +#: ipx-1.0/ipx_interface.c:343 ipx-1.0/ipx_interface.c:408 +#, c-format +msgid "%s: No such device (%s).\n" +msgstr "" + +#: ipx-1.0/ipx_interface.c:197 +#, c-format +msgid "%s: Requested device (%s) is down.\n" +msgstr "" + +#: ipx-1.0/ipx_interface.c:201 +#, c-format +msgid "%s: Invalid device (%s).\n" +msgstr "" + +#: ipx-1.0/ipx_interface.c:206 +#, c-format +msgid "%s: Insufficient memory to create interface.\n" +msgstr "" + +#: ipx-1.0/ipx_interface.c:245 +#, c-format +msgid "%s: Unable to open \"%s.\"\n" +msgstr "" + +#: ipx-1.0/ipx_interface.c:285 ipx-1.0/ipx_interface.c:347 +#: ipx-1.0/ipx_interface.c:412 +#, c-format +msgid "%s: No such IPX interface %s %s.\n" +msgstr "" + +#: ipx-1.0/ipx_interface.c:393 +#, c-format +msgid "IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n" +msgstr "" + +#: ipx-1.0/ipx_internal_net.c:29 +#, c-format +msgid "" +"Usage: %s add net_number(hex) node(hex)\n" +"Usage: %s del\n" +msgstr "" + +#: ipx-1.0/ipx_internal_net.c:50 +#, c-format +msgid "%s: Invalid internal network address %s\n" +msgstr "" + +#: ipx-1.0/ipx_internal_net.c:58 +#, c-format +msgid "%s: Invalid internal network node %s\n" +msgstr "" + +#: ipx-1.0/ipx_internal_net.c:73 +#, c-format +msgid "%s: Node is invalid.\n" +msgstr "" + +#: ipx-1.0/ipx_internal_net.c:111 +#, c-format +msgid "%s: Insufficient memory to create internal net.\n" +msgstr "" + +#: ipx-1.0/ipx_internal_net.c:153 +#, c-format +msgid "%s: No internal network configured.\n" +msgstr "" + +#: ipx-1.0/ipx_route.c:32 +#, c-format +msgid "" +"Usage: %s add network(hex) router_network(hex) router_node(hex)\n" +"Usage: %s del network(hex)\n" +msgstr "" + +#: ipx-1.0/ipx_route.c:56 ipx-1.0/ipx_route.c:154 +#, c-format +msgid "%s: Invalid network number %s\n" +msgstr "" + +#: ipx-1.0/ipx_route.c:72 +#, c-format +msgid "%s: Invalid router address %s\n" +msgstr "" + +#: ipx-1.0/ipx_route.c:79 +#, c-format +msgid "%s: Invalid router node %s\n" +msgstr "" + +#: ipx-1.0/ipx_route.c:98 +#, c-format +msgid "%s: Node (%s) is invalid.\n" +msgstr "" + +#: ipx-1.0/ipx_route.c:124 +#, c-format +msgid "%s: Router network (%08X) not reachable.\n" +msgstr "" + +#: ipx-1.0/ipx_route.c:161 +#, c-format +msgid "%s: Inappropriate network number %08lX.\n" +msgstr "" + +#: ipx-1.0/ipx_route.c:182 +#, c-format +msgid "%s: Route not found for network %08lX.\n" +msgstr "" + +#: ipx-1.0/ipx_route.c:186 +#, c-format +msgid "%s: Network %08lX is directly connected.\n" +msgstr "" + +#: lib/ncplib.c:1079 lib/ncplib.c:1110 lib/ncplib.c:1147 +#, c-format +msgid "ncp_request_error: %d\n" +msgstr "" + +#: lib/ncplib.c:1697 lib/ncplib.c:3746 sutil/ncpmount.c:655 +#: sutil/ncpmount.c:680 sutil/ncplogin.c:876 sutil/ncplogin.c:895 +#, c-format +msgid "Your password has expired\n" +msgstr "" + +#: lib/ncplib.c:2405 +#, c-format +msgid "Logging into %s as %s\n" +msgstr "" + +#: lib/ncplib.c:2408 +msgid "Password: " +msgstr "" + +#: lib/ncplib.c:2658 +#, c-format +msgid "ncpfs: string too long: %s\n" +msgstr "" + +#: lib/ncplib.c:3752 sutil/ncpmount.c:686 sutil/ncplogin.c:900 +#, c-format +msgid "You have %d login attempts left\n" +msgstr "" + +#: lib/ncplib.c:3875 +msgid "Error in ncp_request\n" +msgstr "" + +#: lib/ncplib.c:3881 +msgid "Fragment too short\n" +msgstr "" + +#: lib/ncplib.c:3899 +#, c-format +msgid "Fragment too large, len=%d, max=%d\n" +msgstr "" + +#: lib/ncplib.c:3912 +msgid "Why next fragment?\n" +msgstr "" + +#: lib/ncplib.c:3918 +msgid "Fragmented\n" +msgstr "" + +#: lib/ncplib.c:3922 +#, c-format +msgid "InBufLen after request=%d, FirstReply=%d\n" +msgstr "" + +#: lib/ncplib.c:3927 +#, c-format +msgid "NDS error %d\n" +msgstr "" + +#: lib/filemgmt.c:131 +#, c-format +msgid "ncpfs: volume name too long: %d\n" +msgstr "" + +#: lib/ndslib.c:1402 +#, c-format +msgid "" +"User %s not found in current context.\n" +"Trying server context...\n" +msgstr "" + +#: lib/ndslib.c:1424 +#, c-format +msgid "error %d logging in\n" +msgstr "" + +#: lib/ndslib.c:1432 +#, c-format +msgid "error %d authenticating\n" +msgstr "" + +#: lib/strops.c:65 +msgid "Not enough memory" +msgstr "" + +#: lib/strops.c:67 +msgid "Bad key passed to NWDS{Get|Set}Context" +msgstr "" + +#: lib/strops.c:69 +msgid "Invalid context handle" +msgstr "" + +#: lib/strops.c:71 +msgid "Buffer full" +msgstr "" + +#: lib/strops.c:74 +msgid "Bad syntax" +msgstr "" + +#: lib/strops.c:76 +msgid "Buffer empty" +msgstr "" + +#: lib/strops.c:78 +msgid "Bad verb" +msgstr "" + +#: lib/strops.c:80 +msgid "Expected identifier" +msgstr "" + +#: lib/strops.c:83 +msgid "Attribute type expected" +msgstr "" + +#: lib/strops.c:85 +msgid "Attribute type not expected" +msgstr "" + +#: lib/strops.c:87 +msgid "Filter tree empty" +msgstr "" + +#: lib/strops.c:89 +msgid "Invalid object name" +msgstr "" + +#: lib/strops.c:91 +msgid "Expected RDN delimiter" +msgstr "" + +#: lib/strops.c:93 +msgid "Too many tokens" +msgstr "" + +#: lib/strops.c:95 +msgid "Inconsistent multiava" +msgstr "" + +#: lib/strops.c:97 +msgid "Country name too long" +msgstr "" + +#: lib/strops.c:99 +msgid "System error" +msgstr "" + +#: lib/strops.c:102 +msgid "Invalid iteration handle" +msgstr "" + +#: lib/strops.c:104 +msgid "Empty buffer passed to API" +msgstr "" + +#: lib/strops.c:107 +msgid "Cannot create context" +msgstr "" + +#: lib/strops.c:110 +msgid "Invalid server response" +msgstr "" + +#: lib/strops.c:112 +msgid "NULL pointer seen" +msgstr "" + +#: lib/strops.c:115 +msgid "No connection exists" +msgstr "" + +#: lib/strops.c:117 +msgid "RDN too long" +msgstr "" + +#: lib/strops.c:119 +msgid "Duplicate type" +msgstr "" + +#: lib/strops.c:122 +msgid "Not logged in" +msgstr "" + +#: lib/strops.c:124 +msgid "Invalid password characters" +msgstr "" + +#: lib/strops.c:127 +msgid "Bad transport" +msgstr "" + +#: lib/strops.c:129 +msgid "No such syntax" +msgstr "" + +#: lib/strops.c:131 +msgid "Invalid DS name" +msgstr "" + +#: lib/strops.c:134 +msgid "Required unicode translation not available" +msgstr "" + +#: lib/strops.c:137 +msgid "DN too long" +msgstr "" + +#: lib/strops.c:139 +msgid "Rename not allowed" +msgstr "" + +#: lib/strops.c:142 +msgid "No such entry" +msgstr "" + +#: lib/strops.c:145 +msgid "No such attribute" +msgstr "" + +#: lib/strops.c:148 +msgid "Transport failure" +msgstr "" + +#: lib/strops.c:150 +msgid "All referrals failed" +msgstr "" + +#: lib/strops.c:153 +msgid "No referrals" +msgstr "" + +#: lib/strops.c:155 +msgid "Remote failure" +msgstr "" + +#: lib/strops.c:157 +msgid "Unreachable server" +msgstr "" + +#: lib/strops.c:160 +msgid "Invalid request" +msgstr "" + +#: lib/strops.c:163 +msgid "Crucial replica" +msgstr "" + +#: lib/strops.c:166 +msgid "Time not synchronized" +msgstr "" + +#: lib/strops.c:169 +msgid "Invalid password" +msgstr "" + +#: lib/strops.c:172 +msgid "Alias of an alias" +msgstr "" + +#: lib/strops.c:175 +msgid "Invalid API version" +msgstr "" + +#: lib/strops.c:177 +msgid "Packet signatures required" +msgstr "" + +#: lib/strops.c:180 +msgid "Obsolete API" +msgstr "" + +#: lib/strops.c:183 +msgid "Invalid signature" +msgstr "" + +#: lib/strops.c:188 +msgid "Unknown NDS error" +msgstr "" + +#: lib/strops.c:209 +msgid "Invalid file mode" +msgstr "" + +#: lib/strops.c:211 +msgid "Information not known" +msgstr "" + +#: lib/strops.c:213 +msgid "Namespace information format is not valid" +msgstr "" + +#: lib/strops.c:215 +msgid "Referral needed" +msgstr "" + +#: lib/strops.c:217 +msgid "Permanent connection broken" +msgstr "" + +#: lib/strops.c:219 +msgid "Password required" +msgstr "" + +#: lib/strops.c:224 +msgid "Unknown ncpfs error" +msgstr "" + +#: lib/strops.c:245 +msgid "Too many request/reply fragments" +msgstr "" + +#: lib/strops.c:248 +msgid "Server reply too long" +msgstr "" + +#: lib/strops.c:250 +msgid "Connection to specified server does not exist" +msgstr "" + +#: lib/strops.c:253 +msgid "Scan complete" +msgstr "" + +#: lib/strops.c:255 +msgid "Unsupported name format type" +msgstr "" + +#: lib/strops.c:258 +msgid "Invalid NCP packet length" +msgstr "" + +#: lib/strops.c:261 +msgid "Invalid buffer length" +msgstr "" + +#: lib/strops.c:263 +msgid "User name is not specified" +msgstr "" + +#: lib/strops.c:266 +msgid "Invalid parameter" +msgstr "" + +#: lib/strops.c:269 +msgid "Server not found" +msgstr "" + +#: lib/strops.c:272 +msgid "Signature level conflict" +msgstr "" + +#: lib/strops.c:275 +msgid "Invalid information level" +msgstr "" + +#: lib/strops.c:278 +msgid "Unsupported transport type" +msgstr "" + +#: lib/strops.c:281 +msgid "Unsupported authenticator" +msgstr "" + +#: lib/strops.c:286 +msgid "Unknown Requester error" +msgstr "" + +#: lib/strops.c:307 +msgid "Invalid volume" +msgstr "" + +#: lib/strops.c:310 +msgid "Invalid directory handle" +msgstr "" + +#: lib/strops.c:313 +msgid "Intruder detection lockout" +msgstr "" + +#: lib/strops.c:316 +msgid "No job in queue" +msgstr "" + +#: lib/strops.c:318 +msgid "Password unencrypted" +msgstr "" + +#: lib/strops.c:320 +msgid "Password not unique" +msgstr "" + +#: lib/strops.c:322 +msgid "Password too short" +msgstr "" + +#: lib/strops.c:324 +msgid "Connection limit count exceeded" +msgstr "" + +#: lib/strops.c:326 +msgid "Unauthorized time" +msgstr "" + +#: lib/strops.c:328 +msgid "Unauthorized station" +msgstr "" + +#: lib/strops.c:330 +msgid "Account disabled" +msgstr "" + +#: lib/strops.c:333 +msgid "Password really expired" +msgstr "" + +#: lib/strops.c:335 +msgid "Password expired" +msgstr "" + +#: lib/strops.c:338 +msgid "Member already exists" +msgstr "" + +#: lib/strops.c:341 +msgid "NCP not supported" +msgstr "" + +#: lib/strops.c:343 +msgid "Unknown user" +msgstr "" + +#: lib/strops.c:345 +msgid "Invalid connection number" +msgstr "" + +#: lib/strops.c:348 +msgid "Server failure" +msgstr "" + +#: lib/strops.c:353 +msgid "Unknown Server error" +msgstr "" + +#: lib/strops.c:384 +#, c-format +msgid "Unknown error %d (0x%X)" +msgstr "" + +#: sutil/ncpmount.c:139 +#, c-format +msgid "Specified tree name `%s' is too long\n" +msgstr "" + +#: sutil/ncpmount.c:295 sutil/ncplogin.c:463 +#, c-format +msgid "Unknown namespace \"%s\"\n" +msgstr "" + +#: sutil/ncpmount.c:334 sutil/ncplogin.c:505 +#, c-format +msgid "ncpfs version %s\n" +msgstr "" + +#: sutil/ncpmount.c:351 +msgid "Both tree and server name were specified. It is not allowed.\n" +msgstr "" + +#: sutil/ncpmount.c:355 sutil/ncpumount.c:428 sutil/ncplogin.c:349 +#, c-format +msgid "%s must be installed suid root\n" +msgstr "" + +#: sutil/ncpmount.c:366 sutil/ncplogin.c:711 +#, c-format +msgid "Could not find mount point %s: %s\n" +msgstr "" + +#: sutil/ncpmount.c:371 +#, c-format +msgid "Cannot to mount on %s: %s\n" +msgstr "" + +#: sutil/ncpmount.c:379 sutil/ncplogin.c:531 +#, c-format +msgid "Cannot impersonate as requested: %s\n" +msgstr "" + +#: sutil/ncpmount.c:389 +msgid "You must specify NDS volume name if you specified tree name.\n" +msgstr "" + +#: sutil/ncpmount.c:393 sutil/ncpmount.c:458 +msgid "in create context" +msgstr "" + +#: sutil/ncpmount.c:405 +msgid "in tree search" +msgstr "" + +#: sutil/ncpmount.c:412 sutil/ncpmount.c:644 +msgid "in nds login" +msgstr "" + +#: sutil/ncpmount.c:422 +msgid "in volume search" +msgstr "" + +#: sutil/ncpmount.c:441 sutil/ncplogin.c:180 +#, c-format +msgid "Volume path `%s' is invalid: `%s'\n" +msgstr "" + +#: sutil/ncpmount.c:450 sutil/ncplogin.c:190 +#, c-format +msgid "Volume name `%s' is too long\n" +msgstr "" + +#: sutil/ncpmount.c:467 +#, c-format +msgid "opening mount %s" +msgstr "" + +#: sutil/ncpmount.c:475 +msgid "retrieving user name" +msgstr "" + +#: sutil/ncpmount.c:487 sutil/ncplogin.c:729 +msgid "in find_conn_spec" +msgstr "" + +#: sutil/ncpmount.c:529 sutil/ncpmount.c:569 +#, c-format +msgid "" +"You already have mounted server %s\n" +"as user %s\n" +"on mount point %s\n" +msgstr "" + +#: sutil/ncpmount.c:546 sutil/ncplogin.c:772 +#, c-format +msgid "Get host address `%s': %s\n" +msgstr "" + +#: sutil/ncpmount.c:580 sutil/ncplogin.c:791 sutil/ncplogin.c:799 +#, c-format +msgid "when trying to find %s" +msgstr "" + +#: sutil/ncpmount.c:602 sutil/ncplogin.c:816 sutil/ncplogin.c:836 +#, c-format +msgid "Cannot allocate memory for mtab entry: %s\n" +msgstr "" + +#: sutil/ncpmount.c:613 +msgid "in mount(2)" +msgstr "" + +#: sutil/ncpmount.c:636 +msgid "in authenticate connection" +msgstr "" + +#: sutil/ncpmount.c:645 sutil/ncplogin.c:869 +#, c-format +msgid "Login denied.\n" +msgstr "" + +#: sutil/ncpmount.c:669 sutil/ncplogin.c:887 +msgid "in login" +msgstr "" + +#: sutil/ncpmount.c:670 sutil/ncplogin.c:888 +#, c-format +msgid "Login denied\n" +msgstr "" + +#: sutil/ncpmount.c:701 +msgid "in free context" +msgstr "" + +#: sutil/ncpmount.c:712 sutil/ncplogin.c:931 +#, c-format +msgid "Cannot access path \"%s\": %s\n" +msgstr "" + +#: sutil/ncpmount.c:724 sutil/ncplogin.c:949 +#, c-format +msgid "usage: %s [options] mount-point\n" +msgstr "" + +#: sutil/ncpmount.c:725 sutil/ncplogin.c:953 +#, c-format +msgid "Try `%s -h' for more information\n" +msgstr "" + +#: sutil/ncpmount.c:731 sutil/ncplogin.c:963 +#, c-format +msgid "" +"\n" +"usage: %s [options] mount-point\n" +msgstr "" + +#: sutil/ncpmount.c:735 +#, c-format +msgid "" +"\n" +"-S server Server name to be used\n" +"-A dns_name DNS server name to be used when mounting over TCP or UDP\n" +"-U username Username sent to server\n" +"-V volume Volume to mount, for NFS re-export\n" +"-u uid uid the mounted files get\n" +"-g gid gid the mounted files get\n" +"-f mode permission the files get (octal notation)\n" +"-d mode permission the dirs get (octal notation)\n" +"-c uid uid to identify the connection to mount on\n" +" Only makes sense for root\n" +"-t time_out Waiting time (in 1/100s) to wait for\n" +" an answer from the server. Default: 60\n" +"-r retry_count Number of retry attempts. Default: 5\n" +"-C Don't convert password to uppercase\n" +"-P password Use this password\n" +"-n Do not use any password\n" +" If neither -P nor -n are given, you are\n" +" asked for a password.\n" +"-s Enable renaming/deletion of read-only files\n" +"-h print this help text\n" +"-v print ncpfs version number\n" +"%s%s-m Allow multiple logins to server\n" +"-N os2,nfs Do not use specified namespaces on mounted volume\n" +"-y charset character set used for input and display\n" +"-p codepage codepage used on volume, including letters `cp'\n" +"\n" +msgstr "" + +#: sutil/ncpmount.c:764 +msgid "-b Force bindery login to NDS servers\n" +msgstr "" + +#: sutil/ncpmount.c:770 sutil/ncplogin.c:1005 +msgid "" +"-i level Signature level, 0=never, 1=supported, 2=preferred, " +"3=required\n" +msgstr "" + +#: sutil/ncpumount.c:83 sutil/ncplogin.c:951 util/ipx_probe.c:51 +#: util/ipx_probe.c:61 util/nwauth.c:51 util/nwauth.c:58 util/nwbocreate.c:44 +#: util/nwbocreate.c:51 util/nwbols.c:49 util/nwboprops.c:39 +#: util/nwboprops.c:46 util/nwborm.c:39 util/nwbpadd.c:43 util/nwbpcreate.c:44 +#: util/nwbpset.c:40 util/nwbpvalues.c:52 util/nwdpvalues.c:49 +#: util/nwfsctrl.c:47 util/nwgrant.c:58 util/nwpasswd.c:39 util/nwrevoke.c:50 +#: util/nwrights.c:44 +#, c-format +msgid "usage: %s [options]\n" +msgstr "" + +#: sutil/ncpumount.c:84 util/nwmsg.c:81 contrib/tknwmsg/nwmsg.c:81 +#, c-format +msgid "usage: %s mount-point\n" +msgstr "" + +#: sutil/ncpumount.c:90 +#, c-format +msgid "" +"\n" +"usage: %s [options]\n" +" %s mount-point\n" +msgstr "" + +#: sutil/ncpumount.c:93 +#, c-format +msgid "" +"\n" +"mount-point Disconnect specified mount-point\n" +"-a Disconnect all my connections (NDS and Bindery)\n" +"-S servername Disconnect all connections (NDS and/or Bindery) to specified\n" +" server\n" +"-T treename Disconnect all NDS connections to specified tree\n" +"-g Disconnect all connections to Netware for all users! (only\n" +" root can use this flag)\n" +"-h Print this help text\n" +"\n" +msgstr "" + +#: sutil/ncpumount.c:146 sutil/ncpumount.c:152 +#, c-format +msgid "Can't open %s: %s\n" +msgstr "" + +#: sutil/ncpumount.c:173 +#, c-format +msgid "Error changing mode of %s: %s\n" +msgstr "" + +#: sutil/ncpumount.c:180 +#, c-format +msgid "Cannot rename %s to %s: %s\n" +msgstr "" + +#: sutil/ncpumount.c:199 +#, c-format +msgid "Can't get %s~ lock file: %s\n" +msgstr "" + +#: sutil/ncpumount.c:209 +#, c-format +msgid "Can't lock lock file %s~: %s\n" +msgstr "" + +#: sutil/ncpumount.c:209 +msgid "Lock timed out" +msgstr "" + +#: sutil/ncpumount.c:226 +#, c-format +msgid "Can't remove %s~" +msgstr "" + +#: sutil/ncpumount.c:239 +#, c-format +msgid "Could not open %s: %s\n" +msgstr "" + +#: sutil/ncpumount.c:245 +#, c-format +msgid "%s probably not ncp-filesystem\n" +msgstr "" + +#: sutil/ncpumount.c:251 +#, c-format +msgid "You are not allowed to umount %s\n" +msgstr "" + +#: sutil/ncpumount.c:257 +#, c-format +msgid "Could not umount %s: %s\n" +msgstr "" + +#: sutil/ncpumount.c:281 +#, c-format +msgid "NWCC_INFO_MOUNT_POINT failed: %s\n" +msgstr "" + +#: sutil/ncpumount.c:289 +msgid "Not enough memory for strdup()\n" +msgstr "" + +#: sutil/ncpumount.c:293 +#, c-format +msgid "Successfully logged out from %s\n" +msgstr "" + +#: sutil/ncpumount.c:349 +#, c-format +msgid "Successfully logged out from tree %s (%d server(s))\n" +msgstr "" + +#: sutil/ncpumount.c:351 +#, c-format +msgid "Successfully logged out from all trees.\n" +msgstr "" + +#: sutil/ncpumount.c:354 +#, c-format +msgid "Not logged to tree %s\n" +msgstr "" + +#: sutil/ncpumount.c:356 +msgid "Not logged in\n" +msgstr "" + +#: sutil/ncpumount.c:359 +#, c-format +msgid "" +"Unsuccessfully logged out from tree %s (%d server(s) Ok and %d failure(s))\n" +msgstr "" + +#: sutil/ncpumount.c:361 +#, c-format +msgid "" +"Unsuccessfully logged out from all trees (%d server(s) Ok and %d failure" +"(s))\n" +msgstr "" + +#: sutil/ncpumount.c:388 +#, c-format +msgid "Invalid mount point: %s\n" +msgstr "" + +#: sutil/ncpumount.c:448 +msgid "Only super-user can use the -g flag\n" +msgstr "" + +#: sutil/ncpumount.c:474 +msgid "" +"You must specify either a server, a tree, a mount point, or all " +"connections.\n" +msgstr "" + +#: sutil/ncpumount.c:478 +msgid "You cannot specify a server or a tree with -a or -g option.\n" +msgstr "" + +#: sutil/ncpumount.c:482 +msgid "You cannot specify both a server and a tree together.\n" +msgstr "" + +#: sutil/ncpumount.c:503 +#, c-format +msgid "NWCXGetPermConnList failed: %s\n" +msgstr "" + +#: sutil/ncpumount.c:519 +#, c-format +msgid "No NCP connections to tree %s.\n" +msgstr "" + +#: sutil/ncpumount.c:521 +#, c-format +msgid "No NCP connections to server %s.\n" +msgstr "" + +#: sutil/ncpumount.c:523 +msgid "No NCP connections.\n" +msgstr "" + +#: sutil/nwsfind.c:59 +#, c-format +msgid "usage: %s [server]\n" +msgstr "" + +#: sutil/nwsfind.c:65 +#, c-format +msgid "" +"\n" +"usage: %s [server]\n" +msgstr "" + +#: sutil/nwsfind.c:67 +#, c-format +msgid "" +"\n" +"-t Server type, default: File server\n" +"-a server is in form ::\n" +"-h Print this help text\n" +"\n" +msgstr "" + +#: sutil/nwsfind.c:144 +#, c-format +msgid "%s: Server name too long\n" +msgstr "" + +#: sutil/nwsfind.c:153 util/nwauth.c:135 util/nwauth.c:141 +msgid "when trying to find server" +msgstr "" + +#: sutil/ncplogin.c:174 +msgid "Cannot allocate memory for path\n" +msgstr "" + +#: sutil/ncplogin.c:211 +#, c-format +msgid "Context name `%s' is too long\n" +msgstr "" + +#: sutil/ncplogin.c:492 +#, c-format +msgid "invalid option: %c\n" +msgstr "" + +#: sutil/ncplogin.c:540 +msgid "You must specify a volume to mount using -V option.\n" +msgstr "" + +#: sutil/ncplogin.c:544 +msgid "Cannot have both -T tree and -S server options\n" +msgstr "" + +#: sutil/ncplogin.c:551 +#, c-format +msgid "Unable to open connection to %s.\n" +msgstr "" + +#: sutil/ncplogin.c:556 +#, c-format +msgid "%s is not a NDS server, so background authentication will fail.\n" +msgstr "" + +#: sutil/ncplogin.c:558 +#, c-format +msgid "%s is not a NDS server, so NDS authentication will fail.\n" +msgstr "" + +#: sutil/ncplogin.c:564 sutil/ncplogin.c:597 +#, c-format +msgid "Cannot create NDS context handle: %s\n" +msgstr "" + +#: sutil/ncplogin.c:569 +#, c-format +msgid "Server %s belong to tree %s and you are not authenticated to it.\n" +msgstr "" + +#: sutil/ncplogin.c:574 +#, c-format +msgid "Server %s belong to tree %s and you are already authenticated to it.\n" +msgstr "" + +#: sutil/ncplogin.c:602 +#, c-format +msgid "You are not authenticated to tree %s.\n" +msgstr "" + +#: sutil/ncplogin.c:607 +#, c-format +msgid "You are already authenticated to tree %s.\n" +msgstr "" + +#: sutil/ncplogin.c:619 +#, c-format +msgid "NWDSGetContext/NWDSSetContext (DCK_FLAGS) failed: %s.\n" +msgstr "" + +#: sutil/ncplogin.c:628 +#, c-format +msgid "NWDSSetContext(DCK_NAME_CTX) failed: %s\n" +msgstr "" + +#: sutil/ncplogin.c:639 +#, c-format +msgid "Cannot resolve volume name %s on tree %s (using context %s). Err:%s\n" +msgstr "" + +#: sutil/ncplogin.c:653 +#, c-format +msgid "Cannot attach to tree %s. Err:%s\n" +msgstr "" + +#: sutil/ncplogin.c:659 +#, c-format +msgid "Cannot get server name from connection to tree %s. Err:%s\n" +msgstr "" + +#: sutil/ncplogin.c:677 +msgid "No user name found in cmd line nor in env\n" +msgstr "" + +#: sutil/ncplogin.c:702 +#, c-format +msgid "Could not autocreate mount point %s: %s\n" +msgstr "" + +#: sutil/ncplogin.c:718 +#, c-format +msgid "Cannot mount on %s: %s\n" +msgstr "" + +#: sutil/ncplogin.c:825 +#, c-format +msgid "Cannot retrieve user identity: %s\n" +msgstr "" + +#: sutil/ncplogin.c:830 +#, c-format +msgid "Cannot parse user name: %s\n" +msgstr "" + +#: sutil/ncplogin.c:845 +#, c-format +msgid "already mounted:%s\n" +msgstr "" + +#: sutil/ncplogin.c:847 +msgid "failed in mount(2)" +msgstr "" + +#: sutil/ncplogin.c:868 +msgid "failed in nds login" +msgstr "" + +#: sutil/ncplogin.c:912 +#, c-format +msgid "Cannot attach connection to context: %s\n" +msgstr "" + +#: sutil/ncplogin.c:920 +#, c-format +msgid "Cannot authenticate connection: %s\n" +msgstr "" + +#: sutil/ncplogin.c:941 +#, c-format +msgid "mounted on:%s\n" +msgstr "" + +#: sutil/ncplogin.c:966 util/ncptest.c:317 util/nwborm.c:45 +#: util/nwbpcreate.c:50 util/nwbprm.c:46 util/nwbpvalues.c:58 +#: util/nwfsinfo.c:51 util/nwfstime.c:52 util/nwpasswd.c:45 util/nwpjmv.c:67 +#: util/nwtrustee.c:48 util/nwuserlist.c:80 util/nwvolinfo.c:47 +#: util/pserver.c:65 +#, c-format +msgid "" +"\n" +"usage: %s [options]\n" +msgstr "" + +#: sutil/ncplogin.c:970 +msgid " mount_point is optional if -a option specified\n" +msgstr "" + +#: sutil/ncplogin.c:974 +#, c-format +msgid "" +"\n" +"%s-T tree Tree name to be used\n" +"-S server Server name to be used\n" +" these two options are exclusive\n" +"-X name_ctx Default name context to be used\n" +"-E Echo value of final mount_point\n" +msgstr "" + +#: sutil/ncplogin.c:984 +#, c-format +msgid "" +"\n" +"-U username Username sent to server\n" +"-u uid uid the mounted files get\n" +"-g gid gid the mounted files get\n" +"-c uid uid to identify the connection to mount on\n" +" Only makes sense for root\n" +"-C Don't convert password to uppercase\n" +"-P password Use this password\n" +"-n Do not use any password\n" +" If neither -P nor -n are given, you are\n" +" asked for a password.\n" +msgstr "" + +#: sutil/ncplogin.c:997 +#, c-format +msgid "" +"\n" +"-V volume Volume to mount\n" +" must be in bindery format if -S server\n" +" or in NDS format if -T tree\n" +"-R path Path in volume to 'map root'\n" +msgstr "" + +#: sutil/ncplogin.c:1010 +msgid "" +"-a Autocreate mounting point if needed in ~/ncp/SERVER/VOLUME\n" +msgstr "" + +#: sutil/ncplogin.c:1014 +#, c-format +msgid "" +"\n" +"-f mode permission the files get (octal notation)\n" +"-d mode permission the dirs get (octal notation)\n" +"-t time_out Waiting time (in 1/100s) to wait for\n" +" an answer from the server. Default: 60\n" +"-r retry_count Number of retry attempts. Default: 5\n" +"-s Enable renaming/deletion of read-only files\n" +"-h print this help text\n" +"-v print ncpfs version number\n" +"%s-N os2,nfs Do not use specified namespaces on mounted volume\n" +"-y charset character set used for input and display\n" +"-p codepage codepage used on volume, including letters `cp'\n" +"-B bcast Broadcast mode =0 all 1= console 2= none (default=all)\n" +"%s-l Autocreate mounting point if needed in /mnt/ncp/SERVER/" +"VOLUME\n" +"\n" +msgstr "" + +#: sutil/ncpm_common.c:193 +msgid "Error: \"/proc/filesystems\" could not be read:" +msgstr "" + +#: sutil/ncpm_common.c:251 +msgid "Cannot get kernel release\n" +msgstr "" + +#: sutil/ncpm_common.c:254 +#, c-format +msgid "Cannot convert kernel release \"%s\" to number\n" +msgstr "" + +#: sutil/ncpm_common.c:392 sutil/ncpm_common.c:405 sutil/ncpm_common.c:606 +#: sutil/ncpm_common.c:1466 sutil/ncpm_common.c:1737 +#, c-format +msgid "Cannot relinquish superuser rights: %s\n" +msgstr "" + +#: sutil/ncpm_common.c:498 sutil/ncpm_common.c:543 +#, c-format +msgid "Could not create pipe: %s\n" +msgstr "" + +#: sutil/ncpm_common.c:502 sutil/ncpm_common.c:549 +#, c-format +msgid "Could not fork: %s\n" +msgstr "" + +#: sutil/ncpm_common.c:669 +#, c-format +msgid "Unsupported mount protocol version %d\n" +msgstr "" + +#: sutil/ncpm_common.c:726 +msgid "" +"Remote directory is specified but kernel does not support subdir mounts\n" +msgstr "" + +#: sutil/ncpm_common.c:729 +msgid "" +"Remote directory is specified but ncpmount does not support subdir mounts\n" +msgstr "" + +#: sutil/ncpm_common.c:1439 sutil/ncpm_common.c:1722 +#, c-format +msgid "Cannot switch to superuser: %s\n" +msgstr "" + +#: sutil/ncpm_common.c:1443 +#, c-format +msgid "Can't get %s~ lock file\n" +msgstr "" + +#: sutil/ncpm_common.c:1449 +#, c-format +msgid "Can't open %s\n" +msgstr "" + +#: sutil/ncpm_common.c:1453 +msgid "Can't write mount entry\n" +msgstr "" + +#: sutil/ncpm_common.c:1457 +#, c-format +msgid "Can't set perms on %s\n" +msgstr "" + +#: sutil/ncpm_common.c:1463 +#, c-format +msgid "Can't remove %s~\n" +msgstr "" + +#: sutil/ncpm_common.c:1484 +#, c-format +msgid "Value `%s' for option `%s' is not a number\n" +msgstr "" + +#: sutil/ncpm_common.c:1488 +#, c-format +msgid "Ignoring unneeded value for option `%s'\n" +msgstr "" + +#: sutil/ncpm_common.c:1493 +#, c-format +msgid "Required parameter for option `%s' missing\n" +msgstr "" + +#: sutil/ncpm_common.c:1517 +msgid "You are not allowed to clear nosuid and nodev flags\n" +msgstr "" + +#: sutil/ncpm_common.c:1527 +msgid "You are not allowed to clear noexec flag\n" +msgstr "" + +#: sutil/ncpm_common.c:1533 +msgid "Remounting not supported, sorry\n" +msgstr "" + +#: sutil/ncpm_common.c:1542 +msgid "Timeout must be between 1 and 900 secs inclusive\n" +msgstr "" + +#: sutil/ncpm_common.c:1549 +msgid "Retry count must be between 1 and 65536 inclusive\n" +msgstr "" + +#: sutil/ncpm_common.c:1580 +#, c-format +msgid "Specified server name `%s' is too long\n" +msgstr "" + +#: sutil/ncpm_common.c:1591 +#, c-format +msgid "NCP signature level must be number between 0 and 3. You specified %u\n" +msgstr "" + +#: sutil/ncpm_common.c:1598 +#, c-format +msgid "NCP cache time to live must be less than 20000 ms. You specified %u\n" +msgstr "" + +#: sutil/ncpm_common.c:1608 +#, c-format +msgid "File mode `%s' is not valid octal number\n" +msgstr "" + +#: sutil/ncpm_common.c:1617 +#, c-format +msgid "Directory mode `%s' is not valid octal number\n" +msgstr "" + +#: sutil/ncpm_common.c:1623 +#, c-format +msgid "I/O charset name `%s' is too long\n" +msgstr "" + +#: sutil/ncpm_common.c:1630 +#, c-format +msgid "Codepage name `%s' is too long\n" +msgstr "" + +#: sutil/ncpm_common.c:1705 +#, c-format +msgid "Unknown option `%s', ignoring it\n" +msgstr "" + +#: sutil/ncpm_common.c:1714 +msgid "attempt to open mount point" +msgstr "" + +#: sutil/ncpm_common.c:1742 +#, c-format +msgid "" +"Your kernel does not support character mapping. You should upgrade to latest " +"version.\n" +msgstr "" + +#: sutil/ncpm_common.c:1744 +msgid "Warning: Unable to load NLS charsets" +msgstr "" + +#: sutil/ncpm_common.c:1751 +#, c-format +msgid "" +"Your kernel does not support filename caching. You should upgrade to latest " +"kernel version.\n" +msgstr "" + +#: sutil/ncpm_common.c:1753 +#, c-format +msgid "Warning: Cannot enable filename caching: %s\n" +msgstr "" + +#: sutil/ncpm_common.c:1765 +#, c-format +msgid "Unable to negotiate requested security level: %s\n" +msgstr "" + +#: sutil/ncpm_common.c:1781 sutil/ncpm_common.c:1804 sutil/ncpm_common.c:1824 +msgid "opening ncp_socket" +msgstr "" + +#: sutil/ncpm_common.c:1797 sutil/ncpm_common.c:1817 +msgid "Invalid transport requested" +msgstr "" + +#: sutil/ncpm_common.c:1830 +#, c-format +msgid "%s: Could not open wdog socket: %s\n" +msgstr "" + +#: sutil/ncpm_common.c:1841 +msgid "No transport available\n" +msgstr "" + +#: sutil/ncpm_common.c:1846 +#, c-format +msgid "bind failed: %s\n" +msgstr "" + +#: sutil/ncpm_common.c:1848 +#, c-format +msgid "" +"\n" +"Maybe you want to use \n" +"ipx_configure --auto_interface=on --auto_primary=on\n" +"and try again after waiting a minute.\n" +"\n" +msgstr "" + +#: sutil/ncpm_common.c:1861 +msgid "getsockname ncp socketfailed" +msgstr "" + +#: sutil/ncpm_common.c:1870 +#, c-format +msgid "bind(wdog_sock, ): %s\n" +msgstr "" + +#: sutil/ncpm_common.c:1878 +#, c-format +msgid "Could not open message socket: %s\n" +msgstr "" + +#: sutil/ncpm_common.c:1886 +#, c-format +msgid "bind(message_sock, ): %s\n" +msgstr "" + +#: sutil/ncpm_common.c:1895 +#, c-format +msgid "connect(ncp_fd, ): %s\n" +msgstr "" + +#: sutil/mount_login.c:86 +msgid "Cannot retrieve password from non-blocking file descriptor\n" +msgstr "" + +#: sutil/mount_login.c:88 +#, c-format +msgid "Cannot retrieve password from file descriptor: %s\n" +msgstr "" + +#: sutil/mount_login.c:91 +msgid "Cannot retrieve password from file descriptor\n" +msgstr "" + +#: sutil/mount_login.c:97 util/nwauth.c:151 util/nwauth.c:160 +#: util/nwpasswd.c:143 util/nwpasswd.c:151 util/nwpasswd.c:159 +#, c-format +msgid "Password too long\n" +msgstr "" + +#: sutil/mount_login.c:122 +#, c-format +msgid "owner parameter `%s' is not valid decimal number\n" +msgstr "" + +#: sutil/mount_login.c:128 sutil/mount_login.c:150 +#, c-format +msgid "User `%s' does not exist on this machine\n" +msgstr "" + +#: sutil/mount_login.c:135 +#, c-format +msgid "You are not allowed to set owner to `%s'\n" +msgstr "" + +#: sutil/mount_login.c:144 +#, c-format +msgid "uid parameter `%s' is not valid decimal number\n" +msgstr "" + +#: sutil/mount_login.c:157 +#, c-format +msgid "You are not allowed to set uid to `%s'\n" +msgstr "" + +#: sutil/mount_login.c:168 +#, c-format +msgid "gid parameter `%s' is not valid decimal number\n" +msgstr "" + +#: sutil/mount_login.c:174 +#, c-format +msgid "Group `%s' does not exist on this machine\n" +msgstr "" + +#: sutil/mount_login.c:186 +msgid "Cannot retrieve list of groups you are in\n" +msgstr "" + +#: sutil/mount_login.c:194 +msgid "Not enough memory for list of groups\n" +msgstr "" + +#: sutil/mount_login.c:207 +#, c-format +msgid "You are not allowed to set gid to `%s'\n" +msgstr "" + +#: sutil/mount_login.c:219 +msgid "Specified password is too long\n" +msgstr "" + +#: sutil/mount_login.c:226 +msgid "Not enough memory for copy of password\n" +msgstr "" + +#: util/ipx_probe.c:52 +#, c-format +msgid "type '%s -h' for help\n" +msgstr "" + +#: util/ipx_probe.c:58 +#, c-format +msgid "" +"\n" +"Probe an interface for ipx networks\n" +"\n" +msgstr "" + +#: util/ipx_probe.c:62 +#, c-format +msgid "" +"\n" +"-v Verbose output\n" +"-i interface Interface to probe, default: eth0\n" +"-t timeout Seconds to wait for answer, default: 3\n" +"-h Print this help text\n" +"\n" +msgstr "" + +#: util/ipx_probe.c:194 +#, c-format +msgid "probing %s on %s -- " +msgstr "" + +#: util/ipx_probe.c:203 util/ipx_probe.c:369 +#, c-format +msgid "%s: socket" +msgstr "" + +#: util/ipx_probe.c:290 +#, c-format +msgid "%s: Could not find socket address\n" +msgstr "" + +#: util/ipx_probe.c:307 +#, c-format +msgid "%s: could not delete interface\n" +msgstr "" + +#: util/ipx_probe.c:315 +#, c-format +msgid "no network found\n" +msgstr "" + +#: util/ipx_probe.c:321 +#, c-format +msgid "found IPX network %8.8lX\n" +msgstr "" + +#: util/ipx_probe.c:379 +#, c-format +msgid "%s: ioctl" +msgstr "" + +#: util/ipx_probe.c:443 +#, c-format +msgid "%s must be run with no interfaces configured. Found %d interface%s.\n" +msgstr "" + +#: util/ipx_probe.c:451 +#, c-format +msgid "%s: %s\n" +msgstr "" + +#: util/ipx_probe.c:463 util/ipx_probe.c:468 util/ipx_probe.c:473 +#: util/ipx_probe.c:478 +#, c-format +msgid "%s %8.8lX\n" +msgstr "" + +#: util/ncopy.c:115 +#, c-format +msgid "usage: %s [-V]\n" +msgstr "" + +#: util/ncopy.c:116 +#, c-format +msgid " %s [-vmMnppt] [-s amt] sourcefile destinationfile|directory\n" +msgstr "" + +#: util/ncopy.c:117 +#, c-format +msgid " %s [-vmMnppt] [-s amt] sourcefile [...] directory\n" +msgstr "" + +#: util/ncopy.c:118 +#, c-format +msgid " %s [-vmMnppt] [-s amt] -r sourcedir directory\n" +msgstr "" + +#: util/ncopy.c:157 util/ncopy.c:877 +msgid "not a directory" +msgstr "" + +#: util/ncopy.c:191 +#, c-format +msgid "%s: -s option requires positive numeric argument > 0\n" +msgstr "" + +#: util/ncopy.c:240 +#, c-format +msgid "%s: No arguments specified.\n" +msgstr "" + +#: util/ncopy.c:245 +#, c-format +msgid "%s: No destination specified.\n" +msgstr "" + +#: util/ncopy.c:250 util/ncopy.c:877 +#, c-format +msgid "%s: %s: %s\n" +msgstr "" + +#: util/ncopy.c:272 +#, c-format +msgid "Cannot convert ID %08X to name: %s\n" +msgstr "" + +#: util/ncopy.c:278 +#, c-format +msgid "Cannot convert name %s(%04X) to ID: %s\n" +msgstr "" + +#: util/ncopy.c:326 util/ncopy.c:410 +#, c-format +msgid "%s: %s -> %s %5.1f%%" +msgstr "" + +#: util/ncopy.c:328 util/ncopy.c:413 +#, c-format +msgid "%s: %s -> %s %lld" +msgstr "" + +#: util/ncopy.c:376 +#, c-format +msgid "%s: Cannot read %s\n" +msgstr "" + +#: util/ncopy.c:398 +#, c-format +msgid "%s: Cannot write %s\n" +msgstr "" + +#: util/ncopy.c:416 +#, c-format +msgid " %d retries" +msgstr "" + +#: util/ncopy.c:442 util/ncopy.c:469 +#, c-format +msgid "%s: Unable to open source file: %s\n" +msgstr "" + +#: util/ncopy.c:450 +#, c-format +msgid "%s: Unable to stat source file: %s\n" +msgstr "" + +#: util/ncopy.c:485 +#, c-format +msgid "%s: Unable to open output file: %s\n" +msgstr "" + +#: util/ncopy.c:493 +#, c-format +msgid "%s: Unable to stat destination file: %s\n" +msgstr "" + +#: util/ncopy.c:506 +#, c-format +msgid "%s: Unable to open destination file: %s\n" +msgstr "" + +#: util/ncopy.c:555 +msgid "NetWare copy" +msgstr "" + +#: util/ncopy.c:561 util/ncopy.c:569 +#, c-format +msgid "%s: Close failed for %s\n" +msgstr "" + +#: util/ncopy.c:593 +#, c-format +msgid "MAC namespace is not supported on source %s: %s\n" +msgstr "" + +#: util/ncopy.c:605 +#, c-format +msgid "Unable to open MAC resource fork on source %s: %s\n" +msgstr "" + +#: util/ncopy.c:644 +#, c-format +msgid "MAC namespace is not supported on destination %s: %s\n" +msgstr "" + +#: util/ncopy.c:654 +#, c-format +msgid "Unable to create MAC resource fork on destination %s: %s\n" +msgstr "" + +#: util/ncopy.c:667 +#, c-format +msgid "" +"Unable to copy MAC resource fork of %s because of %s does not support " +"resource forks\n" +msgstr "" + +#: util/ncopy.c:694 +#, c-format +msgid "Unable to copy MAC resource fork: %s: %s\n" +msgstr "" + +#: util/ncopy.c:703 +msgid "NetWare copy (resource fork)" +msgstr "" + +#: util/ncopy.c:735 util/ncopy.c:753 +#, c-format +msgid "Cannot set trustees on %s because of %s\n" +msgstr "" + +#: util/ncopy.c:737 util/ncopy.c:764 +msgid "not NetWare filesystem" +msgstr "" + +#: util/ncopy.c:762 util/ncopy.c:802 +#, c-format +msgid "Cannot set file attributes on %s because of %s\n" +msgstr "" + +#: util/ncopy.c:845 +#, c-format +msgid "" +"Param Src '%s'\n" +"Param Dest '%s'\n" +msgstr "" + +#: util/ncopy.c:852 +#, c-format +msgid "%s: Cannot open %s, %s\n" +msgstr "" + +#: util/ncopy.c:858 +#, c-format +msgid "%s: Cannot stat %s, %s\n" +msgstr "" + +#: util/ncopy.c:884 +#, c-format +msgid "%s: Cannot chmod %s: %s\n" +msgstr "" + +#: util/ncopy.c:891 +#, c-format +msgid "%s: Cannot create %s: %s\n" +msgstr "" + +#: util/ncopy.c:901 util/ncopy.c:968 +#, c-format +msgid "%s: Cannot create %s, %s\n" +msgstr "" + +#: util/ncopy.c:914 +#, c-format +msgid "%s: Cannot read %s: %s\n" +msgstr "" + +#: util/ncopy.c:941 +#, c-format +msgid "%s: %s: omitting directory\n" +msgstr "" + +#: util/ncopy.c:1055 +#, c-format +msgid "%s: Reset to ignore SIGHUP signal failed: %s" +msgstr "" + +#: util/ncopy.c:1062 +#, c-format +msgid "%s: Reset to ignore SIGINT signal failed: %s" +msgstr "" + +#: util/ncopy.c:1069 +#, c-format +msgid "%s: Reset to ignore SIGQUIT signal failed: %s" +msgstr "" + +#: util/ncopy.c:1076 +#, c-format +msgid "%s: Reset to ignore SIGTERM signal failed: %s" +msgstr "" + +#: util/ncopy.c:1088 +#, c-format +msgid "%s: unclean close of output file" +msgstr "" + +#: util/ncopy.c:1107 +#, c-format +msgid "%s: Get HANGUP signal action failed: %s" +msgstr "" + +#: util/ncopy.c:1114 +#, c-format +msgid "%s: Reset HANGUP signal action failed: %s" +msgstr "" + +#: util/ncopy.c:1120 +#, c-format +msgid "%s: Get INTERRUPT signal action failed: %s" +msgstr "" + +#: util/ncopy.c:1127 +#, c-format +msgid "%s: Reset INTERRUPT signal action failed: %s" +msgstr "" + +#: util/ncopy.c:1133 +#, c-format +msgid "%s: Get QUIT signal action failed: %s" +msgstr "" + +#: util/ncopy.c:1140 +#, c-format +msgid "%s: Reset QUIT signal action failed: %s" +msgstr "" + +#: util/ncopy.c:1146 +#, c-format +msgid "%s: Get TERMINATE signal action failed: %s" +msgstr "" + +#: util/ncopy.c:1153 +#, c-format +msgid "%s: Reset TERMINATE signal action failed: %s" +msgstr "" + +#: util/ncopy.c:1184 +#, c-format +msgid "%s version %s\n" +msgstr "" + +#: util/ncptest.c:109 +#, c-format +msgid "" +"\n" +"test_create:\n" +msgstr "" + +#: util/ncptest.c:112 util/ncptest.c:176 util/ncptest.c:278 +#, c-format +msgid "Volume %s not found! error %ld.\n" +msgstr "" + +#: util/ncptest.c:117 +#, c-format +msgid "lookup public error\n" +msgstr "" + +#: util/ncptest.c:123 +#, c-format +msgid "alloc_dir_handle error\n" +msgstr "" + +#: util/ncptest.c:129 +#, c-format +msgid "create error\n" +msgstr "" + +#: util/ncptest.c:134 +#, c-format +msgid "dealloc error\n" +msgstr "" + +#: util/ncptest.c:137 +#, c-format +msgid "test_create: Passed.\n" +msgstr "" + +#: util/ncptest.c:173 +#, c-format +msgid "" +"\n" +"test_readdir:\n" +msgstr "" + +#: util/ncptest.c:181 +#, c-format +msgid "lookup blub error\n" +msgstr "" + +#: util/ncptest.c:186 +#, c-format +msgid "init error\n" +msgstr "" + +#: util/ncptest.c:192 +#, c-format +msgid "\tfound\t\t: %s\n" +msgstr "" + +#: util/ncptest.c:200 util/ncptest.c:248 +#, c-format +msgid "\tnfs name\t: %s\n" +msgstr "" + +#: util/ncptest.c:209 util/ncptest.c:259 +#, c-format +msgid "\tos2 name\t: %s\n" +msgstr "" + +#: util/ncptest.c:222 +#, c-format +msgid "path translation error\n" +msgstr "" + +#: util/ncptest.c:225 +#, c-format +msgid "Search in subdir '" +msgstr "" + +#: util/ncptest.c:225 +#, c-format +msgid "' on volume '%s'\n" +msgstr "" + +#: util/ncptest.c:231 +#, c-format +msgid "init search2 error\n" +msgstr "" + +#: util/ncptest.c:237 +#, c-format +msgid "\tfound %s\t: %s\n" +msgstr "" + +#: util/ncptest.c:264 +#, c-format +msgid "test_readdir: Passed.\n" +msgstr "" + +#: util/ncptest.c:275 +#, c-format +msgid "" +"\n" +"test_rights:\n" +msgstr "" + +#: util/ncptest.c:283 +#, c-format +msgid "lookup me error\n" +msgstr "" + +#: util/ncptest.c:290 +#, c-format +msgid "get sys rights error\n" +msgstr "" + +#: util/ncptest.c:293 +#, c-format +msgid "%s right: %4.4x\n" +msgstr "" + +#: util/ncptest.c:299 +#, c-format +msgid "get me rights error\n" +msgstr "" + +#: util/ncptest.c:302 +#, c-format +msgid "me right: %4.4x\n" +msgstr "" + +#: util/ncptest.c:303 +#, c-format +msgid "test_rights: Passed.\n" +msgstr "" + +#: util/ncptest.c:310 util/nwbols.c:41 util/nwtrustee.c:41 util/nwvolinfo.c:40 +#, c-format +msgid "usage: %s [options] pattern\n" +msgstr "" + +#: util/ncptest.c:319 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-v volume volume name\n" +"\n" +msgstr "" + +#: util/ncptest.c:346 +msgid "in ncp_initialize" +msgstr "" + +#: util/nprint.c:95 +msgid "when initializing connection" +msgstr "" + +#: util/nprint.c:110 util/nwpjmv.c:165 util/pserver.c:186 +msgid "No Description" +msgstr "" + +#: util/nprint.c:156 +#, c-format +msgid "invalid line number: %s\n" +msgstr "" + +#: util/nprint.c:167 +#, c-format +msgid "invalid row number: %s\n" +msgstr "" + +#: util/nprint.c:178 +#, c-format +msgid "invalid copies: %s\n" +msgstr "" + +#: util/nprint.c:189 +#, c-format +msgid "invalid tab size: %s\n" +msgstr "" + +#: util/nprint.c:208 +#, c-format +msgid "invalid form number: %s\n" +msgstr "" + +#: util/nprint.c:251 +msgid "could not open file" +msgstr "" + +#: util/nprint.c:270 +#, c-format +msgid "Could not find queue %s\n" +msgstr "" + +#: util/nprint.c:279 +#, c-format +msgid "Cannot create print job: %s\n" +msgstr "" + +#: util/nprint.c:307 +#, c-format +msgid "Cannot start print job: %s\n" +msgstr "" + +#: util/nprint.c:318 util/nprint.c:325 util/nwpjmv.c:61 util/pserver.c:59 +#, c-format +msgid "usage: %s [options] file\n" +msgstr "" + +#: util/nprint.c:326 +#, c-format +msgid "" +"\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"-q queue name Name of the printing queue to use\n" +"-d job desc Job description\n" +"-p pathname Pathname to appear on banner (up to 79 chars)\n" +"-B username Username to appear on banner (up to 12 chars)\n" +"-f filename Filename to appear on banner (up to 12 chars)\n" +"-s Supress banner page\n" +"-l lines Number of lines per page\n" +"-r rows Number of rows per page\n" +"-t tab Number of spaces per tab\n" +"-T Print server tab expantion\n" +"-N Surpress print server form feeds\n" +"-F form # Form number to print on\n" +"-h print this help text\n" +"\n" +msgstr "" + +#: util/nsend.c:62 +#, c-format +msgid "Unable to send message to %s/%s: %s\n" +msgstr "" + +#: util/nsend.c:72 +msgid "Illegal station number" +msgstr "" + +#: util/nsend.c:73 +msgid "Client not logged in" +msgstr "" + +#: util/nsend.c:74 +msgid "Client not accepting messages" +msgstr "" + +#: util/nsend.c:75 +msgid "Client already has message" +msgstr "" + +#: util/nsend.c:80 +#, c-format +msgid "Message was not sent to %s/%s (station %d): %s\n" +msgstr "" + +#: util/nsend.c:83 +#, c-format +msgid "Message sent to %s/%s (station %d)\n" +msgstr "" + +#: util/nsend.c:97 +#, c-format +msgid "Unable to get connection list for %s: %s\n" +msgstr "" + +#: util/nsend.c:110 +#, c-format +msgid "No connection found for %s/%s\n" +msgstr "" + +#: util/nsend.c:115 util/nsend.c:120 +#, c-format +msgid "usage: %s [options] [user|group] message\n" +msgstr "" + +#: util/nsend.c:121 +#, c-format +msgid "" +"\n" +"-h Prints this help text\n" +"-S server Server name to be used\n" +"-U user Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Do not convert password to uppercase\n" +"\n" +"-o object_name Recipient name\n" +"-t object_type Recipient type (default=any)\n" +"-c connid Recipient connection number\n" +"-i object_ID Recipient object ID\n" +"-a Do not prepend 'From xxx[x]:' to message\n" +"\n" +msgstr "" + +#: util/nsend.c:162 util/nwbocreate.c:115 util/nwboprops.c:83 util/nwborm.c:80 +#: util/nwbpadd.c:95 util/nwbpcreate.c:119 util/nwbprm.c:83 util/nwbpset.c:91 +#: util/nwfsinfo.c:137 util/nwfstime.c:90 util/nwpjmv.c:351 util/nwpqjob.c:87 +#: util/nwrights.c:102 util/nwtrustee.c:98 util/nwuserlist.c:205 +#: util/pqlist.c:176 util/pqstat.c:138 util/pserver.c:360 +msgid "when initializing" +msgstr "" + +#: util/nsend.c:171 util/nsend.c:200 +#, c-format +msgid "%s: multiple -%c are not allowed\n" +msgstr "" + +#: util/nsend.c:173 util/nsend.c:184 util/nsend.c:202 +#, c-format +msgid "%s: -%c cannot be used together with -%c\n" +msgstr "" + +#: util/nsend.c:246 +#, c-format +msgid "From %s[%d]: %s" +msgstr "" + +#: util/nsend.c:257 +#, c-format +msgid "%s: Unable to get connection list for %08X: %s\n" +msgstr "" + +#: util/nsend.c:271 +#, c-format +msgid "No connection found for %s/%08X\n" +msgstr "" + +#: util/nsend.c:301 +#, c-format +msgid "%s: Cannot convert member ID 0x%08lX to name: %s\n" +msgstr "" + +#: util/nsend.c:308 +#, c-format +msgid "%s: Cannot read members of group %s: %s\n" +msgstr "" + +#: util/nwauth.c:59 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-t type Object type (decimal value)\n" +"-P password User password\n" +"-b Bindery only mode\n" +"-D Daemon authentication, ignore process uid\n" +"\n" +msgstr "" + +#: util/nwauth.c:156 +msgid "Enter password: " +msgstr "" + +#: util/nwauth.c:174 util/nwpasswd.c:177 +msgid "when trying to open connection" +msgstr "" + +#: util/nwbocreate.c:52 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-o object_name Name of created object\n" +"-t type Object type (decimal value)\n" +"-r read-flag Read security\n" +"-w write-flag Write security\n" +"\n" +msgstr "" + +#: util/nwbocreate.c:134 util/nwbpcreate.c:151 +#, c-format +msgid "" +"%s: Wrong read security\n" +"Must be one of anyone, logged, object, supervisor or netware\n" +msgstr "" + +#: util/nwbocreate.c:146 util/nwbpcreate.c:163 +#, c-format +msgid "" +"%s: Wrong write security\n" +"Must be one of anyone, logged, object, supervisor or netware\n" +msgstr "" + +#: util/nwbocreate.c:165 util/nwboprops.c:112 util/nwborm.c:106 +#: util/nwbpadd.c:137 util/nwbpcreate.c:182 util/nwbprm.c:119 +#: util/nwbpvalues.c:157 +#, c-format +msgid "%s: You must specify an object type\n" +msgstr "" + +#: util/nwbocreate.c:171 util/nwboprops.c:118 util/nwborm.c:112 +#: util/nwbpadd.c:143 util/nwbpcreate.c:188 util/nwbprm.c:125 +#: util/nwbpvalues.c:163 util/nwgrant.c:142 util/nwrevoke.c:124 +#, c-format +msgid "%s: You must specify an object name\n" +msgstr "" + +#: util/nwbocreate.c:178 +#, c-format +msgid "%s: Could not create the object\n" +msgstr "" + +#: util/nwbols.c:50 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-t type Object type to be listed (decimal)\n" +"-o object Object pattern\n" +"-v Verbose listing\n" +"-a Alternative output format\n" +"-d Show object type in decimal\n" +"\n" +msgstr "" + +#: util/nwbols.c:131 +#, c-format +msgid "%s: %s is not on ncpfs filesystem\n" +msgstr "" + +#: util/nwboprops.c:47 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-o object_name Name of object inspected\n" +"-t type Object type (decimal value)\n" +"-v Verbose listing\n" +"\n" +msgstr "" + +#: util/nwborm.c:47 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-o object_name Name of object to be removed\n" +"-t type Object type (decimal value)\n" +"\n" +msgstr "" + +#: util/nwborm.c:118 +#, c-format +msgid "%s: Could not delete the object\n" +msgstr "" + +#: util/nwbpadd.c:49 util/nwbpset.c:46 +#, c-format +msgid "" +"\n" +"usage: %s [options] [values]\n" +msgstr "" + +#: util/nwbpadd.c:51 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-o object_name Name of accessed object\n" +"-t type Object type (decimal value)\n" +"-p property Name of property to be touched\n" +"value value to be added\n" +"\n" +"If property is of type SET, value is an object id (hex)\n" +"Otherwise, value is either a string value to be written, or\n" +"a count of bytes to be written. The latter is assumed if\n" +"more than one value argument is given. The count is decimal,\n" +"and the following arguments are interpreted as bytes in\n" +"hexadecimal notation.\n" +"\n" +msgstr "" + +#: util/nwbpadd.c:113 util/nwbpcreate.c:137 util/nwbprm.c:101 +#: util/nwbpvalues.c:121 +#, c-format +msgid "%s: Property Name too long\n" +msgstr "" + +#: util/nwbpadd.c:149 util/nwbpcreate.c:194 util/nwbprm.c:131 +#: util/nwbpvalues.c:169 +#, c-format +msgid "%s: You must specify a property name\n" +msgstr "" + +#: util/nwbpadd.c:155 +#, c-format +msgid "%s: You must specify a property value\n" +msgstr "" + +#: util/nwbpadd.c:165 +#, c-format +msgid "%s: Could not find property\n" +msgstr "" + +#: util/nwbpadd.c:176 +#, c-format +msgid "%s: For the SET property %s, you must specify an object id as value\n" +msgstr "" + +#: util/nwbpadd.c:188 +#, c-format +msgid "%s: %s is not a valid object id\n" +msgstr "" + +#: util/nwbpadd.c:196 +#, c-format +msgid "%s: could not add object %s\n" +msgstr "" + +#: util/nwbpadd.c:215 util/nwbpadd.c:227 +#, c-format +msgid "%s: Value too long\n" +msgstr "" + +#: util/nwbpadd.c:233 +#, c-format +msgid "%s: Byte count does not match number of bytes\n" +msgstr "" + +#: util/nwbpadd.c:263 +#, c-format +msgid "%s: Could not write property\n" +msgstr "" + +#: util/nwbpcreate.c:52 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-o object_name Name of object\n" +"-t type Object type (decimal value)\n" +"-p property Name of property to be created\n" +"-s Property is SET, default: ITEM\n" +"-r read-flag Read security\n" +"-w write-flag Write security\n" +"\n" +msgstr "" + +#: util/nwbpcreate.c:203 +#, c-format +msgid "%s: Could not create the property\n" +msgstr "" + +#: util/nwbprm.c:40 util/pqlist.c:182 +#, c-format +msgid "usage: %s [options] [pattern]\n" +msgstr "" + +#: util/nwbprm.c:48 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-o object_name Name of object\n" +"-t type Object type (decimal value)\n" +"-p property Name of property to be deleted\n" +"\n" +msgstr "" + +#: util/nwbprm.c:138 +#, c-format +msgid "%s: Could not delete the property\n" +msgstr "" + +#: util/nwbpset.c:48 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +msgstr "" + +#: util/nwbpset.c:111 util/nwbpset.c:119 util/nwbpset.c:125 util/nwbpset.c:131 +#: util/nwbpset.c:139 util/nwbpset.c:235 +#, c-format +msgid "Illegal format on stdin\n" +msgstr "" + +#: util/nwbpset.c:151 +#, c-format +msgid "Tried to write %s property\n" +msgstr "" + +#: util/nwbpset.c:153 +msgid "SET over existing ITEM" +msgstr "" + +#: util/nwbpset.c:154 +msgid "ITEM over existing SET" +msgstr "" + +#: util/nwbpset.c:164 +#, c-format +msgid "Could not change property security\n" +msgstr "" + +#: util/nwbpset.c:175 +#, c-format +msgid "Could not create property\n" +msgstr "" + +#: util/nwbpset.c:217 +#, c-format +msgid "Could not write property\n" +msgstr "" + +#: util/nwbpset.c:246 +#, c-format +msgid "Could not add object to set\n" +msgstr "" + +#: util/nwbpvalues.c:60 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-o object_name Name of object\n" +"-t type Object type (decimal value)\n" +"-p property Name of property to be listed\n" +"-v Verbose object listing\n" +"-c Canonical output, for use with nwbpadd\n" +"\n" +msgstr "" + +#: util/nwbpvalues.c:151 util/nwdpvalues.c:143 +#, c-format +msgid "%s: %s is not ncpfs file or directory\n" +msgstr "" + +#: util/nwbpvalues.c:179 +msgid "No such property" +msgstr "" + +#: util/nwbpvalues.c:183 +#, c-format +msgid "%s: Could not find property: %s\n" +msgstr "" + +#: util/nwbpvalues.c:205 +#, c-format +msgid "%s: Could not read property value: %s\n" +msgstr "" + +#: util/nwbpvalues.c:377 +#, c-format +msgid "Last Login: %x, %X" +msgstr "" + +#: util/nwbpvalues.c:381 +#, c-format +msgid "Never logged in\n" +msgstr "" + +#: util/nwbpvalues.c:385 +#, c-format +msgid " --- Account disabled ---\n" +msgstr "" + +#: util/nwbpvalues.c:400 +#, c-format +msgid "Account expires on: %x" +msgstr "" + +#: util/nwbpvalues.c:416 +#, c-format +msgid "Password expires on: %x" +msgstr "" + +#: util/nwbpvalues.c:418 +#, c-format +msgid "" +"GraceLogins left: %d\n" +"of max. : %d\n" +msgstr "" + +#: util/nwbpvalues.c:420 +#, c-format +msgid "PasswortChangeInterval : %d days\n" +msgstr "" + +#: util/nwbpvalues.c:425 +#, c-format +msgid "New password must be different when changing\n" +msgstr "" + +#: util/nwbpvalues.c:429 +#, c-format +msgid "User is not allowed to change password\n" +msgstr "" + +#: util/nwbpvalues.c:431 +#, c-format +msgid "Minimal password length : %d\n" +msgstr "" + +#: util/nwbpvalues.c:434 +#, c-format +msgid "Maximum no of connections: %d\n" +msgstr "" + +#: util/nwbpvalues.c:439 +#, c-format +msgid "Maximum DiskQuota : %8d blocks\n" +msgstr "" + +#: util/nwbpvalues.c:442 +#, c-format +msgid "Failed Logins: %5d\n" +msgstr "" + +#: util/nwbpvalues.c:446 +#, c-format +msgid "Account disabled still %8d seconds\n" +msgstr "" + +#: util/nwbpvalues.c:451 +#, c-format +msgid "Last 'intruder' address: %s\n" +msgstr "" + +#: util/nwbpvalues.c:457 +#, c-format +msgid "RestrictionMask : %02X\n" +msgstr "" + +#: util/nwbpvalues.c:471 +#, c-format +msgid "Time restrictions: 1 1 1 1 1 1 1 1 1 1 2 2 2 2 ]\n" +msgstr "" + +#: util/nwbpvalues.c:472 +#, c-format +msgid " Day [0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 ]\n" +msgstr "" + +#: util/nwbpvalues.c:512 +#, c-format +msgid "Segment: %03d\n" +msgstr "" + +#: util/nwdir.c:203 util/nwlistsalvage.c:56 +#, c-format +msgid "Nobody" +msgstr "" + +#: util/nwdir.c:212 util/nwlistsalvage.c:65 +#, c-format +msgid "Unknown:N/A" +msgstr "" + +#: util/nwdir.c:218 util/nwlistsalvage.c:71 +#, c-format +msgid "Unknown:<%s>" +msgstr "" + +#: util/nwdir.c:223 util/nwlistsalvage.c:76 +#, c-format +msgid "User:" +msgstr "" + +#: util/nwdir.c:224 util/nwlistsalvage.c:77 +#, c-format +msgid "Group:" +msgstr "" + +#: util/nwdir.c:225 util/nwlistsalvage.c:78 +#, c-format +msgid "FileServer:" +msgstr "" + +#: util/nwdir.c:226 util/nwlistsalvage.c:79 +#, c-format +msgid "Unknown(%04X):" +msgstr "" + +#: util/nwdir.c:271 util/nwlistsalvage.c:120 +msgid "never" +msgstr "" + +#: util/nwdir.c:311 +#, c-format +msgid "" +"Extended attributes: %u attributes\n" +" %u bytes in keys, %u bytes in data\n" +msgstr "" + +#: util/nwdir.c:327 +#, c-format +msgid "" +" Key %u:\n" +" Name: %s\n" +" Access Flag: 0x%08X\n" +" Value Length: %u\n" +msgstr "" + +#: util/nwdir.c:365 util/nwdir.c:388 +#, c-format +msgid " Cannot determine file size: %s\n" +msgstr "" + +#: util/nwdir.c:367 util/nwdir.c:417 +#, c-format +msgid " File size: %10Lu" +msgstr "" + +#: util/nwdir.c:372 util/nwdir.c:423 +#, c-format +msgid " (allocated %Lu)" +msgstr "" + +#: util/nwdir.c:390 +#, c-format +msgid " No datastream exist\n" +msgstr "" + +#: util/nwdir.c:414 +#, c-format +msgid " Stream %3u size: %10Lu" +msgstr "" + +#: util/nwdir.c:445 +#, c-format +msgid "Cannot retrieve file attributes: %s\n" +msgstr "" + +#: util/nwdir.c:451 +#, c-format +msgid "Cannot retrieve file number: %s\n" +msgstr "" + +#: util/nwdir.c:457 util/nwlistsalvage.c:174 +#, c-format +msgid "Cannot retrieve file name: %s\n" +msgstr "" + +#: util/nwdir.c:462 +#, c-format +msgid "Directory:\n" +msgstr "" + +#: util/nwdir.c:464 +#, c-format +msgid "File:\n" +msgstr "" + +#: util/nwdir.c:478 +#, c-format +msgid " DOS: " +msgstr "" + +#: util/nwdir.c:483 +#, c-format +msgid " OS/2: " +msgstr "" + +#: util/nwdir.c:489 +#, c-format +msgid " NFS: " +msgstr "" + +#: util/nwdir.c:495 +#, c-format +msgid " MAC: " +msgstr "" + +#: util/nwdir.c:504 +#, c-format +msgid "Rights:\n" +msgstr "" + +#: util/nwdir.c:505 +#, c-format +msgid " Inherited: " +msgstr "" + +#: util/nwdir.c:509 util/nwdir.c:528 util/nwdir.c:544 util/nwdir.c:562 +#: util/nwdir.c:570 util/nwdir.c:577 util/nwdir.c:586 +#, c-format +msgid "Cannot determine: %s\n" +msgstr "" + +#: util/nwdir.c:526 +#, c-format +msgid " Effective: " +msgstr "" + +#: util/nwdir.c:540 +#, c-format +msgid "Owning namespace: " +msgstr "" + +#: util/nwdir.c:557 +#, c-format +msgid "Miscellaneous NetWare Information:\n" +msgstr "" + +#: util/nwdir.c:558 +#, c-format +msgid " Last update: " +msgstr "" + +#: util/nwdir.c:566 +#, c-format +msgid " Last archived: " +msgstr "" + +#: util/nwdir.c:575 +#, c-format +msgid " Last accessed: " +msgstr "" + +#: util/nwdir.c:582 +#, c-format +msgid " Created/Copied: " +msgstr "" + +#: util/nwdir.c:590 +#, c-format +msgid " Flags: [%s%s%s%s]" +msgstr "" + +#: util/nwdir.c:640 +#, c-format +msgid "Trustees:\n" +msgstr "" + +#: util/nwdir.c:666 +#, c-format +msgid "File Usage:\n" +msgstr "" + +#: util/nwdir.c:667 +#, c-format +msgid "" +" Use Count: %5u Open Count: %5u\n" +" Open For Reading Count: %5u Open For Writting Count: %5u\n" +" Deny Read Count: %5u Deny Write Count: %5u\n" +" Locked: %-15s Fork Count: %5u\n" +msgstr "" + +#: util/nwdir.c:674 +#, c-format +msgid " Connection Count: %10u\n" +msgstr "" + +#: util/nwdir.c:678 util/nwdir.c:770 +#, c-format +msgid " Connection: %u/%u" +msgstr "" + +#: util/nwdir.c:681 util/nwdir.c:773 +#, c-format +msgid ", " +msgstr "" + +#: util/nwdir.c:686 util/nwuserlist.c:384 +msgid "locked" +msgstr "" + +#: util/nwdir.c:686 util/nwuserlist.c:384 +msgid "open shareable" +msgstr "" + +#: util/nwdir.c:687 util/nwuserlist.c:385 +msgid "logged" +msgstr "" + +#: util/nwdir.c:687 util/nwuserlist.c:385 +msgid "open normal" +msgstr "" + +#: util/nwdir.c:688 util/nwdir.c:693 util/nwuserlist.c:386 +#: util/nwuserlist.c:391 +msgid "rsvd" +msgstr "" + +#: util/nwdir.c:689 util/nwuserlist.c:387 +msgid "TTS locked" +msgstr "" + +#: util/nwdir.c:689 util/nwuserlist.c:387 +msgid "TTS" +msgstr "" + +#: util/nwdir.c:690 util/nwuserlist.c:388 +msgid "read" +msgstr "" + +#: util/nwdir.c:690 util/nwuserlist.c:388 +msgid "write" +msgstr "" + +#: util/nwdir.c:691 util/nwuserlist.c:389 +msgid "deny read" +msgstr "" + +#: util/nwdir.c:691 util/nwuserlist.c:389 +msgid "deny write" +msgstr "" + +#: util/nwdir.c:692 util/nwuserlist.c:390 +msgid "detached" +msgstr "" + +#: util/nwdir.c:692 util/nwuserlist.c:390 +msgid "TTS holding detach" +msgstr "" + +#: util/nwdir.c:693 util/nwuserlist.c:391 +msgid "TTS holding open" +msgstr "" + +#: util/nwdir.c:714 util/nwdir.c:736 util/nwuserlist.c:413 +#: util/nwuserlist.c:436 +msgid "unlocked" +msgstr "" + +#: util/nwdir.c:717 util/nwuserlist.c:416 +msgid "Not locked" +msgstr "" + +#: util/nwdir.c:718 util/nwuserlist.c:417 +msgid "Locked by a file lock" +msgstr "" + +#: util/nwdir.c:719 util/nwuserlist.c:418 +msgid "Locked by Begin Share File Set" +msgstr "" + +#: util/nwdir.c:720 util/nwuserlist.c:419 +msgid "Unknown lock state" +msgstr "" + +#: util/nwdir.c:739 +#, c-format +msgid " Lock: (%02X) %s\n" +msgstr "" + +#: util/nwdir.c:740 +#, c-format +msgid " (%02X) %s\n" +msgstr "" + +#: util/nwdir.c:741 +#, c-format +msgid " Access: (%02X) %s\n" +msgstr "" + +#: util/nwdir.c:743 +#, c-format +msgid " Lock: %s\n" +msgstr "" + +#: util/nwdir.c:744 +#, c-format +msgid " %s\n" +msgstr "" + +#: util/nwdir.c:745 +#, c-format +msgid " Access: %s\n" +msgstr "" + +#: util/nwdir.c:766 +#, c-format +msgid "File Physical Locks:\n" +msgstr "" + +#: util/nwdir.c:777 +#, c-format +msgid " Range: 0x%08LX-0x%08LX\n" +msgstr "" + +#: util/nwdir.c:795 +#, c-format +msgid "Unable to begin scandir: 0x%04X\n" +msgstr "" + +#: util/nwdir.c:807 +#, c-format +msgid "Unexpected error in NextDir: %s\n" +msgstr "" + +#: util/nwdir.c:825 +#, c-format +msgid "" +"nwdir [options] [path]\n" +"\n" +" -d List information about directory itself instead\n" +" of directory content\n" +" -l List namespace informations\n" +" -e List extended attributes informations\n" +" -v Verbose listing\n" +" -f List connections using file\n" +" -p List physical locks on file\n" +" -t Technical - show values and their meaning\n" +" -h This help\n" +" path Path to list, may contain wildcards\n" +"\n" +"(c) 1998 Milan Vandrovec for ncpfs-2.0.12.8\n" +msgstr "" + +#: util/nwdir.c:903 +#, c-format +msgid "Unable to initialize: 0x%04X\n" +msgstr "" + +#: util/nwdir.c:936 +#, c-format +msgid "Invalid path: %s\n" +msgstr "" + +#: util/nwdir.c:940 +#, c-format +msgid "Specified path is not remote\n" +msgstr "" + +#: util/nwdir.c:952 +#, c-format +msgid "Directory %s\n" +msgstr "" + +#: util/nwdir.c:958 +#, c-format +msgid "Path does not exist: %s\n" +msgstr "" + +#: util/nwdir.c:1006 +#, c-format +msgid "Cannot retrieve info: %s\n" +msgstr "" + +#: util/nwdpvalues.c:55 +#, c-format +msgid "" +"\n" +"usage: %s [options] [ncp filesystem]\n" +msgstr "" + +#: util/nwdpvalues.c:57 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-o object_name Object name to be converted to ID\n" +"-q objectID Object ID to convert to name\n" +"-c context Base context name (use/return abbreviated names)\n" +"\n" +msgstr "" + +#: util/nwfsctrl.c:54 +#, c-format +msgid "" +"\n" +"usage: %s [options] command\n" +msgstr "" + +#: util/nwfsctrl.c:56 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"-p path Permanent connection to server to be used\n" +"\n" +"command is one of:\n" +"load XXX load module XXX\n" +"unload XXX unload module XXX\n" +"mount XXX mount volume XXX\n" +"dismount XXX dismount volume XXX\n" +"down [force] down fileserver\n" +"open bindery open bindery\n" +"close bindery close bindery\n" +"disable login disable login to fileserver\n" +"enable login enable login to fileserver\n" +"disable tts disable TTS\n" +"enable tts enable TTS\n" +"set XXX=YYY set server variable XXX to value YYY\n" +"clear station XXX log-outs specified connection\n" +"XXX try execute XXX as .NCF file\n" +"\n" +"Warning: If you do not have sufficient priviledge level,\n" +" some of commands (load, unload, mount, dismount,\n" +" set, run .NCF) will emit server console broadcast\n" +" to all conected users!\n" +"\n" +msgstr "" + +#: util/nwfsctrl.c:112 +#, c-format +msgid "%s: \"%s\" what?\n" +msgstr "" + +#: util/nwfsctrl.c:129 +#, c-format +msgid "%s: Unable to load `%s', error 0x%04X (%u)\n" +msgstr "" + +#: util/nwfsctrl.c:141 +#, c-format +msgid "%s: Unable to unload `%s', error 0x%04X (%u)\n" +msgstr "" + +#: util/nwfsctrl.c:154 +#, c-format +msgid "%s: Unable to mount `%s', error 0x%04X (%u)\n" +msgstr "" + +#: util/nwfsctrl.c:158 +#, c-format +msgid "Volume `%s' was mounted as #%u\n" +msgstr "" + +#: util/nwfsctrl.c:167 +#, c-format +msgid "%s: Unable to dismount `%s', error 0x%04X (%u)\n" +msgstr "" + +#: util/nwfsctrl.c:179 +#, c-format +msgid "%s: Unable to down file server, error 0x%04X (%u)\n" +msgstr "" + +#: util/nwfsctrl.c:191 +#, c-format +msgid "%s: Unable to execute `%s', error 0x%04X (%u)\n" +msgstr "" + +#: util/nwfsctrl.c:209 +#, c-format +msgid "%s: Syntax error in `set' command\n" +msgstr "" + +#: util/nwfsctrl.c:246 util/nwfsctrl.c:254 +#, c-format +msgid "%s: Unable to set variable `%s' to value `%s', error 0x%04X (%u)\n" +msgstr "" + +#: util/nwfsctrl.c:270 +#, c-format +msgid "%s: Unable to %s file server login, error 0x%04X (%u)\n" +msgstr "" + +#: util/nwfsctrl.c:271 util/nwfsctrl.c:283 +msgid "enable" +msgstr "" + +#: util/nwfsctrl.c:271 util/nwfsctrl.c:283 +msgid "disable" +msgstr "" + +#: util/nwfsctrl.c:282 +#, c-format +msgid "%s: Unable to %s TTS, error 0x%04X (%u)\n" +msgstr "" + +#: util/nwfsctrl.c:293 +#, c-format +msgid "%s: Warning: Bindery cannot be closed by temporary connection\n" +msgstr "" + +#: util/nwfsctrl.c:297 +#, c-format +msgid "%s: Unable to %s bindery, error 0x%04X (%u)\n" +msgstr "" + +#: util/nwfsctrl.c:298 +msgid "open" +msgstr "" + +#: util/nwfsctrl.c:298 +msgid "close" +msgstr "" + +#: util/nwfsctrl.c:319 +#, c-format +msgid "%s: Unable to clear station %u, error 0x%04X (%u)\n" +msgstr "" + +#: util/nwfsctrl.c:325 +#, c-format +msgid "%s: `%.*s' is not a number, skipping\n" +msgstr "" + +#: util/nwfsctrl.c:334 +#, c-format +msgid "%s: What is `%s'?\n" +msgstr "" + +#: util/nwfsctrl.c:432 +#, c-format +msgid "-p and -S are incompatible\n" +msgstr "" + +#: util/nwfsctrl.c:436 util/nwvolinfo.c:121 +#, c-format +msgid "%s: %s is not Netware directory/file\n" +msgstr "" + +#: util/nwfsctrl.c:447 +#, c-format +msgid "%s: You must specify connection to server\n" +msgstr "" + +#: util/nwfsctrl.c:452 +#, c-format +msgid "Compatibility option entered, rest of commandline ignored\n" +msgstr "" + +#: util/nwfsctrl.c:479 util/nwpasswd.c:121 +#, c-format +msgid "%s: Out of memory!\n" +msgstr "" + +#: util/nwfsctrl.c:497 +#, c-format +msgid "%s: Missing command\n" +msgstr "" + +#: util/nwfsinfo.c:45 util/nwfstime.c:46 util/nwuserlist.c:62 util/slist.c:54 +#, c-format +msgid "usage: %s [pattern]\n" +msgstr "" + +#: util/nwfsinfo.c:53 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"\n" +"-d Print Description Strings\n" +"-t Print File Server's time\n" +"-i Print File Server Information\n" +"-e List Server's NCP Extensions\n" +"\n" +msgstr "" + +#: util/nwfsinfo.c:66 +msgid "no" +msgstr "" + +#: util/nwfsinfo.c:67 +msgid "yes" +msgstr "" + +#: util/nwfsinfo.c:69 +#, c-format +msgid "unknown (%02X)" +msgstr "" + +#: util/nwfsinfo.c:78 +#, c-format +msgid "" +"\n" +"Fileservername %-48s\n" +"\n" +msgstr "" + +#: util/nwfsinfo.c:80 +#, c-format +msgid "Version %d.%d Revision %c\n" +msgstr "" + +#: util/nwfsinfo.c:83 +#, c-format +msgid "Max. Connections %d\n" +msgstr "" + +#: util/nwfsinfo.c:85 +#, c-format +msgid "currently in use %d\n" +msgstr "" + +#: util/nwfsinfo.c:87 +#, c-format +msgid "peak connections %d\n" +msgstr "" + +#: util/nwfsinfo.c:89 +#, c-format +msgid "Max. Volumes %d\n" +msgstr "" + +#: util/nwfsinfo.c:91 +#, c-format +msgid "SFTLevel %d\n" +msgstr "" + +#: util/nwfsinfo.c:93 +#, c-format +msgid "TTSLevel %d\n" +msgstr "" + +#: util/nwfsinfo.c:95 +#, c-format +msgid "Accountversion %d\n" +msgstr "" + +#: util/nwfsinfo.c:97 +#, c-format +msgid "Queueversion %d\n" +msgstr "" + +#: util/nwfsinfo.c:99 +#, c-format +msgid "Printversion %d\n" +msgstr "" + +#: util/nwfsinfo.c:101 +#, c-format +msgid "Virt.Consolvers. %d\n" +msgstr "" + +#: util/nwfsinfo.c:103 +#, c-format +msgid "RestrictionLevel %d\n" +msgstr "" + +#: util/nwfsinfo.c:105 +#, c-format +msgid "VAP Version %d\n" +msgstr "" + +#: util/nwfsinfo.c:106 +#, c-format +msgid "Internet Bridge %d\n" +msgstr "" + +#: util/nwfsinfo.c:107 +#, c-format +msgid "Mixed Mode Path %s\n" +msgstr "" + +#: util/nwfsinfo.c:108 +#, c-format +msgid "Local Login Code 0x%02X\n" +msgstr "" + +#: util/nwfsinfo.c:109 +#, c-format +msgid "Product Version %u.%u.%u\n" +msgstr "" + +#: util/nwfsinfo.c:111 +#, c-format +msgid "OS Language %u\n" +msgstr "" + +#: util/nwfsinfo.c:112 +#, c-format +msgid "Large files %s\n" +msgstr "" + +#: util/nwfsinfo.c:157 +msgid "could not get strings" +msgstr "" + +#: util/nwfsinfo.c:181 +msgid "could not get server time" +msgstr "" + +#: util/nwfsinfo.c:203 util/nwuserlist.c:261 +msgid "Could not get server information" +msgstr "" + +#: util/nwfsinfo.c:224 +#, c-format +msgid "" +"Installed NCP Extensions:\n" +" Name Number Version\n" +" -------------------------------------------------------\n" +msgstr "" + +#: util/nwfsinfo.c:229 +#, c-format +msgid " %-33s %08X %u.%u.%u\n" +msgstr "" + +#: util/nwfsinfo.c:232 +#, c-format +msgid "No NCP Extensions registered\n" +msgstr "" + +#: util/nwfstime.c:54 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-a Be more accurate about reading the time\n" +"-g Update local time from file server\n" +"-s Set file server's time from local time\n" +"\n" +msgstr "" + +#: util/nwfstime.c:123 +msgid "when setting file server time" +msgstr "" + +#: util/nwfstime.c:133 +msgid "when getting file server time" +msgstr "" + +#: util/nwgrant.c:64 util/nwrevoke.c:56 util/nwrights.c:50 +#, c-format +msgid "" +"\n" +"usage: %s [options] file/directory\n" +msgstr "" + +#: util/nwgrant.c:66 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-o object_name Name of object added as trustee\n" +"-t type Object type (decimal value)\n" +"-r rights Rights mask (see manual page)\n" +"\n" +"directory\n" +"\n" +msgstr "" + +#: util/nwgrant.c:148 +#, c-format +msgid "%s: You must give a valid rights string\n" +msgstr "" + +#: util/nwgrant.c:154 +#, c-format +msgid "%s: You must specify a rights mask\n" +msgstr "" + +#: util/nwgrant.c:162 util/nwrevoke.c:131 +#, c-format +msgid "%s: You must specify a directory\n" +msgstr "" + +#: util/nwgrant.c:176 util/nwrevoke.c:145 +#, c-format +msgid "%s: Could not find directory %s\n" +msgstr "" + +#: util/nwgrant.c:192 util/nwgrant.c:210 util/nwgrant.c:217 +#: util/nwrevoke.c:161 util/nwrevoke.c:180 util/nwrevoke.c:187 +#, c-format +msgid "%s: Could not find object %s: %s\n" +msgstr "" + +#: util/nwgrant.c:224 util/nwrevoke.c:194 +#, c-format +msgid "%s: Invalid path: %s\n" +msgstr "" + +#: util/nwgrant.c:234 +#, c-format +msgid "%s: Could not add trustee rights: %s\n" +msgstr "" + +#: util/nwlistsalvage.c:131 +#, c-format +msgid "" +"usage: nwlistsalvage [options] [directory]\n" +"\n" +"-h Print this help text\n" +"-n Namespace for file access.\n" +" DOS\n" +" LONG - Default\n" +" MAC\n" +" NFS\n" +" FTAM\n" +"-v Verbose\n" +"\n" +"directory Directory to examine for salvageable files. Default is ./\n" +"\n" +msgstr "" + +#: util/nwlistsalvage.c:189 +#, c-format +msgid "Cannot retrieve creation info: %s\n" +msgstr "" + +#: util/nwlistsalvage.c:198 +#, c-format +msgid "Cannot retrieve modified info: %s\n" +msgstr "" + +#: util/nwlistsalvage.c:262 util/nwsalvage.c:137 +#, c-format +msgid "Unrecognized namespace for option '-%c'\n" +msgstr "" + +#: util/nwlistsalvage.c:268 util/nwpurge.c:125 util/nwsalvage.c:150 +#, c-format +msgid "Unexpected option `-%c'\n" +msgstr "" + +#: util/nwlistsalvage.c:279 util/nwmsg.c:88 util/nwpurge.c:136 +#: util/nwsalvage.c:163 contrib/tknwmsg/nwmsg.c:88 +msgid "in ncp_open_mount" +msgstr "" + +#: util/nwlistsalvage.c:284 util/nwpurge.c:141 util/nwrights.c:107 +#: util/nwsalvage.c:168 +msgid "when retrieving root entry" +msgstr "" + +#: util/nwlistsalvage.c:292 +#, c-format +msgid "No salvageable files were found.\n" +msgstr "" + +#: util/nwlistsalvage.c:294 +#, c-format +msgid "1 salvageable file was found.\n" +msgstr "" + +#: util/nwlistsalvage.c:296 +#, c-format +msgid "%d salvageable files were found.\n" +msgstr "" + +#: util/nwmsg.c:93 contrib/tknwmsg/nwmsg.c:93 +#, c-format +msgid "%s: could not get broadcast message\n" +msgstr "" + +#: util/nwmsg.c:101 contrib/tknwmsg/nwmsg.c:101 +msgid "no message" +msgstr "" + +#: util/nwmsg.c:105 contrib/tknwmsg/nwmsg.c:105 +#, c-format +msgid "message: %s" +msgstr "" + +#: util/nwmsg.c:109 contrib/tknwmsg/nwmsg.c:109 +#, c-format +msgid "%s: could not get uid on connection: %s\n" +msgstr "" + +#: util/nwmsg.c:115 contrib/tknwmsg/nwmsg.c:115 +msgid "" +msgstr "" + +#: util/nwmsg.c:121 contrib/tknwmsg/nwmsg.c:121 +#, c-format +msgid "%s: user %d not known\n" +msgstr "" + +#: util/nwmsg.c:131 contrib/tknwmsg/nwmsg.c:131 +#, c-format +msgid "%s: cannot open %s: %s\n" +msgstr "" + +#: util/nwmsg.c:135 contrib/tknwmsg/nwmsg.c:135 +#, c-format +msgid "" +"\r\n" +"Message from NetWare Server: %s\r\n" +"%s\r\n" +msgstr "" + +#: util/nwmsg.c:156 contrib/tknwmsg/nwmsg.c:162 +#, c-format +msgid "write: %s: %s\n" +msgstr "" + +#: util/nwmsg.c:186 contrib/tknwmsg/nwmsg.c:192 +msgid "utmp" +msgstr "" + +#: util/nwmsg.c:217 contrib/tknwmsg/nwmsg.c:223 +#, c-format +msgid "nwmsg: %s is not logged in\n" +msgstr "" + +#: util/nwmsg.c:222 contrib/tknwmsg/nwmsg.c:228 +#, c-format +msgid "nwmsg: %s ignores messages\n" +msgstr "" + +#: util/nwpasswd.c:47 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-O objectname Object name to change, default username\n" +"-t type Object type (decimal value)\n" +"\n" +msgstr "" + +#: util/nwpasswd.c:113 +msgid "trying to find server" +msgstr "" + +#: util/nwpasswd.c:129 +#, c-format +msgid "Changing password for user %s on server %s\n" +msgstr "" + +#: util/nwpasswd.c:134 +msgid "Enter old password: " +msgstr "" + +#: util/nwpasswd.c:138 +#, c-format +msgid "Enter password for %s: " +msgstr "" + +#: util/nwpasswd.c:148 +msgid "Enter new password: " +msgstr "" + +#: util/nwpasswd.c:156 +msgid "Re-Enter new password: " +msgstr "" + +#: util/nwpasswd.c:170 +#, c-format +msgid "You mistype the new password, try again\n" +msgstr "" + +#: util/nwpasswd.c:189 +msgid "not own password" +msgstr "" + +#: util/nwpasswd.c:198 +msgid "trying to change password" +msgstr "" + +#: util/nwpjmv.c:69 +#, c-format +msgid "" +"\n" +"-S server Server name to be used\n" +"-U username Print Server name sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"-q queue name Name of the printing queue to use\n" +"-c command Name of print command, default: 'lpr'\n" +"-j job number ID number of job to service\n" +"-d Debug\n" +msgstr "" + +#: util/nwpjmv.c:110 util/pserver.c:132 +#, c-format +msgid "Queue %s not found: %s\n" +msgstr "" + +#: util/nwpjmv.c:119 util/pserver.c:141 +#, c-format +msgid "Could not attach to queue %s: %s\n" +msgstr "" + +#: util/nwpjmv.c:191 +#, c-format +msgid "Failed to change job position: %s\n" +msgstr "" + +#: util/nwpjmv.c:201 util/pserver.c:216 +#, c-format +msgid "Cannot service print job: %s\n" +msgstr "" + +#: util/nwpjmv.c:211 +#, c-format +msgid "wrong job queued: expected %08X, got %08X\n" +msgstr "" + +#: util/nwpjmv.c:224 util/pserver.c:234 +#, c-format +msgid "" +msgstr "" + +#: util/nwpjmv.c:229 util/pserver.c:239 +#, c-format +msgid "pipe error: %m" +msgstr "" + +#: util/nwpjmv.c:234 util/pserver.c:244 +#, c-format +msgid "fork error: %m" +msgstr "" + +#: util/nwpjmv.c:260 util/pserver.c:270 +#, c-format +msgid "waitpid: %m\n" +msgstr "" + +#: util/nwpjmv.c:274 util/pserver.c:284 +#, c-format +msgid "dup2 error: %m\n" +msgstr "" + +#: util/nwpjmv.c:284 util/pserver.c:294 +#, c-format +msgid "exec error: %m\n" +msgstr "" + +#: util/nwpjmv.c:387 util/pserver.c:399 +#, c-format +msgid "You must specify a queue\n" +msgstr "" + +#: util/nwpjmv.c:402 util/nwpqjob.c:150 +#, c-format +msgid "Cannot parse \"%s\" - jobID must be hexadecimal number\n" +msgstr "" + +#: util/nwpjmv.c:408 +#, c-format +msgid "Could not move job %08X\n" +msgstr "" + +#: util/nwpqjob.c:50 util/nwpqjob.c:52 util/nwpqjob.c:59 +#, c-format +msgid "\n" +msgstr "" + +#: util/nwpqjob.c:51 +#, c-format +msgid "usage: %s [options] [ ...]\n" +msgstr "" + +#: util/nwpqjob.c:53 +#, c-format +msgid "-S server Server name to be used\n" +msgstr "" + +#: util/nwpqjob.c:54 +#, c-format +msgid "-U username User name\n" +msgstr "" + +#: util/nwpqjob.c:55 +#, c-format +msgid "-P password Use this password\n" +msgstr "" + +#: util/nwpqjob.c:56 +#, c-format +msgid "-n Do not use any password\n" +msgstr "" + +#: util/nwpqjob.c:57 +#, c-format +msgid "-d Delete job from queue (default for pqrm)\n" +msgstr "" + +#: util/nwpqjob.c:58 +#, c-format +msgid "-r Resume job\n" +msgstr "" + +#: util/nwpqjob.c:110 +#, c-format +msgid "%s: At least one of -d or -r must be specified\n" +msgstr "" + +#: util/nwpqjob.c:135 util/pqstat.c:182 +#, c-format +msgid "Queue \"%s\" on server %s not found.\n" +msgstr "" + +#: util/nwpqjob.c:166 +#, c-format +msgid "Job %08X does not exist\n" +msgstr "" + +#: util/nwpqjob.c:168 +#, c-format +msgid "You have not rights to cancel job %08X\n" +msgstr "" + +#: util/nwpqjob.c:170 +#, c-format +msgid "Cannot cancel job %08X: %s\n" +msgstr "" + +#: util/nwpurge.c:38 +#, c-format +msgid "" +"usage: nwpurge [options] [directory]\n" +"\n" +"-h Print this help text\n" +"-a Purge files in subdirectories\n" +"-l Do not purge files\n" +"-s Silent mode\n" +"\n" +"directory Directory to purge\n" +"\n" +msgstr "" + +#: util/nwpurge.c:83 +#, c-format +msgid "%8s-- failed (%s)\n" +msgstr "" + +#: util/nwpurge.c:148 +#, c-format +msgid "No files were purged from server.\n" +msgstr "" + +#: util/nwpurge.c:150 +#, c-format +msgid "1 file was purged from server.\n" +msgstr "" + +#: util/nwpurge.c:152 +#, c-format +msgid "%d files were purged from server.\n" +msgstr "" + +#: util/nwpurge.c:156 +#, c-format +msgid "1 file was not purged due to error.\n" +msgstr "" + +#: util/nwpurge.c:158 +#, c-format +msgid "%d files were not purged due to errors.\n" +msgstr "" + +#: util/nwrevoke.c:58 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-o object_name Name of object removed as trustee\n" +"-t type Object type (decimal value)\n" +"\n" +"file/directory\n" +"\n" +msgstr "" + +#: util/nwrevoke.c:202 +#, c-format +msgid "%s: Could not remove trustee rights: %s\n" +msgstr "" + +#: util/nwrights.c:52 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"\n" +"file/directory\n" +"\n" +msgstr "" + +#: util/nwrights.c:116 +msgid "when finding rights" +msgstr "" + +#: util/nwrights.c:119 +#, c-format +msgid "Your effective rights for %s are: %s\n" +msgstr "" + +#: util/nwrights.c:125 +#, c-format +msgid "(S): You have SUPERVISOR rights\n" +msgstr "" + +#: util/nwrights.c:129 +#, c-format +msgid "(R): You may READ from files\n" +msgstr "" + +#: util/nwrights.c:133 +#, c-format +msgid "(W): You may WRITE to files\n" +msgstr "" + +#: util/nwrights.c:137 +#, c-format +msgid "(C): You may CREATE files\n" +msgstr "" + +#: util/nwrights.c:141 +#, c-format +msgid "(E): You may ERASE files\n" +msgstr "" + +#: util/nwrights.c:145 +#, c-format +msgid "(M): You may MODIFY directory\n" +msgstr "" + +#: util/nwrights.c:149 +#, c-format +msgid "(F): You may SCAN for files\n" +msgstr "" + +#: util/nwrights.c:153 +#, c-format +msgid "(A): You may change ACCESS control\n" +msgstr "" + +#: util/nwsalvage.c:35 +#, c-format +msgid "" +"usage: nwsalvage [options] directory file_id\n" +"\n" +"-h Print this help text.\n" +"-s Silent mode.\n" +"-n Namespace for accessing files.\n" +" DOS\n" +" LONG - Default\n" +" MAC\n" +" FTAM\n" +" NFS\n" +"-r Rename the salvaged file. 255 chars max.\n" +"directory Directory in which salvageable file resides.\n" +" Default is current directory.\n" +"\n" +"file_id The file identified by file_id will be salvaged.\n" +" Numeric file_id is obtained from nwlistsalvage.\n" +"\n" +msgstr "" + +#: util/nwsalvage.c:84 +#, c-format +msgid "%8s%d -- failed (File already exists, or path inaccessible)\n" +msgstr "" + +#: util/nwsalvage.c:86 +#, c-format +msgid "%8s%d %s -- failed (%s)\n" +msgstr "" + +#: util/nwsalvage.c:91 +#, c-format +msgid "%8s%d %s -- salvaged \n" +msgstr "" + +#: util/nwsalvage.c:98 +#, c-format +msgid "%8sFile with scan ID '%d' was not found." +msgstr "" + +#: util/nwsalvage.c:144 +#, c-format +msgid "Filename for option '-%c' has invalid length." +msgstr "" + +#: util/nwtrustee.c:50 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-l volumeid Volume id to be searched\n" +"-L volname Volume name instead of id\n" +"-O objectid Object id\n" +"-o objname Object name ( type must be specified )\n" +"-t type Object type\n" +"-v Verbose listing\n" +"\n" +msgstr "" + +#: util/nwtrustee2.c:45 +#, c-format +msgid "usage: %s [options] [file/directory...]\n" +msgstr "" + +#: util/nwtrustee2.c:51 +#, c-format +msgid "" +"\n" +"usage: %s [options] [file/directory...]\n" +msgstr "" + +#: util/nwtrustee2.c:53 +#, c-format +msgid "" +"\n" +"-v Verbose\n" +"\n" +"file/directory List of files to scan for trustees\n" +"\n" +msgstr "" + +#: util/nwtrustee2.c:138 +#, c-format +msgid "%s: Could not find directory %s: %s\n" +msgstr "" + +#: util/nwtrustee2.c:144 +#, c-format +msgid "%s: Could not find Netware information about directory %s: %s\n" +msgstr "" + +#: util/nwtrustee2.c:199 +#, c-format +msgid "Trustee scan failed, %s\n" +msgstr "" + +#: util/nwuserlist.c:82 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-a Print Station's addr\n" +"-q Print object ID\n" +"-f List open files\n" +"-ft Print raw information about open files\n" +"-fd Print detailed information about each open file\n" +"-fD Print DOS filename\n" +"-s List open semaphores\n" +"-i List statistical information\n" +"-ih List read/written bytes in human readable format (e.g. 1K, " +"234M)\n" +"-iH Same as above, but use units of 1000 bytes instead of 1024\n" +"\n" +msgstr "" + +#: util/nwuserlist.c:104 +msgid "Unknown" +msgstr "" + +#: util/nwuserlist.c:117 +msgid "logged in" +msgstr "" + +#: util/nwuserlist.c:118 +msgid "being aborted" +msgstr "" + +#: util/nwuserlist.c:119 +msgid "audited" +msgstr "" + +#: util/nwuserlist.c:120 +msgid "needs security change" +msgstr "" + +#: util/nwuserlist.c:121 +msgid "MAC station" +msgstr "" + +#: util/nwuserlist.c:122 +msgid "temporary authenticated" +msgstr "" + +#: util/nwuserlist.c:123 +msgid "audit connection recorded" +msgstr "" + +#: util/nwuserlist.c:124 +msgid "DS audit connection recorded" +msgstr "" + +#: util/nwuserlist.c:125 +msgid "???" +msgstr "" + +#: util/nwuserlist.c:126 +msgid "none" +msgstr "" + +#: util/nwuserlist.c:152 +#, c-format +msgid " %-21s%llu %s\n" +msgstr "" + +#: util/nwuserlist.c:166 +#, c-format +msgid " %-21s%5llu %s\n" +msgstr "" + +#: util/nwuserlist.c:168 +#, c-format +msgid " %-21s%5llu %c%s\n" +msgstr "" + +#: util/nwuserlist.c:270 +#, c-format +msgid "" +"\n" +"%-6s%-21s%-12s\n" +"---------------------------------------------------\n" +msgstr "" + +#: util/nwuserlist.c:273 util/nwuserlist.c:281 util/nwuserlist.c:290 +#: util/nwuserlist.c:299 +msgid "Conn" +msgstr "" + +#: util/nwuserlist.c:274 util/nwuserlist.c:282 util/nwuserlist.c:292 +#: util/nwuserlist.c:301 +msgid "User name" +msgstr "" + +#: util/nwuserlist.c:275 util/nwuserlist.c:284 util/nwuserlist.c:293 +#: util/nwuserlist.c:303 +msgid "Login time" +msgstr "" + +#: util/nwuserlist.c:278 +#, c-format +msgid "" +"\n" +"%-6s%-21s%-27s%-12s\n" +"------------------------------------------------------------------------------\n" +msgstr "" + +#: util/nwuserlist.c:283 util/nwuserlist.c:302 +msgid "Station Address" +msgstr "" + +#: util/nwuserlist.c:287 +#, c-format +msgid "" +"\n" +"%-6s%-9s%-21s%-12s\n" +"------------------------------------------------------------\n" +msgstr "" + +#: util/nwuserlist.c:291 util/nwuserlist.c:300 +msgid "ObjectID" +msgstr "" + +#: util/nwuserlist.c:296 +#, c-format +msgid "" +"\n" +"%-6s%-9s%-21s%-27s%-12s\n" +"---------------------------------------------------------------------------------------\n" +msgstr "" + +#: util/nwuserlist.c:319 +#, c-format +msgid "%4d: %08X %-20s " +msgstr "" + +#: util/nwuserlist.c:321 +#, c-format +msgid "%4d: %-20s " +msgstr "" + +#: util/nwuserlist.c:347 +msgid "Unknown format" +msgstr "" + +#: util/nwuserlist.c:379 +#, c-format +msgid " File: (%02X:%08X) %s\n" +msgstr "" + +#: util/nwuserlist.c:381 +#, c-format +msgid " File: %s\n" +msgstr "" + +#: util/nwuserlist.c:439 +#, c-format +msgid " Task: %-5u Lock: (%02X) %s\n" +msgstr "" + +#: util/nwuserlist.c:440 +#, c-format +msgid " Fork count: %-3u (%02X) %s\n" +msgstr "" + +#: util/nwuserlist.c:441 +#, c-format +msgid " Namespace: (%02X) %-5s Access: (%02X) %s\n" +msgstr "" + +#: util/nwuserlist.c:443 +#, c-format +msgid " Task: %-5u Lock: %s\n" +msgstr "" + +#: util/nwuserlist.c:444 +#, c-format +msgid " Fork count: %-3u %s\n" +msgstr "" + +#: util/nwuserlist.c:445 +#, c-format +msgid " Namespace: %-5s Access: %s\n" +msgstr "" + +#: util/nwuserlist.c:457 +#, c-format +msgid " Semaphore: %s\n" +msgstr "" + +#: util/nwuserlist.c:459 +#, c-format +msgid " Task: %-5u Value: %-5d Open Count: %-5u\n" +msgstr "" + +#: util/nwuserlist.c:471 +#, c-format +msgid " Type: (%02X) %-9.9s Status: (%08X) %s\n" +msgstr "" + +#: util/nwuserlist.c:474 +#, c-format +msgid " Use count: %-9u ExpTime: %08X ObjType: %08X\n" +msgstr "" + +#: util/nwuserlist.c:476 +#, c-format +msgid " Transaction flag: %9u Filler: %18u\n" +msgstr "" + +#: util/nwuserlist.c:478 +#, c-format +msgid " Logical lock threshold: %3u Record lock threshold: %3u\n" +msgstr "" + +#: util/nwuserlist.c:480 +#, c-format +msgid " File write flags: 0x%02X File write state: 0x%02X\n" +msgstr "" + +#: util/nwuserlist.c:482 +#, c-format +msgid " File lock count: %10u Record lock count: %7u\n" +msgstr "" + +#: util/nwuserlist.c:485 +#, c-format +msgid " Type: %-14s Status: %s\n" +msgstr "" + +#: util/nwuserlist.c:489 +msgid "Bytes read:" +msgstr "" + +#: util/nwuserlist.c:489 util/nwuserlist.c:490 util/nwuserlist.c:493 +#: util/nwuserlist.c:494 +msgid "B" +msgstr "" + +#: util/nwuserlist.c:490 +msgid "Bytes written:" +msgstr "" + +#: util/nwuserlist.c:491 +msgid "Requests:" +msgstr "" + +#: util/nwuserlist.c:493 +msgid "Held bytes read:" +msgstr "" + +#: util/nwuserlist.c:494 +msgid "Held bytes written:" +msgstr "" + +#: util/nwuserlist.c:495 +msgid "Held requests:" +msgstr "" + +#: util/nwvolinfo.c:49 +#, c-format +msgid "" +"\n" +"-h Print this help text\n" +"-S server Server name to be used\n" +"-U username Username sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"\n" +"-v volume volume name\n" +"-N Numeric format\n" +"\n" +msgstr "" + +#: util/nwvolinfo.c:130 +#, c-format +msgid "%s: Volume %s does not exist\n" +msgstr "" + +#: util/nwvolinfo.c:135 +#, c-format +msgid "%s: Unable to get volume information\n" +msgstr "" + +#: util/nwvolinfo.c:151 +#, c-format +msgid "Total : %dK\n" +msgstr "" + +#: util/nwvolinfo.c:152 +#, c-format +msgid "Free : %dK\n" +msgstr "" + +#: util/nwvolinfo.c:153 +#, c-format +msgid "Purgable : %dK\n" +msgstr "" + +#: util/nwvolinfo.c:154 +#, c-format +msgid "No Purg. : %dK\n" +msgstr "" + +#: util/nwvolinfo.c:155 +#, c-format +msgid "Dirs : %d\n" +msgstr "" + +#: util/nwvolinfo.c:156 +#, c-format +msgid "Free dirs: %d\n" +msgstr "" + +#: util/pqlist.c:203 +#, c-format +msgid "" +"\n" +"Server: Unknown (%s)\n" +msgstr "" + +#: util/pqlist.c:205 +#, c-format +msgid "" +"\n" +"Server: %s\n" +msgstr "" + +#: util/pqlist.c:209 +msgid "Print queue name" +msgstr "" + +#: util/pqlist.c:210 +msgid "Queue ID" +msgstr "" + +#: util/pqlist.c:231 +#, c-format +msgid "No queues found\n" +msgstr "" + +#: util/pqstat.c:113 +#, c-format +msgid "usage: %s [-B] []\n" +msgstr "" + +#: util/pqstat.c:203 +#, c-format +msgid "" +"\n" +"Server: %s\tQueue: %s\tQueue ID: %8.8X\n" +msgstr "" + +#: util/pqstat.c:205 +#, c-format +msgid "" +" %5s %-12s %-32s %-7s %-4s %-8s\n" +"-------------------------------------------------------------------------------\n" +msgstr "" + +#: util/pqstat.c:208 +msgid "Seq" +msgstr "" + +#: util/pqstat.c:208 +msgid "Name" +msgstr "" + +#: util/pqstat.c:209 +msgid "Description" +msgstr "" + +#: util/pqstat.c:209 +msgid "Status" +msgstr "" + +#: util/pqstat.c:209 +msgid "Form" +msgstr "" + +#: util/pqstat.c:209 +msgid "Job ID" +msgstr "" + +#: util/pqstat.c:216 +#, c-format +msgid "You have insufficient rights to list queue jobs\n" +msgstr "" + +#: util/pqstat.c:218 +msgid ": cannot get queue length" +msgstr "" + +#: util/pqstat.c:231 +#, c-format +msgid "Error getting queue jobs ids: %ld\n" +msgstr "" + +#: util/pqstat.c:252 +msgid "Held" +msgstr "" + +#: util/pqstat.c:254 +msgid "Adding" +msgstr "" + +#: util/pqstat.c:256 +msgid "Active" +msgstr "" + +#: util/pqstat.c:260 +msgid "Ready" +msgstr "" + +#: util/pqstat.c:269 +msgid "Waiting" +msgstr "" + +#: util/pqstat.c:273 +#, c-format +msgid " %5d %-12s %-32.32s %-7s %4d %08X\n" +msgstr "" + +#: util/pserver.c:67 +#, c-format +msgid "" +"\n" +"-S server Server name to be used\n" +"-U username Print Server name sent to server\n" +"-P password Use this password\n" +"-n Do not use any password\n" +"-C Don't convert password to uppercase\n" +"-q queue name Name of the printing queue to use\n" +"-c command Name of print command, default: 'lpr'\n" +"-j job type Type of job (Form number) to service\n" +"-t timeout Polling interval, default: 30 sec\n" +"-d Debug: don't daemonize\n" +"-h print this help text\n" +"\n" +msgstr "" + +#: util/slist.c:68 +msgid "in ncp_open" +msgstr "" + +#: util/slist.c:76 +msgid "Known NetWare File Servers" +msgstr "" + +#: util/slist.c:77 +msgid "Network" +msgstr "" + +#: util/slist.c:78 +msgid "Node Address" +msgstr "" + +#: util/slist.c:107 +#, c-format +msgid "No servers found\n" +msgstr "" + +#: contrib/tknwmsg/nwmsg.c:141 +#, c-format +msgid "" +"Message from Netware Server: %s\n" +"%s" +msgstr "" diff --git a/po/pt_BR.gmo b/po/pt_BR.gmo new file mode 100644 index 0000000..702469e Binary files /dev/null and b/po/pt_BR.gmo differ diff --git a/po/pt_BR.po b/po/pt_BR.po new file mode 100644 index 0000000..e30b9db --- /dev/null +++ b/po/pt_BR.po @@ -0,0 +1,291 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# +msgid "" +msgstr "" +"Project-Id-Version: ncpfs-2.2.4\n" +"Report-Msgid-Bugs-To: mario.fetka@disconnected-by-peer.at\n" +"POT-Creation-Date: 2026-04-29 19:33+0200\n" +"PO-Revision-Date: 2004-12-08 14:10+0000\n" +"Last-Translator: Craig Jeffares \n" +"Language-Team: Novell Language \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/ipx_configure.c:39 +#, c-format +msgid "" +"Usage: %s --auto_primary=[on|off]\n" +"Usage: %s --auto_interface=[on|off]\n" +"Usage: %s --help\n" +"Usage: %s\n" +msgstr "" +"Uso: %s --auto_primary=[on|off]\n" +"Uso: %s --auto_interface=[on|off]\n" +"Uso: %s --help\n" +"Uso: %s\n" + +#: src/ipx_configure.c:89 src/ipx_interface.c:154 src/ipx_interface.c:233 +#: src/ipx_interface.c:330 src/ipx_interface.c:389 src/ipx_internal_net.c:80 +#: src/ipx_internal_net.c:138 src/ipx_route.c:103 src/ipx_route.c:169 +#, c-format +msgid "%s: socket: %s\n" +msgstr "%s: soquete: %s\n" + +#: src/ipx_configure.c:92 src/ipx_interface.c:158 +#, c-format +msgid "Probably you have no IPX support in your kernel\n" +msgstr "Provavelmente seu kernel não oferece suporte a IPX\n" + +#: src/ipx_configure.c:120 src/ipx_configure.c:143 src/ipx_configure.c:156 +#: src/ipx_interface.c:209 src/ipx_interface.c:295 src/ipx_interface.c:357 +#: src/ipx_interface.c:422 src/ipx_internal_net.c:114 +#: src/ipx_internal_net.c:155 src/ipx_route.c:127 src/ipx_route.c:189 +#, c-format +msgid "%s: ioctl: %s\n" +msgstr "%s: ioctl: %s\n" + +#: src/ipx_configure.c:162 +#, c-format +msgid "" +"Auto Primary Select is %s\n" +"Auto Interface Create is %s\n" +msgstr "" +"Seleção Primária Automática é %s\n" +"Criação de Interface Automática é %s\n" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "ON" +msgstr "ATIVO" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "OFF" +msgstr "INATIVO" + +#: src/ipx_interface.c:31 +#, c-format +msgid "" +"Usage: %s add [-p] device frame_type [net_number[:node]]\n" +"Usage: %s del device frame_type\n" +"Usage: %s delall\n" +"Usage: %s check device frame_type\n" +msgstr "" +"Uso: %s adicionar dispositivo [-p] tipo_de_frame [número_de_rede[:nó]]\n" +"Uso: %s apagar dispositivo tipo_de_frame\n" +"Uso: %s delall\n" +"Uso: %s verificar dispositivo tipo_de_frame\n" + +#: src/ipx_interface.c:83 +#, c-format +msgid "%s: Frame type must be" +msgstr "%s: Tipo de frame deve ser" + +#: src/ipx_interface.c:87 +msgid " or " +msgstr " ou " + +#: src/ipx_interface.c:142 src/ipx_internal_net.c:65 src/ipx_route.c:62 +#: src/ipx_route.c:86 +#, c-format +msgid "%s: Inappropriate network number %08lX\n" +msgstr "%s: Número de rede %08lX incorreto\n" + +#: src/ipx_interface.c:180 src/ipx_internal_net.c:101 +#, c-format +msgid "%s: Primary network already selected.\n" +msgstr "%s: Rede primária já selecionada.\n" + +#: src/ipx_interface.c:184 src/ipx_internal_net.c:105 +#, c-format +msgid "%s: Network number (%08X) already in use.\n" +msgstr "%s: Número de rede (%08X) já está em uso.\n" + +#: src/ipx_interface.c:188 src/ipx_interface.c:283 src/ipx_interface.c:345 +#: src/ipx_interface.c:410 +#, c-format +msgid "%s: Invalid frame type (%s).\n" +msgstr "%s: Tipo de frame (%s) inválido.\n" + +#: src/ipx_interface.c:192 src/ipx_interface.c:287 src/ipx_interface.c:349 +#: src/ipx_interface.c:414 +#, c-format +msgid "%s: No such device (%s).\n" +msgstr "%s: Dispositivo (%s) inexistente.\n" + +#: src/ipx_interface.c:196 +#, c-format +msgid "%s: Requested device (%s) is down.\n" +msgstr "%s: Dispositivo selecionado (%s) inativo.\n" + +#: src/ipx_interface.c:200 +#, c-format +msgid "%s: Invalid device (%s).\n" +msgstr "%s: Dispositivo (%s) inválido.\n" + +#: src/ipx_interface.c:205 +#, c-format +msgid "%s: Insufficient memory to create interface.\n" +msgstr "%s: Memória insuficiente para criar interface.\n" + +#: src/ipx_interface.c:245 +#, c-format +msgid "%s: Unable to open \"%s.\"\n" +msgstr "%s: Não foi possível abrir \"%s.\"\n" + +#: src/ipx_interface.c:291 src/ipx_interface.c:353 src/ipx_interface.c:418 +#, c-format +msgid "%s: No such IPX interface %s %s.\n" +msgstr "%s: Interface do IPX %s %s inexistente.\n" + +#: src/ipx_interface.c:399 +#, c-format +msgid "IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n" +msgstr "Endereço IPX para (%s, %s) é %08X:%02X%02X%02X%02X%02X%02X.\n" + +#: src/ipx_internal_net.c:28 +#, c-format +msgid "" +"Usage: %s add net_number(hex) node(hex)\n" +"Usage: %s del\n" +msgstr "" +"Uso: %s adicionar número_de_rede(hex) nó(hex)\n" +"Uso: %s apagar\n" + +#: src/ipx_internal_net.c:49 +#, c-format +msgid "%s: Invalid internal network address %s\n" +msgstr "%s: Endereço da rede interna %s inválido\n" + +#: src/ipx_internal_net.c:57 +#, c-format +msgid "%s: Invalid internal network node %s\n" +msgstr "%s: Nó da rede interna %s inválido\n" + +#: src/ipx_internal_net.c:72 +#, c-format +msgid "%s: Node is invalid.\n" +msgstr "%s: Nó inválido.\n" + +#: src/ipx_internal_net.c:110 +#, c-format +msgid "%s: Insufficient memory to create internal net.\n" +msgstr "%s: Memória insuficiente para criar rede interna.\n" + +#: src/ipx_internal_net.c:152 +#, c-format +msgid "%s: No internal network configured.\n" +msgstr "%s: Nenhuma rede interna configurada.\n" + +#: src/ipx_route.c:31 +#, c-format +msgid "" +"Usage: %s add network(hex) router_network(hex) router_node(hex)\n" +"Usage: %s del network(hex)\n" +msgstr "" +"Uso: %s adicionar rede(hex) rede_de_roteador(hex) nó_de_roteador(hex)\n" +"Uso: %s apagar rede(hex)\n" + +#: src/ipx_route.c:55 src/ipx_route.c:153 +#, c-format +msgid "%s: Invalid network number %s\n" +msgstr "%s: Número da rede %s inválido\n" + +#: src/ipx_route.c:71 +#, c-format +msgid "%s: Invalid router address %s\n" +msgstr "%s: Endereço do roteador %s inválido\n" + +#: src/ipx_route.c:78 +#, c-format +msgid "%s: Invalid router node %s\n" +msgstr "%s: Nó do roteador %s inválido\n" + +#: src/ipx_route.c:97 +#, c-format +msgid "%s: Node (%s) is invalid.\n" +msgstr "%s: Nó (%s) inválido.\n" + +#: src/ipx_route.c:123 +#, c-format +msgid "%s: Router network (%08X) not reachable.\n" +msgstr "%s: Rede do roteador (%08X) não acessível.\n" + +#: src/ipx_route.c:160 +#, c-format +msgid "%s: Inappropriate network number %08lX.\n" +msgstr "%s: Número de rede %08lX incorreto.\n" + +#: src/ipx_route.c:181 +#, c-format +msgid "%s: Route not found for network %08lX.\n" +msgstr "%s: Roteador não encontrado na rede %08lX.\n" + +#: src/ipx_route.c:185 +#, c-format +msgid "%s: Network %08lX is directly connected.\n" +msgstr "%s: Rede %08lX diretamente conectada.\n" + +#: src/ipx_cmd.c:130 +#, c-format +msgid "usage: %s -A migration_agent [-l local_ip]\n" +msgstr "" + +#: src/ipx_cmd.c:175 src/ipx_cmd.c:209 +#, fuzzy, c-format +msgid "%s: %s: " +msgstr "%s: %s: %s\n" + +#: src/ipx_cmd.c:182 src/ipx_cmd.c:216 +#, c-format +msgid "%s: Address of %s is not IP\n" +msgstr "" + +#: src/ipx_cmd.c:188 src/ipx_cmd.c:222 +#, c-format +msgid "%s: Address of %s is not 4 bytes long\n" +msgstr "" + +#: src/ipx_cmd.c:232 +#, fuzzy, c-format +msgid "%s: Cannot create UDP/IP socket: %s\n" +msgstr "%s: Não é possível criar %s: %s\n" + +#: src/ipx_cmd.c:241 +#, fuzzy, c-format +msgid "%s: Cannot get list of local interfaces: %s\n" +msgstr "%s: Não é possível ler membros do grupo %s: %s\n" + +#: src/ipx_cmd.c:265 +#, fuzzy, c-format +msgid "%s: Cannot find local requested address\n" +msgstr "%s: Não foi possível encontrar endereço do soquete\n" + +#: src/ipx_cmd.c:278 +#, c-format +msgid "%s: Cannot bind requested address to IP socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:289 +#, fuzzy, c-format +msgid "%s: Cannot create IPX socket: %s\n" +msgstr "%s: Não é possível criar %s: %s\n" + +#: src/ipx_cmd.c:298 +#, fuzzy, c-format +msgid "%s: Cannot find ethertap interface: %s\n" +msgstr "Não é possível determinar: %s\n" + +#: src/ipx_cmd.c:309 +#, fuzzy, c-format +msgid "%s: Cannot create NETLINK socket: %s\n" +msgstr "%s: Não é possível criar %s: %s\n" + +#: src/ipx_cmd.c:322 +#, c-format +msgid "%s: Cannot bind requested address to NETLINK socket: %s\n" +msgstr "" diff --git a/po/quot.sed b/po/quot.sed new file mode 100644 index 0000000..0122c46 --- /dev/null +++ b/po/quot.sed @@ -0,0 +1,6 @@ +s/"\([^"]*\)"/“\1”/g +s/`\([^`']*\)'/‘\1’/g +s/ '\([^`']*\)' / ‘\1’ /g +s/ '\([^`']*\)'$/ ‘\1’/g +s/^'\([^`']*\)' /‘\1’ /g +s/“”/""/g diff --git a/po/remove-potcdate.sin b/po/remove-potcdate.sin new file mode 100644 index 0000000..2436c49 --- /dev/null +++ b/po/remove-potcdate.sin @@ -0,0 +1,19 @@ +# Sed script that remove the POT-Creation-Date line in the header entry +# from a POT file. +# +# The distinction between the first and the following occurrences of the +# pattern is achieved by looking at the hold space. +/^"POT-Creation-Date: .*"$/{ +x +# Test if the hold space is empty. +s/P/P/ +ta +# Yes it was empty. First occurrence. Remove the line. +g +d +bb +:a +# The hold space was nonempty. Following occurrences. Do nothing. +x +:b +} diff --git a/po/stamp-cat-id b/po/stamp-cat-id new file mode 100644 index 0000000..9788f70 --- /dev/null +++ b/po/stamp-cat-id @@ -0,0 +1 @@ +timestamp diff --git a/po/stamp-po b/po/stamp-po new file mode 100644 index 0000000..9788f70 --- /dev/null +++ b/po/stamp-po @@ -0,0 +1 @@ +timestamp diff --git a/po/zh_CN.gmo b/po/zh_CN.gmo new file mode 100644 index 0000000..f50a1cb Binary files /dev/null and b/po/zh_CN.gmo differ diff --git a/po/zh_CN.po b/po/zh_CN.po new file mode 100644 index 0000000..24c11b5 --- /dev/null +++ b/po/zh_CN.po @@ -0,0 +1,291 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# +msgid "" +msgstr "" +"Project-Id-Version: ncpfs-2.2.4\n" +"Report-Msgid-Bugs-To: mario.fetka@disconnected-by-peer.at\n" +"POT-Creation-Date: 2026-04-29 19:33+0200\n" +"PO-Revision-Date: 2004-12-08 16:41+0000\n" +"Last-Translator: Craig Jeffares \n" +"Language-Team: Novell Language \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/ipx_configure.c:39 +#, c-format +msgid "" +"Usage: %s --auto_primary=[on|off]\n" +"Usage: %s --auto_interface=[on|off]\n" +"Usage: %s --help\n" +"Usage: %s\n" +msgstr "" +"用法:%s --auto_primary=[on|off]\n" +"Usage:%s --auto_interface=[on|off]\n" +"用法:%s --help\n" +"用法:%s\n" + +#: src/ipx_configure.c:89 src/ipx_interface.c:154 src/ipx_interface.c:233 +#: src/ipx_interface.c:330 src/ipx_interface.c:389 src/ipx_internal_net.c:80 +#: src/ipx_internal_net.c:138 src/ipx_route.c:103 src/ipx_route.c:169 +#, c-format +msgid "%s: socket: %s\n" +msgstr "%s:套接字:%s\n" + +#: src/ipx_configure.c:92 src/ipx_interface.c:158 +#, c-format +msgid "Probably you have no IPX support in your kernel\n" +msgstr "可能在您的内核中不具有 IPX 支持\n" + +#: src/ipx_configure.c:120 src/ipx_configure.c:143 src/ipx_configure.c:156 +#: src/ipx_interface.c:209 src/ipx_interface.c:295 src/ipx_interface.c:357 +#: src/ipx_interface.c:422 src/ipx_internal_net.c:114 +#: src/ipx_internal_net.c:155 src/ipx_route.c:127 src/ipx_route.c:189 +#, c-format +msgid "%s: ioctl: %s\n" +msgstr "%s:ioctl:%s\n" + +#: src/ipx_configure.c:162 +#, c-format +msgid "" +"Auto Primary Select is %s\n" +"Auto Interface Create is %s\n" +msgstr "" +"自动主选择为 %s\n" +"自动接口创建为 %s\n" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "ON" +msgstr "ON" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "OFF" +msgstr "OFF" + +#: src/ipx_interface.c:31 +#, c-format +msgid "" +"Usage: %s add [-p] device frame_type [net_number[:node]]\n" +"Usage: %s del device frame_type\n" +"Usage: %s delall\n" +"Usage: %s check device frame_type\n" +msgstr "" +"用法:%s add [-p] device frame_type [net_number[:node]]\n" +"用法:%s del device frame_type\n" +"用法:%s delall\n" +"用法:%s check device frame_type\n" + +#: src/ipx_interface.c:83 +#, c-format +msgid "%s: Frame type must be" +msgstr "%s:框架类型必须是" + +#: src/ipx_interface.c:87 +msgid " or " +msgstr " 或" + +#: src/ipx_interface.c:142 src/ipx_internal_net.c:65 src/ipx_route.c:62 +#: src/ipx_route.c:86 +#, c-format +msgid "%s: Inappropriate network number %08lX\n" +msgstr "%s:不适当的网络编号 %08lX\n" + +#: src/ipx_interface.c:180 src/ipx_internal_net.c:101 +#, c-format +msgid "%s: Primary network already selected.\n" +msgstr "%s:已选择主网络。\n" + +#: src/ipx_interface.c:184 src/ipx_internal_net.c:105 +#, c-format +msgid "%s: Network number (%08X) already in use.\n" +msgstr "%s:网络编号 (%08X) 已在使用中。\n" + +#: src/ipx_interface.c:188 src/ipx_interface.c:283 src/ipx_interface.c:345 +#: src/ipx_interface.c:410 +#, c-format +msgid "%s: Invalid frame type (%s).\n" +msgstr "%s:无效的框架类型 (%s)。\n" + +#: src/ipx_interface.c:192 src/ipx_interface.c:287 src/ipx_interface.c:349 +#: src/ipx_interface.c:414 +#, c-format +msgid "%s: No such device (%s).\n" +msgstr "%s:没有此类设备 (%s)。\n" + +#: src/ipx_interface.c:196 +#, c-format +msgid "%s: Requested device (%s) is down.\n" +msgstr "%s:请求的设备 (%s) 被关闭。\n" + +#: src/ipx_interface.c:200 +#, c-format +msgid "%s: Invalid device (%s).\n" +msgstr "%s:无效的设备 (%s)。\n" + +#: src/ipx_interface.c:205 +#, c-format +msgid "%s: Insufficient memory to create interface.\n" +msgstr "%s:内存不足,无法创建接口。\n" + +#: src/ipx_interface.c:245 +#, c-format +msgid "%s: Unable to open \"%s.\"\n" +msgstr "%s:无法打开 \"%s。\"\n" + +#: src/ipx_interface.c:291 src/ipx_interface.c:353 src/ipx_interface.c:418 +#, c-format +msgid "%s: No such IPX interface %s %s.\n" +msgstr "%s:没有此类 IPX 接口 %s %s。\n" + +#: src/ipx_interface.c:399 +#, c-format +msgid "IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n" +msgstr "(%s, %s) 的 IPX 地址是 %08X:%02X%02X%02X%02X%02X%02X。\n" + +#: src/ipx_internal_net.c:28 +#, c-format +msgid "" +"Usage: %s add net_number(hex) node(hex)\n" +"Usage: %s del\n" +msgstr "" +"用法:%s add net_number(hex) node(hex)\n" +"用法:%s del\n" + +#: src/ipx_internal_net.c:49 +#, c-format +msgid "%s: Invalid internal network address %s\n" +msgstr "%s:无效的内部网络地址 %s\n" + +#: src/ipx_internal_net.c:57 +#, c-format +msgid "%s: Invalid internal network node %s\n" +msgstr "%s:无效的内部网络节点 %s\n" + +#: src/ipx_internal_net.c:72 +#, c-format +msgid "%s: Node is invalid.\n" +msgstr "%s:节点无效。\n" + +#: src/ipx_internal_net.c:110 +#, c-format +msgid "%s: Insufficient memory to create internal net.\n" +msgstr "%s:内存不足,无法创建内部网。\n" + +#: src/ipx_internal_net.c:152 +#, c-format +msgid "%s: No internal network configured.\n" +msgstr "%s:没有配置的内部网络。\n" + +#: src/ipx_route.c:31 +#, c-format +msgid "" +"Usage: %s add network(hex) router_network(hex) router_node(hex)\n" +"Usage: %s del network(hex)\n" +msgstr "" +"用法:%s add network(hex) router_network(hex) router_node(hex)\n" +"用法:%s del network(hex)\n" + +#: src/ipx_route.c:55 src/ipx_route.c:153 +#, c-format +msgid "%s: Invalid network number %s\n" +msgstr "%s:无效的网络编号 %s\n" + +#: src/ipx_route.c:71 +#, c-format +msgid "%s: Invalid router address %s\n" +msgstr "%s:无效的路由器地址 %s\n" + +#: src/ipx_route.c:78 +#, c-format +msgid "%s: Invalid router node %s\n" +msgstr "%s:无效的路由器节点 %s\n" + +#: src/ipx_route.c:97 +#, c-format +msgid "%s: Node (%s) is invalid.\n" +msgstr "%s:节点 (%s) 无效。\n" + +#: src/ipx_route.c:123 +#, c-format +msgid "%s: Router network (%08X) not reachable.\n" +msgstr "%s:路由器网络 (%08X) 不可访问。\n" + +#: src/ipx_route.c:160 +#, c-format +msgid "%s: Inappropriate network number %08lX.\n" +msgstr "%s:不适当的网络编号 %08lX。\n" + +#: src/ipx_route.c:181 +#, c-format +msgid "%s: Route not found for network %08lX.\n" +msgstr "%s:未找到网络 %08lX 的路由。\n" + +#: src/ipx_route.c:185 +#, c-format +msgid "%s: Network %08lX is directly connected.\n" +msgstr "%s:网络 %08lX 被直接连接。\n" + +#: src/ipx_cmd.c:130 +#, c-format +msgid "usage: %s -A migration_agent [-l local_ip]\n" +msgstr "" + +#: src/ipx_cmd.c:175 src/ipx_cmd.c:209 +#, fuzzy, c-format +msgid "%s: %s: " +msgstr "%s:%s:%s\n" + +#: src/ipx_cmd.c:182 src/ipx_cmd.c:216 +#, c-format +msgid "%s: Address of %s is not IP\n" +msgstr "" + +#: src/ipx_cmd.c:188 src/ipx_cmd.c:222 +#, c-format +msgid "%s: Address of %s is not 4 bytes long\n" +msgstr "" + +#: src/ipx_cmd.c:232 +#, fuzzy, c-format +msgid "%s: Cannot create UDP/IP socket: %s\n" +msgstr "%s:无法创建 %s:%s\n" + +#: src/ipx_cmd.c:241 +#, fuzzy, c-format +msgid "%s: Cannot get list of local interfaces: %s\n" +msgstr "%s:无法读取组 %s 的成员:%s\n" + +#: src/ipx_cmd.c:265 +#, fuzzy, c-format +msgid "%s: Cannot find local requested address\n" +msgstr "%s:无法找到套接字地址\n" + +#: src/ipx_cmd.c:278 +#, c-format +msgid "%s: Cannot bind requested address to IP socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:289 +#, fuzzy, c-format +msgid "%s: Cannot create IPX socket: %s\n" +msgstr "%s:无法创建 %s:%s\n" + +#: src/ipx_cmd.c:298 +#, fuzzy, c-format +msgid "%s: Cannot find ethertap interface: %s\n" +msgstr "无法确定:%s\n" + +#: src/ipx_cmd.c:309 +#, fuzzy, c-format +msgid "%s: Cannot create NETLINK socket: %s\n" +msgstr "%s:无法创建 %s:%s\n" + +#: src/ipx_cmd.c:322 +#, c-format +msgid "%s: Cannot bind requested address to NETLINK socket: %s\n" +msgstr "" diff --git a/po/zh_TW.gmo b/po/zh_TW.gmo new file mode 100644 index 0000000..9ab1800 Binary files /dev/null and b/po/zh_TW.gmo differ diff --git a/po/zh_TW.po b/po/zh_TW.po new file mode 100644 index 0000000..4c0a652 --- /dev/null +++ b/po/zh_TW.po @@ -0,0 +1,291 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# +msgid "" +msgstr "" +"Project-Id-Version: ncpfs-2.2.4\n" +"Report-Msgid-Bugs-To: mario.fetka@disconnected-by-peer.at\n" +"POT-Creation-Date: 2026-04-29 19:33+0200\n" +"PO-Revision-Date: 2004-12-08 14:15+0100\n" +"Last-Translator: Craig Jeffares \n" +"Language-Team: Novell Language \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/ipx_configure.c:39 +#, c-format +msgid "" +"Usage: %s --auto_primary=[on|off]\n" +"Usage: %s --auto_interface=[on|off]\n" +"Usage: %s --help\n" +"Usage: %s\n" +msgstr "" +"用法:%s --auto_primary=[on|off]\n" +"用法:%s --auto_interface=[on|off]\n" +"用法:%s --help\n" +"用法:%s\n" + +#: src/ipx_configure.c:89 src/ipx_interface.c:154 src/ipx_interface.c:233 +#: src/ipx_interface.c:330 src/ipx_interface.c:389 src/ipx_internal_net.c:80 +#: src/ipx_internal_net.c:138 src/ipx_route.c:103 src/ipx_route.c:169 +#, c-format +msgid "%s: socket: %s\n" +msgstr "%s:插槽:%s\n" + +#: src/ipx_configure.c:92 src/ipx_interface.c:158 +#, c-format +msgid "Probably you have no IPX support in your kernel\n" +msgstr "您的核心中可能沒有 IPX 支援\n" + +#: src/ipx_configure.c:120 src/ipx_configure.c:143 src/ipx_configure.c:156 +#: src/ipx_interface.c:209 src/ipx_interface.c:295 src/ipx_interface.c:357 +#: src/ipx_interface.c:422 src/ipx_internal_net.c:114 +#: src/ipx_internal_net.c:155 src/ipx_route.c:127 src/ipx_route.c:189 +#, c-format +msgid "%s: ioctl: %s\n" +msgstr "%s:ioctl:%s\n" + +#: src/ipx_configure.c:162 +#, c-format +msgid "" +"Auto Primary Select is %s\n" +"Auto Interface Create is %s\n" +msgstr "" +"自動主要選取為 %s\n" +"自動介面建立為 %s\n" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "ON" +msgstr "開啟" + +#: src/ipx_configure.c:164 src/ipx_configure.c:165 +msgid "OFF" +msgstr "關閉" + +#: src/ipx_interface.c:31 +#, c-format +msgid "" +"Usage: %s add [-p] device frame_type [net_number[:node]]\n" +"Usage: %s del device frame_type\n" +"Usage: %s delall\n" +"Usage: %s check device frame_type\n" +msgstr "" +"用法:%s add [-p] device frame_type [net_number[:node]]\n" +"用法:%s del device frame_type\n" +"用法:%s delall\n" +"用法:%s check device frame_type\n" + +#: src/ipx_interface.c:83 +#, c-format +msgid "%s: Frame type must be" +msgstr "%s:框架類型必須為" + +#: src/ipx_interface.c:87 +msgid " or " +msgstr " 或 " + +#: src/ipx_interface.c:142 src/ipx_internal_net.c:65 src/ipx_route.c:62 +#: src/ipx_route.c:86 +#, c-format +msgid "%s: Inappropriate network number %08lX\n" +msgstr "%s:不正確的網路號碼 %08lX\n" + +#: src/ipx_interface.c:180 src/ipx_internal_net.c:101 +#, c-format +msgid "%s: Primary network already selected.\n" +msgstr "%s:主要網路已選取。\n" + +#: src/ipx_interface.c:184 src/ipx_internal_net.c:105 +#, c-format +msgid "%s: Network number (%08X) already in use.\n" +msgstr "%s:網路號碼 (%08X) 已經使用。\n" + +#: src/ipx_interface.c:188 src/ipx_interface.c:283 src/ipx_interface.c:345 +#: src/ipx_interface.c:410 +#, c-format +msgid "%s: Invalid frame type (%s).\n" +msgstr "%s:無效的框架類型 (%s)。\n" + +#: src/ipx_interface.c:192 src/ipx_interface.c:287 src/ipx_interface.c:349 +#: src/ipx_interface.c:414 +#, c-format +msgid "%s: No such device (%s).\n" +msgstr "%s:無此設備 (%s)。\n" + +#: src/ipx_interface.c:196 +#, c-format +msgid "%s: Requested device (%s) is down.\n" +msgstr "%s:要求的設備 (%s) 已關閉。\n" + +#: src/ipx_interface.c:200 +#, c-format +msgid "%s: Invalid device (%s).\n" +msgstr "%s:無效的設備 (%s)。\n" + +#: src/ipx_interface.c:205 +#, c-format +msgid "%s: Insufficient memory to create interface.\n" +msgstr "%s:記憶體不足,無法建立介面。\n" + +#: src/ipx_interface.c:245 +#, c-format +msgid "%s: Unable to open \"%s.\"\n" +msgstr "%s:無法開啟「%s」。\n" + +#: src/ipx_interface.c:291 src/ipx_interface.c:353 src/ipx_interface.c:418 +#, c-format +msgid "%s: No such IPX interface %s %s.\n" +msgstr "%s:無此 IPX 介面 %s %s。\n" + +#: src/ipx_interface.c:399 +#, c-format +msgid "IPX Address for (%s, %s) is %08X:%02X%02X%02X%02X%02X%02X.\n" +msgstr "(%s, %s) 的 IPX 位址為 %08X:%02X%02X%02X%02X%02X%02X。\n" + +#: src/ipx_internal_net.c:28 +#, c-format +msgid "" +"Usage: %s add net_number(hex) node(hex)\n" +"Usage: %s del\n" +msgstr "" +"用法:%s add net_number(hex) node(hex)\n" +"用法:%s del\n" + +#: src/ipx_internal_net.c:49 +#, c-format +msgid "%s: Invalid internal network address %s\n" +msgstr "%s:無效的內部網路位址 %s\n" + +#: src/ipx_internal_net.c:57 +#, c-format +msgid "%s: Invalid internal network node %s\n" +msgstr "%s:無效的內部網路節點 %s\n" + +#: src/ipx_internal_net.c:72 +#, c-format +msgid "%s: Node is invalid.\n" +msgstr "%s:節點無效。\n" + +#: src/ipx_internal_net.c:110 +#, c-format +msgid "%s: Insufficient memory to create internal net.\n" +msgstr "%s:記憶體不足,無法建立內部網路。\n" + +#: src/ipx_internal_net.c:152 +#, c-format +msgid "%s: No internal network configured.\n" +msgstr "%s:沒有設定內部網路。\n" + +#: src/ipx_route.c:31 +#, c-format +msgid "" +"Usage: %s add network(hex) router_network(hex) router_node(hex)\n" +"Usage: %s del network(hex)\n" +msgstr "" +"用法:%s add network(hex) router_network(hex) router_node(hex)\n" +"用法:%s del network(hex)\n" + +#: src/ipx_route.c:55 src/ipx_route.c:153 +#, c-format +msgid "%s: Invalid network number %s\n" +msgstr "%s:無效的網路號碼 %s\n" + +#: src/ipx_route.c:71 +#, c-format +msgid "%s: Invalid router address %s\n" +msgstr "%s:無效的路由器位址 %s\n" + +#: src/ipx_route.c:78 +#, c-format +msgid "%s: Invalid router node %s\n" +msgstr "%s:無效的路由器節點 %s\n" + +#: src/ipx_route.c:97 +#, c-format +msgid "%s: Node (%s) is invalid.\n" +msgstr "%s:節點 (%s) 無效。\n" + +#: src/ipx_route.c:123 +#, c-format +msgid "%s: Router network (%08X) not reachable.\n" +msgstr "%s:路由器網路 (%08X) 無法到達。\n" + +#: src/ipx_route.c:160 +#, c-format +msgid "%s: Inappropriate network number %08lX.\n" +msgstr "%s:不正確的網路號碼 %08lX。\n" + +#: src/ipx_route.c:181 +#, c-format +msgid "%s: Route not found for network %08lX.\n" +msgstr "%s:找不到網路 %08lX 的路由。\n" + +#: src/ipx_route.c:185 +#, c-format +msgid "%s: Network %08lX is directly connected.\n" +msgstr "%s:網路 %08lX 是直接連線的。\n" + +#: src/ipx_cmd.c:130 +#, c-format +msgid "usage: %s -A migration_agent [-l local_ip]\n" +msgstr "" + +#: src/ipx_cmd.c:175 src/ipx_cmd.c:209 +#, fuzzy, c-format +msgid "%s: %s: " +msgstr "%s:%s:%s\n" + +#: src/ipx_cmd.c:182 src/ipx_cmd.c:216 +#, c-format +msgid "%s: Address of %s is not IP\n" +msgstr "" + +#: src/ipx_cmd.c:188 src/ipx_cmd.c:222 +#, c-format +msgid "%s: Address of %s is not 4 bytes long\n" +msgstr "" + +#: src/ipx_cmd.c:232 +#, fuzzy, c-format +msgid "%s: Cannot create UDP/IP socket: %s\n" +msgstr "%s:無法建立 %s:%s\n" + +#: src/ipx_cmd.c:241 +#, fuzzy, c-format +msgid "%s: Cannot get list of local interfaces: %s\n" +msgstr "%s:無法讀取群組 %s 的成員:%s\n" + +#: src/ipx_cmd.c:265 +#, fuzzy, c-format +msgid "%s: Cannot find local requested address\n" +msgstr "%s:找不到插槽位址\n" + +#: src/ipx_cmd.c:278 +#, c-format +msgid "%s: Cannot bind requested address to IP socket: %s\n" +msgstr "" + +#: src/ipx_cmd.c:289 +#, fuzzy, c-format +msgid "%s: Cannot create IPX socket: %s\n" +msgstr "%s:無法建立 %s:%s\n" + +#: src/ipx_cmd.c:298 +#, fuzzy, c-format +msgid "%s: Cannot find ethertap interface: %s\n" +msgstr "無法判斷:%s\n" + +#: src/ipx_cmd.c:309 +#, fuzzy, c-format +msgid "%s: Cannot create NETLINK socket: %s\n" +msgstr "%s:無法建立 %s:%s\n" + +#: src/ipx_cmd.c:322 +#, c-format +msgid "%s: Cannot bind requested address to NETLINK socket: %s\n" +msgstr ""