debian/0000755000000000000000000000000011755713445007202 5ustar debian/compat0000644000000000000000000000000211402122470010355 0ustar 5 debian/preinst.in0000644000000000000000000000143711402122470011200 0ustar #!/usr/bin/perl use warnings; use strict; use Debconf::Client::ConfModule ":all"; our $pkg="rocksndiamonds"; our $game_dir="/usr/share/games/rocksndiamonds"; our $upgrade; # run shell command sub start_cmd(@) { print STDERR join " ", @_, "1>&2\n"; system @_, "1>&2"; if ($?) { print STDERR "Error code: $?\n"; return 0; } return 1; } defined $ARGV[0] and $ARGV[0] =~/upgrade/ and $upgrade=1; if ($upgrade) { my $prev_version; defined $ARGV[1] and ($prev_version)=$ARGV[1]=~/^\s*(.*?)(?:\+dfsg)?-\d+\s*$/; if (defined $prev_version and ($prev_version ne "#VERSION#")) { fset "$pkg/begin", "seen", "false"; for (qw(graphics levels music sounds)) { -d "$game_dir/$_" and start_cmd "rm", "-fr", "$game_dir/$_"; } } } __END__ #DEBHELPER# debian/config0000644000000000000000000000067411402122470010356 0ustar #!/usr/bin/perl use warnings; use strict; use Debconf::Client::ConfModule ":all"; our $pkg="rocksndiamonds"; if ((defined $ARGV[0] and $ARGV[0] =~/reconfigure/) or (exists $ENV{DEBCONF_RECONFIGURE} and $ENV{DEBCONF_RECONFIGURE} == 1)) { fset "$pkg/begin", "seen", "false"; fset "$pkg/select_games", "seen", "false"; } input "high", "$pkg/begin"; go; get("$pkg/begin") eq 'true' or exit 0; input "high", "$pkg/select_games"; go; debian/docs0000644000000000000000000000000711402123707010033 0ustar README debian/links0000644000000000000000000000012411402122470010217 0ustar /usr/share/man/man6/rocksndiamonds.6.gz /usr/share/man/man6/rocksndiamonds-bin.6.gz debian/postinst.in0000644000000000000000000001400511406341346011403 0ustar #!/usr/bin/perl use warnings; use strict; use File::Temp; use File::Basename; use Digest::MD5; use Debconf::Client::ConfModule ":all"; umask 022; our $pkg="rocksndiamonds"; our $game_dir="/usr/share/games/$pkg"; our %info= ( 'Base games' => { url => 'http://www.artsoft.org/RELEASES/unix/rocksndiamonds/rocksndiamonds-#VERSION#.tar.gz', md5 => '813ced99d54f89db7c593c518d197d18', topdir => 'rocksndiamonds-#VERSION#', }, 'Legend Of Zelda' => { url => 'http://www.artsoft.org/RELEASES/rocksndiamonds/levels/Zelda-1.0.0.zip', md5 => '8e9d7c8e9d7595ac987d879774c488cd', topdir => 'zelda', }, 'Legend Of Zelda II' => { url => 'http://artsoft.org/RELEASES/rocksndiamonds/levels/ZeldaII-1.0.0.zip', md5 => 'd8e6449f6ad5e29a07354e0e15290481', topdir => 'zelda2', }, 'Emerald Mine Club' => { url => 'http://www.artsoft.org/RELEASES/rocksndiamonds/levels/Emerald_Mine_Club-2.0.0.7z', md5 => '4276673a791c66747a438a3a94d20121', topdir => 'Emerald_Mine_Club', }, 'Contributions 1995 - 2006' => { url=> 'http://www.artsoft.org/RELEASES/rocksndiamonds/levels/Contributions-1.2.0.7z', md5 => '241114637643024fd427d1bf40b82e47', topdir => 'Contributions', }, 'Snake Bite' => { url => 'http://www.artsoft.org/RELEASES/rocksndiamonds/levels/Snake_Bite-1.0.0.zip', md5 => '52ef211765c995ea40ecb646345fdc2b', topdir => 'Snake_Bite', }, 'BD2K3' => { url => 'http://www.artsoft.org/RELEASES/rocksndiamonds/levels/BD2K3-1.0.0.zip', md5 => 'ebc8e019fa9a799757d90828e242c206', topdir => 'BD2K3', }, 'BD Dream' => { url => 'http://www.artsoft.org/RELEASES/rocksndiamonds/levels/Boulder_Dash_Dream-1.0.0.zip', md5 => 'a7d78a41eb13932efce568cedc9b3388', topdir => 'Boulder_Dash_Dream', }, 'Supaplex' => { url => 'http://www.artsoft.org/RELEASES/unix/rocksndiamonds/levels/rockslevels-sp-1.0.tar.gz', md5 => '3af9a97e59f29995f3f7fc4da0595af6', topdir => 'levels/Supaplex', }, 'DX-Boulderdash' => { url => 'http://www.artsoft.org/RELEASES/unix/rocksndiamonds/levels/rockslevels-dx-1.0.tar.gz', md5 => 'fbc250f7995c666c1c745dbaf591ce32', topdir => 'levels/DX_Boulderdash', }, ); # execute shell command sub cmd_execute(@) { # printf "%s\n", join " ", @_; system @_; if ($?) { print join(" ", @_), "\n"; print "Error code: $?\n"; return 0; } return 1; } # install game data sub install_file($$) { my $file=shift; my $section=shift; my $tempdir=File::Temp::tempdir(CLEANUP=>1); my $cmd; if ($file =~ /zip$/i ) { $cmd="unzip -q $file -d $tempdir"; } elsif ($file =~ /tar\.gz$/i ) { $cmd="tar --no-same-permissions --no-same-owner -xzf $file -C $tempdir"; } elsif ($file =~ /7z$/i ) { $cmd="7zr x -o$tempdir $file >/dev/null"; } else { print "Unknown type of file: $file\n"; return; } cmd_execute $cmd; cmd_execute "find $tempdir -type d -exec chmod 0755 '{}' '+'"; cmd_execute "find $tempdir -type f -exec chmod 0644 '{}' '+'"; cmd_execute "chown -R root:root $tempdir"; my $topdir=$info{$section}{topdir}; if ($section =~ /Base games/i) { cmd_execute "cp -r $tempdir/$topdir/$_ $game_dir" for (qw(graphics levels music sounds)); } else { -d "$game_dir/levels" or cmd_execute "mkdir $game_dir/levels"; -d "$game_dir/levels/$section" and cmd_execute "rm -fr \"$game_dir/levels/$section\""; cmd_execute "mkdir \"$game_dir/levels/$section\""; cmd_execute "mv -f $tempdir/$topdir/* \"$game_dir/levels/$section\""; } cmd_execute 'rm', '-fr', $tempdir; } sub clean_downloads_dir() { my $ddir="$game_dir/downloads"; opendir my $dd, $ddir or die "Can not read directory $ddir: $!\n"; my @files=map { "$ddir/$_" }grep !/^\./, readdir $dd; my %known=map { $_->{bn}=$_->{url}; $_->{bn}=~s/.*\///; ($_->{bn}, $_->{md5}) } values %info; print "Check directory '$game_dir/downloads':\n" if @files; for my $file(@files) { my $bn=basename $file; printf STDERR "\t%s ... ", $bn; unless (exists $known{$bn}) { print STDERR "removed\n"; unlink $file; next; } my $md5=$known{$bn}; my $data; my $mdcounter=Digest::MD5->new; if (open my $fh, '<', $file) { local $/; $data=<$fh>; } $mdcounter->add($data); if ($mdcounter->hexdigest ne $md5) { print STDERR "removed\n"; unlink $file; next; } print STDERR "ok\n"; } cmd_execute "rm -fr $game_dir/$_" for (qw(graphics levels music sounds)); } if ($ARGV[0] eq 'configure') { system 'which update-menus >/dev/null 2>&1'; if ($? == 0) { print STDERR "Update menu\n"; system 'update-menus >/dev/null 2>&1'; } } # begin warn screen exit 0 unless get("$pkg/begin") eq 'true'; # select downloading my @sel=split /\s*,\s*/, get("$pkg/select_games"); open my $oldout, ">&STDOUT"; open STDOUT, ">&STDERR"; unless (-d "$game_dir/downloads") { unless (mkdir "$game_dir/downloads") { print "Error create dir '$game_dir/downloads': $!\n"; exit 0; } } clean_downloads_dir(); for my $what ('Base games', @sel) { unless (exists $info{$what}{url}) { print "Unknown key: $what\n"; next; } my $file=(split /\//, $info{$what}{url})[-1]; unless (-f "$game_dir/downloads/$file") { unless(cmd_execute("wget -c -P $game_dir/downloads $info{$what}{url}")) { open STDOUT, ">&", $oldout; fset "$pkg/error_download", "seen", "false"; input "critical", "$pkg/error_download"; go; stop; exit 0; } } install_file("$game_dir/downloads/$file", $what); } __END__ #DEBHELPER# debian/README.Debian-sources0000644000000000000000000000012111402122470012673 0ustar Files with questional license were deleted: graphics/ levels/ music/ sounds/ debian/watch0000644000000000000000000000016611402122470010213 0ustar version=3 opts=dversionmangle=s/\+dfsg// \ http://artsoft.org/RELEASES/unix/rocksndiamonds rocksndiamonds-(.*).tar.gz debian/start_binary.sh0000644000000000000000000000040511402122470012213 0ustar #!/bin/sh LEVEL_DIR=/usr/share/games/rocksndiamonds if test -d $LEVEL_DIR/levels; then exec /usr/games/rocksndiamonds-bin else echo "Game data not installed!" echo echo "usage: #dpkg-reconfigure rocksndiamonds" echo "for install/update game levels" fi debian/copyright0000644000000000000000000000563611402122470011124 0ustar This package was debianized by Dmitry E. Oboukhov on Thu, 23 Nov 2006 22:10:23 +0300. It was downloaded from: http://artsoft.org/ Upstream copyright: Artsoft Entertainment A game for Unix/X11, DOS and Windows by Holger Schemel. DOS port based on code by Guido Schulz. (c) 1995-2000 by Holger Schemel. License: GPLv2 On debian systems, full text of GPLv2 license is alailable in /usr/share/common-licenses/GPL-2 Different copyrights from sources: src/libgame/hash.h src/libgame/hash.c (c) 1994-2006 Artsoft Entertainment Holger Schemel Detmolder Strasse 189 33604 Bielefeld Germany e-mail: info@artsoft.org Copyright (C) 2002 Christopher Clark Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies of the Software and its documentation and acknowledgment shall be given in the documentation and software packages that this Software was used. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. src/libgame/random.c (c) 1994-2006 Artsoft Entertainment Holger Schemel Detmolder Strasse 189 33604 Bielefeld Germany e-mail: info@artsoft.org Copyright (c) 1983 Regents of the University of California. All rights reserved. Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, advertising materials, and other materials related to such distribution and use acknowledge that the software was developed by the University of California, Berkeley. The name of the University may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. This is derived from the Berkeley source: @(#)random.c 5.5 (Berkeley) 7/6/88 It was reworked for the GNU C Library by Roland McGrath. debian/control0000644000000000000000000000207611402143367010577 0ustar Source: rocksndiamonds Section: contrib/games Priority: extra Uploaders: Debian Games Team Maintainer: Dmitry E. Oboukhov Build-Depends: debhelper (>= 5), cdbs, po-debconf, libsdl1.2-dev (>= 1.2), libsdl-image1.2-dev (>= 1.2), libsdl-mixer1.2-dev (>= 1.2), libsdl-net1.2-dev (>= 1.2.7) Standards-Version: 3.8.4 Homepage: http://artsoft.org VCS-Browser: http://git.debian.org/?p=collab-maint/rocksndiamonds.git;a=summary VCS-Git: git://git.debian.org/collab-maint/rocksndiamonds.git Package: rocksndiamonds Pre-Depends: debconf (>= 0.5) | debconf-2.0 Conflicts: rocksndiamonds-data, rocksndiamonds-zelda, rocks-n-diamonds Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}, perl-modules, p7zip, wget, unzip Description: arcade-style game This package provides the game engine for Rocks'n'Diamonds, an arcade game in the tradition of "Boulder Dash", "Emerald Mine", "Supaplex", "Sokoban", "Legend Of Zelda", etcetera. Game levels emulating all of these can be downloaded from ArtSoft.org. debian/prerm.in0000644000000000000000000000021011402122470010625 0ustar #!/bin/sh set -e RES_DIR=/usr/share/games/rocksndiamonds #DEBHELPER# if test "$1" = "remove"; then rm -fr $RES_DIR/* fi exit 0 debian/rocksndiamonds.install0000644000000000000000000000007611402132257013574 0ustar rocksndiamonds-bin /usr/games/ rocksndiamonds /usr/games/ debian/menu0000644000000000000000000000021411402122470010043 0ustar ?package(rocksndiamonds):needs="x11" section="Games/Action"\ title="Rocks'n'Diamonds" \ command="/usr/games/rocksndiamonds forcestart" debian/changelog0000644000000000000000000002724011753753420011054 0ustar rocksndiamonds (3.3.0.1+dfsg1-2.2) unstable; urgency=low * Non-maintainer upload. * Fixed permissions when creating directories (Closes: #651620) -- Igor Pashev Sun, 13 May 2012 19:44:35 +0400 rocksndiamonds (3.3.0.1+dfsg1-2.1) unstable; urgency=low * Non-maintainer upload. * Fix pending l10n issues. Debconf translations: - Dutch; (Jeroen Schot). Closes: #637504 - Polish (Michał Kułach). Closes: #660004 -- Christian Perrier Thu, 23 Feb 2012 09:50:18 +0100 rocksndiamonds (3.3.0.1+dfsg1-2) unstable; urgency=low * Add Danish translation for debconf, closes: #595585, thanks to Joe Dalton . -- Dmitry E. Oboukhov Mon, 16 May 2011 13:57:45 +0400 rocksndiamonds (3.3.0.1+dfsg1-1) unstable; urgency=low * New upstream bugfix version. -- Dmitry E. Oboukhov Thu, 17 Jun 2010 10:37:21 +0400 rocksndiamonds (3.3.0.0+dfsg1-1) unstable; urgency=low * New upstream version. * Switched debian source format (3.0 quilt). * Bumped Standards-Version to 3.8.4. * Fixed dh_shlibdeps warning. -- Dmitry E. Oboukhov Fri, 04 Jun 2010 11:09:56 +0400 rocksndiamonds (3.2.6.1+dfsg1-6) unstable; urgency=low * Fixed bashizm in postinst-script, thanks for Michael Klein , closes: #558005. -- Dmitry E. Oboukhov Sun, 29 Nov 2009 13:58:15 +0300 rocksndiamonds (3.2.6.1+dfsg1-5) unstable; urgency=low * Updated Vietnamese translations, closes: #547807, thanks for Clytie Siddall -- Dmitry E. Oboukhov Wed, 23 Sep 2009 09:33:56 +0400 rocksndiamonds (3.2.6.1+dfsg1-4) unstable; urgency=low * Updated Japanese translations, closes: #546684, thanks for Hideki Yamane (Debian-JP) . -- Dmitry E. Oboukhov Tue, 15 Sep 2009 09:43:22 +0400 rocksndiamonds (3.2.6.1+dfsg1-3) unstable; urgency=low * Updated description and templates, closes: #543305, thanks for Christian Perrier . * Updated Russian translations, closes: 543386, thanks for Dmitri Gribenko . * Updated Swedish translations, closes: 539436, thanks for Martin Bagge . * Updated Czech translations, closes: 539438, thanks for Miroslav Kure . * Updated Portuguese translations, closes: #539751, thanks for Traduz - Portuguese Translation Team . * Added Basque translations, closes: #544108, thanks for Piarres Beobide . * Updated Portuguese translations, closes: #544168, thanks for Traduz - Portuguese Translation Team" (these translations are more new than from #539751, so translations from #539751 were overwrited). * Updated Czech translations, closes: #544328, thanks for Miroslav Kure (these translations overwrited translations from #539438). * Added Italian translations, closes: #544602, thanks for Luca Monducci . * Updated French translations, closes: 545089, thanks for Ivan Buresi . * Updated Spanish translations, closes: 545565, thanks for Francisco Javier Cuadrado . * Updated German translations, closes: 545750, thanks for Thomas Mueller . * Updated Russian translations, closes: #545862, thanks for Yuri Kozlov (these translations overwrited translations from #543386). * Added Japanese translations, closes: #546408, thanks for Hideki Yamane (Debian-JP) . * Standards-Version bumped to 3.8.3. -- Dmitry E. Oboukhov Mon, 14 Sep 2009 09:52:21 +0400 rocksndiamonds (3.2.6.1+dfsg1-2) unstable; urgency=low * Added debconf error screen about downloading error, closes: #538857. -- Dmitry E. Oboukhov Thu, 30 Jul 2009 09:30:03 +0400 rocksndiamonds (3.2.6.1+dfsg1-1) unstable; urgency=low * New upstream version. * Bumped Standards-Version to 3.8.2. * Added Debian Games Team into Uploaders group. -- Dmitry E. Oboukhov Tue, 30 Jun 2009 15:50:40 +0400 rocksndiamonds (3.2.6.0+dfsg-6) unstable; urgency=low * Added Galician translations for debconf, thanks Marce Villarino , closes: #512568. -- Dmitry E. Oboukhov Fri, 27 Feb 2009 23:56:41 +0300 rocksndiamonds (3.2.6.0+dfsg-5) unstable; urgency=low * 'downloads' directory is created before cleaning, closes: #516426, thanks for Sebastian Bremicker . * Added ${misc:Depends}, closes lintian warning. -- Dmitry E. Oboukhov Sat, 21 Feb 2009 15:54:05 +0300 rocksndiamonds (3.2.6.0+dfsg-4) unstable; urgency=low * Added VCS-* records to debian/control. * GIT-repo has been created in git.debian.org. -- Dmitry E. Oboukhov Sun, 01 Feb 2009 21:02:26 +0300 rocksndiamonds (3.2.6.0+dfsg-3) unstable; urgency=low * Fixed typo in /usr/share/games/rocksndiamonds/README.dir, closes: #506635. -- Dmitry E. Oboukhov Mon, 08 Dec 2008 15:27:47 +0300 rocksndiamonds (3.2.6.0+dfsg-2) unstable; urgency=low * Cleanup 'downloads' directory in postinst, closes: #506428. * Removed libsmpeg library from depends (closes dh_shlibdeps warning). -- Dmitry E. Oboukhov Fri, 05 Dec 2008 19:19:15 +0300 rocksndiamonds (3.2.6.0+dfsg-1) unstable; urgency=low * [New upstream version] * fixed crash bug when scrolling with cursor keys in editor * fixed X11 crash bug when scaling images with width/height less than 32 * fixed X11 crash bug when blitting masked title screens over background * fixed growing steel wall to also leave behind steel wall * fixed custom element change conditions where a player element is used * fixed bug with player relocation while the player switches an element * fixed problems with re-mapping players on playfield to input devices * fixed wrong behaviour of player option "no centering when relocating" * added condition "deadly when " for custom elements * added possibility to reanimate player immediately after his death * added "element used as action parameter" to element change actions * added optional initial inventory for players (pre-collected elements) * added change page actions "set player inventory" and "set CE artwork" * added switch for EM style dynamite "[ ] explodes with chain reaction" * moved "level settings" and "editor settings" to two tabbed screens * added level setting to start a level with always the same random seed * added CE action "set random seed" to re-initialize random seed in game * Standards-Version bumped to 3.8.0 * Fixed manpage (closes lintian warning). * Fixed debian/watch (added dversionmangle, closes lintian warning). -- Dmitry E. Oboukhov Mon, 17 Nov 2008 14:02:49 +0300 rocksndiamonds (3.2.4+dfsg-3) unstable; urgency=low * Update games link-list (added Zelda2 game). * My email address has been changed. -- Dmitry E. Oboukhov Fri, 30 May 2008 00:14:54 +0400 rocksndiamonds (3.2.4+dfsg-2) unstable; urgency=low * Remove bashism from /usr/games/rocksndiamonds, closes: #457156. * Change control::Standards-Version to 3.7.3. * Move menuitem to Games/Action, close lintian warning. * Upload sponsored by Al Nikolov . -- Dmitry E. Oboukhov Thu, 20 Dec 2007 12:28:50 +0300 rocksndiamonds (3.2.4+dfsg-1) unstable; urgency=low * New upstream version. * Rename orig.tgz to rocksndiamonds_x.x.x+dfsg.orig.tar.gz. * Upload sponsored by Al Nikolov . -- Dmitry E. Oboukhov Wed, 03 Oct 2007 18:14:54 +0400 rocksndiamonds (3.2.3-4) unstable; urgency=low * Added Portuguese translation for debconf messages, thanks Américo Monteiro , closes: #437285. * Added debian/watch file. -- Dmitry E. Oboukhov Sat, 11 Aug 2007 20:03:14 +0400 rocksndiamonds (3.2.3-3) unstable; urgency=low * Fix typo in menu entry (closes: #428525). * Create symlink from man6/rocksndiamonds to man6/rocksndiamonds-bin. -- Dmitry E. Oboukhov Tue, 12 Jun 2007 14:34:58 +0400 rocksndiamonds (3.2.3-2) unstable; urgency=low * Added Spanish language (closes: #419240), thanks '"Enrique Matías Sánchez (Quique)" '. -- Dmitry E. Oboukhov Sat, 14 Apr 2007 20:30:10 +0400 rocksndiamonds (3.2.3-1) unstable; urgency=low * New upstream version; * Added preinst script for remove previous game resources. -- Dmitry E. Oboukhov Thu, 1 Feb 2007 11:07:10 +0300 rocksndiamonds (3.2.2-13) unstable; urgency=low * Added Vietnamese language for debconf dialogs, thanks 'Clytie Siddall '; * Added French language for debconf dialogs, thanks 'Ivan Buresi ' (closes: #407657); * Added German language for debconf dialogs, thanks 'Matthias Julius ' (closes: #406141). -- Dmitry E. Oboukhov Tue, 9 Jan 2007 10:13:37 +0300 rocksndiamonds (3.2.2-12) unstable; urgency=low * Fix conflict with rocks-n-diamonds (closes: #405909); * Fix debconf-template (closes: #405889); * Added Swedish language for debconf dialogs, thanks 'Daniel Nylander '; * Added Czech language for debconf dialogs, thanks 'Miroslav Kure ' (closes: #405939). -- Dmitry E. Oboukhov Sun, 7 Jan 2007 14:55:57 +0300 rocksndiamonds (3.2.2-11) unstable; urgency=low * Add different copyrights from sources into /usr/share/doc/rocksndiamonds/copyright. -- Dmitry E. Oboukhov Sun, 17 Dec 2006 23:11:07 +0300 rocksndiamonds (3.2.2-10) unstable; urgency=low * Move manpage from man1 to man6. -- Dmitry E. Oboukhov Sun, 3 Dec 2006 23:39:45 +0300 rocksndiamonds (3.2.2-9) unstable; urgency=low * Move exec-files into /usr/games; * Fix 'malformed-prompt-in-templates' lintian/linda warning. -- Dmitry E. Oboukhov Sun, 3 Dec 2006 20:57:22 +0300 rocksndiamonds (3.2.2-8) unstable; urgency=low * Fix (and override) all lintian and linda warnings/errors; * Fix debian/copyright; * Fix permissions into /usr/share/games/$(PACKAGE)/*. -- Dmitry E. Oboukhov Sun, 3 Dec 2006 15:37:07 +0300 rocksndiamonds (3.2.2-7) unstable; urgency=low * Add menu item. -- Dmitry E. Oboukhov Tue, 28 Nov 2006 18:09:33 +0300 rocksndiamonds (3.2.2-6) unstable; urgency=low * Modified debconf templates for use po-debconf. -- Dmitry E. Oboukhov Tue, 28 Nov 2006 15:59:46 +0300 rocksndiamonds (3.2.2-5) unstable; urgency=low * Correctly remove download-resources. -- Dmitry E. Oboukhov Mon, 27 Nov 2006 11:11:04 +0300 rocksndiamonds (3.2.2-4) unstable; urgency=low * Fixed all Nikita V. Youshchenko recomendations, exclude first and "purge". -- Dmitry E. Oboukhov Sun, 26 Nov 2006 17:58:05 +0300 rocksndiamonds (3.2.2-3) unstable; urgency=low * Fixed download script (not started md5summ if not downloading file). -- Dmitry E. Oboukhov Sat, 25 Nov 2006 16:20:00 +0300 rocksndiamonds (3.2.2-2) unstable; urgency=low * Added dpkg-reconfigure mechanizm. -- Dmitry E. Oboukhov Sat, 25 Nov 2006 02:33:59 +0300 rocksndiamonds (3.2.2-1) unstable; urgency=low * Initial release. -- Dmitry E. Oboukhov Thu, 23 Nov 2006 22:10:23 +0300 debian/rules0000755000000000000000000000162611402142664010253 0ustar #!/usr/bin/make -f VERSION := $(shell dpkg-parsechangelog \ |grep ^Version \ |awk '{print $$2}' \ |sed 's/-[0-9]\+$$//') UPSTREAM_VERSION := $(shell echo $(VERSION)|sed 's/+.*//') LEVEL_DIR := /usr/share/games/rocksndiamonds include /usr/share/cdbs/1/rules/debhelper.mk build/rocksndiamonds:: rocksndiamonds.6 make RO_GAME_DIR=$(LEVEL_DIR) sdl install/rocksndiamonds:: set -e; \ for file in postinst preinst prerm; do \ cp debian/$$file.in debian/$$file; \ perl -pi -e 's/#VERSION#/$(UPSTREAM_VERSION)/g' \ debian/$$file; \ done mv rocksndiamonds rocksndiamonds-bin install -m 0755 debian/start_binary.sh rocksndiamonds rocksndiamonds.6: rocksndiamonds.1 sed 's/^\.TH ROCKSNDIAMONDS 1L/.TH ROCKSNDIAMONDS 6/' $< > $@ clean:: make clean rm -fr rocksndiamonds.6 .pc \ src/conftime.h rocksndiamonds-bin \ debian/postinst debian/preinst debian/prerm debconf-updatepo debian/manpages0000644000000000000000000000002111402122470010666 0ustar rocksndiamonds.6 debian/templates0000644000000000000000000000263411402122470011105 0ustar # These templates have been reviewed by the debian-l10n-english # team # # If modifications/additions/rewording are needed, please ask # debian-l10n-english@lists.debian.org for advice. # # Even minor modifications require translation updates and such # changes should be coordinated with translators and reviewers. Template: rocksndiamonds/begin Type: boolean Default: true _Description: Download non-free game data? The data files required by rocksndiamonds do not have licenses that would allow them to be distributed as a package. However, they can be automatically downloaded from the Internet and installed locally. Template: rocksndiamonds/select_games Type: multiselect Choices: Legend Of Zelda, Legend Of Zelda II, Emerald Mine Club, Contributions 1995 - 2006, Snake Bite, BD2K3, BD Dream, Supaplex, DX-Boulderdash _Description: Games to download data for: Template: rocksndiamonds/util_notfound Type: error _Description: Missing utilities for download or unpacking Downloading and unpacking the game data requires the packages wget, p7zip, and unzip, but not all of these are available. . You should install them and then reconfigure this package by using "dpkg-reconfigure rocksndiamonds". Template: rocksndiamonds/error_download Type: error _Description: Cannot download required resources An error occurred while downloading game data. You should check the network connection and settings and retry later on. debian/patches/0000755000000000000000000000000011754002013010606 5ustar debian/patches/fix-shlibdeps-warning0000644000000000000000000000334411406342021014741 0ustar Description: Upstream changes introduced in version 3.3.0.0+dfsg1-1 This patch has been created by dpkg-source during the package build. Here's the last changelog entry, hopefully it gives details on why those changes were made: . rocksndiamonds (3.3.0.0+dfsg1-1) unstable; urgency=low . * New upstream version. * Switched debian source format (3.0 quilt). * Bumped Standards-Version to 3.8.4. * Fixed dh_shlibdeps warning. . The person named in the Author field signed this changelog entry. Author: Dmitry E. Oboukhov --- The information above should follow the Patch Tagging Guidelines, please checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here are templates for supplementary fields that you might want to add: Origin: , Bug: Bug-Debian: http://bugs.debian.org/ Forwarded: Reviewed-By: Last-Update: --- rocksndiamonds-3.3.0.1+dfsg1.orig/src/Makefile +++ rocksndiamonds-3.3.0.1+dfsg1/src/Makefile @@ -102,13 +102,13 @@ endif ifeq ($(TARGET),sdl) # compiling for SDL target SYS_CFLAGS = -DTARGET_SDL $(shell sdl-config --cflags) -SDL_LIBS = -lSDL_image -lSDL_mixer -lSDL_net -lsmpeg +SDL_LIBS = -lSDL_image -lSDL_mixer -lSDL_net SYS_LDFLAGS = $(SDL_LIBS) $(shell sdl-config --libs) endif ifeq ($(TARGET),sdl-static) # compiling for SDL target (static) SYS_CFLAGS = -DTARGET_SDL $(shell sdl-config --cflags) -SDL_LIBS = -lSDL_image -lSDL_mixer -lSDL_net -lsmpeg +SDL_LIBS = -lSDL_image -lSDL_mixer -lSDL_net SYS_LDFLAGS = $(SDL_LIBS) $(shell sdl-config --static-libs) endif debian/patches/651620-world-writable-dirs.patch0000644000000000000000000000266111754002013016272 0ustar Description: Don't play with directory permissions The ~/.rocksndiamonds directory and its subdirectories were created as writable to anybody . rocksndiamonds (3.3.0.1+dfsg1-2.2) unstable; urgency=low . * Non-maintainer upload. * Fixed permissions when creating directories (Closes: #651620) Author: Igor Pashev Bug-Debian: http://bugs.debian.org/651620 Origin: vendor Forwarded: no Last-Update: 2012-05-13 --- rocksndiamonds-3.3.0.1+dfsg1.orig/src/libgame/setup.c +++ rocksndiamonds-3.3.0.1+dfsg1/src/libgame/setup.c @@ -1438,26 +1438,10 @@ void createDirectory(char *dir, char *te of USERDATA_DIR_MODE are not masked */ mode_t dir_mode = (permission_class == PERMS_PRIVATE ? DIR_PERMS_PRIVATE : DIR_PERMS_PUBLIC); - mode_t last_umask = posix_umask(0); - mode_t group_umask = ~(dir_mode & S_IRWXG); - int running_setgid = posix_process_running_setgid(); - - /* if we're setgid, protect files against "other" */ - /* else keep umask(0) to make the dir world-writable */ - - if (running_setgid) - posix_umask(last_umask & group_umask); - else - dir_mode |= MODE_W_ALL; if (!fileExists(dir)) if (posix_mkdir(dir, dir_mode) != 0) Error(ERR_WARN, "cannot create %s directory '%s'", text, dir); - - if (permission_class == PERMS_PUBLIC && !running_setgid) - chmod(dir, dir_mode); - - posix_umask(last_umask); /* restore previous umask */ } void InitUserDataDirectory() debian/patches/fix-manpage-errors0000644000000000000000000000550511406341742014255 0ustar Description: Upstream changes introduced in version 3.3.0.0+dfsg1-1 This patch has been created by dpkg-source during the package build. Here's the last changelog entry, hopefully it gives details on why those changes were made: . rocksndiamonds (3.3.0.0+dfsg1-1) unstable; urgency=low . * New upstream version. * Switched debian source format (3.0 quilt). * Bumped Standards-Version to 3.8.4. . The person named in the Author field signed this changelog entry. Author: Dmitry E. Oboukhov --- The information above should follow the Patch Tagging Guidelines, please checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here are templates for supplementary fields that you might want to add: Origin: , Bug: Bug-Debian: http://bugs.debian.org/ Forwarded: Reviewed-By: Last-Update: --- rocksndiamonds-3.3.0.1+dfsg1.orig/rocksndiamonds.1 +++ rocksndiamonds-3.3.0.1+dfsg1/rocksndiamonds.1 @@ -150,8 +150,8 @@ keys or with the joystick (if you have n keys on your keyboard, you can use the keys 'i', 'j', 'k' and 'm' for the directions. To 'snap' a field near you without moving to it, you can use the left fire button on your joystick (hold it down, move the -stick to 'snap' the field, release the button) or the keys 'e', 's', -'d' and 'x'. To place a piece of dynamite, use the right fire button +stick to 'snap' the field, release the button) or the keys 'e', 's', 'd' +and 'x'. To place a piece of dynamite, use the right fire button on your joystick or use the 'b' key (and, after placing the dynamite, better see to move away from this field...). @@ -195,9 +195,9 @@ elements and something like that. The fo can be edited like the level field and indicate the 'contents' of smashed crunchers (just try it out with some crunchers in one of your own levels). -'Undo & Exit' leaves the level editor, throwing away all the changes you + 'Undo & Exit' leaves the level editor, throwing away all the changes you have done to the level. -'Save & Exit' leveas the level editor and saves the new level (the old one + 'Save & Exit' leveas the level editor and saves the new level (the old one will be deleted). @@ -216,8 +216,8 @@ to press 'Start Game' as usual. .TP .B Saving a game tape: To save a tape to the tape file corresponding to the level (that means -that you can only save one tape file for each level), just press the -'eject' button (the very left button). Then you will be prompted if +that you can only save one tape file for each level), just press the 'eject' +button (the very left button). Then you will be prompted if you really want to replace the old tape (if an old tape exists). .TP debian/patches/series0000644000000000000000000000011211754001602012020 0ustar fix-manpage-errors fix-shlibdeps-warning 651620-world-writable-dirs.patch debian/po/0000755000000000000000000000000011755713445007620 5ustar debian/po/es.po0000644000000000000000000001063511564172416010567 0ustar # rocksndiamonds po-debconf translation to Spanish # Copyright (C) 2007, 2009 Free Software Foundation, Inc. # This file is distributed under the same license as the rocksndiamonds package. # # Changes: # - Initial translation # Enrique Matias Sanchez , 2007 # # - Updates # Francisco Javier Cuadrado , 2009 # # 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: rocksndiamonds 3.2.6.1+dfsg1-3\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2009-08-30 13:31+0100\n" "Last-Translator: Francisco Javier Cuadrado \n" "Language-Team: Debian l10n Spanish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:2001 msgid "Download non-free game data?" msgstr "¿Desea descargar los datos no libres del juego?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "Los archivos de datos que necesita rocksndiamonds no tienen licencias que " "permitan su distribución como un paquete. Sin embargo, se pueden descargar " "automáticamente desde Internet e instalarse de forma local." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Descargar los datos de los juegos:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "" "Faltan algunas de las herramientas necesarias para descargar o desempaquetar " "los datos" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "Se necesitan los paquetes wget, 7-zip y unzip para descargar y desempaquetar " "los datos del juego, pero todos no están disponibles." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "Debería instalarlos y, después, reconfigurar este paquete ejecutando «dpkg-" "reconfigure rocksndiamonds»." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "No se pueden descargar los recursos necesarios" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "Se produjo un fallo mientras se descargaban los datos del juego. Debería " "comprar la conexión de red, la configuración y reintentarlo más tarde." #~ msgid "" #~ "These games require data files that are not available under a free " #~ "software license and so are not distributable with Debian. This script " #~ "may automatically download these data files from the net and install them " #~ "on your system." #~ msgstr "" #~ "Estos juegos precisan de ficheros de datos que no están disponibles bajo " #~ "ninguna licencia de software libre, y que por tanto no se pueden incluir " #~ "en Debian. Este programa puede descargar automáticamente estos ficheros " #~ "de datos de Internet, e instalarlos en su sistema." #~ msgid "" #~ "The wget, 7-zip, unzip, tar are needed to either download or unpack the " #~ "game data." #~ msgstr "" #~ "Se necesitan los paquetes wget, 7-zip, unzip y tar para descargar y " #~ "desempaquetar los datos del juego." debian/po/POTFILES.in0000644000000000000000000000004411402122470011350 0ustar [type: gettext/rfc822deb] templates debian/po/cs.po0000644000000000000000000000661011564172416010563 0ustar # Czech translation of rocksndiamonds debconf messages. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the rocksndiamonds package. # Miroslav Kure , 2007,2009. # msgid "" msgstr "" "Project-Id-Version: rocksndiamonds\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2009-08-30 18:38+0200\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:2001 msgid "Download non-free game data?" msgstr "Stáhnout nesvobodná herní data?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "Datové soubory hry rocksndiamonds jsou distribuovány pod licencí, která " "neumožňuje jejich šíření ve formě balíků. Je však možné tyto soubory " "automaticky stáhnout z Internetu a nainstalovat lokálně." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Hry, pro které se mají stáhnout data:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "Chybějící nástroje pro stažení a rozbalení" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "Pro stažení a rozbalení herních dat jsou vyžadovány balíky wget, p7zip a " "unzip, avšak některé z nich nejsou dostupné." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "Měli byste je nainstalovat a poté znovu spustit tohoto průvodce příkazem " "„dpkg-reconfigure rocksndiamonds“." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "Nelze stáhnout požadované zdroje" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "Při stahování herních dat se objevila chyba. Měli byste zkontrolovat " "připojení k síti a zkusit to později znovu." #~ msgid "" #~ "These games require data files that are not available under a free " #~ "software license and so are not distributable with Debian. This script " #~ "may automatically download these data files from the net and install them " #~ "on your system." #~ msgstr "" #~ "Tyto hry vyžadují datové soubory, které nejsou dostupné pod svobodnou " #~ "licencí a proto nemohou být v Debianu distribuovány. Tento skript umí " #~ "stáhnout datové soubory ze sítě a nainstalovat je na váš počítač." #~ msgid "" #~ "The wget, 7-zip, unzip, tar are needed to either download or unpack the " #~ "game data." #~ msgstr "" #~ "Pro stažení a rozbalení herních dat jsou nutné programy wget, 7-zip, " #~ "unzip a tar." debian/po/templates.pot0000644000000000000000000000353411402122470012324 0ustar # 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: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\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:2001 msgid "Download non-free game data?" msgstr "" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" debian/po/pt.po0000644000000000000000000000544411564172416010605 0ustar # translation of rocksndiamonds debconf to Portuguese # Copyright (C) 2007 the rocksndiamonds's copyright holder # This file is distributed under the same license as the rocksndiamonds package. # # Américo Monteiro , 2007, 2009. msgid "" msgstr "" "Project-Id-Version: rocksndiamonds 3.2.6.1+dfsg1-3\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2009-08-29 00:13+0100\n" "Last-Translator: Américo Monteiro \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" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: boolean #. Description #: ../templates:2001 msgid "Download non-free game data?" msgstr "Transferir dados não-livres do jogo?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "Os ficheiros de dados necessários pelo rocksndiamonds não têm licenças que " "lhes permitam ser distribuídos como um pacote. No entanto, podem ser " "descarregados automaticamente a partir da Internet e instalados localmente." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Descarregar dados para os jogos:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "Faltam utilitários para descarregar ou desempacotar" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "Para descarregar e instalar os dados do jogo é necessário os pacotes wget, " "p7zip, e unzip, mas nem todos estão disponíveis." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "Você deverá instalá-los e depois reconfigurar este pacote usando 'dpkg-" "reconfigure rocksndiamonds'." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "Não foi possível descarregar os recursos necessários" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "Ocorreu um erro ao descarregar os dados do jogo. Você deve verificar a " "ligação e definições da rede e tentar mais tarde." debian/po/gl.po0000644000000000000000000000643411564172416010564 0ustar # translation of rocksndiamonds_3.2.4+dfsg-3_gl.po to galician # Copyright (C) This file is part of debian # This file is distributed under the same license as the rocksndiamonds package. # # Marce Villarino , 2009. # mvillarino , 2009. msgid "" msgstr "" "Project-Id-Version: rocksndiamonds_3.2.4+dfsg-3_gl\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2009-01-21 22:02+0100\n" "Last-Translator: Marce Villarino \n" "Language-Team: galician \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" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: boolean #. Description #: ../templates:2001 msgid "Download non-free game data?" msgstr "Desexa obter datos non libres para o xogo?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Partidas das que obter os datos:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "Faltan útiles para obter ou para desempaquetar" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" #. Type: error #. Description #: ../templates:4001 #, fuzzy #| msgid "" #| "Some of them are not available on this system. You should install them " #| "and then reconfigure this package by using 'dpkg-reconfigure " #| "rocksndiamonds'." msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "Algún deles non está dispoñíbel neste sistema. Debe instalalos e despois " "reconfigurar este paquete coa orde «dpkg-reconfigure rocksndiamonds»." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" #~ msgid "" #~ "These games require data files that are not available under a free " #~ "software license and so are not distributable with Debian. This script " #~ "may automatically download these data files from the net and install them " #~ "on your system." #~ msgstr "" #~ "Esas partidas requiren ficheiros de datos que non están dispoñíbel baixo " #~ "unha licenxa de software libre e polo tanto non se poden distribuir con " #~ "Debian. Este script pode obter automaticamente eses ficheiros de datos da " #~ "rede e instalalos no sistema." #~ msgid "" #~ "The wget, 7-zip, unzip, tar are needed to either download or unpack the " #~ "game data." #~ msgstr "" #~ "Precísase de wget, 7-zip, unzip e tar para obter e desempaquetar os datos " #~ "do xogo." debian/po/pl.po0000644000000000000000000000540211717117276010572 0ustar # Translation of rocksndiamonds debconf templates to Polish. # Copyright (C) 2009 # This file is distributed under the same license as the rocksndiamonds package. # # Michał Kułach , 2012. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2012-02-14 20:39+0100\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" #. Type: boolean #. Description #: ../templates:2001 msgid "Download non-free game data?" msgstr "Pobrać niewolne pliki gry?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "Pliki z danymi wymaganymi przez rocksndiamonds są licencjonowane na zasadach " "niepozwalających rozpowszechniać ich w pakiecie. Można je jednak pobrać z " "Internetu w sposób automatyczny i zainstalować." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Gry do których zostaną pobrane dane:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "Brakujące narzędzia do pobierania lub rozpakowywania" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "Pobieranie i rozpakowanie danych gry wymaga pakietów wget, p7zip i unzip, " "ale niektóre z nich są niedostępne." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "Proszę je zainstalować i dokonać ponownej konfiguracji pakietu poleceniem " "\"dpkg-reconfigure rocksndiamonds\"." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "Nie można pobrać żądanych zasobów" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "Podczas pobierania danych gry wystąpił błąd. Proszę sprawdzić połączenie " "oraz ustawienia sieci i spróbować ponownie." debian/po/eu.po0000644000000000000000000000522411564172416010567 0ustar # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Piarres Beobide , 2009. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2009-08-28 23:55+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: boolean #. Description #: ../templates:2001 msgid "Download non-free game data?" msgstr "Deskargatu libre ez diren jokoaren datuak?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "Rocksndiamonds-ek behar dituen datu fitxategiak ez dute pakete modura " "banatzeko baimena ematen duen lizentziarik. Hala ere fitxategi horiek " "internetetik deskargatu eta lokalean instalatu daitezke." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Datuak deskargatzeko jokoak:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "Deskargatu edo despaketatzeko lanabesak falta dira" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "Jokoaren datuak deskargatu eta despaketatzeko wget, p7zip eta unzip " "instalaturik egon behar dira baina ez daude denak instalaturik." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "Instalatu egin beharko zenituzke eta orduan \"dpkg-reconfigure rocksndiamonds" "\" erabiliaz pakete hau birkonfiguratu." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "Ezin dira beharrezko errekurtsoak deskargatu" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "Jokoaren datuak deskargatzean errore bat gertatu da. Sare konexioa egiaztatu " "eta gero berriz saiatu beharko zenuke." debian/po/da.po0000644000000000000000000000510011564172416010533 0ustar # Danish translation rocksndiamonds. # Copyright (C) 2010 rocksndiamonds & nedenstående oversættere. # This file is distributed under the same license as the rocksndiamonds package. # Joe Hansen , 2010. # msgid "" msgstr "" "Project-Id-Version: rocksndiamonds\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2010-09-05 23:51+0200\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:2001 msgid "Download non-free game data?" msgstr "Hent spildata der ikke er frie?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "Datafilerne krævet af rocksndiamonds har ikke licenser, som tillader, at de " "distribueres som en pakke. De kan dog automatisk hentes fra internettet og " "installeres lokalt." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Spil at hente data for:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "Manglende værktøjer for hentning eller udpakning" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "Hentning og udpakning af spildataene kræver pakkerne wget, p7zip og unzip, " "men de er ikke alle tilgængelige." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "Du skal installere dem og så rekonfigurere denne pakke med brug af »dpkg-" "reconfigure rocksndiamonds«." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "Kan ikke hente krævede ressourcer" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "En fejl opstod under hentning af spildata. Du bør tjekke " "netværksforbindelsen og -opsætning og forsøge igen senere." debian/po/nl.po0000644000000000000000000000534711715020051010556 0ustar # Dutch translation of rocksndiamonds debconf templates. # Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the rocksndiamonds package. # Jeroen Schot , 2011. # msgid "" msgstr "" "Project-Id-Version: rocksndiamonds 3.3.0.1+dfsg1-2\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2011-07-20 10:13+0200\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:2001 msgid "Download non-free game data?" msgstr "Niet-vrije spelgegevens ophalen?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "De gegevensbestanden die rocksndiamonds nodig heeft kunnen vanwege hun " "licentie niet met het pakket worden meegeleverd. Het is echter wel mogelijk " "om ze automatisch van het internet op te halen en lokaal te installeren." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Gegevens ophalen voor deze spellen:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "Ontbrekende hulpprogramma's bij het ophalen of uitpakken" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "Voor de het ophalen en uitpakken van de spelgegevens zijn de pakketten wget, " "p7zip en unzip vereist, maar deze zijn niet allemaal aanwezig." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "U dient deze te installeren en dan dit pakket opnieuw te configureren met " "\"dpkg-reconfigure rocksndiamonds\"." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "Kan de benodigde bronnen niet ophalen" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "Er is een fout opgetreden bij het ophalen van de spelgegeven. Controleer de " "netwerkverbinding en instellingen en probeer het later nog eens." debian/po/de.po0000644000000000000000000000562611564172416010554 0ustar # translation of po-debconf template to German # Copyright (C) 2007, Matthias Julius # This file is distributed under the same license as the rocksndiamonds package. # # Matthias Julius , 2007. # Thomas Mueller , 2009. msgid "" msgstr "" "Project-Id-Version: rocksndiamonds 3.2.2-12\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2009-09-05 08:48+0200\n" "Last-Translator: Thomas Mueller \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: boolean #. Description #: ../templates:2001 msgid "Download non-free game data?" msgstr "Unfreie Spieledaten herunterladen?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "Die Datendateien, die von rocksndiamonds benötigt werden, stehen unter " "keiner Lizenz, die eine Verteilung in einem Paket erlaubt. Wie auch immer, " "diese können automatisch aus dem Internet geladen und lokal installiert " "werden." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Spiele, für die Daten heruntergeladen werden sollen:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "Fehlende Werkzeuge zum Herunterladen oder Entpacken" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "Zum Herunterladen und Entpacken der Spieledaten werden die Pakete wget, " "p7zip und unzip benötigt, aber nicht alle sind vorhanden." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "Sie sollten sie installieren und dann dieses Paket neu einrichten, indem Sie " "»dpkg-reconfigure rocksndiamonds« aufrufen." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "Die benötigten Ressourcen konnten nicht heruntergeladen werden" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "Es ist ein Fehler beim Herunterladen der Spieledaten aufgetreten. Bitte " "prüfen Sie die Netzwerkverbindung und Einstellungen und versuchen Sie es " "später noch einmal." debian/po/sv.po0000644000000000000000000000764211564172416010614 0ustar # Translation of rocksndiamonds debconf template to Swedish # Copyright (C) 2009 Martin Bagge # This file is distributed under the same license as the rocksdiaminds package. # # Dabiel Nylander , 2007 # Martin Bagge , 2009 msgid "" msgstr "" "Project-Id-Version: rocksndiamonds\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2009-08-31 20:22+0100\n" "Last-Translator: Martin Bagge \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Swedish\n" "X-Poedit-Country: Sweden\n" "X-Poedit-SourceCharset: utf-8\n" #. Type: boolean #. Description #: ../templates:2001 msgid "Download non-free game data?" msgstr "Hämta icke-fritt speldata?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "Datafilerna som behövs för rocksndiamonds saknar licens eller är " "licensierade på ett sätt som gör det omöjligt att inkludera dem i ett paket. " "De kan dock hämtas automatiskt över Internet för att sedan bli installerade " "lokalt." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Spel att hämta ner data för:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "Saknar verktyg för att hämta eller packa upp" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "För att kunna hämta speldata krävs paketen wget, p7zip och unzip men något " "av dem saknas." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "Installera den eller de du saknar och kör sedan inställningsdelen av detta " "paketet igen med kommandot \"dpkg-reconfigure rocksndiamonds\"." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "Kan inte hämta resurser som krävs" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "Ett fel inträffade när speldata skulle hämtas. Kontrollera " "nätverksanslutningen och -inställningar och försök sedan igen." #~ msgid "" #~ "These games require data files that are not available under a free " #~ "software license and so are not distributable with Debian. This script " #~ "may automatically download these data files from the net and install them " #~ "on your system." #~ msgstr "" #~ "Dessa spel kräver datafiler som inte finns tillgängliga under en fri " #~ "programvarulicens och kan därför inte distribueras med Debian. Det hä¤r " #~ "skriptet kan automatiskt hämta dessa datafiler från nätet och installera " #~ "dem på ditt system." #~ msgid "" #~ "The wget, 7-zip, unzip, tar are needed to either download or unpack the " #~ "game data." #~ msgstr "" #~ "Verktygen wget, 7-zip, unzip och tar behövs för att antingen hämta eller " #~ "packa upp speldatat." #~ msgid "" #~ "When script tried to download one of choosen resources downloading error " #~ "occured. Please check Your network connection or retry later on." #~ msgstr "" #~ "När ett skript försökta hämta en av de valda resurserna inträffade ett " #~ "fel. Kontrollera din nätverksanslutning eller prova igen vid ett senare " #~ "tillfälle." debian/po/vi.po0000644000000000000000000000560411564172416010576 0ustar # Vietnamese translation for Rocks 'n' Diamonds. # Copyright © 2009 Free Software Foundation, Inc. # Clytie Siddall , 2007-2009. # msgid "" msgstr "" "Project-Id-Version: rocksndiamonds 3.2.6.1+dfsg1-3\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2009-09-22 19:32+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:2001 msgid "Download non-free game data?" msgstr "Tải về dữ liệu trò chơi khác tự do không?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "rocksndiamonds yêu cầu một số tập tin dữ liệu mà không có giấy phép cho phép " "phát hành dưới dạng gói phần mềm. Tuy nhiên, người dùng có thể tải chúng " "xuống Internet và cài đặt chúng một cách cục bộ." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Các trò chơi cho chúng cần tải về dữ liệu :" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "Thiếu tiện ích để tải về hay giải nén" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "Tiến trình tải về và giải nén dữ liệu trò chơi thì yêu cầu những gói phần " "mềm wget, p7zip và unzip: tiếc là không có sẵn sàng tất cả gói này." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "Bạn nên cài đặt những gói đó, sau đó cấu hình lại gói này bằng câu lệnh « " "dpkg-reconfigure rocksndiamonds »." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "Không thể tải về những tài nguyên yêu cầu" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "Gặp lỗi trong khi tải về dữ liệu trò chơi. Bạn nên kiểm tra lại kết nối mạng " "và thiết lập, và thử lại về sau." debian/po/ru.po0000644000000000000000000000623111564172416010603 0ustar # translation of ru.po to Russian # Dmitry E. Oboukhov, 2007. # Yuri Kozlov , 2009. msgid "" msgstr "" "Project-Id-Version: rocksndiamonds 3.2.6.1+dfsg1-3\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2009-08-29 09:20+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:2001 msgid "Download non-free game data?" msgstr "Скачать несвободные ресурсы игры из интернета?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "Файлы данных, требуемые для rocksndiamonds, не имеют лицензии, которая бы " "позволяла распространять их пакете. Однако, их можно скачать и установить из " "интернета автоматически." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Выберите, какие игры необходимо скачать:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "Не найдены утилиты для скачивания и распаковки" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "Для скачивания и распаковки данных игры требуются пакеты wget, p7zip и " "unzip, но не все из них доступны." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "Установите их, а затем повторно запустите перенастройку данного пакета с " "помощью 'dpkg-reconfigure rocksndiamonds'." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "Не удалось скачать запрошенные ресурсы" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "При скачивании данных игры произошла ошибка. Проверьте подключение к сети и " "настройки, а затем повторите попытку." debian/po/it.po0000644000000000000000000000520411564172416010570 0ustar # Translation of rocksndiamonds debconf templates to Italian # This file is distributed under the same license as the rocksndiamonds package. # Luca Monducci , 2009. # msgid "" msgstr "" "Project-Id-Version: rocksndiamonds 3.2.6.1 italian debconf\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2009-09-01 20:45+0200\n" "Last-Translator: Luca Monducci \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:2001 msgid "Download non-free game data?" msgstr "Scaricare i dati non liberi dei giochi?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "I file dati necessari a rocksndiamonds non hanno una licenza che permette di " "distribuirli come pacchetti. Comunque è possibile scaricarli automaticamente " "da Internet e installarli in locale." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Scaricare i dati per i giochi:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "Mancano le utilità per scaricare o estrarre" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "Per scaricare ed estrarre i dati di gioco sono necessari i pacchetti wget, " "p7zip e unzip, ma non sono tutti disponibili." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "È necessario installarli e poi riconfigurare questo pacchetto usando \"dpkg-" "reconfigure rocksndiamonds\"." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "Impossibile scaricare le risorse necessarie" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "Si è verificato un errore durante lo scaricamento dei dati di gioco. " "Controllare la connessione e la configurazione della rete, poi riprovare." debian/po/fr.po0000644000000000000000000000667511564172416010600 0ustar # This file is distributed under the same license as the rocksndiamonds package. # Ivan Buresi , 2007 # msgid "" msgstr "" "Project-Id-Version: rocksndiamonds\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2009-09-03 16:06+0100\n" "Last-Translator: Ivan Buresi \n" "Language-Team: debian-l10n-french \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:2001 msgid "Download non-free game data?" msgstr "Faut-il télécharger les données non libres du jeu ?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "Les licences des fichiers de données requis par rocksndiamonds ne permettent " "pas de les distribuer sous forme de paquet. Cependant, ils peuvent être " "téléchargés automatiquement depuis Internet et installés localement." #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "Jeux pour lesquels télécharger des données :" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "" "Utilitaires de téléchargement ou de décompression des données manquants" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "Télécharger et extraire les données du jeu requièrent les logiciels wget, " "p7zip et unzip, mais ceux-ci ne sont pas tous disponibles." #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "Vous devriez les installer et reconfigurer ce logiciel avec « dpkg-" "reconfigure rocksndiamonds »." #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "Impossible de télécharger les ressources requises" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "Une erreur est survenue lors du téléchargement des données du jeu. Vous " "devriez vérifier la connexion et les paramètres réseau et réessayer plus " "tard." #~ msgid "" #~ "These games require data files that are not available under a free " #~ "software license and so are not distributable with Debian. This script " #~ "may automatically download these data files from the net and install them " #~ "on your system." #~ msgstr "" #~ "Certains des fichiers utilisés par ce jeu ne sont pas distribués sous " #~ "licence libre et ne peuvent donc pas être inclus dans Debian. Ce script " #~ "peut télécharger automatiquement ces fichiers depuis Internet et les " #~ "installer sur votre système." #~ msgid "" #~ "The wget, 7-zip, unzip, tar are needed to either download or unpack the " #~ "game data." #~ msgstr "" #~ "Les paquets wget, unzip, 7-zip et tar sont indispensables pour " #~ "télécharger et décompresser les données." debian/po/ja.po0000644000000000000000000000566011564172416010554 0ustar # Japanese translation of rocksndiamonds debconf templates. # Copyright (C) 2009 Hideki Yamane # This file is distributed under the same license as the rocksndiamonds package. # msgid "" msgstr "" "Project-Id-Version: rocksndiamonds 3.2.6.1+dfsg1-4\n" "Report-Msgid-Bugs-To: rocksndiamonds@packages.debian.org\n" "POT-Creation-Date: 2009-09-14 10:29+0400\n" "PO-Revision-Date: 2009-09-15 12:27+0900\n" "Last-Translator: Hideki Yamane (Debian-JP) \n" "Language-Team: Debian JP Project \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:2001 msgid "Download non-free game data?" msgstr "non-free なゲームデータをダウンロードしますか?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "The data files required by rocksndiamonds do not have licenses that would " "allow them to be distributed as a package. However, they can be " "automatically downloaded from the Internet and installed locally." msgstr "" "rocksdiamonds に必要なデータファイルはパッケージとして配布できるライセンスで" "はありません。しかし、自動的にインターネットからダウンロードしてローカルにイ" "ンストールできます。" #. Type: multiselect #. Description #: ../templates:3001 msgid "Games to download data for:" msgstr "ダウンロードするゲームデータ:" #. Type: error #. Description #: ../templates:4001 msgid "Missing utilities for download or unpacking" msgstr "ダウンロードあるいは解凍用のユーティリティがありません" #. Type: error #. Description #: ../templates:4001 msgid "" "Downloading and unpacking the game data requires the packages wget, p7zip, " "and unzip, but not all of these are available." msgstr "" "ゲームデータをダウンロードおよび解凍するには wget、p7zip、unzip パッケージが" "必要ですが、これら全てを利用できるようになっていません。" #. Type: error #. Description #: ../templates:4001 msgid "" "You should install them and then reconfigure this package by using \"dpkg-" "reconfigure rocksndiamonds\"." msgstr "" "インストールを実施してから「dpkg-reconfigure rocksndiamonds」を実行して、この" "パッケージを再設定してください。" #. Type: error #. Description #: ../templates:5001 msgid "Cannot download required resources" msgstr "必要なリソースがダウンロードできません" #. Type: error #. Description #: ../templates:5001 msgid "" "An error occurred while downloading game data. You should check the network " "connection and settings and retry later on." msgstr "" "ゲームデータをダウンロードしている間にエラーが発生しました。ネットワーク接続" "を確認して後ほど再挑戦してください。" debian/source/0000755000000000000000000000000011402124041010453 5ustar debian/source/format0000644000000000000000000000001411402124041011661 0ustar 3.0 (quilt) debian/dirs0000644000000000000000000000005111402122470010037 0ustar usr/games usr/share/games/rocksndiamonds