--- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/undocumented +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/undocumented @@ -0,0 +1,2 @@ +ax25rtctl.8 +ax25rtd.8 --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/postinst +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/postinst @@ -0,0 +1,87 @@ +#! /bin/sh -e +# postinst script for ax25-apps +# +# see: dh_installdeb(1) + + +# Source the debconf library. +. /usr/share/debconf/confmodule + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/doc/packaging-manual/ +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +config_ax25_apps(){ + # Check result of tools being setuid + db_get ax25-apps/suid_listen + if [ "$RET" = "true" ]; then + { + # Try registering with dpkg-statoverride first + hash dpkg-statoverride 2>&- + if [ $? -eq 0 ]; then + dpkg-statoverride --update --add --force root root 4755 /usr/bin/axlisten + # change program directly + else + chmod 4755 /usr/bin/axlisten + fi + } + else + { + # set permission on /usr/bin/axlisten to know state not suid + chmod 0755 /usr/bin/axlisten + #if dpkg-statoverride is installed, remove axlisten from overrides + hash dpkg-statoverride 2>&- + if [ $? -eq 0 ]; then + dpkg-statoverride --remove --force /usr/bin/axlisten + fi + } + fi +} + +convert_to_statoverride(){ + #try to import suidmanager setting for axlisten + dpkg-statoverride --add --force root root 0755 /usr/bin/axlisten +} + +case "$1" in + install) + config_ax25_apps + ;; + + upgrade) + convert_to_statoverride + config_ax25_apps + ;; + + configure) + config_ax25_apps + ;; + + abort-upgrade) + ;; + + *) + echo "postinst called with unknown argument $1" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# +exit 0 + --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/docs +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/docs @@ -0,0 +1,2 @@ +NEWS +README --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/templates +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/templates @@ -0,0 +1,8 @@ +Template: ax25-apps/suid_listen +Type: boolean +Default: false +_Description: Make listen setuid root? + The listen program needs to make calls as the root user. One way of doing + this is to make the program setuid root. This is generally a bad idea as + there are better ways, such as using the sudo program, to do this. + However, you have the option of making it setuid root here if you like. --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/newtemplate +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/newtemplate @@ -0,0 +1,43 @@ +Template: ax25-apps/suid_listen +Type: boolean +Default: false +Description: Make listen setuid root? + The listen program needs to make calls as the root user. One way of doing + this is to make the program setuid root. This is generally a bad idea as + there are better ways, such as using the sudo program, to do this. + However, you have the option of making it setuid root here if you like. +Description-sv: Gr "listen" setuid root? + Programmet listen mste gra anrop som root anvndare. Ett stt att stakomma + detta r att gra programmet setuid root. Detta r generellt en dlig id, + eftersom det finns bttre stt, ssom att anvnda programmet sudo, fr att + gra detta. Du har dock mjlighet att gra programmet setuid root nu om du vill. +Description-de: Soll das listen Programm setuid root laufen ? + Das listen Programm muss einige aufrufe als root Benutzer durchfhren. + Eine Mglichkeit ist das Programm setuid root zu machen. Dies ist generell + eine schlechte Idee, da es bessere Wege gibt dies zu erreichen, z.B. mit + sudo. Jedoch knnen Sie mit dieser Option das Programm setuid root installieren. +Description-nl: Moet ik het listen programma setuid root maken? + Het listen programma loopt alleen goed als root gebruiker. + Een manier om listen als root te runnen, is het suid bit te zetten. + Over het algemeen is dit een slecht idee omdat er betere manieren zijn, + bijvoorbeeld met het sudo programma. Je krijgt hier echter de mogelijkheid + om toch het suid bit te gebruiken. +Description-es: Quiere hacer que listen se ejecute con permisos de root? + El programa listen necesita hacer llamadas como superusuario root. Una + manera de lograrlo es hacer el programa setuid root. Normalmente, es una + mala idea, ya que hay mejores alternativas, como usar el programa sudo. + Sin embargo, tiene la opcin de hacer que se ejecute con permisos de root + (setuid root) si as lo desea. +Description-pt_BR: Fazer com que o listen seja setuid root ? + O programa listen precisa fazer chamadas como o usurio root. Uma maneira + de fazer isso fazer com que o programa seja setuid root. Isto + geralmente uma m idia, pois existem melhores mtodos para fazer isso, + como utilizar o programa sudo. + Porm, voc tem a opo de faz-lo setuid root aqui se voc assim deseja. +Description-ru: setuid root listen? + listen root. + - setuid root listen. + , - + sudo, . , , setuid + root listen . + --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/substvars +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/substvars @@ -0,0 +1 @@ +misc:Depends=debconf (>= 0.5) | debconf-2.0 --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/config +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/config @@ -0,0 +1,9 @@ +#!/bin/sh -e + +# source debconf library. +. /usr/share/debconf/confmodule + +db_input low ax25-apps/suid_listen || true +db_go + + --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/copyright +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/copyright @@ -0,0 +1,54 @@ +Patrick Ouellette took over Debian maintance of this package +Wednesday, 4 April 2001 + +This package was debianized by Craig Small on +Fri, 4 Jun 1999 13:47:48 +1000. + + +Copyright: + +AX25IPD ++++++++ + +ax25ipd is a derivative work of ax25ip written by Michael Westerhof, and +as such copyright is governed by Mike's original copyright notice. + +> /* ax25ipd.c main entrypoint +> * +> * Copyright 1991, Michael Westerhof, Sun Microsystems, Inc. +> * This software may be freely used, distributed, or modified, providing +> * this header is not removed. +> * +> */ + +And an extract from the original README file. + +> Comments, Criticism, Enhancements, Problems, Bugs +> ------------------------------------------------- +> +> You can reach the person responsible for ax25ip at any of the following +> addresses: +> +> Mike.Westerhof@Central.Sun.COM +> +> KA9WSB@WB9YAE +> +> Mike Westerhof, 17 N Main St, Mt Prospect, IL 60056 +> +> ------------------------------------------------------------------------- +> Copyright 1991, Michael Westerhof, Sun Microsystems, Inc. +> This software may be freely used, distributed, or modified, providing +> this footer is not removed. +> ------------------------------------------------------------------------- + +This release of ax25ipd was cleaned up slightly, and prototyped, man page +written, and had a few other's enhancements included along the way, by +Rob Mayfield VK5XXX, mayfieldrob@mail.dec.com. + + +all other files: + +GPL + +On Debian systems, the complete text of the GNU General Public License +can be found in the file /usr/share/common-licenses/GPL-2. --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/rules +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/rules @@ -0,0 +1,95 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# This file is public domain software, originally written by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +export DEB_BUILD_MAINT_OPTIONS = hardening=+all +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/buildflags.mk + +# This is the debhelper compatibility version to use. + +build: build-stamp + +build-arch: build + +build-indep: build + +build-stamp: + dh_testdir + dh_autoreconf + #autoreconf --install --force + chmod +x configure + # Add here commands to compile the package. + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --mandir=/usr/share/man --program-transform-name='s@^call@axcall@;s@^listen@axlisten@' + dh_auto_build +# $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) distclean + + dh_autoreconf_clean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + # Add here commands to install the package into debian/ + $(MAKE) install DESTDIR=$(CURDIR)/debian/ax25-apps + $(MAKE) installconf DESTDIR=$(CURDIR)/debian/ax25-apps + +binary: binary-arch + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install +# dh_testversion 2 + dh_testdir + dh_testroot + dh_installdebconf + dh_installdocs +# remove extra copying file from doc dir for lintian + rm $(CURDIR)/debian/ax25-apps/usr/share/doc/ax25-apps/COPYING.ax25ipd + dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit + #dh_installcron +# dh_installman + #dh_installinfo + #dh_undocumented + dh_installchangelogs ChangeLog + dh_link + dh_strip + dh_compress + dh_fixperms + # You may want to make some executables suid here. +# dh_suidregister +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/manpages +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/manpages @@ -0,0 +1,9 @@ +call/call.1 +listen/listen.1 +ax25ipd/ax25ipd.8 +ax25rtd/ax25rtctl.8 +ax25rtd/ax25rtd.8 +ax25mond/ax25mond.8 +ax25ipd/ax25ipd.conf.5 +ax25rtd/ax25rtd.conf.5 +ax25mond/ax25mond.conf.5 --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/menu +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/menu @@ -0,0 +1,2 @@ +?package(ax25-apps):needs="text" section="Applications/Amateur Radio"\ + title="Axlisten" command="/usr/bin/axlisten" --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/compat +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/compat @@ -0,0 +1 @@ +7 --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/changelog +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/changelog @@ -0,0 +1,294 @@ +ax25-apps (0.0.8-rc2+cvs20130510-3) unstable; urgency=low + + * Move to dh_autoreconf + * Add build depends for autotools + + -- Patrick Ouellette Sat, 11 May 2013 12:26:12 -0400 + +ax25-apps (0.0.8-rc2+cvs20130510-2) unstable; urgency=low + + * Fix build failure on buildd (autoreconf call) + + -- Patrick Ouellette Sat, 11 May 2013 11:53:32 -0400 + +ax25-apps (0.0.8-rc2+cvs20130510-1) unstable; urgency=low + + * License changed to BSD license for listen/ripdump.c (Closes: #630893) + * Updated standards version to 3.9.4 + * Added use of hardening flags to debian/rules for compilation + + -- Patrick Ouellette FrI, 10 May 2013 11:13:29 -0400 + +ax25-apps (0.0.8-rc2+cvs20120204-2) unstable; urgency=low + + * Fix "ax25ipd: fails to transmit packets with "assemble_kiss: dumped + - control byte non-zero"" fixed in new upstream + (Closes: #606338) + * Fix pending l10n issues. Debconf translations: + * Italian (Vincenzo Campanella). Closes: #593666 + * Danish (Joe Hansen). Closes: #627843 + * Polish (Michał Kułach). Closes: #659128 + * Fix "Uses absolute path to call dpkg-statoverride" change check for + - dpkg-statoverride from test to hash (Closes: #510947) + + -- Patrick Ouellette Sun, 26 Feb 2012 20:46:29 -0500 + +ax25-apps (0.0.8-rc2+cvs20120204-1) unstable; urgency=low + + * new upstream + + -- Patrick Ouellette Sat, 04 Feb 2012 22:03:45 -0500 + +ax25-apps (0.0.6-16.2) unstable; urgency=low + + * Non-maintainer upload. + * Bump debherlper compatibility level from deprecated 4 to 7 + * As a consequence, replace deprecated "dh_clean -k" by "dh_prep" + * Add ${misc:Depends} to binary package dependencies to deal with + dependencies triggerred by the use of debhelper + * Explicitly point to the GPL-2 document in debian/copyright + * Explicitly use 1.0 source format + * No longer hardcode dpkg-statoverride path in postinst + * Fix pending l10n issues. Debconf translations: + - Russian (Yuri Kozlov). Closes: #533876 + - Vietnamese (Clytie Siddall). Closes: #579224 + + -- Christian Perrier Sun, 25 Apr 2010 07:49:02 +0200 + +ax25-apps (0.0.6-16.1) unstable; urgency=low + + * Retiring - remove myself from the uploaders list. + + -- Joop Stakenborg Tue, 10 Nov 2009 10:10:10 +0000 + +ax25-apps (0.0.6-16) unstable; urgency=low + + * Also rename the listen manual page to axlisten. Closes: #447315. + * Adapt description in the control file. + * Fix axlisten manual page, so we refer to axcall. + * Do not call dh_installman. + + -- Joop Stakenborg Sat, 01 Dec 2007 20:57:33 +0100 + +ax25-apps (0.0.6-15) unstable; urgency=low + + * Add missing 'missing' and 'depcomp'. + * Run aclocal, automake autoconf and libtoolize again. + * Listen is now called axlisten (closes: #447315), call is called + axcall. Names were to generic. Adopt manpages. + * ax25ipd/Makefile.am: use AM_CFLAGS instead of CFLAGS. + * debian/menu: new menu section, 'Amateur Radio'. + * Lintian clean. + + -- Joop Stakenborg Sun, 11 Nov 2007 19:40:53 +0100 + +ax25-apps (0.0.6-14.1) unstable; urgency=low + + * Non-maintainer upload to fix pending l10n issues. + * Debconf translations: + - Convert files to UTF-8 + - Portuguese. Closes: #389649 + - Galician. Closes: #412342 + + -- Christian Perrier Mon, 26 Feb 2007 07:31:59 +0100 + +ax25-apps (0.0.6-14) unstable; urgency=low + + * Remove build-dependency on autoconf, automake and libtool + (closes: #376334) + * Tidy up description. + * Upgrade to standards-revision 3.7.2. + * Upgrade to debhelper revision 4. + + -- Hamish Moffatt Mon, 3 Jul 2006 08:42:54 +1000 + +ax25-apps (0.0.6-13) unstable; urgency=low + + * Close an already fixed bug. Closes: #321497. + * Update config.guess, config.sub. Closes: #356363. + + -- Joop Stakenborg Sun, 19 Mar 2006 22:00:24 +0100 + +ax25-apps (0.0.6-12) unstable; urgency=low + + * Changed debconf dependency to "debconf | debconf-2.0" + to allow use with cdebconf + * Updated standards-revision to 3.6.2 + + -- Hamish Moffatt Fri, 2 Sep 2005 09:14:18 +1000 + +ax25-apps (0.0.6-11) unstable; urgency=low + + * adds --update to postinst dpkg-statoverride call. Closes #321497. + + -- Patrick A. Ouellette Mon, 8 Aug 2005 23:05:35 -0400 + +ax25-apps (0.0.6-10) unstable; urgency=low + + * Vietnamese translations for debconf. Closes: #313139. + + -- Joop Stakenborg Mon, 11 Jul 2005 21:33:33 +0200 + +ax25-apps (0.0.6-9) unstable; urgency=low + + * Changed maintainer to debian-hams@lists.debian.org + * Changed uploaders to Jaime Robles , + Joop Stakenborg , + Patrick Ouellette , + Hamish Moffatt , + Ramakrishnan Muthukrishnan + + -- Patrick Ouellette Thu, 14 Apr 2005 14:06:32 -0400 + +ax25-apps (0.0.6-8) unstable; urgency=low + + * Changed maintainer to debian-hams@lists.debian.org + * Changed uploaders to Jaime Robles , + Joop Stakenborg , + Patrick Ouellette , + Hamish Moffatt , + Ramakrishnan Muthukrishnan + + -- Patrick Ouellette Thu, 14 Apr 2005 13:50:35 -0400 + +ax25-apps (0.0.6-7) unstable; urgency=low + + * fixed typo in description (closes: #299964) + * added Czech translation (closes: #297600) + (thanks Miroslav Kure ) + + -- Bruce Walker Sat, 2 Apr 2005 13:30:27 -0500 + +ax25-apps (0.0.6-6) unstable; urgency=low + + * lintian cleanup, fixed changelog charset and quoted menu fields + + -- Bruce Walker Tue, 30 Mar 2004 13:46:46 -0500 + +ax25-apps (0.0.6-5) unstable; urgency=low + + * added Japanese debconf translations from henrich@samba.gr.jp + * closes: #239214 + + -- Bruce Walker Mon, 22 Mar 2004 19:29:44 -0500 + +ax25-apps (0.0.6-4) unstable; urgency=low + + * incorporated better package description (closes #209451) + * patched to use gettext for debconf templates (closes #205795) + * included french debconf translations (closes #206594) + * updated to standards 3.6.1 + * wrote manpages for ax25rtd, ax25rtctl, and ax25rtd.conf + * included copyright reference to debian GPL location + + -- Bruce Walker Tue, 11 Nov 2003 19:38:35 -0500 + +ax25-apps (0.0.6-3) unstable; urgency=low + + * linked with libax25-0.0.11 + + -- Bruce Walker Wed, 23 Apr 2003 17:02:37 -0400 + +ax25-apps (0.0.6-2) unstable; urgency=low + + * new debian maintainer (me) + + -- Bruce Walker Tue, 8 Apr 2003 16:44:31 -0400 + +ax25-apps (0.0.6-1) unstable; urgency=low + + * new upstream release + * added Russian translation for debconf (closes: #137621) + (Thanks Ilgiz Kalmetev ) + + -- Patrick Ouellette Thu, 21 Mar 2002 16:43:25 -0500 + +ax25-apps (0.0.5-6) unstable; urgency=low + + * added libtool to build depends (closes: #128624) + + -- Patrick Ouellette Fri, 11 Jan 2002 16:24:13 -0500 + +ax25-apps (0.0.5-5) unstable; urgency=low + + * removed blank lines in debconf templates file (closes: #127767) + * fixed compile errors on non x86 systems in ax25rtd.c and ax25rtctl.c + (closes: #127782) + + -- Patrick Ouellette Tue, 8 Jan 2002 00:34:20 -0500 + +ax25-apps (0.0.5-4) unstable; urgency=low + + * fixed typo in debconf template (closes: #100873) + * added Dutch translation for debconf (closes: #100872) + (Thanks Joop Stakenborg ) + * added Spanish translation for debconf (closes: #103237) + (Thanks Carlos Valdivia ) + * added Portuguese (Brazilian) translation for debconf (closes: #107489) + (Thanks ) + * added autoconf to build depends + * added automake to build depends + + -- Patrick Ouellette Sat, 22 Dec 2001 23:12:54 -0500 + +ax25-apps (0.0.5-3) unstable; urgency=low + + * compiled against released version of libax25 (oops - sorry about + that) (closes: #96384) + * changed Priority from optional to extra + + -- Patrick Ouellette Sat, 5 May 2001 21:27:25 -0500 + +ax25-apps (0.0.5-2) unstable; urgency=low + + * Fixed problem with dpkg-statoverride killing postinst with exit code + 2 + + -- Patrick Ouellette Thu, 3 May 2001 00:10:06 -0500 + +ax25-apps (0.0.5-1) unstable; urgency=low + + * new maintainer (closes: 89333) + * Added Swedish translation from André Dahlqvist to debconf + template for listen (closes: 83538) + * Added German translation from Joerg Rieger to debconf + template for listen (closes: 84259) + * moved from suidmanager to dpkg-statoverride + * new upstream release + + -- Patrick Ouellette Tue, 30 Apr 2001 21:09:34 -0500 + +ax25-apps (0.0.4-2) unstable; urgency=low + + * New standards version + * Added debconf thing to ask if you would like listen setuid + + -- Craig Small Tue, 2 Jan 2001 14:12:26 +1100 + +ax25-apps (0.0.4-1) unstable; urgency=low + + * New upstream version + + -- Craig Small Mon, 23 Aug 1999 12:34:50 +1000 + +ax25-apps (0.0.3-1) unstable; urgency=low + + * New upstream source Closes: #31744 + + -- Craig Small Tue, 10 Aug 1999 11:03:07 +1000 + +ax25-apps (0.0.2-1) unstable; urgency=low + + * New upstream version + + -- Craig Small Thu, 8 Jul 1999 12:19:45 +1000 + +ax25-apps (0.0.1-1) unstable; urgency=low + + * Initial Release. + + -- Craig Small Fri, 4 Jun 1999 13:47:48 +1000 + +Local variables: +mode: debian-changelog +End: --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/dirs +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/control +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/control @@ -0,0 +1,23 @@ +Source: ax25-apps +Section: hamradio +Priority: extra +Maintainer: Debian Hamradio Maintainers +Uploaders: Jaime Robles , Patrick Ouellette , Hamish Moffatt , Ramakrishnan Muthukrishnan +Build-Depends: dpkg-dev (>= 1.16.1~), debhelper (>= 7), libncurses5-dev, libax25-dev (>> 0.0.7), autoconf, automake, libtool (>= 2.4.2), dh-autoreconf +Standards-Version: 3.9.4 + +Package: ax25-apps +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: ax25-utils, suidmanager (<< 0.50) +Suggests: ax25-tools +Description: AX.25 ham radio applications + This package provides specific user applications for hamradio + that use AX.25 Net/ROM or ROSE network protocols: + * axcall: a general purpose AX.25, NET/ROM and ROSE connection + program. + * axlisten: a network monitor of all AX.25 traffic heard by the system. + * ax25ipd: an RFC1226 compliant daemon which provides + encapsulation of AX.25 traffic over IP. + * ax25mond: retransmits data received from sockets into an AX.25 + monitor socket. --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/source/format +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/source/format @@ -0,0 +1 @@ +1.0 --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/fr.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/fr.po @@ -0,0 +1,47 @@ +# +# 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: ax25-apps\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2003-08-17 15:06+0200\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "Listen doit-il être « setuid root » ?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"Le programme listen doit effectuer certains appels avec les droits du super-" +"utilisateur. Une méthode pour cela est que le programme s'exécute avec les " +"droits du super-utilisateur (« setuid root »). C'est toutefois déconseillé " +"car il existe d'autres méthodes, comme l'utilisation du programme sudo, pour " +"cela. Cependant, vous pouvez choisir ici de rendre le programme « setuid " +"root » si vous le préférez." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/es.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/es.po @@ -0,0 +1,46 @@ +# +# 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: ax25-apps\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2004-03-22 19:32-0500\n" +"Last-Translator: Carlos Valdivia \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "¿Quiere hacer que listen se ejecute con permisos de root?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"El programa listen necesita hacer llamadas como superusuario root. Una " +"manera de lograrlo es hacer el programa setuid root. Normalmente, es una " +"mala idea, ya que hay mejores alternativas, como usar el programa sudo. Sin " +"embargo, tiene la opción de hacer que se ejecute con permisos de root " +"(setuid root) si así lo desea." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/it.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/it.po @@ -0,0 +1,38 @@ +# ITALIAN TRANSLATION OF AX25-APPS' PO-DEBCONF FILE. +# COPYRIGHT (C) 2010 THE AX25-APPS' COPYRIGHT HOLDER +# This file is distributed under the same license as the ax25-apps package. +# Vincenzo Campanella , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: ax25-apps\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2010-04-18 20:05+0200\n" +"Last-Translator: Vincenzo Campanella \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "Impostare listen setuid root?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"Il programma listen deve effettuare delle chiamate come utente root. Un modo " +"per farlo è di impostare il programma setuid root, ma generalmente questa " +"non è una buona idea, in quanto ci sono modi migliori per farlo come, per " +"esempio, l'utilizzo del programma sudo. Ad ogni modo, è possibile impostarlo " +"qui setuid root se lo si desidera." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/de.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/de.po @@ -0,0 +1,45 @@ +# +# 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: ax25-apps\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2004-03-22 19:32-0500\n" +"Last-Translator: Joerg Rieger\n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "Soll das listen Programm setuid root laufen ?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"Das listen Programm muss einige aufrufe als root Benutzer durchführen. Eine " +"Möglichkeit ist das Programm setuid root zu machen. Dies ist generell eine " +"schlechte Idee, da es bessere Wege gibt dies zu erreichen, z.B. mit sudo. " +"Jedoch können Sie mit dieser Option das Programm setuid root installieren." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/pl.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/pl.po @@ -0,0 +1,41 @@ +# Translation of ax25-apps debconf templates to Polish. +# Copyright (C) 2010 +# This file is distributed under the same license as the ax25-apps package. +# +# Michał Kułach , 2012. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2012-02-08 16:30+0100\n" +"Last-Translator: Michał Kułach \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.2\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "Ustawić setuid root programowi listen?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"Program listen musi tworzyć wywołania jako root. Jednym ze sposobów aby to " +"osiągnąć jest ustawienie atrybutu setuid root. Nie jest to dobre " +"rozwiązanie, ponieważ korzystniej jest wykorzystywać w tym celu np. program " +"sudo. Można jednak ustawić wspomniany atrybut, jeśli takie jest życzenie " +"użytkownika." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/pt.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/pt.po @@ -0,0 +1,36 @@ +# Portuguese translation of ax25-apps debconf messages. +# This file is distributed under the same license as the ax25-apps package. +# Ricardo Silva , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: ax25-apps 0.0.6-14\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2006-09-25 11:34+0100\n" +"Last-Translator: Ricardo Silva \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "Colocar bit setuid em listen?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"O programa listen necessita de chamar funções como root. Uma maneira de " +"fazer isto é colocar o bit de setuid no programa. Isto é normalmente uma má " +"ideia uma vez que há melhores maneiras, tais como usar o programa sudo. No " +"entanto, tem a opção de colocar o bit setuid se quiser." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/POTFILES.in +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/cs.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/cs.po @@ -0,0 +1,45 @@ +# +# 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: ax25-apps\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2005-03-01 15:05+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "Nastavit listen jako setuid root?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"Program listen musí provádět volání jako uživatel root. Jednou z možností, " +"jak toho dosáhnout, je nastavit program jako setuid root. To je obecně " +"špatný nápad, protože existují lepší cesty k dosažení téhož -- například " +"program sudo. Ovšem pokud si budete přát, můžete zde setuit root povolit." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/da.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/da.po @@ -0,0 +1,38 @@ +# Danish translation ax25-apps. +# Copyright (C) ax25-apps & nedenstående oversættere. +# This file is distributed under the same license as the ax25-apps package. +# Joe Hansen (joedalton2@yahoo.dk), 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: ax25-apps\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2011-05-24 18:30+01:00\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "Gør listen setuid root?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"Programmet listen har brug for at foretage kald som administratorbruger " +"(root). En måde at gøre dette på er at gøre programmet setuid root. Dette er " +"normalt en dårlig ide, da der er bedre måder, såsom brugen af programmet " +"sudo. Du kan dog her gøre programmet setuid root, såfremt du måtte ønske " +"dette." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/ja.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/ja.po @@ -0,0 +1,46 @@ +# +# 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: ax25-apps 0.0.6-4\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2004-03-04 08:02+0900\n" +"Last-Translator: Hideki Yamane \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "listen を root に setuid しますか?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"listen プログラムを root ユーザとして起動する必要があります。これを行う方法の" +"一つにプログラムを root に setuid するのがあります。これは sudo プログラムを" +"使うなどのもっと良い方法がある場合、あまり良い考えとは言えません。しかし、望" +"むならここで listen プログラムを root へ setuid を選択できます。" --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/nl.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/nl.po @@ -0,0 +1,46 @@ +# +# 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: ax25-apps\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2004-03-22 19:32-0500\n" +"Last-Translator: Joop Stakenborg \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "Moet ik het listen programma setuid root maken?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"Het listen programma loopt alleen goed als root gebruiker. Een manier om " +"listen als root te runnen, is het suid bit te zetten. Over het algemeen is " +"dit een slecht idee omdat er betere manieren zijn, bijvoorbeeld met het sudo " +"programma. Je krijgt hier echter de mogelijkheid om toch het suid bit te " +"gebruiken." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/templates.pot +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/templates.pot @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/gl.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/gl.po @@ -0,0 +1,38 @@ +# Galician translation of ax25-apps's debconf templates +# This file is distributed under the same license as the ax25-apps package. +# Jacobo Tarrio , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: ax25-apps\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2007-02-25 15:57+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "¿Quere darlle privilexios de administrador a \"listen\"?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"O programa \"listen\" precisa de facer chamadas coma administrador. Un xeito " +"de o facer é asignarlle privilexios de administrador ao programa " +"activándolle o bit \"setuid\" e asignándoo ao usuario \"root\". Adoita ser " +"unha mala idea, xa que hai xeitos mellores de o facer, coma empregar o " +"programa \"sudo\". Nembargantes, aquí ten a posibilidade de lle dar o bit " +"\"setuid\" se quere." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/pt_BR.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/pt_BR.po @@ -0,0 +1,46 @@ +# +# 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: ax25-apps\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2004-03-22 19:32-0500\n" +"Last-Translator: Andre Luis Lopes \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "Fazer com que o listen seja setuid root ?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"O programa listen precisa fazer chamadas como o usuário root. Uma maneira de " +"fazer isso é fazer com que o programa seja setuid root. Isto é geralmente " +"uma má idéia, pois existem melhores métodos para fazer isso, como utilizar o " +"programa sudo. Porém, você tem a opção de fazê-lo setuid root aqui se você " +"assim deseja." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/vi.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/vi.po @@ -0,0 +1,38 @@ +# Vietnamese translation for ax25-apps. +# Copyright © 2010 Free Software Foundation, Inc. +# Clytie Siddall , 2005-2010. +# +msgid "" +msgstr "" +"Project-Id-Version: ax25-apps\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2010-04-26 20:51+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"Language: vi\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.8\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "Đặt listen « setuid root » ?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"Chương trình listen (lắng nghe) cần phải gọi chức năng dưới dạng người chủ " +"(root). Một phương pháp là làm cho chương trình là « setuid root ». Nói " +"chung đây là một ý kiến xấu do rủi ro bảo mật, và có phương pháp tốt hơn như " +"sử dụng chương trình « sudo ». Tuy nhiên, thiết lập này theo ý kiến của bạn." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/ru.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/ru.po @@ -0,0 +1,41 @@ +# translation of ru.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Yuri Kozlov , 2009. +msgid "" +msgstr "" +"Project-Id-Version: ru\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2009-06-13 09:35+0400\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\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 +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "Установить на listen setuid-бит?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"Для того, чтобы звонить, программе listen требуется иметь права " +"суперпользователя. Одним из способов сделать это является установка бита " +"setuid на исполняемую программу. Обычно, это не очень хороший вариант, есть " +"другие способы, например, использование программы sudo. Однако, если хотите, " +"то можете указать установку setuid-бита." --- ax25-apps-0.0.8-rc2+cvs20130510.orig/debian/po/sv.po +++ ax25-apps-0.0.8-rc2+cvs20130510/debian/po/sv.po @@ -0,0 +1,46 @@ +# +# 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: ax25-apps\n" +"Report-Msgid-Bugs-To: ax25-apps@packages.debian.org\n" +"POT-Creation-Date: 2010-04-18 19:15+0200\n" +"PO-Revision-Date: 2004-03-22 19:32-0500\n" +"Last-Translator: André Dahlqvist\n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Make listen setuid root?" +msgstr "Gör \"listen\" setuid root?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"The listen program needs to make calls as the root user. One way of doing " +"this is to make the program setuid root. This is generally a bad idea as " +"there are better ways, such as using the sudo program, to do this. However, " +"you have the option of making it setuid root here if you like." +msgstr "" +"Programmet listen måste göra anrop som root användare. Ett sätt att " +"åstakomma detta är att göra programmet setuid root. Detta är generellt en " +"dålig idé, eftersom det finns bättre sätt, såsom att använda programmet " +"sudo, för att göra detta. Du har dock möjlighet att göra programmet setuid " +"root nu om du vill."