--- zaz-0.2.9+dfsg1.orig/debian/README.source +++ zaz-0.2.9+dfsg1/debian/README.source @@ -0,0 +1 @@ +See /usr/share/doc/quilt/README.source --- zaz-0.2.9+dfsg1.orig/debian/changelog +++ zaz-0.2.9+dfsg1/debian/changelog @@ -0,0 +1,14 @@ +zaz (0.2.9+dfsg1-1) unstable; urgency=low + + * New Upstream Release + * Added local pkg-config files for GL and GLU (libgl1-mesa-dev < 7.5 does + not ship a pkg-config file for them) + + -- Miriam Ruiz Mon, 31 Aug 2009 20:08:58 +0200 + +zaz (0.2.6+dfsg1-1) unstable; urgency=low + + * Initial release. Closes: #543146 + * Removed music (data/mus?.off) because CC-by-sa-nc is not free. + + -- Miriam Ruiz Sat, 22 Aug 2009 21:06:09 +0200 --- zaz-0.2.9+dfsg1.orig/debian/rules +++ zaz-0.2.9+dfsg1/debian/rules @@ -0,0 +1,134 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) +CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +else +CROSS= --build $(DEB_BUILD_GNU_TYPE) +endif + +PKG_CONFIG_PATH="" +ifeq "$(wildcard /usr/lib/pkgconfig/gl.pc)" "" + PKG_CONFIG_PATH=$(CURDIR)/debian/pkg-config/ +endif +ifeq "$(wildcard /usr/lib/pkgconfig/glu.pc)" "" + PKG_CONFIG_PATH=$(CURDIR)/debian/pkg-config/ +endif + +config: config-stamp +config-stamp: + dh_testdir + [ ! -d debian/patches ] || $(MAKE) -f /usr/share/quilt/quilt.make patch +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + export PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" && \ + ./configure $(CROSS) \ + --prefix=/usr \ + --bindir=\$${prefix}/games \ + --datarootdir=\$${prefix}/share/games \ + --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info \ + CFLAGS="$(CFLAGS)" \ + LDFLAGS="-Wl,-z,defs -Wl,--as-needed -Wl,--no-undefined" + touch $@ + +build: build-stamp +build-stamp: config + dh_testdir + export PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" && \ + $(MAKE) + $(MAKE) -C debian/i18n + touch $@ + +clean: config + dh_testdir + dh_testroot + rm -f build-stamp config-stamp + $(MAKE) -C debian/i18n clean + [ ! -f Makefile ] || $(MAKE) distclean + rm -f config.sub config.guess + [ ! -d debian/patches ] || $(MAKE) -f /usr/share/quilt/quilt.make unpatch + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + export PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)" && \ + $(MAKE) DESTDIR=$(CURDIR)/debian/zaz install + rm debian/zaz/usr/share/games/zaz/FreeMonoBold.ttf + ln -s /usr/share/fonts/truetype/freefont/FreeMonoBold.ttf debian/zaz/usr/share/games/zaz/FreeMonoBold.ttf + rm debian/zaz/usr/share/games/zaz/FreeSans.ttf + ln -s /usr/share/fonts/truetype/freefont/FreeSans.ttf debian/zaz/usr/share/games/zaz/FreeSans.ttf + rm -r debian/zaz/usr/doc/ + mv debian/zaz/usr/share/games/applications/ debian/zaz/usr/share/ + mv debian/zaz/usr/share/games/pixmaps/ debian/zaz/usr/share/ + dh_movefiles --sourcedir=debian/zaz + $(MAKE) -C debian/i18n LOCALEDIR="$(CURDIR)/debian/zaz/usr/share/games/locale/" install + +# Build architecture-independent files here. +binary-indep: install + dh_testdir + dh_testroot + dh_installchangelogs -i + dh_installdocs -i + dh_installexamples -i + dh_install -i + dh_link -i + dh_compress -i + dh_fixperms -i + [ ! -e /usr/bin/dh_buildinfo ] || dh_buildinfo -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +# Build architecture-dependent files here. +binary-arch: install + dh_testdir + dh_testroot + dh_installchangelogs -a + dh_installdocs -a + dh_installexamples -a + dh_install -a +# dh_installmenu -a + dh_installman debian/zaz.6 -a + dh_link -a + dh_strip -a --dbg-package=zaz-dbg + dh_compress -a + dh_fixperms -a + [ ! -e /usr/bin/dh_buildinfo ] || dh_buildinfo -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +get-orig-source: + dh_testdir + dh_testroot + rm -f zaz-0.2.?.tar.gz + wget http://downloads.sourceforge.net/project/zaz/zaz-0.2.9.tar.gz?use_mirror=freefr + rm -rf zaz-0.2.? + tar xvfz zaz-0.2.?.tar.gz + rm zaz-0.2.?.tar.gz + # Remove CC-by-sa-nc music by Nine Inch Nails + rm -f zaz-0.2.?/data/mus?.ogg + rm -f cvfz ../zaz_0.2.9+dfsg1.orig.tar.gz + rm -f zaz-0.2.?/win32.zip + tar cvfz ../zaz_0.2.9+dfsg1.orig.tar.gz zaz-0.2.? + rm -r zaz-0.2.? + +binary: binary-indep binary-arch +.PHONY: get-orig-source config build clean binary-indep binary-arch binary install --- zaz-0.2.9+dfsg1.orig/debian/compat +++ zaz-0.2.9+dfsg1/debian/compat @@ -0,0 +1 @@ +7 --- zaz-0.2.9+dfsg1.orig/debian/docs +++ zaz-0.2.9+dfsg1/debian/docs @@ -0,0 +1 @@ +AUTHORS --- zaz-0.2.9+dfsg1.orig/debian/copyright +++ zaz-0.2.9+dfsg1/debian/copyright @@ -0,0 +1,139 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +Upstream-Source: http://sourceforge.net/projects/zaz/ +Upstream-Maintainer: Remigiusz Dybka +Debianized-By: Miriam Ruiz +Debianized-Date: Sat, 22 Aug 2009 21:06:09 +0200 + +Files: * +Copyright: Copyright (C) 2009, Remigiusz Dybka +Licence: GPL-3+ + +Files: data/FreeSans.ttf data/FreeMonoBold.ttf +Copyright: Copyright (C) 2002 Free Software Foundation +Licence: GPL-2+ + +Files: data/font1.ttf +Copyright: Copyright (C) 2003, Phranzysko +License: OFL-1.1 + The font can be downloaded from: + http://www.fontspace.com/phranzyskos-handwriting-fonts/dignas-handwriting + . + It is licensed under the SIL Open Font License, Version 1.1. + The license is copied below, and is also available with a FAQ at: + http://scripts.sil.org/OFL + +Files: debian/* +Copyright: Copyright (C) 2009, Miriam Ruiz +Licence: GPL-3+ + +Licence: GPL-3+ + 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 3 of the License, or + (at your option) any later version. + . + On Debian systems, the complete text of the latest version of the GNU + General Public License can be found in `/usr/share/common-licenses/GPL'. + . + The complete text of version 3 of the GNU General Public License can be + found in `/usr/share/common-licenses/GPL-3'. + +Licence: GPL-2+ + 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. + . + On Debian systems, the complete text of the latest version of the GNU + General Public License can be found in `/usr/share/common-licenses/GPL'. + . + The complete text of version 2 of the GNU General Public License can be + found in `/usr/share/common-licenses/GPL-2'. + +Licence: OFL-1.1 + ----------------------------------------------------------- + SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 + ----------------------------------------------------------- + . + PREAMBLE + The goals of the Open Font License (OFL) are to stimulate worldwide + development of collaborative font projects, to support the font creation + efforts of academic and linguistic communities, and to provide a free and + open framework in which fonts may be shared and improved in partnership + with others. + . + The OFL allows the licensed fonts to be used, studied, modified and + redistributed freely as long as they are not sold by themselves. The + fonts, including any derivative works, can be bundled, embedded, + redistributed and/or sold with any software provided that any reserved + names are not used by derivative works. The fonts and derivatives, + however, cannot be released under any other type of license. The + requirement for fonts to remain under this license does not apply + to any document created using the fonts or their derivatives. + . + DEFINITIONS + "Font Software" refers to the set of files released by the Copyright + Holder(s) under this license and clearly marked as such. This may + include source files, build scripts and documentation. + . + "Reserved Font Name" refers to any names specified as such after the + copyright statement(s). + . + "Original Version" refers to the collection of Font Software components as + distributed by the Copyright Holder(s). + . + "Modified Version" refers to any derivative made by adding to, deleting, + or substituting -- in part or in whole -- any of the components of the + Original Version, by changing formats or by porting the Font Software to a + new environment. + . + "Author" refers to any designer, engineer, programmer, technical + writer or other person who contributed to the Font Software. + . + PERMISSION & CONDITIONS + Permission is hereby granted, free of charge, to any person obtaining + a copy of the Font Software, to use, study, copy, merge, embed, modify, + redistribute, and sell modified and unmodified copies of the Font + Software, subject to the following conditions: + . + 1) Neither the Font Software nor any of its individual components, + in Original or Modified Versions, may be sold by itself. + . + 2) Original or Modified Versions of the Font Software may be bundled, + redistributed and/or sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or + in the appropriate machine-readable metadata fields within text or + binary files as long as those fields can be easily viewed by the user. + . + 3) No Modified Version of the Font Software may use the Reserved Font + Name(s) unless explicit written permission is granted by the corresponding + Copyright Holder. This restriction only applies to the primary font name as + presented to the users. + . + 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder(s) and the Author(s) or with their explicit written + permission. + . + 5) The Font Software, modified or unmodified, in part or in whole, + must be distributed entirely under this license, and must not be + distributed under any other license. The requirement for fonts to + remain under this license does not apply to any document created + using the Font Software. + . + TERMINATION + This license becomes null and void if any of the above conditions are + not met. + . + DISCLAIMER + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE + COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM + OTHER DEALINGS IN THE FONT SOFTWARE. --- zaz-0.2.9+dfsg1.orig/debian/control +++ zaz-0.2.9+dfsg1/debian/control @@ -0,0 +1,44 @@ +Source: zaz +Section: games +Priority: extra +Maintainer: Debian Games Team +Uploaders: Miriam Ruiz +Build-Depends: debhelper (>= 7), quilt, dh-buildinfo, autotools-dev, pkg-config, + gettext, ttf-freefont, libgl1-mesa-dev, libglu1-mesa-dev, libsdl1.2-dev, + libxext-dev, libsdl-image1.2-dev, libftgl-dev, libvorbis-dev, libtheora-dev +Standards-Version: 3.8.3 +Homepage: http://sourceforge.net/projects/zaz/ +Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/zaz/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/zaz/?op=log + +Package: zaz +Architecture: any +Depends: ttf-freefont, zaz-data (>= ${source:Version}), ${shlibs:Depends}, ${misc:Depends} +Suggests: zaz-dbg (= ${binary:Version}) +Description: arcade action puzzle game + Zaz is an arcade action puzzle game where the goal is to get rid of + all incoming balls by rearranging their order and making triplets. + It currently includes 6 different levels. The game's name is recursive + and stands for "Zaz ain't Z". + . + A 3D accelerator is needed for decent gameplay. + +Package: zaz-data +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Recommends: zaz (>= ${source:Version}) +Description: arcade action puzzle game - game data + Zaz is an arcade action puzzle game where the goal is to get rid of + all incoming balls by rearranging their order. + . + This package contains the game data. + +Package: zaz-dbg +Section: debug +Architecture: any +Depends: zaz (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} +Description: arcade action puzzle game - debug + Zaz is an arcade action puzzle game where the goal is to get rid of + all incoming balls by rearranging their order. + . + This package contains the debugging symbols. --- zaz-0.2.9+dfsg1.orig/debian/zaz.6 +++ zaz-0.2.9+dfsg1/debian/zaz.6 @@ -0,0 +1,29 @@ +.\" (c) 2009 Miriam Ruiz +.\" +.\" This document 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 package 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 package; if not, write to the Free Software +.\" Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +.TH "Zaz" "6" "" "" "" +.SH "NAME" +zaz \- arcade action puzzle game +.SH "DESCRIPTION" +Zaz is an arcade action puzzle game where the goal is to get rid of all incoming balls by rearranging their order and making triplets. + +The game currently includes 6 different levels. The game's name is recursive and stands for "Zaz ain't Z". + +A 3D accelerator is needed for decent gameplay. +.SH "SEE ALSO" +You can find more about the game on its homepage: http://sourceforge.net/projects/zaz/ +.SH "AUTHOR" +The game has been written by Remigiusz Dybka . This manual page was written by Miriam Ruiz + for the Debian project. --- zaz-0.2.9+dfsg1.orig/debian/zaz-data.files +++ zaz-0.2.9+dfsg1/debian/zaz-data.files @@ -0,0 +1 @@ +usr/share/games/zaz/ --- zaz-0.2.9+dfsg1.orig/debian/pkg-config/gl.pc +++ zaz-0.2.9+dfsg1/debian/pkg-config/gl.pc @@ -0,0 +1,12 @@ +prefix=/usr +exec_prefix=${prefix} +libdir=/usr/lib +includedir=/usr/include + +Name: gl +Description: OpenGL Library +Version: 0.7 +Requires.private: x11 xext +Libs: -L${libdir} -lGL +Libs.private: -lm -lpthread +Cflags: -I${includedir} --- zaz-0.2.9+dfsg1.orig/debian/pkg-config/glu.pc +++ zaz-0.2.9+dfsg1/debian/pkg-config/glu.pc @@ -0,0 +1,13 @@ +prefix=/usr +exec_prefix=${prefix} +libdir=/usr/lib +includedir=/usr/include + +Name: glu +Description: OpenGL Utility Library +Version: 0.7 +Requires: gl +Requires.private: +Libs: -L${libdir} -lGLU +Libs.private: -lm +Cflags: -I${includedir} --- zaz-0.2.9+dfsg1.orig/debian/i18n/Makefile +++ zaz-0.2.9+dfsg1/debian/i18n/Makefile @@ -0,0 +1,50 @@ +# Copyright 2009 Miriam Ruiz +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. +# +# This library 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 +# Library General Public License for more details. + +LOCALEDIR=./ + +all: zaz.pot build-stamp + +zaz.pot: + cd ../..; xgettext -k_ -o debian/i18n/code.pot -f debian/i18n/i18n_files --from-code=iso-8859-1 + cd ../..; for i in data/level*.lvl; do \ + l=$$(head -n 1 "$$i") ; \ + echo "#: data/$${i}:1" ; \ + echo "msgid \"$$l\"" ; \ + echo "msgstr \"\"" ; \ + echo "" ; \ + done > debian/i18n/levels.pot + msgcat code.pot levels.pot > zaz.pot + rm levels.pot code.pot + +build: build-stamp +build-stamp: + for f in *.po; do i=`basename $$f .po`; echo Building Language \"$$i\"; msgfmt $$f -o $$i.mo; done + touch $@ + +clean: + #for f in *.po; do i=`echo $$f | awk 'BEGIN {FS="."} {print $$1}'`; rm -rf "$$i"; done + rm -f *.mo + rm -f *.pot + rm -f build-stamp + +install: build-stamp + for f in *.mo; do \ + i=`basename $$f .mo` ; \ + echo Installing Language \"$$i\" in \"$(LOCALEDIR)$$i\" ; \ + install -d $(LOCALEDIR)$$i ; \ + install -p -d -m 755 $(LOCALEDIR)$$i/LC_MESSAGES ; \ + install -m 644 $$f $(LOCALEDIR)$$i/LC_MESSAGES/zaz.mo ; \ + done + +uninstall: + --- zaz-0.2.9+dfsg1.orig/debian/i18n/es.po +++ zaz-0.2.9+dfsg1/debian/i18n/es.po @@ -0,0 +1,227 @@ +# translation of es.po to español +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Miriam Ruiz , 2009. +msgid "" +msgstr "" +"Project-Id-Version: es\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-08-30 16:03+0200\n" +"PO-Revision-Date: 2009-08-31 20:21+0200\n" +"Last-Translator: Miriam Ruiz \n" +"Language-Team: español \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" + +#: src/mainmenu.cpp:31 +msgid "Start game" +msgstr "Comenzar el juego" + +#: src/mainmenu.cpp:32 +msgid "Options" +msgstr "Opciones" + +#: src/mainmenu.cpp:33 +msgid "Credits" +msgstr "Créditos" + +#: src/mainmenu.cpp:34 +msgid "Exit" +msgstr "Salir" + +#: src/mainmenu.cpp:48 +msgid "Resolution" +msgstr "Resolución" + +#: src/mainmenu.cpp:49 +msgid "Fullscreen" +msgstr "Pantalla completa" + +#: src/mainmenu.cpp:50 +msgid "Show FPS" +msgstr "Mostrar FPS" + +#: src/mainmenu.cpp:51 +msgid "Mouse sensivity" +msgstr "Sensib. ratón" + +#: src/mainmenu.cpp:52 +msgid "SFX volume" +msgstr "Vol. de sonidos" + +#: src/mainmenu.cpp:53 +msgid "Music volume" +msgstr "Vol. de música" + +#: src/mainmenu.cpp:54 src/gameloop.cpp:69 +msgid "Back to main menu" +msgstr "Volver al menú principal" + +#: src/mainmenu.cpp:58 src/mainmenu.cpp:62 +msgid "Back" +msgstr "Volver" + +#: src/mainmenu.cpp:395 +msgid "Hall of Fame" +msgstr "Mejores" + +#: src/mainmenu.cpp:421 +msgid "code, gfx, snd & design:" +msgstr "código, gráficos, sonido y diseño" + +#: src/mainmenu.cpp:422 +msgid "Remigiusz Dybka" +msgstr "" + +#: src/mainmenu.cpp:423 +msgid "[remigiusz.dybka@gmail.com]" +msgstr "" + +#: src/mainmenu.cpp:425 +msgid "music:" +msgstr "música:" + +#: src/mainmenu.cpp:426 +msgid "Nine Inch Nails" +msgstr "" + +#: src/mainmenu.cpp:427 +msgid "" +"[http://nin.com] Released under Creative Commons Attribution Non-Commercial " +"Share Alike License" +msgstr "" +"[http://nin.com] Publicado bajo la licencia Creative Commons Reconocimiento-" +"No comercial-Compartir bajo la misma licencia" + +#: src/mainmenu.cpp:429 +msgid "quality assurance:" +msgstr "" + +#: src/mainmenu.cpp:430 +msgid "Irena Klon & Kamil Krzyspiak" +msgstr "" + +#: src/mainmenu.cpp:534 +msgid "locked" +msgstr "cerrado" + +#: src/gameloop.cpp:57 src/gameloop.cpp:63 src/gameloop.cpp:77 +msgid "End game" +msgstr "Terminar el juego" + +#: src/gameloop.cpp:58 +msgid "Continue" +msgstr "Continuar" + +#: src/gameloop.cpp:62 +msgid "Next level" +msgstr "Siguiente nivel" + +#: src/gameloop.cpp:64 src/gameloop.cpp:71 src/gameloop.cpp:78 +msgid "View replay" +msgstr "Ver repetición" + +#: src/gameloop.cpp:65 src/gameloop.cpp:72 src/gameloop.cpp:79 +msgid "Export video" +msgstr "Exportar vídeo" + +#: src/gameloop.cpp:70 +msgid "Restart game" +msgstr "Volver a empezar" + +#: src/gameloop.cpp:76 +msgid "Retry level" +msgstr "Reintentar nivel" + +#: src/gameloop.cpp:481 +#, c-format +msgid "Lives left: %d" +msgstr "Vidas restantes: %d" + +#: src/gameloop.cpp:484 src/gameloop.cpp:508 +#, c-format +msgid "Current score: %05d" +msgstr "Puntuación actual: %05d" + +#: src/gameloop.cpp:492 +msgid "Game paused" +msgstr "Juego en pausa" + +#: src/gameloop.cpp:505 +msgid "Level cleared" +msgstr "Nivel superado" + +#: src/gameloop.cpp:519 +msgid "Game Over" +msgstr "Fin del juego" + +#: src/gameloop.cpp:525 +#, c-format +msgid "Score: %05d" +msgstr "Puntuación: %05d" + +#: src/gameloop.cpp:533 +msgid "Congratulations !!! You just pwned" +msgstr "¡¡Enhorabuena!! ¡¡Has triunfado!!" + +#: src/gameloop.cpp:558 +msgid "You have a new hi score" +msgstr "Tienes un nuevo record" + +#: src/gameloop.cpp:559 +msgid "please enter your name" +msgstr "por favor, introduce tu nombre" + +#: src/game.cpp:556 +msgid "Extra Life !" +msgstr "¡ Vida extra !" + +#: src/game.cpp:625 +#, c-format +msgid "Time Bonus ! (%d sec * %d = %d)" +msgstr "¡ Tiempo extra ! (%d seg * %d = %d)" + +#: data/data/level10.lvl:1 +msgid "The Three Dragonz" +msgstr "Los tres dragones" + +#: data/data/level1.lvl:1 +msgid "Zatlantiz" +msgstr "Zatlántida" + +#: data/data/level2.lvl:1 +msgid "Zuza" +msgstr "Zuza" + +#: data/data/level3.lvl:1 +msgid "Bendlantiz" +msgstr "Torzlántida" + +#: data/data/level4.lvl:1 +msgid "You have been warned" +msgstr "¡Cuidado! ¡ojo!" + +#: data/data/level5.lvl:1 +msgid "Double D" +msgstr "Doble D" + +#: data/data/level6.lvl:1 +msgid "SuperZaz" +msgstr "Super Zaz" + +#: data/data/level7.lvl:1 +msgid "Bacteria" +msgstr "Bacteria" + +#: data/data/level8.lvl:1 +msgid "Midnight Queen" +msgstr "Reina de la medianoche" + +#: data/data/level9.lvl:1 +msgid "Joker" +msgstr "Bufón" + --- zaz-0.2.9+dfsg1.orig/debian/i18n/i18n_files +++ zaz-0.2.9+dfsg1/debian/i18n/i18n_files @@ -0,0 +1,3 @@ +src/mainmenu.cpp +src/gameloop.cpp +src/game.cpp --- zaz-0.2.9+dfsg1.orig/debian/patches/series +++ zaz-0.2.9+dfsg1/debian/patches/series @@ -0,0 +1 @@ +no_music.patch --- zaz-0.2.9+dfsg1.orig/debian/patches/no_music.patch +++ zaz-0.2.9+dfsg1/debian/patches/no_music.patch @@ -0,0 +1,53 @@ +--- zaz-0.2.9.orig/data/Makefile.am ++++ zaz-0.2.9/data/Makefile.am +@@ -20,11 +20,6 @@ + player.png\ + FreeSans.ttf\ + FreeMonoBold.ttf\ +- mus1.ogg\ +- mus2.ogg\ +- mus3.ogg\ +- mus4.ogg\ +- mus5.ogg\ + pull.ogg\ + push.ogg\ + ouch.ogg\ +--- zaz-0.2.9.orig/data/Makefile.in ++++ zaz-0.2.9/data/Makefile.in +@@ -193,10 +193,6 @@ + player.png\ + FreeSans.ttf\ + FreeMonoBold.ttf\ +- mus1.ogg\ +- mus2.ogg\ +- mus3.ogg\ +- mus4.ogg\ + pull.ogg\ + push.ogg\ + ouch.ogg\ +--- zaz-0.2.9.orig/src/mainmenu.cpp ++++ zaz-0.2.9/src/mainmenu.cpp +@@ -212,8 +212,8 @@ + + void MainMenu::StartMusic() + { +- music = (Scenes::Sample *)new Scenes::StreamingOggSample("mus1.ogg"); +- mixer->EnqueueSample(music, 100, 0, true); ++ //music = (Scenes::Sample *)new Scenes::StreamingOggSample("mus1.ogg"); ++ //mixer->EnqueueSample(music, 100, 0, true); + } + + void MainMenu::StopMusic() +@@ -422,9 +422,9 @@ + CenterMsg(_("Remigiusz Dybka"), 43.5, font, 0.1); + CenterMsg(_("[remigiusz.dybka@gmail.com]"), 41.5, font, 0.08); + +- CenterMsg(_("music:"), 37, font, 0.08); +- CenterMsg(_("Nine Inch Nails"), 34.5, font, 0.1); +- CenterMsg(_("[http://nin.com] Released under Creative Commons Attribution Non-Commercial Share Alike License"), 32.5, font, 0.08); ++ //CenterMsg(_("music:"), 37, font, 0.08); ++ //CenterMsg(_("Nine Inch Nails"), 34.5, font, 0.1); ++ //CenterMsg(_("[http://nin.com] Released under Creative Commons Attribution Non-Commercial Share Alike License"), 32.5, font, 0.08); + + CenterMsg(_("quality assurance:"), 28, font, 0.08); + CenterMsg(_("Irena Klon & Kamil Krzyspiak"), 25.5, font, 0.1);