--- abook-0.6.0~pre2.orig/debian/postinst +++ abook-0.6.0~pre2/debian/postinst @@ -0,0 +1,59 @@ +#!/bin/sh +# postinst for abook +# copyright 2003-2012 by Gerfried Fuchs +# Licenced under WTFPLv2 + +set -e + +# Source debconf library. +if [ -e /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule +fi + +action=$1 +if [ "${DEBCONF_RECONFIGURE}" = "1" ]; then + # workaround until reconfigure is really available + action=reconfigure +fi +version=$2 + +# if we got reinstalled after a remove, enable the config snippet again +if [ "$action" = 'configure' ] && [ -e /etc/Muttrc.d/abook.rc.removed ] && [ ! -e /etc/Muttrc.d/abook.rc ]; then + mv /etc/Muttrc.d/abook.rc.removed /etc/Muttrc.d/abook.rc || true +fi + +# fix for #394532 breakage +if grep "abook --mutt-query '%s'" /etc/Muttrc.d/abook.rc >/dev/null 2>/dev/null ; then + sed -i "s/abook --mutt-query '%s'/abook --mutt-query %s/" /etc/Muttrc.d/abook.rc +fi + +# only on new install, upgrade from < 0.5.6 or reconfigure +if dpkg --compare-versions "$version" lt "0.5.6" || [ "$action" = "reconfigure" ]; then + mutt=true + if [ -e /usr/share/debconf/confmodule ]; then + db_get abook/muttrc.d + mutt="$RET" + fi + + case "$mutt" in + true) + if [ ! -e /etc/Muttrc.d/abook.rc ] ; then + mkdir /etc/Muttrc.d 2> /dev/null || true + cat > /etc/Muttrc.d/abook.rc << EOF +set query_command="abook --mutt-query %s" +macro pager A |'abook --add-email'\n +EOF + fi + ;; + false) + rm /etc/Muttrc.d/abook.rc 2> /dev/null || true + rmdir /etc/Muttrc.d 2> /dev/null || true + ;; + esac +fi + + +# menu entry +if [ "$action" = 'configure' ] && [ -x /usr/bin/update-menus ]; then + update-menus +fi --- abook-0.6.0~pre2.orig/debian/rules +++ abook-0.6.0~pre2/debian/rules @@ -0,0 +1,114 @@ +#!/usr/bin/make -f +# debian/rules for abook +# copyright 2003-2012 by Gerfried Fuchs +# Licenced under WTFPLv2 + +PKG = abook +TMP = $(CURDIR)/debian/$(PKG) + +QUILT_STAMPFN = patch-stamp +include /usr/share/quilt/quilt.make + +CFLAGS = -g -Wall +INSTALL = install +INSTALL_FILE = $(INSTALL) -p -oroot -groot -m644 +INSTALL_PROGRAM = $(INSTALL) -p -oroot -groot -m755 +INSTALL_SCRIPT = $(INSTALL) -p -oroot -groot -m755 +INSTALL_DIR = $(INSTALL) -p -d -oroot -groot -m755 +ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s + STRIP = true +endif +ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + MAKEFLAGS += -j$(NUMJOBS) +endif + + + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +clean: unpatch + $(checkdir) + $(checkroot) + rm -rf build-stamp $(TMP) debian/files debian/substvars \ + config.guess config.sub + [ ! -f Makefile ] || $(MAKE) distclean + + +build: build-arch +build-arch: build-stamp +build-indep: +build-stamp: patch-stamp + $(checkdir) + cp /usr/share/misc/config.guess /usr/share/misc/config.sub . + ./configure --prefix=/usr --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info + $(MAKE) CFLAGS="$(CFLAGS)" + touch build-stamp + + +install: build + $(checkdir) + $(checkroot) + -rm -rf $(TMP) + $(INSTALL_DIR) $(TMP) + cd $(TMP) && $(INSTALL_DIR) usr/share/doc/$(PKG)/examples + $(MAKE) prefix=$(TMP)/usr install INSTALL_PROGRAM="$(INSTALL_PROGRAM)" + test "$(STRIP)" != true || strip \ + --remove-section=.comment --remove-section=.note \ + $(TMP)/usr/bin/abook + $(INSTALL_FILE) ChangeLog $(TMP)/usr/share/doc/$(PKG)/changelog + $(INSTALL_FILE) ANNOUNCE AUTHORS BUGS FAQ README THANKS TODO \ + $(TMP)/usr/share/doc/$(PKG) + $(INSTALL_FILE) sample.abookrc \ + $(TMP)/usr/share/doc/$(PKG)/examples + cd $(TMP)/usr/share && gzip -9 man/man1/abook.1 man/man5/abookrc.5 \ + doc/$(PKG)/changelog + + +# 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 + $(checkdir) + $(checkroot) + $(INSTALL_DIR) $(TMP)/DEBIAN $(TMP)/usr/share/menu + $(INSTALL_FILE) debian/menu $(TMP)/usr/share/menu/$(PKG) + $(INSTALL_FILE) debian/copyright $(TMP)/usr/share/doc/$(PKG) + $(INSTALL_FILE) debian/changelog \ + $(TMP)/usr/share/doc/$(PKG)/changelog.Debian + gzip -9 $(TMP)/usr/share/doc/$(PKG)/changelog.Debian + $(INSTALL_SCRIPT) debian/config debian/postinst debian/postrm \ + $(TMP)/DEBIAN + po2debconf debian/templates > $(TMP)/DEBIAN/templates + dpkg-shlibdeps -Tdebian/substvars -dDepends $(TMP)/usr/bin/abook + dpkg-gencontrol -ldebian/changelog -isp -Tdebian/substvars \ + -p$(PKG) -P$(TMP) + cd $(TMP) && find * -type f ! -regex '^DEBIAN/.*' -print0 | \ + xargs -r0 md5sum > DEBIAN/md5sums + dpkg --build $(TMP) .. + + +binary: binary-indep binary-arch + + +define checkdir + test -f debian/rules +endef + +define checkroot + test root = "`whoami`" +endef + +.PHONY: clean build install binary-indep binary-arch binary --- abook-0.6.0~pre2.orig/debian/templates +++ abook-0.6.0~pre2/debian/templates @@ -0,0 +1,8 @@ +Template: abook/muttrc.d +Type: boolean +Default: true +_Description: Do you want to enable abook system wide for mutt? + abook offers the possibility to be used as query backend from within + mutt. If you acknowledge this question the package will create an + /etc/Muttrc.d/abook.rc file that enables querying the abook database and + adding mail addresses to abook with pressing "A" from pager mode. --- abook-0.6.0~pre2.orig/debian/changelog +++ abook-0.6.0~pre2/debian/changelog @@ -0,0 +1,361 @@ +abook (0.6.0~pre2-3) unstable; urgency=low + + * Overlooked NMU done by Tim Retout while merging from experimental to + unstable, resulting in (repeated) FTBFS: + - debian/control: Build-Depend on libreadline6-dev instead of + libreadline5-dev. (Closes: #553712) + * Applied that again (closes: #670445) + + -- Gerfried Fuchs Thu, 26 Apr 2012 00:04:58 +0200 + +abook (0.6.0~pre2-2) unstable; urgency=low + + * Finally uploading to unstable. Making sure the changes are carried over, + especially: + - from 0.5.6-2: + - Swedish debconf translation, already mentioned in changelog but without + closes: #387518 + - Fixed quoting in mutt config snippet noticed by Georg Neis, thanks + (closes: #394532) + - from 0.5.6-3: + - Japanese debconf translation by Noritada Kobayashi (closes: #412998) + - from 0.5.6-4: + - Dutch debconf translation by Bart Cornelis (closes: #415513) + - Updated menu file to go with new menu policy. + - debian/rules: slightly cleanup. + - from 0.5.6-5: + - Add Homepage to source control stanca. + - Bump Standards-Version to 3.7.3, menu file was already updated. + - Russian debconf translation by Yuri Kozlov (closes: #451813) + - search_ctrl-d_segfault_fix included in the release already + (closes: #462145) + - from 0.5.6-6: + - Made copyright file more clear. + - Updated watch file to use special uscan hack for sourceforge. + - Updated Standards-Version to 3.8.0, added README.source file. + - New debconf translations: + - Spanish debconf translation by Carlos Eduardo Sotelo Pinto + (closes: #484848) + - Portuguese debconf translation, already mentioned in changelog but + without (closes: #489036). Actually the one mentioned was a newer + one than the one in the unstable branch. + - Fixed Catalan po file encoding. + - Use versioned Build-Depends on quilt for quilt.make usage. + - Also strip sections .comment and .note + - Add patch fix-manpage to escape hyphens where they should be minus + signs (adjusted it for the 0.6.0~pre2 release) + - from 0.5.6-7: + - Build-Depend on autotools-dev, copy config.{guess,sub} before configure + run and remove them in clean target (closes: #535739) + - Updated to Standards-Version 3.8.2: Switched from findstring to filter + and add support parallel. + suggestion from policy. + - Switched the packaging licensing to BSD style. + - New patch datafile-f-switch: Let --datafile also work through -f short + option, suggested by Joey Schulze + - Traditional Chinese debconf translation by Kanru Chen (closes: #508023) + * Relicense packaging under WTFPLv2. + * Bump Standards-Version to 3.9.3. + * New debconf translations: + - Danish by Joe Hansen (closes: #626630) + - Polish by Michał Kułach (closes: #658602) + - Italian by Francesca Ciceri (closes: #658744) + * Add Vcs-* fields to debian/control. + * Explicit call set -e in config/postrm/postinst scripts instead of on the + shebang line. + * Add recommended targets build-arch/build-indep to debian/rules. + + -- Gerfried Fuchs Tue, 24 Apr 2012 19:59:54 +0200 + +abook (0.6.0~pre2-1) experimental; urgency=low + + * New upstream release + + -- Gerfried Fuchs Thu, 7 Sep 2006 10:29:20 -0500 + +abook (0.6.0~pre1-1) experimental; urgency=low + + * Upstream pre version of 0.6.0 release. + * new debconf translations: French by Pierre Machard (closes: #384681) + + -- Gerfried Fuchs Thu, 31 Aug 2006 07:26:11 -0500 + +abook (0.5.6+cvs1-1) experimental; urgency=low + + * CVS snapshot with flexible view, which resolves: + - small number of email addresses (closes: #333450) + * new debconf translations: Portuguese by Miguel Figueiredo, Català by + Jordà Polo (closes: #381362), Swedish by Daniel Nylander + * Fixed typo in template, noticed by Pierre Machard (closes: #383473) + * contrib files got deleted from upstream, so they are removed from the + Debian package, too. + + -- Gerfried Fuchs Mon, 21 Aug 2006 07:41:58 -0500 + +abook (0.5.6-1) unstable; urgency=low + + * New upstream release. + * Updated config.{guess,sub}. + * Bumped Standards-Version to 3.7.2, no changes needed. + * Used debconf for mutt query inclusion instead of outdated upgrade note + that would only affect upgrades from oldstable (woody) (closes: #377633). + * new debconf translations: Romanian by Eddy Petrişor (closes: #380505), + Czech by Miroslav Kure, Brazilian Portuguese by Felipe Augusto van de + Wiel, Vietnamese by Clytie Siddall, Hungarian by Attila Szervñc, German by + myself. + + -- Gerfried Fuchs Wed, 02 Aug 2006 09:15:46 -0500 + +abook (0.5.5-1) unstable; urgency=low + + * New upstream release. + * New debconf translation: + - Spanish by César Gómez Martín (closes: #333758) + * Applied patch to fix some incorrect entries in the help screen. + * Updated config.sub and config.guess. + + -- Gerfried Fuchs Mon, 12 Dec 2005 12:35:38 +0100 + +abook (0.5.4-3) unstable; urgency=low + + * Added alternative for debconf-2.0 (closes: #331730) + * Removed article from synopsis. + * New debconf translation: + - Swedish by Daniel Nylander (closes: #331292) + + -- Gerfried Fuchs Mon, 10 Oct 2005 13:17:09 +0200 + +abook (0.5.4-2) unstable; urgency=low + + * The "lintian bugs R us" release: + - Moved menu file from /usr/lib/menu to /usr/share/menu. + - Removed bashism in postrm and config. + + -- Gerfried Fuchs Mon, 05 Sep 2005 12:33:49 +0200 + +abook (0.5.4-1) unstable; urgency=low + + * New upstream release (closes: #314611) + * Bumped standards version, no changes needed. + * New debconf translation: + - Vietnamese by Clytie Siddall (closes: #313019) + - Italian by Luca Bruno (closes: #316911) + * Changed Build-Depends from libreadline4-dev to + libreadline5-dev | libreadline-dev (closes: #326392) + + -- Gerfried Fuchs Mon, 05 Sep 2005 12:17:19 +0200 + +abook (0.5.3-3) unstable; urgency=high + + * New debconf translation: + - Finnish by Matti Pöllä (closes: #303820) + - Vietnamese by Clytie Siddall (closes: #307595) + + -- Gerfried Fuchs Tue, 10 May 2005 12:42:58 +0200 + +abook (0.5.3-2) unstable; urgency=low + + * Updated config.sub and config.guess (closes: #299212) + + -- Gerfried Fuchs Mon, 14 Mar 2005 14:38:39 +0100 + +abook (0.5.3-1) unstable; urgency=medium + + * New upstream release: fixes import from mutt aliases (closes: #254969) + + -- Gerfried Fuchs Mon, 11 Oct 2004 10:19:14 +0200 + +abook (0.5.2-3) unstable; urgency=medium + + * Switched to libncursesw5-dev instead to support utf8 properly + (closes: #271626) + + -- Gerfried Fuchs Fri, 17 Sep 2004 16:02:51 +0200 + +abook (0.5.2-2) unstable; urgency=low + + * Updated watch file -- hope it works longer this time. + * New debconf translations: + - Catalan by Josep Monés i Teixidor (closes: #247151) + - Czech by Ondra Kudlik (closes: #260615) + + -- Gerfried Fuchs Mon, 3 May 2004 17:26:28 +0200 + +abook (0.5.2-1) unstable; urgency=low + + * New upstream release: + - five custom fields added (closes: #158428) + - abookrc manual page update (closes: #231909) + * debian/menu: Quoted all the values + + -- Gerfried Fuchs Mon, 19 Apr 2004 20:27:48 +0200 + +abook (0.5.1-2) unstable; urgency=low + + * Added patch from Jaakko Heinonen to fix segfault in memory handling + (closes: #226581) + * Two new po-debconf translations: + - Japanese done by Hideki Yamane (closes: #227389) + - Danish done by Morten Brix Pedersen (closes: #227789) + + -- Gerfried Fuchs Mon, 26 Jan 2004 13:53:34 +0000 + +abook (0.5.1-1) unstable; urgency=low + + * New upstream release (closes: #224901) + + -- Gerfried Fuchs Thu, 25 Dec 2003 17:12:51 +0000 + +abook (0.5.0-4) unstable; urgency=low + + * Added Portuguese po-debconf translation, + done by Bruno Rodrigues (closes: #216257) + + -- Gerfried Fuchs Thu, 30 Oct 2003 11:15:32 +0000 + +abook (0.5.0-3) unstable; urgency=low + + * Added po-debconf translations: + - Dutch by Michiel Sikkes (closes: #214001) + - Russian by Ilgiz Kalmetev (closes: #214353) + Thanks to you all. + + -- Gerfried Fuchs Mon, 6 Oct 2003 08:52:34 +0000 + +abook (0.5.0-2) unstable; urgency=low + + * Added po-debconf translations: + - Polish by Bartosz Zapalowski (closes: #208953) + - Frensh by Pierre Machard (closes: #205120) + - Brazilian Portuguese by Andre Luis Lopes (closes: #205838) + * Updated to policy 3.6.1 (no changes needed). + + -- Gerfried Fuchs Mon, 22 Sep 2003 10:42:44 +0000 + +abook (0.5.0-1) unstable; urgency=low + + * New upstream release (closes: #201836) + * Updated to policy 3.6.0. + * Build-Depends on libreadline4-dev now (closes: #136230, #163268) + To get the old data simply press cursor up. + * Added debconf hint message that old addressbook must be imported and + can be deleted afterwards, location and format change. + * de-debhelper-ized the package: DEB_BUILD_OPTIONS noopt and nostrip should + be supported now, too. + * removed emacs cruft from end of this file. + * Add vim script into binary distribution, to contrib directory. + + -- Gerfried Fuchs Thu, 07 Aug 2003 23:49:52 +0200 + +abook (0.4.17-1) unstable; urgency=low + + * New maintainer. + * New upstream release (closes: #131309) which closes: #152905 + * debian/control: + -) Removed fullstop from short description. + -) Updated to policy 3.5.9 + * debian/rules: + -) moved compat level into debian/compat + -) moved example files into debian/examples + -) removed comented out dh_ lines that never will make it into the package + * debian/menu: + -) added longtitle + * added debian/watch file + + -- Gerfried Fuchs Fri, 28 Mar 2003 11:52:20 +0100 + +abook (0.4.16-1) unstable; urgency=low + + * New upstream release + * Closes: #129867, #133482 + + -- Alan Ford Sun, 17 Mar 2002 14:51:50 +0000 + +abook (0.4.15-1) unstable; urgency=low + + * New upstream release. Closes: #131309 + * Added some contrib files in /usr/share/doc/abook/ + + -- Alan Ford Sun, 4 Nov 2001 14:50:38 +0000 + +abook (0.4.14-1) unstable; urgency=low + + * New upstream release + + -- Alan Ford Sat, 29 Sep 2001 22:49:00 +0100 + +abook (0.4.13-1) unstable; urgency=low + + * New upstream release + + -- Alan Ford Wed, 20 Jun 2001 22:16:42 +0100 + +abook (0.4.12-1) unstable; urgency=low + + * New upstream release + + -- Alan Ford Tue, 20 Mar 2001 21:51:22 +0000 + +abook (0.4.11-1) unstable; urgency=low + + * New upstream release + + -- Alan Ford Tue, 2 Jan 2001 17:08:46 +0000 + +abook (0.4.10-1) unstable; urgency=low + + * New upstream release + * Fixes segfault bug. Closes: #70083 + + -- Alan Ford Sat, 16 Sep 2000 09:52:19 +0100 + +abook (0.4.9-1) unstable; urgency=low + + * New upstream release + + -- Alan Ford Thu, 27 Jul 2000 23:00:07 +0100 + +abook (0.4.8-1) unstable; urgency=low + + * New upstream release + + -- Alan Ford Wed, 21 Jun 2000 16:33:48 +0100 + +abook (0.4.7-1) unstable; urgency=low + + * New upstream release + + -- Alan Ford Sun, 28 May 2000 16:10:59 +0100 + +abook (0.4.6-1) unstable; urgency=low + + * New upstream release + * Makes fields less US-specific. Closes: #62797 + + -- Alan Ford Thu, 11 May 2000 20:03:40 +0100 + +abook (0.4.5-1) unstable; urgency=low + + * New upstream release + * Removed generic INSTALL from doc directory. Closes: #62789 + + -- Alan Ford Fri, 21 Apr 2000 11:50:59 +0100 + +abook (0.4.4-1) unstable; urgency=low + + * New upstream release + * Fixes segfault bug. Closes: #62022 + + -- Alan Ford Sun, 9 Apr 2000 10:39:06 +0100 + +abook (0.4.3-1) unstable; urgency=low + + * New upstream release + + -- Alan Ford Sun, 2 Apr 2000 12:06:23 +0100 + +abook (0.4.2-1) unstable; urgency=low + + * Initial Release. + + -- Alan Ford Sat, 18 Mar 2000 12:38:34 +0000 --- abook-0.6.0~pre2.orig/debian/watch +++ abook-0.6.0~pre2/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/abook/abook-([\d.]+)\.tar\.gz --- abook-0.6.0~pre2.orig/debian/menu +++ abook-0.6.0~pre2/debian/menu @@ -0,0 +1,2 @@ +?package(abook):needs="text" section="Applications/Data Management"\ + command="/usr/bin/abook" title="ABook" longtitle="Address Book" --- abook-0.6.0~pre2.orig/debian/copyright +++ abook-0.6.0~pre2/debian/copyright @@ -0,0 +1,46 @@ +This package was first debianized by Alan Ford +on Sat, 18 Mar 2000 12:38:34 +0000. +It is now maintained by Gerfried Fuchs . + +It was downloaded from +http://abook.sourceforge.net/ + +Upstream Author: Jaakko Heinonen + +Copyright: + Copyright (c) 2005 Jaakko Heinonen + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + MA 02110-1301 USA. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License version 2 can be found in `/usr/share/common-licenses/GPL-2', +later versions can be found in the same directory. + +The debianization of the package is licensed under the WTFPLv2: + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2003-2012 Gerfried Fuchs + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. --- abook-0.6.0~pre2.orig/debian/postrm +++ abook-0.6.0~pre2/debian/postrm @@ -0,0 +1,31 @@ +#!/bin/sh +# postrm for abook +# copyright 2003-2012 by Gerfried Fuchs +# Licenced under WTFPLv2 + +set -e + +if [ -x "`which update-menus 2>/dev/null`" ]; then + update-menus +fi + +action=$1 + +case "$action" in + remove) + if [ ! -e /etc/Muttrc.d/abook.rc.removed ]; then + # only disable the config snippet + mv /etc/Muttrc.d/abook.rc /etc/Muttrc.d/abook.rc.removed || true + fi + ;; + purge) + rm /etc/Muttrc.d/abook.rc.removed 2> /dev/null || true + rm /etc/Muttrc.d/abook.rc 2> /dev/null || true + rmdir /etc/Muttrc.d 2> /dev/null || true + # remove debconf data on purge + if [ -e /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule + db_purge + fi + ;; +esac --- abook-0.6.0~pre2.orig/debian/control +++ abook-0.6.0~pre2/debian/control @@ -0,0 +1,19 @@ +Source: abook +Section: mail +Priority: optional +Maintainer: Gerfried Fuchs +Standards-Version: 3.9.3 +Build-Depends: libncursesw5-dev, libreadline6-dev | libreadline-dev, + po-debconf, quilt (>= 0.40), autotools-dev +Homepage: http://abook.sourceforge.net/ +Vcs-Browser: http://git.deb.at/w/pkg/abook.git +Vcs-Git: git://git.deb.at/g/pkg/abook.git + +Package: abook +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, debconf (>= 0.5) | debconf-2.0 +Enhances: mutt +Description: text-based ncurses address book application + abook is a text-based ncurses address book application. It provides many + different fields of user info. abook is designed for use with mutt, but + can be used independently. --- abook-0.6.0~pre2.orig/debian/README.source +++ abook-0.6.0~pre2/debian/README.source @@ -0,0 +1,2 @@ +This package uses quilt for its patch management, see +/usr/share/doc/quilt/README.source if you are unfamiliar with it. --- abook-0.6.0~pre2.orig/debian/config +++ abook-0.6.0~pre2/debian/config @@ -0,0 +1,20 @@ +#!/bin/sh +# config script for abook +# copyright 2012 by Gerfried Fuchs +# Licenced under WTFPLv2 + +set -e + +action=$1 +version=$2 + +# Source debconf library. +. /usr/share/debconf/confmodule + +db_unregister abook/files_moved || true + +# create the /etc/Muttrc.d/ snippet? +db_input medium abook/muttrc.d || true +db_go + +exit 0 --- abook-0.6.0~pre2.orig/debian/patches/03_datafile-f-switch +++ abook-0.6.0~pre2/debian/patches/03_datafile-f-switch @@ -0,0 +1,16 @@ +Author: Gerfried Fuchs vim:ft=diff: +Description: Let --datafile also work through -f short option + +Index: b/abook.c +=================================================================== +--- a/abook.c ++++ b/abook.c +@@ -331,7 +331,7 @@ parse_command_line(int argc, char **argv + { 0, 0, 0, 0 } + }; + +- c = getopt_long(argc, argv, "hC:", ++ c = getopt_long(argc, argv, "hC:f:", + long_options, &option_index); + + if(c == -1) --- abook-0.6.0~pre2.orig/debian/patches/02_fix-manpage +++ abook-0.6.0~pre2/debian/patches/02_fix-manpage @@ -0,0 +1,35 @@ +Author: Gerfried Fuchs vim:ft=diff: +Description: Escape hyphens in manpage where they mean the minus sign + +Index: b/abook.1 +=================================================================== +--- a/abook.1 ++++ b/abook.1 +@@ -82,11 +82,11 @@ The following \fIoutputformats\fR are su + .br + - \fBbsdcal\fP BSD calendar + .TP +-\fB\-\-add-email\fP ++\fB\-\-add\-email\fP + Read an e-mail message from stdin and add the sender to the addressbook. + .TP +-\fB\-\-add-email-quiet\fP +-Same as --add-email but doesn't confirm adding. ++\fB\-\-add\-email\-quiet\fP ++Same as \-\-add\-email but doesn't confirm adding. + .TP + \fB\-\-formats\fP + List available formats. +Index: b/abookrc.5 +=================================================================== +--- a/abookrc.5 ++++ b/abookrc.5 +@@ -90,7 +90,7 @@ Defines the way entries are displayed in + \fI{name:22}\fP + displays the \fIname\fP field with a maximal width of 22 characters. + .TP +-\fI{phone:-13|workphone|mobile}\fP ++\fI{phone:\-13|workphone|mobile}\fP + displays (right aligned within a width of 13 characters), either the \fIphone\fP, \fIworkphone\fP or \fImobile\fP field, whichever being the first to be non-empty. + .RE + .IP --- abook-0.6.0~pre2.orig/debian/patches/series +++ abook-0.6.0~pre2/debian/patches/series @@ -0,0 +1,2 @@ +02_fix-manpage +03_datafile-f-switch --- abook-0.6.0~pre2.orig/debian/po/ja.po +++ abook-0.6.0~pre2/debian/po/ja.po @@ -0,0 +1,36 @@ +# Japanese debconf templates translation for abook. +# Copyright (C) 2007 Noritada Kobayashi +# This file is distributed under the same license as the abook package. +# +msgid "" +msgstr "" +"Project-Id-Version: abook (debconf) 0.5.6-2\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2007-03-01 16:03+0900\n" +"Last-Translator: Noritada Kobayashi \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 "Do you want to enable abook system wide for mutt?" +msgstr "abook システムを mutt でも使用できるようにしますか?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"abook は mutt 内部でクエリのバックエンドとして使用できます。この質問に Yes と" +"答えると、パッケージによって /etc/Muttrc.d/abook.rc ファイルが作成され、ユー" +"ザは abook データベースに対してクエリを実行したり、ページャモードで \"A\" と" +"入力して abook にメールアドレスを追加したりできるようになります。" --- abook-0.6.0~pre2.orig/debian/po/pt.po +++ abook-0.6.0~pre2/debian/po/pt.po @@ -0,0 +1,37 @@ +# Portuguese translation for abook (debconf) +# This file is distributed under the same license as the abook package. +# Miguel Figueiredo , 2006-2008. +# +msgid "" +msgstr "" +"Project-Id-Version: abook\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2008-07-02 23:05+0100\n" +"Last-Translator: Miguel Figueiredo \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 "Do you want to enable abook system wide for mutt?" +msgstr "Deseja utilizar o abook em todo o sistema para o mutt?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"O abook oferece a possibilidade de ser utilizado como backend de consultas a " +"partir do mutt. Se responder afirmativamente a esta questão o pacote irá " +"criar um ficheiro /etc/Muttrc.d/abook.rc que permite fazer consultas à base " +"de dados do abook e adicionar endereços de mail ao abook ao premir \"A\" no " +"modo pager." --- abook-0.6.0~pre2.orig/debian/po/nl.po +++ abook-0.6.0~pre2/debian/po/nl.po @@ -0,0 +1,39 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: abook\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2007-03-09 18:35+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want to enable abook system wide for mutt?" +msgstr "Wilt u abook voor mutt systeemwijd activeren?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"Mutt kan abook als een 'bevraag-backend' gebruiken. Als u wilt dat dit " +"pakket een '/etc/Muttrc.d/abook.rc '-bestand aanmaakt dient u hier positief " +"te antwoorden. Het aanmaken van dit bestand activeert het bevragen van de " +"abook-database, en het toevoegen van e-mailadressen aan de abook-databse " +"(door 'A' te drukken in 'pager'-modus)." --- abook-0.6.0~pre2.orig/debian/po/fr.po +++ abook-0.6.0~pre2/debian/po/fr.po @@ -0,0 +1,37 @@ +# abook debconf translation +# This file is distributed under the same license as the abook package. +# Pierre Machard 2003-2006 +# +msgid "" +msgstr "" +"Project-Id-Version: abook\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2006-08-31 07:24-0500\n" +"Last-Translator: Pierre Machard \n" +"Language-Team: Debian l10n French \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want to enable abook system wide for mutt?" +msgstr "Faut-il activer abook pour l'ensemble des utilisateurs de mutt?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"Abook peut tre employ comme agent de recherche depuis mutt. Si vous " +"choisissez cette option, le paquet crera un fichier /etc/Muttrc.d/abook.rc " +"qui activera les consultations de la base de donnes et compltera l'adresse " +"lectronique dans abook en pressant la touche A dans le mode pagination " +"(pager mode)." --- abook-0.6.0~pre2.orig/debian/po/ca.po +++ abook-0.6.0~pre2/debian/po/ca.po @@ -0,0 +1,39 @@ +# +# Catalan translation for abook package. +# Copyright (C) 2006 Gerfried Fuchs. +# This file is distributed under the same license as the abook package. +# +# Jordà Polo , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: 2.1.1\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2006-08-18 10:42-0500\n" +"Last-Translator: Jordà Polo \n" +"Language-Team: Català \n" +"Language: \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 "Do you want to enable abook system wide for mutt?" +msgstr "Voleu habilitar abook per a mutt a tot el sistema?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"abook ofereix la possibilitat de ser utilitzat des de mutt a l'hora de " +"realitzar consultes. Si accepteu, el paquet crearà un fitxer /etc/Muttrc.d/" +"abook.rc que permetrà fer consultes sobre la base de dades de abook i afegir " +"noves adreces de correu prement \"A\" des del mode paginador." --- abook-0.6.0~pre2.orig/debian/po/de.po +++ abook-0.6.0~pre2/debian/po/de.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: abook 0.5.0\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2006-08-18 10:42-0500\n" +"Last-Translator: Gerfried Fuchs \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want to enable abook system wide for mutt?" +msgstr "Wollen Sie abook Systemweit in mutt aktivieren?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"abook bietet die Mglichkeit, als externe Adressenabfrage in mutt verwendet " +"zu werden. Falls Sie dieser Frage zustimmen, wird das Paket eine /etc/Muttrc." +"d/abook.rc-Datei erstellen, die die Abfrage der abook-Datenbank und das " +"Hinzufgen von Adressen in abook durch Drcken von A im Pager-Modus " +"aktiviert." --- abook-0.6.0~pre2.orig/debian/po/ro.po +++ abook-0.6.0~pre2/debian/po/ro.po @@ -0,0 +1,38 @@ +# Romanian translation +# This file is distributed under the same license as the abook package. +# +# Eddy Petrisor , 2006. +msgid "" +msgstr "" +"Project-Id-Version: abook\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2006-08-18 10:42-0500\n" +"Last-Translator: Eddy Petrişor \n" +"Language-Team: Romanian \n" +"Language: ro\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 +#: ../templates:1001 +msgid "Do you want to enable abook system wide for mutt?" +msgstr "Doriţi să activaţi abook pentru mutt pe întregul sistem?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"abook oferă posibilitatea să fie folosit ca suport pentru interogări din " +"mutt. Dacă răspundeţi afirmativ la această întrebare, pachetul va crea un " +"fişier /etc/Muttrc.d/abook.rc care activează interogările asupra bazei de " +"date abook şi care adaugă adresele de poştă electronică în abook la apăsarea " +"tastei „A” din modul de paginaţie." --- abook-0.6.0~pre2.orig/debian/po/ru.po +++ abook-0.6.0~pre2/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 , 2007. +msgid "" +msgstr "" +"Project-Id-Version: 0.5.6-4\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2007-11-18 21:39+0300\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 "Do you want to enable abook system wide for mutt?" +msgstr "Включить общесистемное использование abook в mutt?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"abook можно использовать как сервер запросов из mutt. Если вы ответите " +"утвердительно, то будет создан файл /etc/Muttrc.d/abook.rc, настройки " +"которого активируют возможность запросов к базе данных abook и настраивают " +"добавление почтовых адресов в abook по нажатию клавиши \"A\" из режима " +"просмотра письма." --- abook-0.6.0~pre2.orig/debian/po/sv.po +++ abook-0.6.0~pre2/debian/po/sv.po @@ -0,0 +1,37 @@ +# Swedish translation for abook (debconf). +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the abook package. +# Daniel Nylander , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: abook\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2006-08-18 10:42-0500\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want to enable abook system wide for mutt?" +msgstr "Vill du aktivera abook systembrett fr mutt?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"abook erbjuder mjligheten att anvndas som baknda fr frgor i mutt. Om du " +"bekrftar denna frga kommer paketet att skapa en fil kallad /etc/Muttrc.d/" +"abook.rc som aktiverar frgor mot abooks databas och lgger till e-" +"postadresser till abook nr du trycker \"A\" frn visningslget." --- abook-0.6.0~pre2.orig/debian/po/cs.po +++ abook-0.6.0~pre2/debian/po/cs.po @@ -0,0 +1,37 @@ +# Czech translation of abook debconf templates. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the abook package. +# Miroslav Kure , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: abook\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2006-08-18 10:42-0500\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 "Do you want to enable abook system wide for mutt?" +msgstr "Chcete celosystémově povolit v muttu podporu abooku?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"abook je možné používat rovnou z muttu jako úložiště kontaktů. Odpovíte-li " +"kladně, balík vytvoří soubor /etc/Muttrc.d/abook.rc, ve kterém se povolí " +"dotazování do databáze abooku a také možnost přidávání nových adres klávesou " +"\"A\" z prohlížecího režimu." --- abook-0.6.0~pre2.orig/debian/po/it.po +++ abook-0.6.0~pre2/debian/po/it.po @@ -0,0 +1,37 @@ +# po-debconf translation for abook. +# Copyright (C) 2006 Gerfried Fuchs +# This file is distributed under the same license as the abook package. +# Francesca Ciceri , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: abook\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2012-02-05 19:08+0100\n" +"Last-Translator: Francesca Ciceri \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 "Do you want to enable abook system wide for mutt?" +msgstr "Si desidera abilitare abook per mutt globalmente?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"abook offre la possibilità di essere usato come backend per le query in " +"mutt. Se si acconsente, il pacchetto creerà un file /etc/Muttrc.d/abook.rc " +"che abiliti l'interrogazione del database di abook e l'aggiunta di indirizzi " +"email ad abook premendo il tasto \"A\" dal paginatore." --- abook-0.6.0~pre2.orig/debian/po/vi.po +++ abook-0.6.0~pre2/debian/po/vi.po @@ -0,0 +1,38 @@ +# Vietnamese translation for abook (debconf). +# Copyright © 2006 Free Software Foundation, Inc. +# Clytie Siddall , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: abook\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2006-08-18 10:42-0500\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.6b36\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want to enable abook system wide for mutt?" +msgstr "Bạn có muốn bật chạy abook cho mutt trên toàn bộ hệ thống không?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"Trình abook cung cấp khả năng chạy nó như là hậu phương truy vấn từ bên " +"trong « mutt ». Nếu bạn đồng ý, gói này sẽ tạo tập tin tài nguyên sẽ cho bạn có khả năng truy vấn co sở dữ liệu abook, cũng " +"thêm địa chỉ thư vào abook bằng cách bấm « A » trong chế độ máy nhắn tin." --- abook-0.6.0~pre2.orig/debian/po/es.po +++ abook-0.6.0~pre2/debian/po/es.po @@ -0,0 +1,62 @@ +# abook translation to spanish +# Copyright (C) 2008 Software in the Public Interest, SPI Inc. +# This file is distributed under the same license as the abook package. +# +# Changes +# - Initial translation +# Carlos Eduardo Sotelo Pinto , 2008 +# +# Traductores, si no estan familiarizados con 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' +# +# - 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 debconof +# /usr/share/doc/po-debconf/README-trans +# o +# http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Si tiene dudas o consultas sobre esta traducción consulte con el último +# traductor (campo Last-Translator) y ponga en copia a la lista de +# traducción de Debian al español () +# +# +msgid "" +msgstr "" +"Project-Id-Version: abook 0.5.6-5\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2008-06-02 15:27-0500\n" +"Last-Translator: Carlos Eduardo Sotelo Pinto \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 "Do you want to enable abook system wide for mutt?" +msgstr "¿Desea habilitar la extensión de abook para mutt?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"abook brinda la posibilidad de utilizarse como origen de consultas desde " +"mutt. Si acepta esta pregunta el paquete creará un fichero «/etc/Muttrc.d/" +"abook.rc» que habilita las consultas a la base de datos de abook y agrega la " +"dirección de correo a abook presionando \"A\" desde el modo paginador" --- abook-0.6.0~pre2.orig/debian/po/da.po +++ abook-0.6.0~pre2/debian/po/da.po @@ -0,0 +1,38 @@ +# Danish translation abook. +# Copyright (C) 2011 Gerfried Fuchs & nedenstående oversættere. +# This file is distributed under the same license as the abook package. +# Joe Hansen (joedalton2@yahoo.dk), 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: abook\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2011-05-13 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 "Do you want to enable abook system wide for mutt?" +msgstr "Ønsker du at aktivere abook på hele systemet for mutt?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"abook tilbyder muligheden for at blive brugt som forespørgelsesmotor inden " +"fra mutt. Hvis du accepterer dette spørgsmål, vil pakken oprette en /etc/" +"Muttrc.d/abook-rc-fil, som aktiverer forespørgsler til abooks database og " +"tilføjelse af postadresser til abook med et tryk på »A« fra " +"tekstvisertilstanden." --- abook-0.6.0~pre2.orig/debian/po/templates.pot +++ abook-0.6.0~pre2/debian/po/templates.pot @@ -0,0 +1,33 @@ +# po-debconf translation for abook. +# Copyright (C) 2006 Gerfried Fuchs +# This file is distributed under the same license as the abook package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: abook VERSION\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\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 "Do you want to enable abook system wide for mutt?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" --- abook-0.6.0~pre2.orig/debian/po/zh_TW.po +++ abook-0.6.0~pre2/debian/po/zh_TW.po @@ -0,0 +1,37 @@ +# po-debconf translation for abook. +# Copyright (C) 2006 Gerfried Fuchs +# This file is distributed under the same license as the abook package. +# Kanru Chen , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: abook VERSION\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2008-12-07 08:42+0800\n" +"Last-Translator: Kanru Chen \n" +"Language-Team: Debian-user in Chinese [Big5] \n" +"Language: \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 "Do you want to enable abook system wide for mutt?" +msgstr "您想要在 mutt 的全域設定啟用 abook 嗎?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"abook 可以當作 mutt 的查詢後端。如果您啟用這個選項的話,則會產生 /etc/Muttrc." +"d/abook.rc 檔案設定查詢電子郵件地址時使用 abook 資料庫,並且在輸入按鍵 \"A\" " +"時把郵件地址加入 abook。" --- abook-0.6.0~pre2.orig/debian/po/hu.po +++ abook-0.6.0~pre2/debian/po/hu.po @@ -0,0 +1,35 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2006-08-18 10:42-0500\n" +"Last-Translator: SZERVÑC Attila \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Language: Hungarian\n" +"X-Poedit-Country: HUNGARY\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you want to enable abook system wide for mutt?" +msgstr "Engedélyezed az abook rendszer-szintű elérését a mutt számára?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"Az abook lehetővé teszi, hogy a mutt lekérdező motornak használja. Ha " +"jóváhagyod e kérdést, a csomag létrehoz egy /etc/Muttrc.d/abook.rc fájlt, " +"mely lehetővé teszi az abook adatbázis lekérdezését és email-címek " +"hozzáadását az \"A\" gomb leütésével a lapozó módban." --- abook-0.6.0~pre2.orig/debian/po/pl.po +++ abook-0.6.0~pre2/debian/po/pl.po @@ -0,0 +1,40 @@ +# po-debconf translation for abook. +# Copyright (C) 2006 Gerfried Fuchs +# This file is distributed under the same license as the abook package. +# +# Michał Kułach , 2012. +msgid "" +msgstr "" +"Project-Id-Version: abook VERSION\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2012-02-04 11: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 "Do you want to enable abook system wide for mutt?" +msgstr "Czy pozwolić na współpracę abook z mutt na poziomie systemu?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"Program abook może być używany jako backend z poziomu mutta. Jeśli zostanie " +"wybrana odpowiedź \"tak\", pakiet utworzy plik /etc/Muttrc.d/abook.rc, który " +"umożliwi odpytywanie bazy danych abook i dodawanie adresów poczty " +"elektronicznej do abook przez wciśnięcie \"A\" z trybu pagera." --- abook-0.6.0~pre2.orig/debian/po/pt_BR.po +++ abook-0.6.0~pre2/debian/po/pt_BR.po @@ -0,0 +1,38 @@ +# abook Brazilian Portuguese translation +# Copyright (C) 2006 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the abook package. +# Felipe Augusto van de Wiel (faw) , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: abook\n" +"Report-Msgid-Bugs-To: abook@packages.debian.org\n" +"POT-Creation-Date: 2006-08-18 10:38-0500\n" +"PO-Revision-Date: 2006-08-18 10:42-0500\n" +"Last-Translator: Felipe Augusto van de Wiel (faw) \n" +"Language-Team: l10n portuguese \n" +"Language: \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 +#: ../templates:1001 +msgid "Do you want to enable abook system wide for mutt?" +msgstr "Você gostaria de ativar o abook para o mutt em todo o sistema?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"abook offers the possibility to be used as query backend from within mutt. " +"If you acknowledge this question the package will create an /etc/Muttrc.d/" +"abook.rc file that enables querying the abook database and adding mail " +"addresses to abook with pressing \"A\" from pager mode." +msgstr "" +"abook oferece a possibilidade de ser usado como catálogo de consulta a " +"partir do mutt. Se você aceitar esta opção, o pacote criará um arquivo /etc/" +"Muttrc.d/abook.rc que ativará a consulta à base de dados abook e permitirá a " +"adição de endereços de e-mail ao abook pressionando \"A\" no modo \"pager\"." --- abook-0.6.0~pre2.orig/debian/po/POTFILES.in +++ abook-0.6.0~pre2/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates