--- nas-1.9.2.orig/debian/libaudio2.prerm
+++ nas-1.9.2/debian/libaudio2.prerm
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L /usr/doc/libaudio2 ]; then
+   rm -f /usr/doc/libaudio2
+fi
+
--- nas-1.9.2.orig/debian/start-nas
+++ nas-1.9.2/debian/start-nas
@@ -0,0 +1,2 @@
+#!/bin/sh
+nice -n -10 /usr/bin/nasd -b "$@"
--- nas-1.9.2.orig/debian/nas-doc.prerm
+++ nas-1.9.2/debian/nas-doc.prerm
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L /usr/doc/nas-doc ]; then
+   rm -f /usr/doc/nas-doc
+fi
+
--- nas-1.9.2.orig/debian/libaudio2.postinst
+++ nas-1.9.2/debian/libaudio2.postinst
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+if [ "$1" = "configure" ]; then
+        ldconfig
+fi
+
--- nas-1.9.2.orig/debian/nas.templates
+++ nas-1.9.2/debian/nas.templates
@@ -0,0 +1,33 @@
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# debian-l10n-english@lists.debian.org for advice.
+#
+# Even minor modifications require translation updates and such
+# changes should be coordinated with translators and reviewers.
+
+Template: nas/relinquish
+Type: boolean
+Default: true
+_Description: Should nasd release /dev/dsp?
+ By default, the NAS server will open the configured audio device
+ at startup, and then keep it open until the server is stopped. This will
+ stop any non-NAS-aware audio clients from using the audio device.
+ .
+ The daemon can be configured to release the audio device when it is
+ not using it, with some delay after the
+ application completes before the device is available.
+ .
+ An alternative is to use the "audiooss" package to wrap any programs
+ that use /dev/dsp to make them use equivalent NAS calls.
+
+Template: nas/mixer
+Type: boolean
+Default: false
+_Description: Should nasd change mixer settings at startup?
+ If you choose this option, the NAS server will change the mixer settings
+ at startup as follows:
+ .
+  - set PCM volume to 50%;
+  - change the record input device to LINE.
--- nas-1.9.2.orig/debian/rules
+++ nas-1.9.2/debian/rules
@@ -0,0 +1,226 @@
+#! /usr/bin/make -f
+# debian/rules file for NAS
+
+package=nas
+instdirs=BINDIR=/usr/bin USRLIBDIR=/usr/lib MANPATH=/usr/share/man INCDIR=/usr/include MANSUFFIX=1nas LIBMANSUFFIX=3nas FILEMANSUFFIX=5nas ETCDIR=/etc/nas
+
+DEB_BUILD_GNU_TYPE	?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+DEB_BUILD_GNU_CPU	?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU)
+DEB_BUILD_GNU_SYSTEM	?= $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM)
+DEB_BUILD_ARCH_OS	?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS)
+
+ifeq ($(DEB_BUILD_ARCH_OS),hurd)
+archpacs=nas-bin libaudio2 libaudio-dev
+else
+archpacs=nas nas-bin libaudio2 libaudio-dev
+endif
+allpacs=nas-doc
+
+build:
+        # Make include symlinks
+	( cd include/audio; for file in ../../lib/audio/*.h; do ln -s $$file .; done )
+	cp /usr/share/misc/config.sub config
+	xmkmf -a
+	$(MAKE) LDFLAGS="-s"
+	touch build
+
+clean:
+	FOO=bar; echo $$FOO
+	$(checkdir)
+	-$(MAKE) clean
+	find . -name Makefile -exec rm -f {} \;
+	find . -name '*~' -exec rm -f {} \;
+	# Clear up include symlinks
+	find include -type l -exec rm -f {} \;
+	rm -rf debian/tmp debian/nas debian/nas-doc debian/nas-bin 
+	rm -rf debian/libaudio2 debian/libaudio-dev debian/substvars
+	rm -f build debian/files 
+	rm -f config/config.cache config/config.h config/config.log
+	rm -f config/config.status
+	rm -f config/config.sub
+	rm -f config/libtool libtool
+	rm -rf config/autom4te.cache
+	# So so ugly, but works.
+	echo "#!/bin/sh" > config/config.guess
+	echo "echo $(DEB_BUILD_GNU_TYPE)" >> config/config.guess
+	chmod +x config/config.guess
+
+binary-indep:  checkroot
+	$(checkdir)
+	# nas-doc
+	install -d debian/nas-doc/DEBIAN
+	install -d debian/nas-doc/usr/share/doc/nas-doc
+	install -d debian/nas-doc/usr/share/doc/nas
+	# install nas-doc
+	install -m644 doc/*ps doc/*txt doc/actions debian/nas-doc/usr/share/doc/nas
+	install -m644 doc/README debian/nas-doc/usr/share/doc/nas/README.DOC
+	install -m644 README FAQ TODO debian/nas-doc/usr/share/doc/nas-doc
+	install -m644 HISTORY debian/nas-doc/usr/share/doc/nas-doc/changelog
+	install -m644 debian/changelog debian/nas-doc/usr/share/doc/nas-doc/changelog.Debian
+	-gzip -9v debian/nas-doc/usr/share/doc/*/*
+	cp debian/copyright debian/nas-doc/usr/share/doc/nas-doc
+	for file in preinst postinst prerm postrm config ; \
+	do \
+		if [ -f debian/nas-doc.$$file ] ; then \
+			install -m755 debian/nas-doc.$$file debian/nas-doc/DEBIAN/$$file; \
+		fi; \
+	done; \
+	dpkg-gencontrol -isp -Pdebian/nas-doc -pnas-doc >debian/nas-doc/DEBIAN/control
+	-chown -R root.root debian/nas-doc
+	-chmod -R g-ws debian/nas-doc
+	dpkg --build debian/nas-doc ..
+
+binary-arch:  checkroot build
+	$(checkdir)
+	# First create directories:
+	# nas
+	install -d debian/nas/DEBIAN
+	install -d debian/nas/usr/bin
+	install -d debian/nas/usr/share/man/man1
+	install -d debian/nas/usr/share/man/man5
+	install -d debian/nas/usr/share/doc/nas
+	install -d debian/nas/usr/share/doc/nas/examples
+	install -d debian/nas/usr/share/nas
+	install -d debian/nas/etc/init.d
+	install -d debian/nas/etc/default
+	# nas-bin
+	install -d debian/nas-bin/DEBIAN
+	install -d debian/nas-bin/usr/bin
+	install -d debian/nas-bin/usr/share/man/man1
+	install -d debian/nas-bin/usr/share/doc/nas-bin
+	# libaudio-dev
+	install -d debian/libaudio-dev/DEBIAN
+	install -d debian/libaudio-dev/usr/include/audio
+	install -d debian/libaudio-dev/usr/share/man/man3
+	install -d debian/libaudio-dev/usr/share/doc/libaudio-dev
+	install -d debian/libaudio-dev/usr/lib
+	# libaudio2
+	install -d debian/libaudio2/DEBIAN
+	install -d debian/libaudio2/usr/lib
+	install -d debian/libaudio2/usr/share/doc/libaudio2
+	# Make install used to do most stuff for us, but not any more.
+	#$(MAKE) install BINDIR=/usr/bin MANPATH=/usr/share/man DESTDIR=$(TOP)/debian/tmp
+	#$(MAKE) install.man DESTDIR=$(TOP)/debian/tmp
+
+	# install nas
+	(top=`pwd`; cd server && $(MAKE) install $(instdirs) DESTDIR=$$top/debian/nas)
+	(top=`pwd`; cd server && $(MAKE) install.man $(instdirs) DESTDIR=$$top/debian/nas)
+ifneq ($(DEB_BUILD_ARCH_OS),hurd)
+	cp debian/nas/etc/nas/nasd.conf.eg debian/nas/etc/nas/nasd.conf 
+	mv debian/nas/etc/nas/nasd.conf.eg debian/nas/usr/share/nas
+	ln -s ../../../nas/nasd.conf.eg debian/nas/usr/share/doc/nas/examples
+	chmod 644 debian/nas/usr/share/doc/nas/examples/nasd.conf.eg
+	chmod 755 debian/nas/etc/nas
+	chmod 755 debian/nas/etc/default
+	file debian/nas/usr/bin/* | grep executable | grep -v 'script text executable' | cut -d':' -f1 | xargs strip --strip-unneeded --remove-section=.comment --remove-section=.note
+endif
+
+	# install nas-bin
+	(top=`pwd`; cd clients/audio && $(MAKE) install $(instdirs) DESTDIR=$$top/debian/nas-bin)
+	(top=`pwd`; cd clients/audio && $(MAKE) install.man $(instdirs) DESTDIR=$$top/debian/nas-bin)
+	file debian/nas-bin/usr/bin/* | grep executable | grep -v 'script text executable' | cut -d':' -f1 | xargs strip --strip-unneeded --remove-section=.comment --remove-section=.note
+
+	# install libaudio-dev
+	(top=`pwd`; cd doc/man/lib && $(MAKE) install.man $(instdirs) MANSUFFIX=3nas DESTDIR=$$top/debian/libaudio-dev)
+	install -m644 lib/audio/libaudio.a debian/libaudio-dev/usr/lib
+	install -m644 include/audio/*.h debian/libaudio-dev/usr/include/audio
+	rm -f debian/libaudio-dev/usr/include/audio/release.h
+	ln -s libaudio.so.2.4 debian/libaudio-dev/usr/lib/libaudio.so
+
+	# install libaudio2
+	install -m644 lib/audio/libaudio.so.2.4 lib/audio/AuErrorDB debian/libaudio2/usr/lib
+	ln -s libaudio.so.2.4 debian/libaudio2/usr/lib/libaudio.so.2
+	install -m644 lib/audio/libaudio.so.2.4 debian/libaudio2/usr/lib
+	strip --strip-unneeded --remove-section=.comment --remove-section=.note debian/libaudio2/usr/lib/libaudio.so.2.4 
+
+	# Install other files
+	install -m 644 debian/nas.default debian/nas/etc/default/nas
+	install debian/rc.nas debian/nas/etc/init.d/nas
+	install debian/start-nas debian/nas/usr/bin
+	install -m 644 debian/start-nas.man debian/nas/usr/share/man/man1/start-nas.1nas
+	install -m 644 doc/man/nas.man debian/nas/usr/share/man/man1/nas.1nas
+	# Install documentation
+	-gzip -9v debian/nas/usr/share/man/man*/*
+	-gzip -9v debian/nas-bin/usr/share/man/man*/*
+	-gzip -9v debian/libaudio-dev/usr/share/man/man*/*
+	ln -s nas.1nas.gz debian/nas/usr/share/man/man1/au.1nas.gz
+	for dir in $(archpacs); do install -m644 README FAQ TODO debian/$$dir/usr/share/doc/$$dir; done
+	for dir in $(archpacs); do install -m644 HISTORY debian/$$dir/usr/share/doc/$$dir/changelog; done
+	for dir in $(archpacs); do install -m644 debian/changelog debian/$$dir/usr/share/doc/$$dir/changelog.Debian; done
+	install -m644 debian/nas.README.Debian debian/nas/usr/share/doc/nas/README.Debian
+
+	# Now compress docs & clean up permissions
+	-gzip -9v debian/nas/usr/share/doc/*/*
+	-gzip -9v debian/libaudio-dev/usr/share/doc/*/*
+	-gzip -9v debian/nas-bin/usr/share/doc/*/*
+	-gzip -9v debian/libaudio2/usr/share/doc/*/*
+
+	-chmod -Rv u+w debian/nas/usr/share/man
+	-chmod -Rv u+w debian/libaudio-dev/usr/include debian/libaudio-dev/usr/share/man
+	-chmod -Rv u+w debian/nas-bin/usr/share/man
+
+	-chmod -v 644 debian/nas/etc/nas/* 
+	chmod -v 644 debian/libaudio2/usr/lib/AuErrorDB
+	for dir in $(archpacs); do cp debian/copyright debian/$$dir/usr/share/doc/$$dir; done
+	# Standard package building stuff
+	debconf-updatepo
+	for dir in $(archpacs); \
+	do \
+		for file in conffiles shlibs; \
+		do \
+			if [ -f debian/$$dir.$$file ] ; then \
+				install -m644 debian/$$dir.$$file debian/$$dir/DEBIAN/$$file; \
+			fi; \
+		done; \
+		for file in preinst postinst prerm postrm config; \
+		do \
+			if [ -f debian/$$dir.$$file ] ; then \
+				install -m755 debian/$$dir.$$file debian/$$dir/DEBIAN/$$file; \
+			fi; \
+		done; \
+		if [ -f debian/$$dir.templates ] ; then \
+			po2debconf debian/$$dir.templates > debian/$$dir/DEBIAN/templates ; \
+		fi; \
+	done
+
+	dpkg-shlibdeps debian/nas/usr/bin/*
+	LD_LIBRARY_PATH=./debian/libaudio2/usr/lib:$$LD_LIBRARY_PATH dpkg-shlibdeps debian/nas-bin/usr/bin/*
+	dpkg-shlibdeps debian/libaudio2/usr/lib/lib*
+	for dir in $(archpacs); \
+	do \
+		dpkg-gencontrol -isp -Pdebian/$$dir -p$$dir >debian/$$dir/DEBIAN/control; \
+	done
+	-chown -R root.root debian/nas
+	-chown -R root.root debian/libaudio-dev
+	-chown -R root.root debian/nas-bin
+	-chown -R root.root debian/libaudio2
+
+	-chmod -R g-ws debian/nas
+	-chmod -R g-ws debian/libaudio-dev
+	-chmod -R g-ws debian/nas-bin
+	-chmod -R g-ws debian/libaudio2
+
+	for dir in $(archpacs); \
+	do \
+		dpkg --build debian/$$dir ..; \
+	done
+
+define checkdir
+	test -f server/dia/au.h -a -f debian/rules
+endef
+
+# Below here is fairly generic really
+
+binary:  binary-indep binary-arch
+
+source diff:
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+checkroot:
+	$(checkdir)
+	test root = "`whoami`"
+
+.PHONY: binary binary-arch binary-indep clean checkroot
+
+
+
--- nas-1.9.2.orig/debian/nas.config
+++ nas-1.9.2/debian/nas.config
@@ -0,0 +1,14 @@
+#!/bin/sh -e
+
+action=$1
+version=$2
+
+# Source debconf library.
+. /usr/share/debconf/confmodule
+
+db_input medium nas/relinquish || true
+db_go
+
+db_input medium nas/mixer || true
+db_go
+
--- nas-1.9.2.orig/debian/start-nas.man
+++ nas-1.9.2/debian/start-nas.man
@@ -0,0 +1,20 @@
+.TH "NETWORK AUDIO SYSTEM" 1 \" -*- nroff -*-
+
+.SH NAME
+Network Audio System \- a portable, network-transparent audio system
+
+.SH SYNOPSIS
+.B start-nas
+
+.SH DESCRIPTION
+
+.P 
+
+\fIstart-nas\fP is a simple script to be used to start \fInas\fP, the
+daemon used in the Network Audio System. It takes no arguments.
+
+.SH SEE ALSO
+nas(1)
+
+This manual page added by Steve McIntyre <stevem@chiark.greenend.org.uk>,
+Debian maintainer of nas, 29th March 1998. 
--- nas-1.9.2.orig/debian/nas.postinst
+++ nas-1.9.2/debian/nas.postinst
@@ -0,0 +1,66 @@
+#!/bin/sh -e
+
+CONF=/etc/nas/nasd.conf
+CONFEG=/usr/share/nas/nasd.conf.eg
+
+# Source debconf library.
+. /usr/share/debconf/confmodule
+db_version 2.0
+
+set_var ()
+{
+	if [ ! -f $CONF ] ; then
+		cp $CONFEG $CONF
+	fi
+
+	NAME=$1
+	VALUE=$2
+
+#	echo "Setting $NAME to $VALUE" >/dev/stderr
+
+	sed "s/^[[:space:]\#]*$NAME.*/$NAME \"$VALUE\"/g" $CONF >$CONF.tmp
+	mv $CONF.tmp $CONF
+}
+
+case "$1" in
+	configure)
+
+		# Install us in init.d
+		update-rc.d nas defaults >/dev/null
+
+		# Grab config stuff from debconf
+		db_get nas/relinquish
+		if [ "$RET" = "true" ] ; then
+			set_var ReleaseDevice yes
+		else
+			set_var ReleaseDevice no
+		fi
+
+		db_get nas/mixer
+		if [ "$RET" = "true" ] ; then
+			set_var MixerInit yes
+		else
+			set_var MixerInit no
+		fi
+
+		# Start up NAS
+        if which invoke-rc.d >/dev/null 2>&1; then
+            invoke-rc.d nas start
+        else
+            /etc/init.d/nas start
+        fi
+
+		db_stop
+	;;
+	
+	abort-upgrade|abort-remove|abort-deconfigure)
+
+		# Restart NAS
+        if which invoke-rc.d >/dev/null 2>&1; then
+            invoke-rc.d nas start
+        else
+            /etc/init.d/nas start
+        fi
+	;;
+
+esac
--- nas-1.9.2.orig/debian/nas.prerm
+++ nas-1.9.2/debian/nas.prerm
@@ -0,0 +1,21 @@
+#!/bin/sh -e
+
+if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L /usr/doc/nas ]; then
+ 	rm -f /usr/doc/nas
+fi
+
+case "$1" in
+	remove|upgrade|remove-in-favour|deconfigure-in-favour)
+
+
+		# Stop running nas
+        if which invoke-rc.d >/dev/null 2>&1; then
+            invoke-rc.d nas stop
+        else
+            /etc/init.d/nas stop
+        fi
+		;;
+
+	failed-upgrade)
+		;;
+esac
--- nas-1.9.2.orig/debian/libaudio-dev.prerm
+++ nas-1.9.2/debian/libaudio-dev.prerm
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L /usr/doc/libaudio-dev ]; then
+   rm -f /usr/doc/libaudio-dev
+fi
+
--- nas-1.9.2.orig/debian/copyright
+++ nas-1.9.2/debian/copyright
@@ -0,0 +1,40 @@
+This is the Debian GNU/Linux prepackaged version of NAS, the Network
+Audio System.  The Network Audio System was written by Jim Fulton,
+Greg Renda, and Dave Lemke at Network Computing Devices, Inc. and is
+now maintained by Jon Trulson and the NAS development group,
+contactable on the nas mailing list. See
+
+	http://radscan.com/nas.html
+
+for more information.
+
+This package was put together by Steve McIntyre <93sam@debian.org>,
+using sources from:
+
+    http://downloads.sourceforge.net/nas/nas-1.9.1.src.tar.gz
+
+along with various patches from the nas mailing list and Debian changes.
+
+-----------------------------------------------------------------------------
+
+                 Copyright 1995 Network Computing Devices, Inc.
+
+    Permission to use, copy, modify, distribute, and sell this software and
+    its documentation for any purpose is hereby granted without fee, provided
+    that the above copyright notice appear in all copies and that both that
+    copyright notice and this permission notice appear in supporting
+    documentation, and that the name Network Computing Devices, Inc. not be
+    used in advertising or publicity pertaining to distribution of this 
+    software without specific, written prior permission.
+    
+    THIS SOFTWARE IS PROVIDED `AS-IS'.  NETWORK COMPUTING DEVICES, INC.,
+    DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT
+    LIMITATION ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+    PARTICULAR PURPOSE, OR NONINFRINGEMENT.  IN NO EVENT SHALL NETWORK
+    COMPUTING DEVICES, INC., BE LIABLE FOR ANY DAMAGES WHATSOEVER, INCLUDING
+    SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, INCLUDING LOSS OF USE, DATA,
+    OR PROFITS, EVEN IF ADVISED OF THE POSSIBILITY THEREOF, AND REGARDLESS OF
+    WHETHER IN AN ACTION IN CONTRACT, TORT OR NEGLIGENCE, ARISING OUT OF OR IN
+    CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+Translation:  You can do whatever you want with this software!
--- nas-1.9.2.orig/debian/changelog
+++ nas-1.9.2/debian/changelog
@@ -0,0 +1,567 @@
+nas (1.9.2-4) unstable; urgency=low
+
+  * Updated Danish Debconf translation. Thanks to Joe Dalton.
+    Closes: #601131
+
+ -- Steve McIntyre <93sam@debian.org>  Sun, 14 Nov 2010 17:34:42 +0000
+
+nas (1.9.2-3) unstable; urgency=low
+
+  * Fixed Japanese Debconf translation. Thanks to Hideki Yamane.
+    Closes: #542548
+
+ -- Steve McIntyre <93sam@debian.org>  Mon, 24 Aug 2009 23:53:20 +0100
+
+nas (1.9.2-2) unstable; urgency=low
+
+  * Grab updated config.sub to fix FTBFS on new architectures.
+    Closes: #535998
+  * Added Japanese Debconf translation. Thanks to Hideki Yamane.
+    Closes: #512867
+  * Updated Spanish Debconf translation. Thanks to Francisco Javier Cuadrado.
+    Closes: #520687
+  * Updated Standards-Version (no changes).
+
+ -- Steve McIntyre <93sam@debian.org>  Tue, 18 Aug 2009 21:06:55 +0100
+
+nas (1.9.2-1) unstable; urgency=low
+
+  * New upstream version.
+  * All the Debian-specific source patches are now upstream!
+  * Updated Standards-Version (no changes).
+
+ -- Steve McIntyre <93sam@debian.org>  Sun, 24 May 2009 00:17:49 +0100
+
+nas (1.9.1-5) unstable; urgency=low
+
+  * Fix pending l10n issues. Debconf translations:
+  * Swedish. Closes: #491766 (thanks to brother@bsnet.se)
+  * Arabic. Closes: #500437 (thanks to Ossama Khayat)
+  * Basque. Closes: #500533 (thanks to Piarres Beobide)
+  * Brazilian Portuguese. Closes: #500973 (thanks to Felipe
+    Augusto van de Wiel)
+  * Many thanks again to Christian Perrier for his i18n efforts,
+    co-ordinating the above.
+
+ -- Steve McIntyre <93sam@debian.org>  Wed, 08 Oct 2008 01:18:19 +0100
+
+nas (1.9.1-4) unstable; urgency=low
+
+  * The upstream Makefiles are not wonderful; go back to "-make clean".
+
+ -- Steve McIntyre <93sam@debian.org>  Wed, 02 Jul 2008 01:19:24 +0100
+
+nas (1.9.1-3) unstable; urgency=low
+
+  * Update libaudio-dev and nas Depends: to be more closely tied to the
+    libaudio2 version. Closes: #483374
+  * Updated Swedish Debconf translation (Closes: #483767). Thanks to
+    Martin Bagge for the update.
+  * Updated Dutch Debconf translation (Closes: #461794). Thanks to
+    Vincent Zweije for the update.
+  * Change Build-Depend on xutils to xutils-dev. Closes: #485212
+  * Remove bashism in rules file. Closes: #484414
+  * Update Standards-Version.
+  * Cope better with make errors.
+
+ -- Steve McIntyre <93sam@debian.org>  Tue, 01 Jul 2008 23:47:55 +0100
+
+nas (1.9.1-2) unstable; urgency=low
+
+  * Add LSB formatted dependency info in the nas init script. Thanks to
+    Petter Reinholdtsen for the patch. Closes: #465425
+
+ -- Steve McIntyre <93sam@debian.org>  Wed, 27 Feb 2008 22:00:17 +0000
+
+nas (1.9.1-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Steve McIntyre <93sam@debian.org>  Thu, 22 Nov 2007 22:46:46 +0000
+
+nas (1.9a-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Steve McIntyre <93sam@debian.org>  Sun, 28 Oct 2007 22:57:16 +0000
+
+nas (1.9-3) unstable; urgency=low
+
+  * Debconf templates and debian/control reviewed by the debian-l10n-
+    english team as part of the Smith review project. Closes: #442823.
+    Thanks to Christian and the whole team!
+  * Debconf translation updates:
+  * Vietnamese. Closes: #444168
+  * Russian. Closes: #444556
+  * Italian. Closes: #444609
+  * French. Closes: #444660
+  * Galician. Closes: #444755
+  * German. Closes: #444919
+  * Czech. Closes: #445655
+  * Finnish. Closes: #445665
+  * Portuguese. Closes: #445708
+  * Brazilian Portuguese. Closes: #445739
+
+ -- Steve McIntyre <93sam@debian.org>  Tue, 16 Oct 2007 00:46:03 +0100
+
+nas (1.9-2) unstable; urgency=low
+
+  * Build-Depend on the needed -dev packages rather than the now-obsolete
+    xlibs-static-dev package. Closes: #421562
+
+ -- Steve McIntyre <93sam@debian.org>  Wed,  9 May 2007 23:00:41 +0100
+
+nas (1.9-1) unstable; urgency=low
+
+  * New upstream version.
+  * Remove more in the "clean" rule in debian/rules to reduce the diff size.
+
+ -- Steve McIntyre <93sam@debian.org>  Sun, 29 Apr 2007 00:19:29 +0100
+
+nas (1.8-4) unstable; urgency=high
+
+   * High-urgency upload to fix multiple security holes (CVE-2007-1543,
+     CVE-2007-1544, CVE-2007-1545, CVE-2007-1546 and CVE-2007-1547):
+    + accept_att_local buffer overflow through USL connection
+    + server termination through unexistent ID in AddResource
+    + bcopy crash caused by integer overflow in ProcAuWriteElement
+    + invalid memory pointer caused by big num_actions in
+      ProcAuSetElements
+    + another invalid memory pointer caused by big num_actions in
+      ProcAuSetElements
+    + invalid memory pointer in compileInputs
+    + exploits bug 3 in read mode (requires something playing on
+      the server)
+    + NULL pointer caused by too much connections
+    + Closes: #416038
+
+ -- Steve McIntyre <93sam@debian.org>  Mon, 26 Mar 2007 00:29:10 +0100
+
+nas (1.8-3) unstable; urgency=medium
+
+  * Added Portuguese debconf translation, thanks to Miguel Figueiredo.
+    Closes: #408181. 
+  * Added Spanish debconf translation, thanks to Steve Lord Flaubert.
+    Closes: #409805. 
+
+ -- Steve McIntyre <93sam@debian.org>  Thu,  8 Feb 2007 00:23:46 +0000
+
+nas (1.8-2) unstable; urgency=low
+
+  * Fix libaudio linking on GNU/kFreeBSD to match that on Linux. Thanks to
+    Petr Salinger for the patch; closes: #368726
+  * Updated libtool and various tweaks to allow 1.8 to build on
+    GNU/kFreeBSD; Thanks to Petr Salinger for the patch; closes: #379758
+  * Added Russian debconf translation, thanks to Yuri Kozlov.
+    Closes: #380435. 
+
+ -- Steve McIntyre <93sam@debian.org>  Sun, 13 Aug 2006 21:18:28 +0100
+
+nas (1.8-1) unstable; urgency=low
+
+  * New upstream version.
+  * Updated Standards-Version
+  * Removed ancient mention of the NAS_DEVICE_POLICY and
+    NAS_MIXER_POLICY environment variables from the README.Debian
+
+ -- Steve McIntyre <93sam@debian.org>  Tue,  4 Jul 2006 21:06:28 +0100
+
+nas (1.7-9) unstable; urgency=low
+
+  * Added Dutch debconf translation, thanks to Vincent Zweije.
+    Closes: #364169.
+  * Added Galician debconf translation, thanks to Jacobo Tarrio.
+    Closes: #362134.
+  * Updated Standards-Version.
+  * Fixes for various lintian warnings.
+	
+ -- Steve McIntyre <93sam@debian.org>  Fri, 28 Apr 2006 23:48:43 +0100
+
+nas (1.7-8) unstable; urgency=low
+
+  * YA update for hurd, thanks to Samuel Thibault. Closes: #344914
+	
+ -- Steve McIntyre <93sam@debian.org>  Tue, 11 Apr 2006 23:17:08 +0100
+
+nas (1.7-7) unstable; urgency=low
+
+  * Another update to make nas build on hurd, thanks to Samuel Thibault.
+    Closes: #344914 (again)
+	
+ -- Steve McIntyre <93sam@debian.org>  Sun,  9 Apr 2006 22:30:51 +0100
+
+nas (1.7-6) unstable; urgency=low
+
+  * Build the nas server for GNU/kFreeBSD. Closes: #357621
+    Thanks to Aurelien Jarno for the patch.
+  * Changed Build-Deps to libxaw7-dev rather than libxaw8-dev; libxaw8 is
+    going away.
+	
+ -- Steve McIntyre <93sam@debian.org>  Mon, 27 Mar 2006 12:48:51 +0100
+
+nas (1.7-5) unstable; urgency=low
+
+  * _Really_ added the Danish debconf translation, missed in the last
+    upload...
+	
+ -- Steve McIntyre <93sam@debian.org>  Tue, 28 Feb 2006 23:26:05 +0000
+
+nas (1.7-4) unstable; urgency=low
+
+  * Don't build the server on hurd (as it won't work anyway), but build
+    the rest of the packages (e.g. libaudio) so that build-deps are
+    satisfied for other packages. Closes: #344914. Thanks to Michael Banck
+    for the patch.
+  * Fix typos in the AuSetBucketAttributes and AuSoundCreateFileFromBucket
+    manpages. Closes: #349728. Thanks to Nicolas Francois.
+  * Added Swedish debconf translation, thanks to Daniel Nylander.
+    Closes: #348840. 
+  * Added Danish debconf translation, thanks to Claus Hinsgaul.
+    Closes: #352226. 
+	
+ -- Steve McIntyre <93sam@debian.org>  Sun, 12 Feb 2006 01:31:37 +0000
+
+nas (1.7-3) unstable; urgency=low
+
+  * Added a quick-start example section to the README.Debian for
+    remote audio using nas. Thanks to David Liontooth for the text.
+  * Fixed typo in German debconf translation; thanks to Jens Seidel.
+    Closes: #313803.
+  * Added Vietnamese debconf translation; thanks to Clytie Siddall.
+    Closes: #315659
+  * Added Czech debconf translation; thanks to Katarina Machalkova.
+    Closes: #319853
+  * Updated Build-Deps to cope with new Xorg X header layout.
+    Closes: #323727
+  * Updated debconf dependency to allow cdebconf usage.
+	
+ -- Steve McIntyre <93sam@debian.org>  Wed, 31 Aug 2005 20:53:37 +0100
+
+nas (1.7-2) unstable; urgency=low
+
+  * Fix FTBFS using gcc 4.0. Closes: #284927. Thanks to Andreas Jochens
+    for the patch.
+  * Fixed multiple other compilation warnings with gcc 4.0
+	
+ -- Steve McIntyre <93sam@debian.org>  Sun, 26 Dec 2004 20:05:28 +0000
+
+nas (1.7-1) unstable; urgency=low
+
+  * New upstream version. Closes: #281540
+   
+ -- Steve McIntyre <93sam@debian.org>  Mon, 15 Nov 2004 17:08:00 +0000
+
+nas (1.6d-2) unstable; urgency=low
+
+  * Added patch to allow building on GNU/k*BSD. Thanks to Robert
+    Millan. Closes: #263525
+  * Added German debconf translation, thanks to Erok Schanze.
+    Closes: #264826
+   
+ -- Steve McIntyre <93sam@debian.org>  Wed, 18 Aug 2004 00:58:32 +0100
+
+nas (1.6d-1) unstable; urgency=low
+
+  * New upstream release.
+   
+ -- Steve McIntyre <93sam@debian.org>  Wed, 23 Jun 2004 01:15:02 +0100
+
+nas (1.6c-4) unstable; urgency=low
+
+  * Added Catalan translation of Debconf template. Thanks to Aleix
+    Badia i Bosch for the patch. Closes: #248726.
+  * Added /etc/default/nas config file. Set any global options for
+    nasd in here. Closes: #237195
+   
+ -- Steve McIntyre <93sam@debian.org>  Sun, 16 May 2004 23:59:32 +0100
+
+nas (1.6c-3) unstable; urgency=low
+
+  * Fixed Build-Deps. Closes: #238001.
+   
+ -- Steve McIntyre <93sam@debian.org>  Sun, 14 Mar 2004 22:06:32 +0000
+
+nas (1.6c-2) unstable; urgency=low
+
+  * Added French deconf translation. Closes: #236712. Thanks to Eric
+    Madesclair for the patch.
+  * Updated dependencies to use new X 4.3 packages.
+  * Updated Standards-Version; no changes needed.
+   
+ -- Steve McIntyre <93sam@debian.org>  Sun, 14 Mar 2004 15:55:16 +0000
+
+nas (1.6c-1) unstable; urgency=low
+
+  * New upstream release.
+    + Upstream have taken the patch for specifying server config file
+  * Changed over to use po-debconf. Closes: #233269. Thanks to Martin
+    Quinson for the patch.
+   
+ -- Steve McIntyre <93sam@debian.org>  Wed, 18 Feb 2004 22:12:49 +0000
+
+nas (1.6b-3) unstable; urgency=low
+
+  * Fixed silly bug in the config file patch. Closes: #231987
+   
+ -- Steve McIntyre <93sam@debian.org>  Wed, 11 Feb 2004 00:33:34 +0000
+
+nas (1.6b-2) unstable; urgency=low
+
+  * Patched to allow the nasd server config file location to be passed on
+    the command line. Closes: #205666.
+  * Changed Priority of libaudio-dev from extra to optional. Closes: #227842.
+   
+ -- Steve McIntyre <93sam@debian.org>  Fri, 06 Feb 2004 23:03:34 +0000
+
+nas (1.6b-1) unstable; urgency=low
+
+  * New upstream version
+    + Fix for segfault in libaudio2. Closes: #225575, #225588
+   
+ -- Steve McIntyre <93sam@debian.org>  Fri, 02 Jan 2004 02:17:23 +0000
+
+nas (1.6a-1) unstable; urgency=low
+
+  * New upstream version
+  * Moved libaudio-dev from devel to libdevel section.
+   
+ -- Steve McIntyre <93sam@debian.org>  Wed, 24 Dec 2003 01:00:43 +0000
+
+nas (1.6-6) unstable; urgency=low
+
+  * Fixed typo in Xtutil.h. Thanks to Stephen J. Turnbull. Sent upstream too.
+  * Increased priority of nasd to reduce problems with audio dropouts. Closes: #187333.
+   
+ -- Steve McIntyre <93sam@debian.org>  Sat, 10 May 2003 23:13:12 +0100
+
+nas (1.6-5) unstable; urgency=low
+
+  * Changed Build-Depends from libxaw-dev to libxaw7-dev. Closes: #170010.
+  * libaudio2 now Conflicts with nas-lib. Closes: #171388.
+  * libaudio-dev now Conflicts with nas-dev. Closes: #170622.
+  * Stop creating the /usr/doc symlinks.
+   
+ -- Steve McIntyre <93sam@debian.org>  Wed, 04 Dec 2002 20:19:52 +0000
+
+nas (1.6-4) unstable; urgency=low
+
+  * Start nasd with the -b option to daemonise properly again. Closes: #169142
+  * Moved nas from priority extra to optional
+  * Moved nas-doc from section sound to doc
+  
+ -- Steve McIntyre <93sam@debian.org>  Thu, 14 Nov 2002 23:41:07 +0000
+
+nas (1.6-3) unstable; urgency=low
+
+  * Backed out the previous change - it didn't help. The real problem was lonking libaudio with libXau, which isn't necessary or possible on Debian. Removed the -lXau for the libaudio build, and all seems to work now. Closes: #168031.
+  
+ -- Steve McIntyre <93sam@debian.org>  Fri, 08 Nov 2002 04:01:45 +0000
+
+nas (1.6-2) unstable; urgency=low
+
+  * Force building the lib code with -fpic as needed. Closes: #168031
+  
+ -- Steve McIntyre <93sam@debian.org>  Thu, 07 Nov 2002 02:38:49 +0000
+
+nas (1.6-1) unstable; urgency=low
+
+  * New upstream release
+  * Fix so nas build with latest version of bison. Closes: #166135.
+  * Renamed package name nas-lib to libaudio2 and nas-dev to libaudio-dev. Closes: #143927
+  * New Standards-Version.
+  
+ -- Steve McIntyre <93sam@debian.org>  Tue, 05 Nov 2002 02:51:04 +0000
+
+nas (1.5-1) unstable; urgency=low
+
+  * New upstream release; just about all of the Debian patches now
+    folded in upstream.
+  * Fixed lintian warning.
+  
+ -- Steve McIntyre <93sam@debian.org>  Sun, 06 Jan 2002 23:02:27 +0100
+
+nas (1.4.2-5) unstable; urgency=low
+
+  * Added Suggests: for audiooss at request of its maintainer.
+  * Moved the example nasd.conf from /etc to the .../examples directory.
+  * Removed the old environment variable hacks from the init script.
+  
+ -- Steve McIntyre <93sam@debian.org>  Mon, 22 Oct 2001 01:20:56 +0100
+
+nas (1.4.2-4) unstable; urgency=medium
+
+  * Added missing Build-Depends: for file . Closes: #115238.
+  
+ -- Steve McIntyre <93sam@debian.org>  Thu, 11 Oct 2001 15:53:56 +0100
+
+nas (1.4.2-3) unstable; urgency=medium
+
+  * Not all HPArchitecture machines run HPUX! Added workaround for HPPA port. Closes: #115040
+  
+ -- Steve McIntyre <93sam@debian.org>  Wed, 10 Oct 2001 00:11:18 +0100
+
+nas (1.4.2-2) unstable; urgency=medium
+
+  * Cope with breakages in imake. Closes: #113859
+  * LD_LIBRARY_PATH build hack cleaned up so it works with fakeroot again.
+  
+ -- Steve McIntyre <93sam@debian.org>  Tue, 09 Oct 2001 01:16:11 +0100
+
+nas (1.4.2-1) unstable; urgency=low
+
+  * New upstream release.
+  * Fixed filename for nasd.conf man page so man finds it
+  
+ -- Steve McIntyre <93sam@debian.org>  Sun, 15 Apr 2001 22:18:17 +0100
+
+nas (1.4.1-4) unstable; urgency=low
+
+  * Added Build-Depends on libxaw-dev. Closes: #90712. Also added xlibs-dev, xutils, bison, flex.
+  
+ -- Steve McIntyre <93sam@debian.org>  Thu, 22 Mar 2001 19:52:43 +0000
+
+nas (1.4.1-3) unstable; urgency=low
+
+  * Link libaudio against libm. Closes: #87534.
+  * Change of maintainer address.
+  
+ -- Steve McIntyre <93sam@debian.org>  Tue, 27 Feb 2001 01:30:36 +0000
+
+nas (1.4.1-2) unstable; urgency=low
+
+  * Fix serious packaging bug - make sure we only strip real binaries, not scripts. Broke alpha(?) build. Thanks to Paul Slootman for the patch. Closes: #82573.
+  
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Sat, 20 Jan 2001 23:45:36 +0000
+
+nas (1.4.1-1) unstable; urgency=low
+
+  * New upstream version, repackaged.
+  * Added patch from nas mailing list to fix audio init - only attempt to open 2 channels, not 3.
+  * Updated soundlib.c from Jon Trulson to fix potential hang with oddly-sized elements.
+  * Fixed packaging bug for nas-doc. It's arch-independent!
+  * Added back patches for two old bug fixes - closing the starting fds on nasd and setting the sticky bit on the sockets directory.
+  * Fix the libaudio major number to be compatible with previous Debian releases.
+  * Several compilation warning fixes.
+  * Moved the nasd.conf man page into section 5.
+  * Debconf-ised nas configuration.
+  
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Tue, 12 Dec 2000 02:01:59 +0000
+
+nas (1.2p5-12) frozen unstable; urgency=low
+
+  * Moved all to Priority: optional to re-fix the dependency issues. Fixes
+    Bug#52079, Bug#56332.
+  * Updated Standards-Version.
+  
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Sun, 13 Feb 2000 17:23:39 +0000
+
+nas (1.2p5-11) unstable; urgency=low
+
+  * Make sure we add the sticky bit to /tmp/.sockets/ . Fixes Bug#40370.
+  * Move Priority from extra to optional to help with dependency problems.
+
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Sun, 15 Aug 1999 19:30:36 +0100
+
+nas (1.2p5-10) unstable; urgency=low
+
+  * Updated nas-bin dependency on perl; now use perl5. Fixes Bug#41486
+
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Wed, 21 Jul 1999 23:19:36 +0100
+
+nas (1.2p5-9) unstable; urgency=low
+
+  * Doh! Forgot to document the mixer fix, or add it to the init.d script. Now done.
+
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Sat, 30 Jan 1999 16:57:18 +0000
+
+nas (1.2p5-8) unstable; urgency=low
+
+  * Stop nas buggering with the mixer by default. Fixes Bug#29147
+  * The nas daemon now does a chdir("/") at startup, which may help when finding core files.
+
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Sat, 16 Jan 1999 21:59:18 +0000
+
+nas (1.2p5-7) unstable; urgency=low
+
+  * Fixed several misc. buld problems, really fixes Bug#26149?
+
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Fri, 28 Aug 1998 00:12:03 +0100
+
+nas (1.2p5-6) unstable; urgency=low
+
+  * Added missing man page nas.nas - fixes Bug#26142.
+  * Fixed several misc. buld problems, fixes Bug#26149. 
+  * Updated Standards-Version
+
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Wed, 26 Aug 1998 23:38:51 +0100
+
+nas (1.2p5-5) unstable; urgency=low
+
+  * Using big patch from nas mailing list to fix several bugs:
+        see ftp://ftp.ncd.com/pub/ncd/technology/src/nas/nas-mail-archive/mar98.gz
+  * Now releases sound device when not in use (Bugs#13634,25333)
+  * Now split into 5 packages instead of one: -lib, -dev, -bin and -doc as 
+        well as base daemon package. Fixes Bugs#19088,22414.
+  * Moved entire package out of /usr/X11R6 - why was it there? Now under /usr; 
+        fixes Bug#7847.
+  * Close stderr, stdin and stdout. Fixes Bugs#23467,24571.
+  * Package appears to work fine - close Bug#21622.
+  * Updated Standards-Version
+
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Sat, 22 Aug 1998 18:56:27 +0100
+
+nas (1.2p5-4) unstable; urgency=low
+
+  * Remove debian/files in cleanup. Fixes Bug #24333.
+
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Wed, 08 Jul 1998 23:29:40 +0100
+
+nas (1.2p5-3) frozen unstable; urgency=low
+
+  * Added path to start-nas script. Fixes Bug #21605, Important Bug #23841.
+
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Thu, 02 Jul 1998 00:13:40 +0100
+
+nas (1.2p5-2) frozen unstable; urgency=low
+
+  * Updated distribution - added frozen to make it into hamm before release.
+
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Sun, 05 Apr 1998 21:24:30 +0100
+
+nas (1.2p5-1) unstable; urgency=low
+
+  * New maintainer
+  * Should uninstall itself (fixed in previous non-maintainer upload), so fixed bug #17791.
+  * Work ongoing on other bugs; probably too much work to make it into frozen.
+  * Fixed several problems thrown up by lintian:
+  * Fixed perms on include files and others;
+  * Added man page for start-nas;
+  * Added options to /etc/init.d/nas.
+
+ -- Steve McIntyre <stevem@chiark.greenend.org.uk>  Sun, 29 Mar 1998 19:24:30 +0000
+
+nas (1.2p5-0.3) unstable; urgency=low
+
+  * Non-maintainer upload
+  * Should now _really_ build without being installed already (sigh)
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 27 Jan 1998 13:34:30 +0000
+
+nas (1.2p5-0.2) unstable; urgency=low
+
+  * Non-maintainer upload
+  * Should now build without being installed already!
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 27 Jan 1998 13:34:00 +0000
+
+nas (1.2p5-0.1) unstable; urgency=low
+
+  * Non-maintainer upload
+  * New upstream version (#11204)
+  * libc6
+  * Converted to new (not very new anymore!) source format (#9488)
+  * Don't depend on elf-x11r6lib (#12871,#13083)
+  * Rewritten postinst etc (#3107,#3510)
+  * Create symlink from au.1x.gz to nas.1x.gz (#1747, kind of)
+
+ -- Mark Baker <mbaker@iee.org>  Tue, 28 Oct 1997 23:22:49 +0000
--- nas-1.9.2.orig/debian/nas-bin.prerm
+++ nas-1.9.2/debian/nas-bin.prerm
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L /usr/doc/nas-bin ]; then
+   rm -f /usr/doc/nas-bin
+fi
+
--- nas-1.9.2.orig/debian/nas.conffiles
+++ nas-1.9.2/debian/nas.conffiles
@@ -0,0 +1,3 @@
+/etc/nas/nasd.conf
+/etc/init.d/nas
+/etc/default/nas
--- nas-1.9.2.orig/debian/libaudio2.shlibs
+++ nas-1.9.2/debian/libaudio2.shlibs
@@ -0,0 +1 @@
+libaudio 2 libaudio2
--- nas-1.9.2.orig/debian/nas.default
+++ nas-1.9.2/debian/nas.default
@@ -0,0 +1,5 @@
+# Default settings for nas. This file is sourced by /bin/sh from
+# /etc/init.d/nas.
+
+# Options to pass to nasd
+NASD_OPTS=
--- nas-1.9.2.orig/debian/rc.nas
+++ nas-1.9.2/debian/rc.nas
@@ -0,0 +1,38 @@
+#! /bin/sh
+### BEGIN INIT INFO
+# Provides:          nasd
+# Required-Start:    $remote_fs $syslog
+# Required-Stop:     $remote_fs $syslog
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: start or stop the Network Audio System.
+### END INIT INFO
+
+test -f /usr/bin/nasd || exit 0
+
+if test -f /etc/default/nas; then
+    . /etc/default/nas
+fi
+
+case "$1" in
+  start)
+    echo Starting the Network Audio System
+    start-stop-daemon --start --quiet --startas /usr/bin/start-nas \
+						--exec /usr/bin/nasd -- $NASD_OPTS
+    ;;
+  stop)
+    echo Stopping the Network Audio System
+    start-stop-daemon --stop --quiet --exec /usr/bin/nasd
+    ;;
+  restart|force-reload)
+    echo Restarting the Network Audio System
+    start-stop-daemon --stop --quiet --exec /usr/bin/nasd
+    start-stop-daemon --start --quiet --startas /usr/bin/start-nas \
+						--exec /usr/bin/nasd -- $NASD_OPTS
+    ;;
+  *)
+    echo "Usage: /etc/init.d/nas {start|stop|restart|force-reload}"
+    exit 1
+esac
+
+exit 0
--- nas-1.9.2.orig/debian/nas.postrm
+++ nas-1.9.2/debian/nas.postrm
@@ -0,0 +1,19 @@
+#!/bin/sh -e
+
+case "$1" in
+	remove|purge)
+
+		# Remove links from rc?.d
+		update-rc.d -f nas remove >/dev/null
+
+		if [ "$1" = "purge" -a -e /usr/share/debconf/confmodule ]; then
+		# Source debconf library.
+			. /usr/share/debconf/confmodule
+			# Remove my changes to the db.
+			db_purge
+		fi
+		;;
+
+	upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+		;;
+esac
--- nas-1.9.2.orig/debian/nas.README.Debian
+++ nas-1.9.2/debian/nas.README.Debian
@@ -0,0 +1,16 @@
+Debian Readme file for the nas audio server package
+Steve McIntyre, maintainer, 4th July 2006
+
+QUICK-START for remote audio using nas (thanks to David Liontooth)
+======================================
+
+If you want to play music on "frodo" and listen to it on "gandalf",
+
+   *  on gandalf (the NAS server),
+         - apt-get install nas nas-doc nas-bin
+         - nasd -aa &
+   *  on frodo (the NAS client),
+         - export AUDIOSERVER="gandalf:0"
+         - auplay <some wav file> (to test)
+         - apt-get install alsaplayer-nas
+         - alsaplayer -o nas
--- nas-1.9.2.orig/debian/control
+++ nas-1.9.2/debian/control
@@ -0,0 +1,88 @@
+Source: nas
+Section: sound
+Priority: optional
+Maintainer: Steve McIntyre <93sam@debian.org>
+Build-Depends: autotools-dev, libxp-dev, libxau-dev, libsm-dev, libice-dev, libx11-dev, libxt-dev, libxaw7-dev, xutils-dev, bison, flex, file, po-debconf
+Standards-Version: 3.8.2.0
+
+Package: libaudio2
+Priority: optional
+Architecture: any
+Depends: ${shlibs:Depends}
+Provides: nas-lib
+Replaces: nas-lib
+Conflicts: nas-lib
+Suggests: nas
+Description: Network Audio System - shared libraries
+ The Network Audio System (NAS) was developed by NCD for playing,
+ recording, and manipulating audio data over a network. Like the X
+ Window System, it uses the client/server model to separate
+ applications from the specific drivers that control audio input and
+ output devices.
+ .
+ This package contains the NAS library (libaudio), needed for both remote
+ and local output.
+Section: libs
+
+Package: nas
+Priority: optional
+Architecture: any
+Depends: libaudio2 (>= ${binary:Version}), ${shlibs:Depends}, debconf | debconf-2.0
+Suggests: audiooss
+Description: Network Audio System - local server
+ The Network Audio System (NAS) was developed by NCD for playing,
+ recording, and manipulating audio data over a network. Like the X
+ Window System, it uses the client/server model to separate
+ applications from the specific drivers that control audio input and
+ output devices.
+ .
+ This package contains the NAS daemon (nasd), needed for local output
+ from NAS.
+Section: sound
+
+Package: libaudio-dev
+Priority: optional
+Architecture: any
+Depends: libaudio2 (>= ${binary:Version}), ${shlibs:Depends}
+Provides: nas-dev
+Replaces: nas-dev
+Conflicts: nas-dev
+Description: Network Audio System - development files
+ The Network Audio System (NAS) was developed by NCD for playing,
+ recording, and manipulating audio data over a network. Like the X
+ Window System, it uses the client/server model to separate
+ applications from the specific drivers that control audio input and
+ output devices.
+ .
+ This package contains the header files and static library (libaudio.a), 
+ needed for development of programs using NAS.
+Section: libdevel
+
+Package: nas-bin
+Priority: extra
+Architecture: any
+Depends: libaudio2 (>= ${binary:Version}), perl5, ${shlibs:Depends}
+Description: Network Audio System - client binaries
+ The Network Audio System (NAS) was developed by NCD for playing,
+ recording, and manipulating audio data over a network. Like the X
+ Window System, it uses the client/server model to separate
+ applications from the specific drivers that control audio input and
+ output devices.
+ .
+ This package contains the example applications and utilities that are
+ provided with NAS.
+Section: sound
+
+Package: nas-doc
+Priority: extra
+Architecture: all
+Description: Network Audio System - extra documentation
+ The Network Audio System (NAS) was developed by NCD for playing,
+ recording, and manipulating audio data over a network. Like the X
+ Window System, it uses the client/server model to separate
+ applications from the specific drivers that control audio input and
+ output devices.
+ .
+ This package contains the extra documentation provided with the NAS
+ source, including PostScript copies of papers describing its design.
+Section: doc
--- nas-1.9.2.orig/debian/po/gl.po
+++ nas-1.9.2/debian/po/gl.po
@@ -0,0 +1,84 @@
+# Galician translation of nas's debconf templates
+# This file is distributed under the same license as the nas package.
+# Jacobo Tarrio <jtarrio@debian.org>, 2007.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nas\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2007-09-30 18:53+0100\n"
+"Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n"
+"Language-Team: Galician <proxecto@trasno.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "¿nasd debe liberar /dev/dsp?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"Por defecto, o servidor NAS ha abrir no inicio o dispositivo de audio "
+"configurado, e despois ha mantelo aberto ata que se deteña o servidor. Isto "
+"ha impedir que os clientes de audio sen soporte de NAS empreguen o "
+"dispositivo de audio."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"Pódese configurar o servizo para que libere o dispositivo de audio cando non "
+"o empregue, cun pouco de retraso entre que a aplicación remata e o "
+"dispositivo estea dispoñible."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Unha alternativa consiste en empregar o paquete \"audiooss\" para facer que "
+"os programas que usan /dev/dsp empreguen, no seu canto, chamadas a NAS "
+"equivalentes."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "¿nasd debe cambiar a configuración do mesturador no inicio?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Se escolle esta opción, o servidor NAS ha cambiar a configuración do "
+"mesturador no inicio do sistema do seguinte xeito:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - poñer o volume de PCM ao 50%;\n"
+" - cambiar o dispositivo de gravación a LINE"
--- nas-1.9.2.orig/debian/po/cs.po
+++ nas-1.9.2/debian/po/cs.po
@@ -0,0 +1,106 @@
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nas\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2007-10-07 17:20+0200\n"
+"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
+"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "Má nasd uvolnit /dev/dsp?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"NAS server při startu standardně otevře zvukové zařízení nakonfigurované ve "
+"vašem systému, a ponechá jej otevřené, dokud není ukončen. Toto zabrání všem "
+"audio klientům, kteří nevědí o přítomnosti NAS serveru, používat zvukové "
+"zařízení."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"Daemon může být nastaven tak, aby v uvolnil audio zařízení v případech, kdy "
+"je nepoužívá. Mezi ukončením zvukové aplikace a uvolněním audio zařízení "
+"vždy bude drobná prodleva."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Alternativně lze použít balík „audiooss“, který slouží jako obal pro všechny "
+"programy, které používají /dev/dsp přímo. Zachytí většinu jejich požadavků "
+"na použití /dev/dsp a převede je na příslušné volání NAS serveru."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "Má nasd při startu změnit nastavení mixéru?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Povolíte-li tuto možnost, NAS server změní při startu nastavení mixéru "
+"následovně:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - nastaví hlasitost PCM na 50%\n"
+" - změní vstupní nahrávací zařízeni na LINE"
+
+#~ msgid ""
+#~ "nasd can be configured to release the audio device when it is not "
+#~ "actively using it. There will almost always be a slight delay between the "
+#~ "application using nas finishing and the audio device becoming available "
+#~ "for other uses; this is due to the latency inherent in the design of nas "
+#~ "and so cannot really be changed."
+#~ msgstr ""
+#~ "nasd může být nakonfigurován tak, aby uvolnil zvukové zařízení, pokud jej "
+#~ "aktivně nepoužívá. Téměř vždy bude existovat malé zpoždění mezi tím, kdy "
+#~ "aplikace, která používá nas skončí a kdy bude zvukové zařízení znovu "
+#~ "dostupné k dalšímu použití; to je způsobeno latencí, která je součástí "
+#~ "návrhu nas serveru a proto to nelze změnit."
--- nas-1.9.2.orig/debian/po/pt.po
+++ nas-1.9.2/debian/po/pt.po
@@ -0,0 +1,111 @@
+# Portuguese translation for nas's debconf messages
+# Copyright (C) 2007 Carlos Lisboa <carloslisboa@gmail.com>
+# This file is distributed under the same license as the nas package.
+# Carlos Lisboa <carloslisboa@gmail.com>, 2007.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nas\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2007-10-07 22:12+0100\n"
+"Last-Translator: Carlos Lisboa <carloslisboa@gmail.com>\n"
+"Language-Team: Portuguese <traduz@debianpt.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "Deve o nasd libertar o /dev/dsp?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"Por omissão, o servidor NAS irá abrir o dispositivo de audio no arranque do "
+"seu sistema, e mantém-no aberto até que seja parado. Isto irá impedir "
+"quaisquer clientes de audio, que não conheçam o NAS, de utilizarem o "
+"dispositivo audio."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"O daemon pode ser configurado para libertar o dispositivo audio quando não o "
+"está a usar, com algum atraso depois da aplicação terminar o dispositivo "
+"estará disponível."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Uma alternativa é o uso do pacote \"audiooss\" para envolver quaisquer "
+"programas que utilizem o /dev/dsp para fazer as chamadas NAS equivalentes."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "Deverá o nasd alterar as configurações do mixer ao arranque?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Se escolher esta opção, o servidor NAS irá alterar as configurações do mixer "
+"no arranque como se segue:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" * colocar o volume PCM em 50%\n"
+" * alterar a entrada do dispositivo de gravação para LINE."
+
+#~ msgid ""
+#~ "nasd can be configured to release the audio device when it is not "
+#~ "actively using it. There will almost always be a slight delay between the "
+#~ "application using nas finishing and the audio device becoming available "
+#~ "for other uses; this is due to the latency inherent in the design of nas "
+#~ "and so cannot really be changed."
+#~ msgstr ""
+#~ "O nasd pode ser configurado para libertar o dispositivo audio quando não "
+#~ "está a usá-lo de forma activa. Irá no entanto existir sempre um ligeiro "
+#~ "atraso, entre o final do uso de uma aplicação nas e o momento em que que "
+#~ "o dispositivo fica disponível para outros usos; isto deve-se à latência "
+#~ "inerente ao desenho do nas e por isos não pode mesmo ser alterada."
+
+#~ msgid ""
+#~ "Should nasd release the audio device? (It is recommended to select this "
+#~ "option unless you have special requirements.)"
+#~ msgstr ""
+#~ "Deverá o nasd libertar o dispositivo audio? (É recomendado que seleccione "
+#~ "esta opção, a não ser que tenha requisistos especiais.)"
+
+#~ msgid ""
+#~ "Do you want it to do this? (Most people are expected to disable this "
+#~ "option)"
+#~ msgstr ""
+#~ "Deseja fazer isto? (É esperado que a maioria das pessoas desliguem esta "
+#~ "opção)"
--- nas-1.9.2.orig/debian/po/ja.po
+++ nas-1.9.2/debian/po/ja.po
@@ -0,0 +1,81 @@
+# Copyright (C) 2007-2009 Steve McIntyre <93sam@debian.org>
+# This file is distributed under the same license as the nas package.
+# Hideki Yamane (Debian-JP) <henrich@debian.or.jp>, 2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nas 1.9.1-5\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2009-08-23 12:34+0900\n"
+"Last-Translator: Hideki Yamane (Debian-JP) <henrich@debian.or.jp>\n"
+"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "nasd が /dev/dsp を開放するようにしますか?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"デフォルトの挙動では、NAS サーバは起動時に設定済みのオーディオデバイスをオー"
+"プンし、サーバが停止するまでオープンにし続けます。これによって、NAS を考慮し"
+"ないオーディオクライアントによるオーディオデバイスの利用が妨げられます。"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"オーディオデバイスが利用可能になる前、アプリケーションが動作を完了した若干後"
+"でデーモンがデバイスを使っていない時点で開放するように設定できます。"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"もう一つの方法は「audioss」パッケージを使って、/dev/dsp を使うプログラムを"
+"ラップして NAS を呼び出すのと同様になるようにするやり方です。"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "nasd は起動時にミキサー設定を変更しますか?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"この選択肢を選んだ場合、NAS サーバは起動時に以下のようにミキサーの設定を変更"
+"します。"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - PCM ボリュームを 50% に設定、\n"
+" - 録音入力デバイスを LINE に変更。"
--- nas-1.9.2.orig/debian/po/sv.po
+++ nas-1.9.2/debian/po/sv.po
@@ -0,0 +1,97 @@
+# translation of nas_1.9.1-2_sv.po to swedish
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+# Martin Bagge <martin.bagge@bthstudent.se>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: nas_1.9.1-2_sv\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2008-07-21 18:46+0100\n"
+"Last-Translator: Martin Bagge <brother@bsnet.se>\n"
+"Language-Team: swedish <sv@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "Ska nasd slppa /dev/dsp?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"NAS-servern kommer som standard att ppna ljudenheten som r konfigurerad p "
+"ditt system vid uppstart och sedan hlla den ppen tills den stoppas. Det "
+"hr kommer att stoppa alla ljudklienter som inte knner till NAS frn att "
+"kunna anvnda ljudenheten."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"Demonen kan stllas in att slppa ljudenheten nr den inte anvnds. En viss "
+"frdrjning kan frekomma efter att programmet avslutas innan enheten r "
+"tillgnglig."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Ett alternativ till det hr r att anvnda programmet \"audiooss\" (i "
+"paketet med samma namn) fr att baka in program som anvnder /dev/dsp direkt "
+"- det kommer att fnga upp de flesta som anvnder /dev/dsp och gra liknande "
+"anrop till NAS istllet. "
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "Ska nasd ndra mixerinstllningar vid uppstart?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Nas-servern kommer som standard att ndra mixerinstllningar vid uppstart "
+"enligt fljande:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - stta PCM-volym till 50%\n"
+" - ndra inspelningsenhet till LINE"
--- nas-1.9.2.orig/debian/po/templates.pot
+++ nas-1.9.2/debian/po/templates.pot
@@ -0,0 +1,72 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
--- nas-1.9.2.orig/debian/po/POTFILES.in
+++ nas-1.9.2/debian/po/POTFILES.in
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] nas.templates
--- nas-1.9.2.orig/debian/po/fr.po
+++ nas-1.9.2/debian/po/fr.po
@@ -0,0 +1,83 @@
+# Translation of nas debconf templates to French
+# Copyright (C) 2004-2007 Eric Madesclair <eric-m@wanadoo.fr> 
+# This file is distributed under the same license as the nas package.
+msgid ""
+msgstr ""
+"Project-Id-Version: nas\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2007-09-22 09:00+0200\n"
+"Last-Translator: Eric Madesclair <eric-m@wanadoo.fr>\n"
+"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "Nasd doit-il libérer /dev/dsp ?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"Le serveur NAS ouvrira au démarrage le périphérique audio du système, et le "
+"gardera ouvert jusqu'à l'arrêt du serveur. Cela interrompra le "
+"fonctionnement des clients audio qui n'utilisent pas le serveur NAS pour "
+"accéder au périphérique audio."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"Le démon peut être configuré pour libérer le périphérique audio quand il ne "
+"l'utilise pas, avec un léger délai entre la fin de l'application et le "
+"moment où le périphérique audio redevient disponible."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Une autre possibilité est d'utiliser le paquet « audiooss » pour envelopper "
+"tous les programmes qui utilisent directement /dev/dsp pour leur faire "
+"utiliser des appels équivalents au serveur NAS."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "Faut-il que nasd modifie les réglages du mélangeur au démarrage ?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Si vous choisissez cette option, le serveur NAS changera les paramètres du "
+"mélangeur (« mixer ») au démarrage, comme suit : "
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - volume PCM placé à 50% ;\n"
+" - entrée LIGNE utilisée comme périphérique d'enregistrement."
--- nas-1.9.2.orig/debian/po/ca.po
+++ nas-1.9.2/debian/po/ca.po
@@ -0,0 +1,129 @@
+# nas (debconf) translation to Catalan.
+# Copyright (C) 2004 Free Software Foundation, Inc.
+# Aleix Badia i Bosch <abadia@ica.es>, 2004
+# Matt Bonner <mateubonet@yahoo.com>, 2004
+# Josep Lladonosa i Capell <jep@veinat.net>, 2004
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nas_1.6c-1_templates\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2004-03-12 19:46GMT\n"
+"Last-Translator: Aleix Badia i Bosch <abadia@ica.es>\n"
+"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "Voleu que el nasd alliberi el /dev/dsp?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+#, fuzzy
+#| msgid ""
+#| "The NAS server will by default open the audio device configured on your "
+#| "system at startup, and then keep it open until it is stopped. This will "
+#| "stop any audio clients that are not NAS aware from using the audio device."
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"El servidor de NAS obrirà a l'arrencada i per defecte, el dispositiu d'àudio "
+"configurat; posteriorment el mantindrà obert fins que s'aturi. Aturarà "
+"qualsevol client d'àudio que no utilitzi el NAS a l'utilitzar el dispositiu "
+"d'àudio."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+#, fuzzy
+#| msgid ""
+#| "An alternative to this is to use the \"audiooss\" program (in the package "
+#| "of the same name) to wrap any programs that use /dev/dsp directly - it "
+#| "will intercept most uses of /dev/dsp and make the equivalent nas calls "
+#| "instead."
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Una alternativa és utilitzar el programa \"audiooss\" (disponible al paquet "
+"del mateix nom) per ajustar qualsevol programa que utilitzi directament el /"
+"dev/dsp - interceptarà les utilitzacions que es facin del /dev/dsp i se "
+"substituiran per les crides del nas corresponents."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr ""
+"Voleu que el nasd modifiqui els paràmetres del mesclador a l'arrencada?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, fuzzy
+#| msgid ""
+#| "The nas server will by default change the mixer settings at startup as "
+#| "follows:"
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"El servidor de nas modificarà l'arrencada i per defecte, els paràmetres del "
+"mesclador de la manera següent:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, fuzzy, no-c-format
+#| msgid ""
+#| " * set PCM volume to 50%\n"
+#| " * change the record input device to LINE"
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" * defineix el volum del PCM al 50%\n"
+" * canvia el dispositiu d'entrada d'enregistrament a LINE"
+
+#~ msgid ""
+#~ "nasd can be configured to release the audio device when it is not "
+#~ "actively using it. There will almost always be a slight delay between the "
+#~ "application using nas finishing and the audio device becoming available "
+#~ "for other uses; this is due to the latency inherent in the design of nas "
+#~ "and so cannot really be changed."
+#~ msgstr ""
+#~ "El nasd es pot configurar perquè alliberi el dispositiu d'àudio quan no "
+#~ "l'està utilitzant activament. Sempre hi haurà un retard entre la "
+#~ "finalització de l'aplicació que està usant el nas i la disponibilitat del "
+#~ "dispositiu d'àudio per a altres usos; aquest fet es deu a la latència "
+#~ "inherent al disseny del nas i no es pot modificar."
+
+#~ msgid ""
+#~ "Should nasd release the audio device? (It is recommended to select this "
+#~ "option unless you have special requirements.)"
+#~ msgstr ""
+#~ "Voleu que el nasd alliberi el dispositiu d'àudio? (És una opció "
+#~ "recomanable si no és que teniu necessitats especials)."
+
+#~ msgid ""
+#~ "Do you want it to do this? (Most people are expected to disable this "
+#~ "option)"
+#~ msgstr ""
+#~ "Voleu que ho faci? (La majoria d'usuaris haurien d'inhabilitar l'opció)"
--- nas-1.9.2.orig/debian/po/pt_BR.po
+++ nas-1.9.2/debian/po/pt_BR.po
@@ -0,0 +1,122 @@
+# heimdal Brazilian Portuguese translation 
+# Copyright (C) 2007 THE heimdal'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the heimdal package.
+# Felipe Augusto van de Wiel (faw) <faw@debian.org>, 2007-2008.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: heimdal\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2008-10-03 01:56-0300\n"
+"Last-Translator: Felipe Augusto van de Wiel (faw) <faw@debian.org>\n"
+"Language-Team: l10n portuguese <debian-l10n-portuguese@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"pt_BR utf-8\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "O nasd deveria liberar o /dev/dsp?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"Por padrão, o servidor NAS abrirá o dispositivo de áudio configurado na "
+"inicialização e manterá o mesmo aberto até que o servidor seja parado. Isto "
+"impedirá que quaisquer clientes de áudio que não forem compatíveis com NAS "
+"usem o dispositivo de áudio."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"O daemon pode ser configurado para liberar o dispositivo de áudio quando não "
+"estiver usando-o, com algum atraso caso a aplicação conclua antes do "
+"dispositivo estar disponível."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Uma alternativa é usar o pacote \"audiooss\" para intermediar quaisquer "
+"programas que usam o /dev/dsp fazendo-os usar chamadas NAS equivalentes."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "O nasd deveria mudar as configurações do mixer na inicialização?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Se você escolher esta opção, o servidor NAS mudará as configurações do mixer "
+"na inicialização da seguinte forma:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - configurar o volume PCM para 50%;\n"
+" - mudar o dispositivo de gravação para LINE."
+
+#~ msgid "Local realm name:"
+#~ msgstr "Nome do realm local:"
+
+#~ msgid "Please enter the name of the local Kerberos realm."
+#~ msgstr "Por favor, informe o nome do realm Kerberos local."
+
+#~| msgid ""
+#~| "Heimdal requires the name of your local realm. This is typically your "
+#~| "domain name in uppercase. eg if your hostname is host.org.com, then your "
+#~| "realm will become ORG.COM. The default for your host is ${default_realm}."
+#~ msgid ""
+#~ "Using the uppercase domain name is common. For instance, if the host name "
+#~ "is host.example.org, then the realm will become EXAMPLE.ORG. The default "
+#~ "for this host is ${default_realm}."
+#~ msgstr ""
+#~ "Usar o nome do domínio em letras maiúsculas é comum. Por exemplo, se o "
+#~ "nome da máquina é host.example.org, então o realm será EXAMPLE.ORG. O "
+#~ "padrão para este host é ${default_realm}."
+
+#~ msgid "KDC password:"
+#~ msgstr "Senha KDC:"
+
+#~| msgid ""
+#~| "Heimdal can encrypt the KDC data with a password. A hashed "
+#~| "representation will be stored in /var/lib/heimdal-kdc/m-key."
+#~ msgid ""
+#~ "Heimdal can encrypt the key distribution center (KDC) data with a "
+#~ "password. A hashed representation of this password will be stored in /var/"
+#~ "lib/heimdal-kdc/m-key."
+#~ msgstr ""
+#~ "Heimdal pode criptografar os dados do centro de distribuição de chaves "
+#~ "(KDC -- key distribution center) com uma senha. Uma representação em hash "
+#~ "desta senha será armazenada em /var/lib/heimdal-kdc/m-key."
+
+#~ msgid "Password for KDC:"
+#~ msgstr "Senha para o KDC : "
--- nas-1.9.2.orig/debian/po/ru.po
+++ nas-1.9.2/debian/po/ru.po
@@ -0,0 +1,87 @@
+# translation of ru.po to Russian
+# This file is distributed under the same license as the PACKAGE package.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
+#
+# Yuri Kozlov <kozlov.y@gmail.com>, 2006, 2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: 1.9-3\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2007-09-23 16:43+0400\n"
+"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n"
+"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "Должен ли nasd освобождать /dev/dsp?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"По умолчанию, NAS-сервер при запуске системы открывает настроенное аудио "
+"устройство, а затем оставляет его открытым до окончания своей работы. Из-за "
+"этого, все программы не поддерживающие NAS, не могут работать с этим "
+"звуковым устройством."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"Демон можно настроить так, чтобы неиспользуемое аудио устройство "
+"освобождалось с некоторой задержкой после завершения работавшего с ним "
+"приложения."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Альтернативой этому может быть программа \"audiooss\", которая перехватывает "
+"запросы программ к /dev/dsp и заменяет их эквивалентными вызовами NAS."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "Должен ли nasd при запуске изменять настройки микшера?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"При положительном ответе сервер NAS при запуске изменит настройки микшера на "
+"следующие:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - устанавливает громкость PCM в 50%;\n"
+" - изменяет входное устройство записи на LINE."
--- nas-1.9.2.orig/debian/po/da.po
+++ nas-1.9.2/debian/po/da.po
@@ -0,0 +1,87 @@
+# Danish translation nas.
+# Copyright (C) 2010 nas & nedenst??ende overs??ttere.
+# This file is distributed under the same license as the nas package.
+# Claus Hindsgaul <claus.hindsgaul@gmail.com>, 2006.
+# Joe Hansen <joedalton2@yahoo.dk>, 2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nas debconf\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2010-10-23 19:21+0100\n"
+"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
+"Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.2\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "Skal nasd frigive /dev/dsp?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"NAS-serveren vil som udgangspunkt ??bne den lydenhed, der er sat op p?? dit "
+"system under opstarten, og derefter holde den ??ben indtil den bliver "
+"stoppet. Dette vil hindre alle lydklienter, der ikke er forberedt for NAS i "
+"at benytte lydenheden."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"D??monen kan konfigureres til at frigive lydenheden, n??r den ikke bruger "
+"den, med forsinkelse efter programmet bliver f??rdigt, f??r enheden er "
+"tilg??ngelig."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Et alternativ er at benytte pakken ??audiooss??, der omklamrer de programmer, "
+"der benytter /dev/dsp. Det vil f?? dem til at bruge tilsvarende NAS-kald."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "Skal nasd ??ndre mikser-indstillingerne under opstarten?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Hvis du v??lger denne indstilling, vil NAS-serveren som udgangspunkt ??ndre "
+"mikser-indstillingerne under opstarten p?? f??lgende m??de:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - angiv PCM-lydstyrken til 50 %\n"
+" - ??ndr optagelsesenheden til LINE."
+
--- nas-1.9.2.orig/debian/po/eu.po
+++ nas-1.9.2/debian/po/eu.po
@@ -0,0 +1,84 @@
+# translation of nas-eu.po to Euskara
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Piarres Beobide <pi@beobide.net>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: nas-eu\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2008-09-29 10:11+0200\n"
+"Last-Translator: Piarres Beobide <pi@beobide.net>\n"
+"Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "Nasd-ek /dev/dsp askatu behar al du?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"Lehenespen bezala NAS zerbitzariak abiaraztean konfiguratutako audio gailua "
+"ireki eta zerbitzaria itxi arte irekirik mantenduko du. Honek NAS-ekin "
+"bateragarri ez diren audio bezeroak audio gailua erabiltzea ezinduko du."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"Deabrua erabiltzen ez duenean audio gailua askatzeko konfiguratu daiteke, "
+"aplikazioa osatu eta azterapen txiki baten ondoren audio gailua eskuragarri "
+"egongo da."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Beste aukera bat \"audiooss\" paketeatearen bidez /dev/dsp erabiltzen duten "
+"programak dagozkion NAS deialdiak egitea da."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "Abiaraztean nasd-ek nahasgailu ezarpenak aldatu behar al ditu?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Aukera hau hautatzen baduzu, NAS zerbitzariak abiaraztean nahasgailu "
+"ezarpenak horrela aldatuko ditu:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - PCM bolumena %50 bezala ezarri;\n"
+" - aldatu grabaketa sarrera gailua LINEra."
--- nas-1.9.2.orig/debian/po/vi.po
+++ nas-1.9.2/debian/po/vi.po
@@ -0,0 +1,85 @@
+# Vietnamese translation for NAS.
+# Copyright © 2007 Free Software Foundation, Inc.
+# Clytie Siddall <clytie@riverland.net.au>, 2007
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nas\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2007-09-26 23:44+0930\n"
+"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
+"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: LocFactoryEditor 1.7b1\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "nasd nên nhả « /dev/dsp » không?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"Lúc khởi chạy, mặc định là trình phục vụ NAS sẽ mở thiết bị âm thanh đã cấu "
+"hình, cũng bảo tồn tình trạng mở đến khi trình phục vụ bị dừng chạy. Trường "
+"hợp này sẽ ngăn cản ứng dụng khách âm thanh hỗ trợ NAS cũng sử dụng thiết bị "
+"âm thanh đó. "
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"Có thể cấu hình trình nền để nhả thiết bị âm thanh khi không hiện thời sử "
+"dụng nó. Cũng có một khoảng đợi giữa ứng dụng chạy xong và thiết bị trở "
+"thành sẵn sàng lại."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Hoặc có thể sử dụng gói « audiooss » để bao bọc mỗi chương trình sử dụng « /"
+"dev/dsp » để làm cho nó sử dụng cuộc gọi NAS tương đương."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "nasd nên thay đổi thiết lập của máy hoà tiếng khi khởi chạy không?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Bật tùy chọn này thì trình phục vụ NAS sẽ thay đổi thiết lập của máy hoà "
+"tiếng vào lúc khởi chạy, như theo đây:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" • đặt âm lượng PCM thành 50%\n"
+" • thay đổi thiết bị thu vào thành « LINE »."
--- nas-1.9.2.orig/debian/po/fi.po
+++ nas-1.9.2/debian/po/fi.po
@@ -0,0 +1,79 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: nas\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2007-10-07 19:40+0200\n"
+"Last-Translator: Esko Arajärvi <edu@iki.fi>\n"
+"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Finnish\n"
+"X-Poedit-Country: FINLAND\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "Tulisiko nasd:n vapauttaa /dev/dsp?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"Oletuksena NAS-palvelin avaa asetetun äänilaitteen käynnistettäessä ja pitää "
+"sen auki kunnes palvelin pysäytetään. Tämä estää sellaisia ääniasiakkaita, "
+"jotka eivät käytä NASia, käyttämästä äänilaitetta."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"Taustaohjelma voidaan asettaa vapauttamaan äänilaite muiden saataville "
+"jonkin viiveen jälkeen silloin, kun äänilaite ei ole käytössä."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Toinen vaihtoehto on kääriä kaikki /dev/dsp-laitetta käyttävät ohjelmat "
+"audiooss-paketin avulla käyttämään vastaavia NAS-kutsuja."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "Tulisiko nasd:n muuttaa mikseriasetuksia käynnistettäessä?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Jos valitset tämän vaihtoehdon, NAS-palvelin muuttaa mikseriasetuksia "
+"käynnistettäessä seuraavasti:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - asetetaan PCM-äänenvoimakkuustasoksi 50%\n"
+" - vaihdetaan äänityssyötelaitteeksi LINE."
--- nas-1.9.2.orig/debian/po/de.po
+++ nas-1.9.2/debian/po/de.po
@@ -0,0 +1,94 @@
+# translation of nas_1.9-3_de.po to German
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans#
+#    Developers do not need to manually edit POT or PO files.
+#
+# Erik Schanze <eriks@debian.org>, 2004-2007.
+msgid ""
+msgstr ""
+"Project-Id-Version: nas_1.9-3_de\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2007-10-01 22:00+0200\n"
+"Last-Translator: Erik Schanze <eriks@debian.org>\n"
+"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms:  nplurals=2; plural=(n != 1);\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "Soll nasd das Gerät /dev/dsp freigeben?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"Der NAS-Server öffnet standardmäßig das Audio-Gerät, das beim Systemstart "
+"eingerichtet ist, und hält es offen, bis er gestoppt wird. Dies verhindert, "
+"dass Audio-Clients das Audio-Gerät benutzen, die NAS nicht kennen."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"Der Dienst kann so eingerichtet werden, dass er das Audio-Gerät freigibt, "
+"sobald er es nicht benutzt. Hierbei tritt nach der Beendigung der Anwendung "
+"eine Verzögerung auf, bevor das Gerät verfügbar ist."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Eine andere Möglichkeit bietet das Programm »audiooss«. Es kapselt jedes "
+"Programm, das /dev/dsp direkt verwendet, damit es passende Nas-Aufrufe "
+"benutzt."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "Soll nasd die Einstellungen des Mixers beim Systemstart ändern?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Falls Sie hier zustimmen, wird der Nas-Server die Einstellungen des Mixers "
+"beim Systemstart folgendermaßen ändern:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - setzt PCM-Lautstärke auf 50%;\n"
+" - ändert das Aufnahmegerät auf LINE."
--- nas-1.9.2.orig/debian/po/ar.po
+++ nas-1.9.2/debian/po/ar.po
@@ -0,0 +1,85 @@
+# translation of templates.po to Arabic
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Ossama M. Khayat <okhayat@yahoo.com>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: templates\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2008-09-28 11:56+0300\n"
+"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
+"Language-Team: Arabic <support@arabeyes.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "هل يتوجب على خدمة nasd ترك /dev/dsp؟"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"يقوم خادم NAS بشكل افتراضي بفتح جهاز الصوت المُهيّأ عند بدء التشغيل، ويُبقيه "
+"مفتوحاً حتى إيقاف الخادم. ويمنع هذا أي من مستخدمي الجهاز الصوتي الغير عارفين "
+"بنظام NAS من استخدام الجهاز الصوتي."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"يمكن تهيئة الخدمة لترك الجهاز الصوتي عند عدم استخدامه، ويكون هناك بعض "
+"التأخير بعد انتهاء التطبيق وقبل أن يتوفر الجهاز."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"البديل عنه هو استخدام حزمة \"audiooss\" للعمل بالنيابة عن أية برامج تستخدم /"
+"dev/dsp لجعلها تستخدم أوامر NAS الموافقة."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "هل يتوجب على خدمة nasd تغيير إعدادات المازج عند بدء التشغيل؟"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"إن انتقيت هذا الخيار، سيقوم خادم NAS بتغيير إعدادات المازج عند بدء التشغيل "
+"كما يلي:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - تعيين حدة صوت PCM عند 50%;\n"
+" - تغيير جهاز إدخال الصوت إلى LINE."
--- nas-1.9.2.orig/debian/po/es.po
+++ nas-1.9.2/debian/po/es.po
@@ -0,0 +1,113 @@
+# nas po-debconf translation to spanish
+# Copyright (C) 2006, 2007, 2009 Software in the Public Interest, SPI Inc.
+# This file is distributed under the same license as the nas package.
+#
+# Changes:
+#   - Initial translation
+#       Steve Lord Flaubert <stonescenter@gmail.com>, 2007
+#
+#   - Updates
+#       Francisco Javier Cuadrado <fcocuadrado@gmail.com>, 2009
+#
+# Traductores, si no conocen el formato PO, merece la pena leer la
+# documentación de gettext, especialmente las secciones dedicadas a este
+# formato, por ejemplo ejecutando:
+#   info -n '(gettext)PO Files'
+#   info -n '(gettext)Header Entry'
+#
+# Equipo de traducción al español, por favor lean antes de traducir
+# los siguientes documentos:
+#
+#   - El proyecto de traducción de Debian al español
+#     http://www.debian.org/intl/spanish/
+#     especialmente las notas y normas de traducción en
+#     http://www.debian.org/intl/spanish/notas
+#
+#   - La guía de traducción de po's de debconf:
+#     /usr/share/doc/po-debconf/README-trans
+#     o http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nas 1.9.1-5\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2009-03-11 10:38+0100\n"
+"Last-Translator: Francisco Javier Cuadrado <fcocuadrado@gmail.com>\n"
+"Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "¿Debería nasd liberar «/dev/dsp»?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "By default, the NAS server will open the configured audio device at startup, and then keep it open until the server is stopped. This will stop any non-NAS-aware audio clients from using the audio device."
+msgstr "De forma predeterminada el servidor NAS abrirá al inicio el dispositivo de audio que se configure, y lo mantendrá abierto hasta que se pare. Esto impedirá el uso del dispositivo de audio por parte cualquier cliente de audio no preparado para NAS."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "The daemon can be configured to release the audio device when it is not using it, with some delay after the application completes before the device is available."
+msgstr "El demonio se puede configurar para que libere el dispositivo de audio cuando no lo esté utilizando, dejándolo disponible cierto tiempo después de que la aplicación termine."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "An alternative is to use the \"audiooss\" package to wrap any programs that use /dev/dsp to make them use equivalent NAS calls."
+msgstr "Una alternativa a esto es utilizar el paquete «audiooss» para envolver a los programas que utilizan «/dev/dsp», de modo que utilicen las llamadas equivalentes de NAS."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "¿Debería nasd cambiar los ajustes del mezclador al iniciarse?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "If you choose this option, the NAS server will change the mixer settings at startup as follows:"
+msgstr "Si escoge esta opción, el servidor de NAS cambiará los ajustes del mezclador al iniciarse por los siguientes:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - establecer el volumen de PCM al 50%\n"
+" - cambiar la entrada del dispositivo de entrada para la grabación a LINEA"
+
+#~ msgid ""
+#~ "nasd can be configured to release the audio device when it is not "
+#~ "actively using it. There will almost always be a slight delay between the "
+#~ "application using nas finishing and the audio device becoming available "
+#~ "for other uses; this is due to the latency inherent in the design of nas "
+#~ "and so cannot really be changed."
+#~ msgstr ""
+#~ "nasd puede configurarse para que libere el dispositivo de audio cuando no "
+#~ "esté utilizándose. Casi siempre habrá un ligero retardo entre el cierre "
+#~ "de la la aplicación que usa nas y la disponibilidad del dispositivo de "
+#~ "audio para otros usos; esto se debe a la latencia implícita en el diseño "
+#~ "de nas,que no puede cambiarse."
+#~ msgid ""
+#~ "Should nasd release the audio device? (It is recommended to select this "
+#~ "option unless you have special requirements.)"
+#~ msgstr ""
+#~ "¿Debería nasd liberar el dispositivo audio? (se sugiere elegir esta "
+#~ "opción a menos que tenga un uso especial.)"
+#~ msgid ""
+#~ "Do you want it to do this? (Most people are expected to disable this "
+#~ "option)"
+#~ msgstr ""
+#~ "¿Desea hacer esto? (Se espera que la mayoría de gente desactiven esta "
+#~ "opción)"
+
--- nas-1.9.2.orig/debian/po/it.po
+++ nas-1.9.2/debian/po/it.po
@@ -0,0 +1,85 @@
+# Italian (it) translation of debconf templates for nas
+# Copyright (C) 2007 Free Software Foundation, Inc.
+# This file is distributed under the same license as the nas package.
+# Luca Monducci <luca.mo@tiscali.it>, 2007.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nas debconf templates\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2007-09-22 15:25+0200\n"
+"Last-Translator: Luca Monducci <luca.mo@tiscali.it>\n"
+"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "nasd deve rilasciare /dev/dsp?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"Normalmente all'avvio del server NAS viene aperto il device audio "
+"configurato e viene tenuto aperto fino a quando il server non viene fermato. "
+"Questo impedisce l'uso del device audio a qualsiasi client audio che non "
+"utilizza NAS."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"Il demone può essere configurato per rilasciare il device audio quando non "
+"lo utilizza, con un piccolo ritardo fra la chiusura dell'applicazione e il "
+"momento in cui il device è nuovamente disponibile."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Una alternativa è usare il pacchetto \"audiooss\" in modo da redirigere "
+"qualsiasi programma che utilizza /dev/dsp a usare le chiamate a NAS "
+"equivalenti."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "nasd deve modificare le impostazioni del mixer all'avvio?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Se si accetta, il server NAS modifica all'avvio le impostazioni del mixer in "
+"questo modo:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - imposta il volume PCM al 50%;\n"
+" - imposta il device di input per la registrazione a LINE."
--- nas-1.9.2.orig/debian/po/nl.po
+++ nas-1.9.2/debian/po/nl.po
@@ -0,0 +1,86 @@
+# Dutch nas po-debconf translation,
+# Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the nas package.
+# Vincent Zweije <zweije@xs4all.nl>, 2008.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nas 1.9.1-1\n"
+"Report-Msgid-Bugs-To: 93sam@debian.org\n"
+"POT-Creation-Date: 2007-09-22 09:00+0200\n"
+"PO-Revision-Date: 2008-01-07 22:04+0000\n"
+"Last-Translator: Vincent Zweije <zweije@xs4all.nl>\n"
+"Language-Team: Debian-Dutch <debian-l10n-dutch@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid "Should nasd release /dev/dsp?"
+msgstr "Moet nasd /dev/dsp vrijmaken?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"By default, the NAS server will open the configured audio device at startup, "
+"and then keep it open until the server is stopped. This will stop any non-"
+"NAS-aware audio clients from using the audio device."
+msgstr ""
+"Standaard opent de NAS-server het ingestelde geluidsapparaat bij het "
+"starten van het systeem, en houdt het dan open totdat de server wordt "
+"gestopt. Dit weerhoudt geluidstoepassingen die geen NAS gebruiken ervan om "
+"het geluidsapparaat te gebruiken."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"The daemon can be configured to release the audio device when it is not "
+"using it, with some delay after the application completes before the device "
+"is available."
+msgstr ""
+"De achtergronddienst can worden ingesteld om het geluidsapparaat vrij te "
+"maken wanneer het dat niet gebruikt. Er is een korte vertraging tussen het "
+"moment dat een toepassing die gebruik maakt van NAS wordt afgesloten en "
+"het moment dat het geluidsapparaat beschikbaar komt voor andere toepassingen."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:2001
+msgid ""
+"An alternative is to use the \"audiooss\" package to wrap any programs that "
+"use /dev/dsp to make them use equivalent NAS calls."
+msgstr ""
+"Een alternatief is om met behulp van het \"audiooss\" pakket alle programma's "
+"die /dev/dsp gebruiken in een aangepaste omgeving te plaatsen, zodat ze "
+"gelijkwaardige NAS aanroepen gebruiken."
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid "Should nasd change mixer settings at startup?"
+msgstr "Moet nasd mixerinstellingen wijzigen bij het opstarten?"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+msgid ""
+"If you choose this option, the NAS server will change the mixer settings at "
+"startup as follows:"
+msgstr ""
+"Als u deze optie accepteert, wijzigt de NAS-server bij het starten de "
+"mixerinstellingen als volgt:"
+
+#. Type: boolean
+#. Description
+#: ../nas.templates:3001
+#, no-c-format
+msgid ""
+" - set PCM volume to 50%;\n"
+" - change the record input device to LINE."
+msgstr ""
+" - het PCM volume wordt op 50% ingesteld;\n"
+" - het opname-apparaat wordt gewijzigd naar LINE."
