--- mpdscribble-0.22+git20120104.9828c71.orig/debian/changelog +++ mpdscribble-0.22+git20120104.9828c71/debian/changelog @@ -0,0 +1,5 @@ +mpdscribble (0.22+git20120104.9828c71-0ubuntu1~ripps1~maverick) maverick; urgency=low + + * Daily Release Build + + -- Taylor LeMasurier-Wren Thu, 05 Jan 2012 03:22:13 -0600 --- mpdscribble-0.22+git20120104.9828c71.orig/debian/watch +++ mpdscribble-0.22+git20120104.9828c71/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/musicpd/mpdscribble-([0-9.]*).tar.gz --- mpdscribble-0.22+git20120104.9828c71.orig/debian/mpdscribble.examples +++ mpdscribble-0.22+git20120104.9828c71/debian/mpdscribble.examples @@ -0,0 +1 @@ +doc/mpdscribble.conf --- mpdscribble-0.22+git20120104.9828c71.orig/debian/README.source +++ mpdscribble-0.22+git20120104.9828c71/debian/README.source @@ -0,0 +1,10 @@ +The used patch system is dpatch. + +To patch the source: + * debian/rules patch +To add a new patch: + * put it under debian/patches + * add it to debian/patches/00list + + +See /usr/share/doc/dpatch/README.source.gz for more information. --- mpdscribble-0.22+git20120104.9828c71.orig/debian/mpdscribble.config +++ mpdscribble-0.22+git20120104.9828c71/debian/mpdscribble.config @@ -0,0 +1,30 @@ +#!/bin/sh + +set -e + +# Source debconf library. +. /usr/share/debconf/confmodule + +MPD_SYSTEMWIDE=NOTSET +if [ -f /etc/default/mpdscribble ] ; then + . /etc/default/mpdscribble +fi + +if [ ! "x$MPD_SYSTEMWIDE" = "xNOTSET" ] ; then + if [ ! "x$MPD_SYSTEMWIDE" = x1 ]; then + db_set mpdscribble/systemwide true + else + db_set mpdscribble/systemwide false + fi +fi + +db_input medium mpdscribble/systemwide || true +db_go + +db_get mpdscribble/systemwide + +if [ "$RET" = "true" ] ; then + db_input medium mpdscribble/user || true + db_input medium mpdscribble/password || true + db_go +fi --- mpdscribble-0.22+git20120104.9828c71.orig/debian/mpdscribble.templates +++ mpdscribble-0.22+git20120104.9828c71/debian/mpdscribble.templates @@ -0,0 +1,17 @@ +Template: mpdscribble/systemwide +Type: boolean +Default: false +_Description: Install system mpdscribble service? + You can install mpdscribble as a system daemon. The mpdscribble service will be started on boot. + Note that is not necessary to run mpd as a system service as it runs fine + when started manually using a regular user account. + +Template: mpdscribble/user +Type: string +_Description: Last.fm username: + Enter username you use on Last.fm. + +Template: mpdscribble/password +Type: password +_Description: Last.fm password: + Enter password you use on Last.fm. --- mpdscribble-0.22+git20120104.9828c71.orig/debian/rules +++ mpdscribble-0.22+git20120104.9828c71/debian/rules @@ -0,0 +1,47 @@ +#!/usr/bin/make -f +DEBIAN_NAME := $(shell dpkg-parsechangelog | sed -n 's/^Source: *\(.*\)$$/\1/ p') +DEBIAN_VERSION := $(shell dpkg-parsechangelog | sed -n 's/^Version: *\(.*\)$$/\1/ p') +DEBIAN_UPSTREAM_VERSION := $(shell echo $(DEBIAN_VERSION) | sed 's/^\(.*\)-[^-]*$$/\1/') +DEBIAN_REVISION := $(shell echo $(DEBIAN_VERSION) | sed 's/^.*r\([^-]*\)-.*/\1/') + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk + +DEB_FIXPERMS_EXCLUDE:=var/* +DEB_INSTALL_CHANGELOGS_ALL:=NEWS +DEB_DH_INSTALLINIT_ARGS:=-n -- start 31 2 3 4 5 . stop 14 0 1 6 . +DEB_DH_STRIP_ARGS := --dbg-package=mpdscribble-dbg + +makebuilddir/mpdscribble:: + NOCONFIGURE=true ./autogen.sh + + +#RELEASE:=0.17 +DEB_ORIG_URI:=git://git.musicpd.org/master/mpdscribble.git +TMP_DIR := tmp-$(shell echo $$$$) + +get-orig-source: + rm -rf $(TMP_DIR) + mkdir $(TMP_DIR) + if [ ! -d $(LOCAL_BRANCH) ]; then git clone $(DEB_ORIG_URI) $(LOCAL_BRANCH); fi + cd $(LOCAL_BRANCH) && git pull + cp -la $(LOCAL_BRANCH) $(TMP_DIR)/$(DEBIAN_NAME) +ifneq (,$(DEBIAN_TAG)) + cd $(TMP_DIR)/$(DEBIAN_NAME) && \ + git branch $(DEBIAN_TAG) $(DEBIAN_TAG) && \ + git checkout $(DEBIAN_TAG) +endif + @cd $(TMP_DIR)/$(DEBIAN_NAME) ; \ + VERS=`git for-each-ref --format="%(taggerdate:raw)%(committerdate:raw)%(refname:short)" refs/tags | sort -n | tail -n1 | sed 's/^.*release-//;s/_/~/'` ; \ + REV=`git log --pretty=format:%cd.%h --date=short -1 | tr -d -` ; \ + VERSION=$$VERS+git$$REV ; \ + #VERSION=$(RELEASE)+git$$REV ; \ + echo VERSION=$$VERSION ; \ + cd .. ; \ + mv $(DEBIAN_NAME) $(DEBIAN_NAME)-$$VERSION ; \ + rm -f ../$(DEBIAN_NAME)_$$VERSION.orig.tar.gz ; \ + tar zcf ../$(DEBIAN_NAME)_$$VERSION.orig.tar.gz --exclude=.git $(DEBIAN_NAME)-$$VERSION ; \ + cd .. ; \ + rm -rf $(TMP_DIR) ; \ + echo "# Done (created $(DEBIAN_NAME)_$$VERSION.orig.tar.gz)" ; \ + ls -l $(DEBIAN_NAME)_$$VERSION.orig.tar.gz --- mpdscribble-0.22+git20120104.9828c71.orig/debian/mpdscribble.docs +++ mpdscribble-0.22+git20120104.9828c71/debian/mpdscribble.docs @@ -0,0 +1,2 @@ +AUTHORS +README --- mpdscribble-0.22+git20120104.9828c71.orig/debian/mpdscribble-default +++ mpdscribble-0.22+git20120104.9828c71/debian/mpdscribble-default @@ -0,0 +1,17 @@ +# Defaults for mpdscribble initscript +# sourced by /etc/init.d/mpdscribble +# installed at /etc/default/mpdscribble by the maintainer scripts + +# +# This is a POSIX shell fragment +# + +# Whether to enable system wide daemon +MPD_SYSTEMWIDE=0 + +# Additional options that are passed to the Daemon. +DAEMON_OPTS="" + +# user/group to use (mpdscribble:mpdscribble are default) +#USER=mpdscribble +#GROUP=mpdscribble --- mpdscribble-0.22+git20120104.9828c71.orig/debian/mpdscribble.prerm +++ mpdscribble-0.22+git20120104.9828c71/debian/mpdscribble.prerm @@ -0,0 +1,26 @@ +#!/bin/sh +set -e + +# Source debconf library. +. /usr/share/debconf/confmodule + +# Do we have system wide installation? +db_get mpdscribble/systemwide +if [ "$RET" = "true" ]; then + if [ -x "/etc/init.d/mpdscribble" ]; then + if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then + invoke-rc.d mpdscribble stop + else + /etc/init.d/mpdscribble stop + fi + fi +fi + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- mpdscribble-0.22+git20120104.9828c71.orig/debian/mpdscribble.postinst +++ mpdscribble-0.22+git20120104.9828c71/debian/mpdscribble.postinst @@ -0,0 +1,77 @@ +#! /bin/sh +set -e + +case "$1" in + configure) + # add group + if ! getent group mpdscribble >/dev/null ; then + addgroup --quiet --system mpdscribble + fi + + # add user + if ! getent passwd mpdscribble >/dev/null ; then + adduser --quiet --ingroup mpdscribble --no-create-home --system --home /var/cache/mpdscribble mpdscribble + fi + + # Source debconf library. + . /usr/share/debconf/confmodule + + tempfile=`mktemp -t mpdscribble.default.XXXXXXXXXX` + db_get mpdscribble/systemwide + SYSTEMWIDE="$RET" + if [ "$SYSTEMWIDE" != "true" ]; then + sed 's/^MPD_SYSTEMWIDE=.*/MPD_SYSTEMWIDE=0/' < /usr/share/mpdscribble/mpdscribble-default > $tempfile + else + sed 's/^MPD_SYSTEMWIDE=.*/MPD_SYSTEMWIDE=1/' < /usr/share/mpdscribble/mpdscribble-default > $tempfile + fi + ucf --debconf-ok --three-way $tempfile /etc/default/mpdscribble + ucfr mpdscribble /etc/default/mpdscribble + rm -f $tempfile + + tempfile=`mktemp -t mpdscribble.conf.XXXXXXXXXX` + cat /usr/share/doc/mpdscribble/examples/mpdscribble.conf > $tempfile + if [ "$SYSTEMWIDE" = "true" ]; then + db_get mpdscribble/user + sed -i "s/^username[ \t]*=.*/username = $RET/" $tempfile + db_get mpdscribble/password + sed -i "s/^password[ \t]*=.*/password = `echo -n $RET | md5sum | awk '{print $1}'`/" $tempfile + fi + db_go + ucf --debconf-ok --three-way $tempfile /etc/mpdscribble.conf + ucfr mpdscribble /etc/mpdscribble.conf + rm -f $tempfile + + # update permissions + chown -R mpdscribble:mpdscribble /var/cache/mpdscribble + chgrp mpdscribble /etc/mpdscribble.conf + chmod 0640 /etc/mpdscribble.conf + chgrp mpdscribble /etc/default/mpdscribble + chmod 0644 /etc/default/mpdscribble + + if ! dpkg-statoverride --list --quiet /var/cache/mpdscribble >/dev/null ; then + dpkg-statoverride --force --quiet --update --add mpdscribble mpdscribble 0700 /var/cache/mpdscribble + fi + + if ! dpkg-statoverride --list --quiet /etc/mpdscribble.conf >/dev/null ; then + dpkg-statoverride --force --quiet --update --add root mpdscribble 0640 /etc/mpdscribble.conf + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- mpdscribble-0.22+git20120104.9828c71.orig/debian/control +++ mpdscribble-0.22+git20120104.9828c71/debian/control @@ -0,0 +1,50 @@ +Source: mpdscribble +Section: sound +Priority: optional +Maintainer: Michal Čihař +Build-Depends: debhelper (>= 7.0.50), + libmpdclient-dev (>= 2.6+git20120104.940b1d0-0ubuntu1~ripps1~maverick), + cdbs, + autotools-dev, + automake, + libsoup2.4-dev, + po-debconf +Standards-Version: 3.8.3 +Vcs-Svn: svn://svn.cihar.com/debian-mpdscribble/trunk +Vcs-Browser: http://viewsvn.cihar.com/debian-mpdscribble/trunk +Homepage: http://mpd.wikia.com/wiki/Client:Mpdscribble + +Package: mpdscribble +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, + ucf (>= 0.28), + adduser, + lsb-base +Suggests: mpd +Provides: mpd-client +Description: Last.fm reporting client for mpd + Music Player Daemon client which collects information about played tracks and + submits them to the Last.fm social music network (formerly known as + Audioscrobbler). If submission servers are not reachable, submissions are + enqueued and stored on disk cache. + . + The client can be also configured to use other scrobbling services like + Libre.fm. + . + This package contains daemon which can be optionally installed system wide. + +Package: mpdscribble-dbg +Architecture: any +Priority: extra +Section: debug +Depends: mpdscribble (= ${binary:Version}), ${misc:Depends} +Description: Last.fm reporting client for mpd - debugger symbols + Music Player Daemon client which collects information about played tracks and + submits them to the Last.fm social music network (formerly known as + Audioscrobbler). If submission servers are not reachable, submissions are + enqueued and stored on disk cache. + . + The client can be also configured to use other scrobbling services like + Libre.fm. + . + This package contains debugger symbols. --- mpdscribble-0.22+git20120104.9828c71.orig/debian/compat +++ mpdscribble-0.22+git20120104.9828c71/debian/compat @@ -0,0 +1 @@ +7 --- mpdscribble-0.22+git20120104.9828c71.orig/debian/mpdscribble.install +++ mpdscribble-0.22+git20120104.9828c71/debian/mpdscribble.install @@ -0,0 +1,3 @@ +usr/bin/* +usr/share/man/man1/* +debian/mpdscribble-default usr/share/mpdscribble --- mpdscribble-0.22+git20120104.9828c71.orig/debian/mpdscribble.init +++ mpdscribble-0.22+git20120104.9828c71/debian/mpdscribble.init @@ -0,0 +1,64 @@ +#! /bin/sh +### BEGIN INIT INFO +# Provides: mpdscribble +# Required-Start: $local_fs $remote_fs +# Required-Stop: $local_fs $remote_fs +# Should-Start: mpd +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: mpdscribble initscript +# Description: This script starts Music Player Daemon Last.fm Client as daemon. +### END INIT INFO + +PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin +DAEMON=/usr/bin/mpdscribble +NAME=mpdscribble +DESC="Music Player Daemon Last.fm Client" +PIDFILE=/var/run/$NAME.pid + +# user which will run this daemon +USER=mpdscribble +GROUP=mpdscribble + +test -x $DAEMON || exit 0 + +# Include mpdscribble defaults if available +if [ -f /etc/default/mpdscribble ] ; then + . /etc/default/mpdscribble +fi + +. /lib/lsb/init-functions + +case "$1" in + start) + if [ ! "x$MPD_SYSTEMWIDE" = x1 ]; then + log_warning_msg "Not starting $DESC, disabled via /etc/default/mpdscribble" + exit 0 + fi + log_daemon_msg "Starting $DESC" $NAME + start-stop-daemon --start --quiet \ + --pidfile $PIDFILE --background --exec $DAEMON -- \ + --daemon-user $USER --pidfile $PIDFILE $DAEMON_OPTS + log_end_msg $? + ;; + stop) + log_daemon_msg "Stopping $DESC" $NAME + start-stop-daemon --stop --quiet --pidfile $PIDFILE \ + --exec $DAEMON + RET=$? + rm -f $PIDFILE + log_end_msg $RET + ;; + restart|force-reload) + sh $0 stop + sleep 1 + sh $0 start + ;; + *) + N=/etc/init.d/$NAME + echo "Usage: $N {start|stop|restart|force-reload}" >&2 + exit 1 + ;; +esac + +exit 0 --- mpdscribble-0.22+git20120104.9828c71.orig/debian/mpdscribble.dirs +++ mpdscribble-0.22+git20120104.9828c71/debian/mpdscribble.dirs @@ -0,0 +1,2 @@ +var/cache/mpdscribble +etc --- mpdscribble-0.22+git20120104.9828c71.orig/debian/copyright +++ mpdscribble-0.22+git20120104.9828c71/debian/copyright @@ -0,0 +1,59 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=420 +Upstream-Name: mpdscribble +Upstream-Maintainer: Max Kellermann +Upstream-Source: http://sourceforge.net/project/showfiles.php?group_id=81117 + +Files: * +Copyright: Copyright © 2005,2006 Kuno Woudt +License: GPL-2+ + On Debian systems the full text of the GNU General Public License can be found + in the `/usr/share/common-licenses/GPL-2' file. + +Files: src/log.c, src/cmdline.c, src/daemon.c +Copyright: (c) 2004-2008 The Music Player Daemon Project +License: GPL-2+ + On Debian systems the full text of the GNU General Public License can be found + in the `/usr/share/common-licenses/GPL-2' file. + +Files: src/libmpdclient/* +Copyright: (c) 2003-2008 The Music Player Daemon Project +License: BSD-C3 + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Files: debian/* +Copyright: Copyright 2005-2009 Michal Čihař +License: GPL-2+ + On Debian systems the full text of the GNU General Public License can be found + in the `/usr/share/common-licenses/GP-2L' file. + +Files: debian/rules +Copyright: Copyright 2009 Taylor LeMasurier-Wren +License: GPL-2+ + On Debian systems the full text of the GNU General Public License can be found + in the `/usr/share/common-licenses/GPL-2' file. --- mpdscribble-0.22+git20120104.9828c71.orig/debian/mpdscribble.postrm +++ mpdscribble-0.22+git20120104.9828c71/debian/mpdscribble.postrm @@ -0,0 +1,61 @@ +#! /bin/sh +set -e + +if [ "$1" = "purge" ] ; then + # remove log files + rm -f /var/log/mpdscribble.log* + + # remove cache + rm -f /var/cache/mpdscribble/* + + # remove overrides + if dpkg-statoverride --list --quiet /var/cache/mpdscribble/cache >/dev/null; then + dpkg-statoverride --force --quiet --remove /var/cache/mpdscribble/cache + fi + if dpkg-statoverride --list --quiet /var/cache/mpdscribble >/dev/null; then + dpkg-statoverride --force --quiet --remove /var/cache/mpdscribble + fi + if dpkg-statoverride --list --quiet /etc/mpdscribble.conf >/dev/null; then + dpkg-statoverride --force --quiet --remove /etc/mpdscribble.conf + fi + + # delete user + if getent passwd mpdscribble >/dev/null; then + if [ -x /usr/sbin/deluser ]; then + deluser --system mpdscribble + fi + fi + # delete group + if getent group mpdscribble >/dev/null; then + if [ -x /usr/sbin/delgroup ]; then + delgroup mpdscribble + fi + fi + + # delete ucf handled config file + for ext in '~' '%' .bak .ucf-new .ucf-old .ucf-dist; do + rm -f /etc/mpdscribble.conf$ext + rm -f /etc/default/mpdscribble$ext + done + + # remove the configuration file itself + rm -f /etc/mpdscribble.conf + rm -f /etc/default/mpdscribble + + # and finally clear it out from the ucf database + if which ucf >/dev/null; then + ucf --debconf-ok --purge /etc/mpdscribble.conf + ucf --debconf-ok --purge /etc/default/mpdscribble + fi + if which ucfr >/dev/null; then + ucfr --purge mpdscribble /etc/mpdscribble.conf + ucfr --purge mpdscribble /etc/default/mpdscribble + fi +fi + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/nl.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/nl.po @@ -0,0 +1,61 @@ +# 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: mpdscribble\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2007-04-30 14:55+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \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 +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "Wilt u de mpdscribble-achtergronddienst installeren?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" +"Het is mogelijk om mpdscribble als acthergronddienst te installeren. De " +"mpdscribble-achtergronddienst wordt dan opgestart tijdens het opstarten van " +"het systeem. Merk op dat het niet nodig is om mpd als achtergronddienst te " +"draaien, alles werkt prima wanneer u deze handmatig start vanaf als een " +"gewone gebruiker." + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "Last.fm-gebruikersnaam:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "Wat is uw gebruikersnaam voor Last.fm?" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "Last.fm-wachtwoord:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "Wat is uw wachtwoord voor Last.fm?" --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/it.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/it.po @@ -0,0 +1,59 @@ +# mpdscribble po-debconf translation to italian +# Copyright (C) 2005 Free Software Foundation, Inc. +# This file is distributed under the same license as the mpdscribble package. +# Luca Monducci , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: mpdscribble 0.2.6 debconf templates\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2005-10-30 12:46+0100\n" +"Last-Translator: Luca Monducci \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "Installare mpdscribble come servizio di sistema?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" +"Si pu installare mpdscribble come un demone di sistema da far partire " +"all'avvio del sistema. Notare che non necessario eseguire mpd come " +"servizio di sistema dato che funziona correttamente anche quando lanciato " +"manualmente da un normale utente." + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "Nome utente per Last.fm:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "Inserire il nome utente da usare per Last.fm." + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "Password per Last.fm:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "Inserire la password da usare per Last.fm." --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/cs.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/cs.po @@ -0,0 +1,67 @@ +# +# 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: mpdscribble\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2005-09-07 19:25+0200\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "Instalovat systémovou službu mpdscribble?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" +"mpdscribble můžete nainstalovat jako systémový daemon, což znamená, že se " +"bude spouštět hned při zavádění systému. Spouštění mpd jako systémové služby " +"není nutné, protože jej můžete pohodlně spouštět i pod běžným uživatelským " +"účtem." + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "Uživatelské jméno pro Last.fm:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "Zadejte uživatelské jméno, které používáte pro přístup na Last.fm." + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "Heslo pro Last.fm:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "Zadejte heslo, které používáte pro přístup na Last.fm." --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/sv.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/sv.po @@ -0,0 +1,66 @@ +# 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. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: mpdscribble 0.2.6-2\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2005-10-10 22:16+0200\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "Installera mpdscribble som en systemtjnst?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" +"Du kan installera mpdscribble som en systemdaemon. Tjnsten mpdscribble " +"kommer att startas vid uppstart. Notera att detta inte r ndvndigt fr att " +"kra mpd som en systemtjnst eftersom den krs fint ven manuellt med ett " +"vanligt anvndarkonto." + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "Last.fm anvndarnamn:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "Ange anvndarnamnet du anvnder i Last.fm." + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "Last.fm lsenord:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "Ange lsenordet du anvnder i Last.fm." --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/fr.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/fr.po @@ -0,0 +1,69 @@ +# +# 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: mpdscribble\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2005-09-06 20:14+0100\n" +"Last-Translator: Steve Petruzzello \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-SourceCharset: iso-8859-15\n" +"X-Poedit-Language: French\n" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "Faut-il installer le service systme mpdscribble?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" +"Vous pouvez installer mpdscribble en tant que dmon. Le service mpdscribble " +"sera activ au dmarrage. Veuillez noter qu'il n'est pas ncessaire " +"d'excuter mpd comme un service systme car il fonctionne correctement " +"lorsqu'il est lanc manuellement sous un identifiant non privilgi." + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "Identifiant audioscrobbler:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "Veuillez indiquer votre identifiant pour audioscrobbler." + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "Mot de passe audioscrobbler:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "Veuillez indiquer votre mot de passe pour audioscrobbler." --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/templates.pot +++ mpdscribble-0.22+git20120104.9828c71/debian/po/templates.pot @@ -0,0 +1,56 @@ +# 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: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+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 +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "" --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/pt_BR.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/pt_BR.po @@ -0,0 +1,60 @@ +# mpdscribbler's Brazilian Portuguese (pt_BR) debconf template translation. +# Copyright (C) 2007, André Luís Lopes. +# This file is distributed under the same license as the mpdscribbler package. +# André Luís Lopes , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: mpdscribbler\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2007-03-12 20:25-0200\n" +"Last-Translator: André Luís Lopes \n" +"Language-Team: Debian-BR Project \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "Instalar serviço de sistema mpdscribble?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" +"Você pode instalar o mpdscribble como um daemon de sistema. O serviço " +"mpdscribble será iniciado junto à inicialização do computador. Note que não " +"é necessário executar o mpd como um serviço de sistema uma vez que o mesmo é " +"executado corretamente quando é iniciado manualmente utilizando conta de " +"usuário comum." + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "Nome de usuário Last.fm:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "Informe o nome de usuário utilizado no Last.fm." + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "Senha do usuário no Last.fm:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "Informe a senha que você utiliza no Last.fm." --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/ru.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/ru.po @@ -0,0 +1,63 @@ +# translation of mpdscribble_debconf_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.2.12-1\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2007-03-10 15:14+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \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 +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "Запускать mpdscribble в режиме демона?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" +"Вы можете установить mpdscribble в систему, запуская его в режиме демона. В " +"этом случае mpdscribble будет запускаться при включении компьютера. Заметим, " +"что для этого не обязательно иметь запущенным mpd, программу также можно " +"запускать вручную из-под обычной учётной записи." + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "Имя пользователя в Last.fm:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "Введите имя пользователя, под которым вы зарегистрированы в Last.fm." + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "Пароль в Last.fm:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "" +"Введите пароль для пользователя, под которым вы зарегистрированы в Last.fm." --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/ta.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/ta.po @@ -0,0 +1,59 @@ +# translation of ta.po to TAMIL +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Dr.T.Vasudevan , 2007. +msgid "" +msgstr "" +"Project-Id-Version: ta\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2007-03-10 12:33+0530\n" +"Last-Translator: Dr.T.Vasudevan \n" +"Language-Team: TAMIL \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "எம்பிடிஸ்க்ரிபில் சேவையை நிறுவலாமா?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" +"எம்பிடிஸ்க்ரிபில் ஐ கணினி கிங்கரனாக நிறுவலாம். கணினியை துவக்கும்போது இதுவும் துவக்கப் " +"படும். இதை கணினி சேவையாக இயக்கத் தேவையில்லை.வழக்கமான பயனர் கணக்கில் கைமுறையாக " +"துவக்கினாலும் நன்றாகவே இயங்கும். " + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "ஆடியோ ஸ்க்ராப்லர் பயனர் பெயர்:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "ஆடியோ ஸ்க்ராப்லர் க்கு பயன்படுத்தும் பயனர் பெயரை உள்ளிடுக." + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "ஆடியோ ஸ்க்ராப்லர் கடவுச்சொல்:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "ஆடியோ ஸ்க்ராப்லர் க்கு பயன்படுத்தும் கடவுச்சொல்லை உள்ளிடுக." --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/es.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/es.po @@ -0,0 +1,87 @@ +# mpdscribble po-debconf translation to Spanish. +# Copyright (C) 2007. +# This file is distributed under the same license as the mpdscribble package. +# +# Changes: +# - Initial translation +# Elías A.M. +# +# - Last revision: +# Fernando González de Requena , 2009. +# +# +# Traductores, si no conoce el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas y normas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# 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: mpdscribble 0.2.12-13\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2009-01-10 18:13+0100\n" +"Last-Translator: Fernando González de Requena \n" +"Language-Team: spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "¿Desea instalar el servicio del sistema mpdscribble?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "Puede instalar mpdscribble como un demonio del sistema. El servicio mpdscribble se iniciará en el arranque. Tenga en cuenta que no es necesario ejecutar mpd como un servicio del sistema, puesto que funciona correctamente si se ejecuta manualmente desde una cuenta de usuario normal." + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "Nombre de usuario de Last.fm:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "Introduzca el nombre de usuario que utiliza en Last.fm." + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "Contraseña de Last.fm:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "Introduzca la contraseña que utiliza en Last.fm." + --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/de.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/de.po @@ -0,0 +1,61 @@ +# translation of po-debconf template to German +# This file is distributed under the same license as the mpdscribble package. +# Copyright (C): +# +# Matthias Julius , 2007. +msgid "" +msgstr "" +"Project-Id-Version: mpdscribble 0.2.12-1\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2007-02-28 19:11-0500\n" +"Last-Translator: Matthias Julius \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "Mpdscribble als Systemservice installieren?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" +"Sie können Mpdscribble als System-Daemon installieren. Der Mpdscribble-" +"Service wird beim Systemstart gestartet. Beachten Sie, dass es nicht " +"notwendig ist, Mpd als Systemservice zu betreiben, da es gut funktioniert, " +"wenn es manuell unter Verwendung eines regulären Benutzerkontos gestartet " +"wird." + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "Benutzername für Last.fm:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "Geben Sie einen Benutzernamen ein, den Sie für Last.fm verwenden." + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "Passwort für Last.fm:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "Geben Sie das Passwort ein, das Sie für Last.fm verwenden." --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/ro.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/ro.po @@ -0,0 +1,65 @@ +# translation of ro.po to Romanian +# Romanian translations for PACKAGE package +# Traducerea în limba română pentru pachetul PACKAGE. +# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Eddy Petrisor , 2007. +# Eddy Petrișor , 2007. +msgid "" +msgstr "" +"Project-Id-Version: ro\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2007-03-14 10:47+0200\n" +"Last-Translator: Eddy Petrișor \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "Se instalează serviciul mpdscribble?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" +"Puteţi instala mpdscribble ca un serviciu de sistem. Serviciul mpdscribble " +"va fi pornit la iniţializarea sistemului. A se reţine că nu este necesar să " +"rulaţi mpd ca un serviciu de sistem deoarece funcţionează corect şi dacă " +"este pornit manual, folosind un cont de utilizator neprivilegiat." + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "Numele de utilizator pentru Last.fm:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "Introduceţi numele de utilizator folosit pentru Last.fm." + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "Parola pentru Last.fm:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "Introduceţi parola folosită pentru Last.fm." --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/POTFILES.in +++ mpdscribble-0.22+git20120104.9828c71/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] mpdscribble.templates --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/pt.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/pt.po @@ -0,0 +1,59 @@ +# Portuguese translation for mpdscribble's debconf messages +# Copyright (C) 2007 Migel Figueiredo +# This file is distributed under the same license as the mpdscribble package. +# Miguel Figueiredo , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: mpdscribble\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2007-03-09 21:43+0000\n" +"Last-Translator: Miguel Figueiredo \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "Instalar o serviço de sistema mpdscribble?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" +"Você pode instalar o mpdscribble como um daemon de sistema. O serviço " +"mdpscribble será iniciado no arranque. Note que isto não é necessário para " +"correr o mpd como um serviço do sistema já que corre sem problemas quando " +"iniciado manualmente utilizado uma conta de utilizador normal." + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "Nome de utilizador do Last.fm:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "Introduza o nome de utilizador que utiliza no Last.fm." + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "Palavra-passe do Last.fm:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "Introduza a palavra-passe que utiliza no Last.fm." --- mpdscribble-0.22+git20120104.9828c71.orig/debian/po/gl.po +++ mpdscribble-0.22+git20120104.9828c71/debian/po/gl.po @@ -0,0 +1,58 @@ +# Galician translation of mpdscribble's debconf templates +# This file is distributed under the same license as the mpdscribble package. +# Jacobo Tarrio , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: mpdscribble\n" +"Report-Msgid-Bugs-To: mpdscribble@packages.debian.org\n" +"POT-Creation-Date: 2008-09-22 14:51+0200\n" +"PO-Revision-Date: 2007-03-09 12:52+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "Install system mpdscribble service?" +msgstr "¿Instalar o servizo mpdscribble do sistema?" + +#. Type: boolean +#. Description +#: ../mpdscribble.templates:1001 +msgid "" +"You can install mpdscribble as a system daemon. The mpdscribble service " +"will be started on boot. Note that is not necessary to run mpd as a system " +"service as it runs fine when started manually using a regular user account." +msgstr "" +"Pode instalar mpdscribble coma un servizo do sistema. O servizo mpdscribble " +"hase iniciar co ordenador. Teña en conta que non é necesario executar mpd " +"coma un servizo do sistema, xa que funciona ben ao inicialo manualmente " +"cunha conta de usuario normal." + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Last.fm username:" +msgstr "Usuario de Last.fm:" + +#. Type: string +#. Description +#: ../mpdscribble.templates:2001 +msgid "Enter username you use on Last.fm." +msgstr "Introduza o nome do usuario que emprega en Last.fm." + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Last.fm password:" +msgstr "Contrasinal de Last.fm:" + +#. Type: password +#. Description +#: ../mpdscribble.templates:3001 +msgid "Enter password you use on Last.fm." +msgstr "Introduza o contrasinal que emprega en Last.fm."