--- tunapie-2.1.17.orig/tunapie +++ tunapie-2.1.17/tunapie @@ -1,2 +1,2 @@ #!/bin/sh -python /usr/local/share/tunapie/Tunapie.py +python /usr/share/tunapie/Tunapie.py --- tunapie-2.1.17.orig/debian/control +++ tunapie-2.1.17/debian/control @@ -0,0 +1,19 @@ +Source: tunapie +Section: net +Priority: optional +Maintainer: James Stone +Build-Depends: debhelper (>= 5), debconf, po-debconf, python-support (>= 0.4) +Standards-Version: 3.8.0 + +Package: tunapie +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, python-wxgtk2.8, debconf +Suggests: audacious, streamripper, vlc | gxine | totem | mplayer | xine-ui, xterm | x-terminal-emulator, iceweasel | x-www-browser +Description: Lists audio and video streams from Shoutcast and Icecast + A GUI based program for displaying Shoutcast or Icecast video and radio + streams. It gives information about streams including bitrate, IP and current + number of listeners. Streams can then be played using an appropriate media + player, defined in preferences. Tunapie also allows streams to be recorded + using streamripper. Recordings can be set to start and stop at specified times. + . +Homepage: http://tunapie.sourceforge.net/ --- tunapie-2.1.17.orig/debian/menu +++ tunapie-2.1.17/debian/menu @@ -0,0 +1,2 @@ +?package(tunapie):needs="X11" section="Applications/TV and Radio"\ + title="tunapie" command="/usr/bin/tunapie" --- tunapie-2.1.17.orig/debian/postinst +++ tunapie-2.1.17/debian/postinst @@ -0,0 +1,9 @@ +#!/bin/sh -e +. /usr/share/debconf/confmodule +db_get tunapie/uncensored_streams +if [ "$RET" = "true" ]; then + echo '1'>/etc/tunapie.config + else + echo '0'>/etc/tunapie.config +fi +#DEBHELPER# --- tunapie-2.1.17.orig/debian/docs +++ tunapie-2.1.17/debian/docs @@ -0,0 +1 @@ +README --- tunapie-2.1.17.orig/debian/rules +++ tunapie-2.1.17/debian/rules @@ -0,0 +1,49 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: + +clean: + dh_testdir + dh_testroot + + # Add here commands to clean up after the build process. + debconf-updatepo + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tunapie. + dh_install tunapie usr/bin + dh_install src/*.py usr/share/tunapie + dh_install src/*.png usr/share/tunapie + dh_install src/tplogo.xpm usr/share/pixmaps + dh_install tunapie.desktop usr/share/applications + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs CHANGELOG + dh_installdocs + dh_installmenu + dh_installdebconf + dh_installman tunapie.1 + dh_link + dh_compress + dh_fixperms + dh_pysupport + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: build install + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- tunapie-2.1.17.orig/debian/templates +++ tunapie-2.1.17/debian/templates @@ -0,0 +1,6 @@ +Template: tunapie/uncensored_streams +Type: boolean +Default: false +_Description: Do you wish to view uncensored video streams from Shoutcast? + Some Shoutcast video streams contain adult content. If you select this option, + adult content will be displayed by tunapie. --- tunapie-2.1.17.orig/debian/postrm +++ tunapie-2.1.17/debian/postrm @@ -0,0 +1,8 @@ +#!/bin/sh -e +if [ "$1" = "purge" -a -e /usr/share/debconf/confmodule ]; then + # Source debconf library. + . /usr/share/debconf/confmodule + # Remove my changes to the db. + db_purge +fi +#DEBHELPER# --- tunapie-2.1.17.orig/debian/compat +++ tunapie-2.1.17/debian/compat @@ -0,0 +1 @@ +5 --- tunapie-2.1.17.orig/debian/copyright +++ tunapie-2.1.17/debian/copyright @@ -0,0 +1,30 @@ +This package was debianized by James Stone on +Tue, 26 Sep 2006 22:41:46 +0100 + +It was downloaded from http://tunapie.sourceforge.net + +The current Debian maintainer and upstream author is James Stone + +License and Copyright: + + Copyright: 2005-2007 James Stone + + 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 St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General Public License +can be found in /usr/share/common-licenses/GPL file. + +The Debian packaging is (C) 2007 James Stone and is +licensed under the GNU GPL (see above). --- tunapie-2.1.17.orig/debian/watch +++ tunapie-2.1.17/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/tunapie/tunapie-(.*)\.tar\.gz --- tunapie-2.1.17.orig/debian/config +++ tunapie-2.1.17/debian/config @@ -0,0 +1,4 @@ +#!/bin/sh -e +. /usr/share/debconf/confmodule +db_input medium tunapie/uncensored_streams || true +db_go --- tunapie-2.1.17.orig/debian/changelog +++ tunapie-2.1.17/debian/changelog @@ -0,0 +1,312 @@ +tunapie (2.1.17-2.2) unstable; urgency=low + + * Non-maintainer upload. + * Remove alternative dependency on python-wxgtk2.6 - should be a low risk + change, since with default alternatives 2.8 will already get used if + installed, and 2.8 has twice as many installs according to popcon. + (Closes: #645887) + + -- Olly Betts Thu, 24 Nov 2011 07:10:16 +0000 + +tunapie (2.1.17-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix pending l10n issues. Debconf translations: + - Spanish; (Ricardo Fraile). Closes: #580979 + - Danish (Joe Hansen). Closes: #603524 + + -- Christian Perrier Wed, 20 Apr 2011 07:30:47 +0200 + +tunapie (2.1.17-2) unstable; urgency=low + + * Added Russian translation (Closes: #543196) + * Added Vietnamese translation (Closes: #579236) + * Upload sponsored by Daniel Baumann + + -- James Stone Wed, 28 Apr 2010 00:58:28 +0100 + +tunapie (2.1.17-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Wed, 15 Apr 2009 00:35:27 +0100 + +tunapie (2.1.16-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Tue, 14 Apr 2009 23:43:25 +0100 + +tunapie (2.1.15-1) unstable; urgency=low + + * New upstream release + * Correct wx version depend set in source package (Closes: #517071) + * Upload sponsored by Daniel Baumann + + -- James Stone Tue, 03 Mar 2009 22:55:58 +0000 + +tunapie (2.1.14-1) unstable; urgency=low + + * New upstream release + * Added Japanse translation - thanks Hideki Yamane! (Closes: #512982) + * Upload sponsored by Daniel Baumann + + -- James Stone Mon, 16 Feb 2009 20:25:01 +0000 + +tunapie (2.1.13-1) unstable; urgency=low + + * New upstream release + * Added Swedish translation - thanks Martin Bagge! (Closes: #503611) + * Upload sponsored by Daniel Baumann + + -- James Stone Sat, 08 Nov 2008 14:46:20 +0000 + +tunapie (2.1.12-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Fri, 10 Oct 2008 20:36:17 +0100 + +tunapie (2.1.11-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Tue, 16 Sep 2008 09:31:18 +0100 + +tunapie (2.1.10-1) unstable; urgency=low + + * New upstream release (Closes: #492399) + * Upload sponsored by Daniel Baumann + + -- James Stone Mon, 15 Sep 2008 23:15:19 +0100 + +tunapie (2.1.9-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Thu, 14 Aug 2008 23:03:14 +0100 + +tunapie (2.1.8-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Sat, 07 Jun 2008 23:24:24 +0100 + +tunapie (2.1.7-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Sat, 07 Jun 2008 22:56:38 +0100 + +tunapie (2.1.6-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Mon, 21 Apr 2008 11:49:09 +0100 + +tunapie (2.1.5-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Fri, 25 Jan 2008 22:22:22 +0000 + +tunapie (2.1.2-1) unstable; urgency=low + + * New upstream release + * Downgraded recommends (Closes: #451527) + * Added search for x-terminal-emulator and x-www-browser (Closes:#451528) + * Upload sponsored by Daniel Baumann + + -- James Stone Wed, 12 Dec 2007 03:46:30 +0000 + +tunapie (2.1-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Sun, 16 Sep 2007 23:54:53 +0100 + +tunapie (2.0-rc10-1) unstable; urgency=low + + * New upstream release + * Updated menu to 2.1.35 format + * Upload sponsored by Daniel Baumann + + -- James Stone Wed, 5 Sep 2007 10:32:57 +0100 + +tunapie (2.0-rc8-1) unstable; urgency=low + + * New upstream release + * Added Dutch debconf translation (Closes: #423075) + * Upload sponsored by Daniel Baumann + + -- James Stone Sat, 16 Jun 2007 21:43:28 +0100 + +tunapie (2.0-rc7-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Mon, 4 Jun 2007 20:46:38 +0100 + +tunapie (2.0rc6-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Thu, 3 May 2007 22:38:42 +0100 + +tunapie (1.4.2-1) unstable; urgency=low + + * New upstream release + * Changed menu entry to show correct section (Net) + * Upload sponsored by Daniel Baumann + + -- James Stone Sun, 15 Apr 2007 12:39:48 +0100 + +tunapie (1.4.1-1) unstable; urgency=low + + * New upstream release + * Changed section to net + * Changed architecture to all + * Upload sponsored by Daniel Baumann + + -- James Stone Tue, 10 Apr 2007 23:22:56 +0100 + +tunapie (1.4-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Sun, 8 Apr 2007 23:45:28 +0100 + +tunapie (1.3.3.3-4) unstable; urgency=low + + * Added Portuguese debconf translation (Closes #416776) + * Upload sponsored by Daniel Baumann + + -- James Stone Wed, 4 Apr 2007 20:03:35 +0100 + +tunapie (1.3.3.3-3) unstable; urgency=low + + * Added German debconf translation (Closes: #414587) + * Upload sponsored by Daniel Baumann + + -- James Stone Thu, 22 Mar 2007 23:10:11 +0000 + +tunapie (1.3.3.3-2) unstable; urgency=low + + * Corrected recommends to totem-xine (totem-gstreamer does not work with + nsv streams) + * Upload sponsored by Daniel Baumann + + -- James Stone Sun, 18 Feb 2007 11:32:20 +0000 + +tunapie (1.3.3.3-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Tue, 9 Jan 2007 23:43:47 +0000 + +tunapie (1.3.3.2-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Tue, 9 Jan 2007 17:43:12 +0000 + +tunapie (1.3.3.1-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Tue, 9 Jan 2007 16:49:41 +0000 + +tunapie (1.3.3-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Sun, 7 Jan 2007 22:06:59 +0000 + +tunapie (1.3.2-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Wed, 20 Dec 2006 23:44:12 +0000 + +tunapie (1.3.1-1) unstable; urgency=low + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Thu, 30 Nov 2006 10:15:44 +0000 + +tunapie (1.3-1) unstable; urgency=medium + + * New upstream release + * Upload sponsored by Daniel Baumann + + -- James Stone Sun, 19 Nov 2006 12:57:55 +0000 + +tunapie (1.2.3-2) unstable; urgency=medium + + * Fixed miscellaneous packaging bugs reported by Daniel Baumann + * Upload sponsored by Daniel Baumann + + -- James Stone Fri, 17 Nov 2006 21:44:20 +0000 + +tunapie (1.2.3-1) unstable; urgency=low + + * New upstream release (Fixes layout problems) + + -- James Stone Fri, 17 Nov 2006 14:57:05 +0000 + +tunapie (1.2.2-1) unstable; urgency=low + + * New upstream release + * French and Czech debconf templates translations (Closes: #394808, #396053) + * No longer stops current xmms processes (Closes: #398340) + + -- James Stone Wed, 15 Nov 2006 09:02:36 +0000 + +tunapie (1.2.1-1) unstable; urgency=low + + * New upstream release + + -- James Stone Mon, 13 Nov 2006 21:54:04 +0000 + +tunapie (1.2-1) unstable; urgency=low + + * New upstream release + + -- James Stone Sat, 11 Nov 2006 20:22:35 +0000 + +tunapie (1.1.1-1) unstable; urgency=low + + * New upstream release + + -- James Stone Sat, 30 Sep 2006 00:04:46 +0100 + +tunapie (1.1-1) unstable; urgency=low + + * New upstream release + + -- James Stone Fri, 29 Sep 2006 20:32:22 +0100 + +tunapie (1.0.2-1) unstable; urgency=low + + * Initial release (Closes: #384691) + + -- James Stone Tue, 26 Sep 2006 22:41:46 +0100 --- tunapie-2.1.17.orig/debian/po/de.po +++ tunapie-2.1.17/debian/po/de.po @@ -0,0 +1,33 @@ +# Translation of tunapie debconf templates to German +# Copyright (C) Helge Kreutzmann , 2007. +# This file is distributed under the same license as the tunapie package. +# +msgid "" +msgstr "" +"Project-Id-Version: tunapie\n" +"Report-Msgid-Bugs-To: jamesmstone@gmail.com\n" +"POT-Creation-Date: 2006-09-25 17:29+0100\n" +"PO-Revision-Date: 2007-03-10 16:19+0100\n" +"Last-Translator: Helge Kreutzmann \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 wish to view uncensored video streams from Shoutcast?" +msgstr "M鯿hten Sie unzensierte Video-Streams von Shoutcast sehen?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Some Shoutcast video streams contain adult content. If you select this " +"option, adult content will be displayed by tunapie." +msgstr "" +"Einige Video-Streams von Shoutcast enthalten nicht-jugendfreies Material. " +"Falls Sie diese Option ausw鋒len, wird das nicht-jugendfreie Material von " +"Tunapie angezeigt." --- tunapie-2.1.17.orig/debian/po/pt.po +++ tunapie-2.1.17/debian/po/pt.po @@ -0,0 +1,33 @@ +# Portuguese translation of tunapie's debconf messages. +# Copyright (C) 2007 +# This file is distributed under the same license as the tunapie package. +# Lu铆sa Louren莽o , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: tunapie 1.3.3.3-3\n" +"Report-Msgid-Bugs-To: jamesmstone@gmail.com\n" +"POT-Creation-Date: 2006-09-25 17:29+0100\n" +"PO-Revision-Date: 2007-03-28 11:23+0100\n" +"Last-Translator: Lu铆sa Louren莽o \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 wish to view uncensored video streams from Shoutcast?" +msgstr "Deseja ver videos n茫o censurados pelo Shoutcast?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Some Shoutcast video streams contain adult content. If you select this " +"option, adult content will be displayed by tunapie." +msgstr "" +"Alguns videos do Shoutcast cont锚m conte煤do para adultos. Se seleccionar esta " +"opc莽ao, o conte煤do para adultos ser谩 mostrado pelo tunapie." --- tunapie-2.1.17.orig/debian/po/es.po +++ tunapie-2.1.17/debian/po/es.po @@ -0,0 +1,54 @@ +# tunapie po-debconf translation to Spanish +# Copyright (C) 2010 Software in the Public Interest +# This file is distributed under the same license as the tunapie package. +# +# Changes: +# - Initial translation +# Ricardo Fraile , 2010 +# +# Traductores, si no conocen el formato PO, merece la pena leer la +# documentaci贸n de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducci贸n al espa帽ol, por favor lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducci贸n de Debian al espa帽ol +# http://www.debian.org/intl/spanish/ +# especialmente las notas y normas de traducci贸n en +# http://www.debian.org/intl/spanish/notas +# +# - La gu铆a de traducci贸n de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +msgid "" +msgstr "" +"Project-Id-Version: tunapie 2.1.17-1\n" +"Report-Msgid-Bugs-To: jamesmstone@gmail.com\n" +"POT-Creation-Date: 2006-09-25 17:29+0100\n" +"PO-Revision-Date: 2010-04-16 10:52+0200\n" +"Last-Translator: Ricardo Fraile \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 wish to view uncensored video streams from Shoutcast?" +msgstr "驴Desea ver secuencias Shoutcast de v铆deo sin censura?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Some Shoutcast video streams contain adult content. If you select this " +"option, adult content will be displayed by tunapie." +msgstr "" +"Algunas secuencias Shoutcast de v铆deo contienen contenido para adultos. Si " +"usted selecciona estaopci贸n, tunapie mostrar谩 contenido para adultos." --- tunapie-2.1.17.orig/debian/po/vi.po +++ tunapie-2.1.17/debian/po/vi.po @@ -0,0 +1,34 @@ +# Vietnamese Debconf translation for Tuna Pie. +# Copyright 漏 2010 Free Software Foundation, Inc. +# Clytie Siddall , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: tunapie\n" +"Report-Msgid-Bugs-To: jamesmstone@gmail.com\n" +"POT-Creation-Date: 2006-09-25 17:29+0100\n" +"PO-Revision-Date: 2010-04-26 21:56+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.8\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you wish to view uncensored video streams from Shoutcast?" +msgstr "B岷 c贸 mu峄憂 xem lu峄搉g phim Shoutcast kh么ng b峄 ki峄僲 duy峄噒 c岷痶 膽i kh么ng?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Some Shoutcast video streams contain adult content. If you select this " +"option, adult content will be displayed by tunapie." +msgstr "" +"M峄檛 s峄 lu峄搉g phim Shoutcast ch峄゛ n峄檌 dung ch峄 cho ng瓢峄漣 tr锚n 18 tu峄昳. B岷璽 " +"t霉y ch峄峮 n脿y th矛 tunapie hi峄僴 th峄 n峄檌 dung nh瓢 v岷瓂." --- tunapie-2.1.17.orig/debian/po/ja.po +++ tunapie-2.1.17/debian/po/ja.po @@ -0,0 +1,32 @@ +# Copyright (C) 2006-2009 James Stone +# This file is distributed under the same license as the tunapie package. +# Hideki Yamane (Debian-JP) , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: tunapie 2.1.13-1\n" +"Report-Msgid-Bugs-To: jamesmstone@gmail.com\n" +"POT-Creation-Date: 2006-09-25 17:29+0100\n" +"PO-Revision-Date: 2009-01-06 06:26+0900\n" +"Last-Translator: Hideki Yamane (Debian-JP) \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 wish to view uncensored video streams from Shoutcast?" +msgstr "Shoutcast 銇闁层仌銈屻仸銇勩仾銇勩儞銉囥偑鏀鹃併倰琛ㄧず銇椼伨銇欍亱?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Some Shoutcast video streams contain adult content. If you select this " +"option, adult content will be displayed by tunapie." +msgstr "" +"Shoutcast 銉撱儑銈斁閫併伅銈€儉銉儓銈炽兂銉嗐兂銉勩倰鍚倱銇с亜銈嬪牬鍚堛亴銇傘倞銇俱仚銆傘亾銇偑銉" +"銈枫儳銉炽倰閬告姙銇欍倠銇ㄣ乼unapie 銇с偄銉銉儓銈炽兂銉嗐兂銉勩亴琛ㄧず銇曘倢銈嬨倛銇嗐伀銇倞銇俱仚銆" --- tunapie-2.1.17.orig/debian/po/ru.po +++ tunapie-2.1.17/debian/po/ru.po @@ -0,0 +1,36 @@ +# translation of ru.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Yuri Kozlov , 2009. +msgid "" +msgstr "" +"Project-Id-Version: tunapie 2.1.17-1\n" +"Report-Msgid-Bugs-To: jamesmstone@gmail.com\n" +"POT-Creation-Date: 2006-09-25 17:29+0100\n" +"PO-Revision-Date: 2009-08-13 21:30+0400\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you wish to view uncensored video streams from Shoutcast?" +msgstr "啸芯褌懈褌械 锌褉芯褋屑邪褌褉懈胁邪褌褜 胁懈写械芯 褋 Shoutcast 薪械 锌褉芯褕械写褕械械 褑械薪蟹褍褉褍?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Some Shoutcast video streams contain adult content. If you select this " +"option, adult content will be displayed by tunapie." +msgstr "" +"袧械泻芯褌芯褉褘械 胁懈写械芯 褋 Shoutcast 褋芯写械褉卸邪褌 屑邪褌械褉懈邪谢褘 \"褌芯谢褜泻芯 写谢褟 胁蟹褉芯褋谢褘褏\". 袝褋谢懈 " +"胁褘 芯褌胁械褌懈褌械 褍褌胁械褉写懈褌械谢褜薪芯, 褌芯 tunapie 斜褍写械褌 锌芯泻邪蟹褘胁邪褌褜 褌邪泻芯械 胁懈写械芯." --- tunapie-2.1.17.orig/debian/po/templates.pot +++ tunapie-2.1.17/debian/po/templates.pot @@ -0,0 +1,31 @@ +# 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: jamesmstone@gmail.com\n" +"POT-Creation-Date: 2006-09-25 17:29+0100\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 wish to view uncensored video streams from Shoutcast?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Some Shoutcast video streams contain adult content. If you select this " +"option, adult content will be displayed by tunapie." +msgstr "" --- tunapie-2.1.17.orig/debian/po/fr.po +++ tunapie-2.1.17/debian/po/fr.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the tunapie package. +# +# Cyril Brulebois , 2006 +# +msgid "" +msgstr "" +"Project-Id-Version: tunapie\n" +"Report-Msgid-Bugs-To: jamesmstone@gmail.com\n" +"POT-Creation-Date: 2006-09-25 17:29+0100\n" +"PO-Revision-Date: 2006-10-19 13:46+0200\n" +"Last-Translator: Cyril Brulebois \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you wish to view uncensored video streams from Shoutcast?" +msgstr "Faut-il autoriser, sans les censurer, les flux vid茅o Shoutcast聽?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Some Shoutcast video streams contain adult content. If you select this " +"option, adult content will be displayed by tunapie." +msgstr "" +"Certains flux vid茅o Shoutcast contiennent du contenu r茅serv茅 aux adultes. Si " +"vous choisissez cette option, ce type de contenu ne sera pas filtr茅 par " +"tunapie." --- tunapie-2.1.17.orig/debian/po/sv.po +++ tunapie-2.1.17/debian/po/sv.po @@ -0,0 +1,35 @@ +# translation of tunapie.po to swedish +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Martin Bagge , 2008. +msgid "" +msgstr "" +"Project-Id-Version: tunapie\n" +"Report-Msgid-Bugs-To: jamesmstone@gmail.com\n" +"POT-Creation-Date: 2006-09-25 17:29+0100\n" +"PO-Revision-Date: 2008-10-25 20:22+0100\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: swedish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you wish to view uncensored video streams from Shoutcast?" +msgstr "Vill du visa Shoutcast ocensurerade lista med videos盲ndingar?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Some Shoutcast video streams contain adult content. If you select this " +"option, adult content will be displayed by tunapie." +msgstr "" +"En del av Shoutcast videos盲ndingar inneh氓ller material som ej 盲r l盲mpligt " +"f枚r minder氓riga. Om du v盲ljer detta alternativ s氓 kommer 盲ven dessa " +"videos盲ndningar att listas av tunapie." --- tunapie-2.1.17.orig/debian/po/da.po +++ tunapie-2.1.17/debian/po/da.po @@ -0,0 +1,34 @@ +# Danish translation tunapie. +# Copyright (C) 2010 tunapie & nedenst氓ende overs忙ttere. +# This file is distributed under the same license as the tunapie package. +# Joe Hansen (joedalton2@yahoo.dk), 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: tunapie\n" +"Report-Msgid-Bugs-To: jamesmstone@gmail.com\n" +"POT-Creation-Date: 2006-09-25 17:29+0100\n" +"PO-Revision-Date: 2010-11-14 12:42+0000\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 wish to view uncensored video streams from Shoutcast?" +msgstr "脴nsker du at vise ucensorerede videostr酶mme fra Shoutcast?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Some Shoutcast video streams contain adult content. If you select this " +"option, adult content will be displayed by tunapie." +msgstr "" +"Nogle videostr酶mme fra Shoutcast har indhold beregnet for et voksent " +"publikum. Hvis du v忙lger denne indstilling, vil indhold for voksne blive " +"vist af tunapie." --- tunapie-2.1.17.orig/debian/po/cs.po +++ tunapie-2.1.17/debian/po/cs.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the tunapie package. +# Miroslav Kure , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: tunapie\n" +"Report-Msgid-Bugs-To: jamesmstone@gmail.com\n" +"POT-Creation-Date: 2006-09-25 17:29+0100\n" +"PO-Revision-Date: 2006-10-29 12:07+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Do you wish to view uncensored video streams from Shoutcast?" +msgstr "Chcete m铆t p艡铆stup k necenzurovan媒m vide铆m ze Shoutcastu?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Some Shoutcast video streams contain adult content. If you select this " +"option, adult content will be displayed by tunapie." +msgstr "" +"N臎kter谩 videa ze Shoutcastu obsahuj铆 obsah, kter媒 nen铆 vhodn媒 pro d臎ti a " +"mladistv茅. Povol铆te-li tuto mo啪nost, bude tunapie zobrazovat i tento obsah." --- tunapie-2.1.17.orig/debian/po/POTFILES.in +++ tunapie-2.1.17/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- tunapie-2.1.17.orig/debian/po/nl.po +++ tunapie-2.1.17/debian/po/nl.po @@ -0,0 +1,35 @@ +# 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: tunapie\n" +"Report-Msgid-Bugs-To: jamesmstone@gmail.com\n" +"POT-Creation-Date: 2006-09-25 17:29+0100\n" +"PO-Revision-Date: 2007-04-30 13:21+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 wish to view uncensored video streams from Shoutcast?" +msgstr "Wilt u ongecensureerde video-stromen van Shoutcast zien?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Some Shoutcast video streams contain adult content. If you select this " +"option, adult content will be displayed by tunapie." +msgstr "" +"Sommige videostromen van Shoutcast bevatten inhoud voor volwassenen. Als u " +"deze optie selecteert wordt de inhoud voor volwassenen door tunapie " +"weergegeven."