debian/0000755000000000000000000000000012242733040007163 5ustar debian/gom.postrm0000644000000000000000000000052112242720056011214 0ustar #!/bin/sh -e . /usr/share/debconf/confmodule # Purging configuration gom if [ "$1" = "purge" ]; then if ! rmdir /etc/gom 2>/dev/null; then db_input critical gom/purge_etc_gom || true db_go || true db_get gom/purge_etc_gom || true if [ "$RET" = true ]; then rm -r -f /etc/gom fi fi rm -f /etc/default/gom fi #DEBHELPER# debian/README.Debian0000644000000000000000000001040711253747004011234 0ustar This is the Debian GNU/Linux prepackaged version of gom, GOM is nOt yet another Mixer (a generic audio mixer), put together by Stephan Suerken With 0.30.2-1, the package no longer ships hooks for modutils on sound module load. Instead, you may add something like this --- # This initializes sound mixers with gom anytime # the "sound.o" module is loaded post-install sound /etc/init.d/gom start >/dev/null 2>&1 post-install snd-mixer-oss /etc/init.d/gom start >/dev/null 2>&1 --- to /etc/modutils (2.4) or /etc/modprobe.d, id you really need that feature. All notes below might be somewhat outdated ;): Notes ----- I. Updating from <=0.29.10 There is no way to automatically upgrade configuration files from gom-0.29.10 or less. Names and meaning of files in the gom configuration dir have changed in 0.29.99; see the docs. In short it's: config files are named /conf.[default_mixer|gom|initialize]; all optional setting files are named /. There is no way to automatically convert the old conf files. I recommend to reconfigure with 'gomconfig', to manually move your old settings files from to . (e.g. 'mv cd mixer.cd'), and to manually remove remaining obsolete files (especially "gomrc", "default"). II. Configuration There are possible per-system and/or per-user configurations of gom, as described in the man page; both are not at all mandatory, and the user configuration is naturally left to the user anyway. Both normal users and root (then changing system settings) can use the script /usr/sbin/gomconfig to completely configure gom. It only assumes that you have a correctly installed sound driver (or, at least, this gives it a little more sense...). Please try this script; there is much more help available "online" from there. III. Initialization Gom tries to initialize the mixers via "/etc/init.d/gom start" on two occasions: Firstly on system bootup (i.e., in runlevel S), and secondly every time the "sound" module is loaded (see "/etc/modutils/gom"). The script will exit silently if "auto_init" is set to "no" in /etc/default/gom. The script's (and new install's) default is _NOT_ to try initialization. IV. Miscellaneous ALSA, and other sound drivers. Gom is currently a OSS only mixer, but it runs with ALSA with its oss mixer emulation, and most likely with some other OSS-compatible non OSS drivers as well. To use gom's auto initialization with such a driver you would have to add it to the list of valid sound devices in /etc/default/gom. Please refer to the comments in /etc/default/gom itself for details. System Mixer Access. This package (of course?) does not handle the user permissions for certain devices of the system; thus, users who want to use gom need to have proper access to mixer devices they want to use. In Debian, audio device files belong the group "audio", so adding the users in question to this group seems to be a right way to accomplish this. This, too, can be done with "gomconfig". Binary naming scheme. Binaries of gom are called gom-{c|t|x}, with c,t,x meaning "binary has build-in support for command line, terminal or X interface", respectively. I decided to make a stand-alone package for the "full" binary of gom including the X interface (as it depends not only on xlib, but xview too). (The xview gomii is kind of "unnice" and a little bit orphaned by the upstream author anyway.) So, the package "gom" provides the binaries "gom-c", "gom-ct"; "gom-x" provides "gom-ctx". The actual "gom" binary is selected via "alternatives" (default is the "most complete" binary installed). # Note 0.29.99: The upstream source is planning to skip the xview interactive # interface and with it, the compile-option to create different binary # flavors for gom -- but use one standard gom binary with the # mandatory command line interface and the ncurses interactive # interface. With 0.29.99, the default is to compile that standard # version; support for the xview interface is still there. # Conclusion: For now, I stay with the old naming convention and # alternatives, leaving out the (now unavailable) command line only # "gom-c" binary. -- Stephan Suerken , Sun, 11 May 2008 16:17:08 +0000 debian/compat0000644000000000000000000000000212242725255010372 0ustar 9 debian/rules0000755000000000000000000000076711254474317010270 0ustar #!/usr/bin/make -f # # (c) 1997-2009 Stephan Sürken %: dh $@ override_dh_installinit: dh_installinit --no-restart-on-upgrade --update-rcd-params="start 99 S ." override_dh_installdocs: dh_installdocs AUTHORS NEWS README override_dh_installexamples: dh_installexamples -X examples/default examples/* ln -s -t debian/gom/usr/share/doc/gom/examples ../../../gom/default override_dh_install: dh_install examples/default usr/share/gom/ dh_install examples/default/* etc/gom/ debian/gom.postinst0000644000000000000000000000220512242720056011554 0ustar #!/bin/sh -e . /usr/share/debconf/confmodule # Version <= 0.29.103-6 used this file, not /etc/default/gom. We just delete that silently. no_auto_init_old=/etc/gom/NO_AUTO_INIT if [ -e ${no_auto_init_old} ]; then rm -f ${no_auto_init_old} fi CONFFILE="/etc/default/gom" if [ ! -e $CONFFILE ] ; then echo '# Use debconf to configure this file.' > $CONFFILE echo 'auto_init="false"' >> $CONFFILE echo 'valid_sound_devices="sound alsa"' >> $CONFFILE fi db_get gom/auto_init || true auto_init="${RET}" db_get gom/valid_sound_devices || true valid_sound_devices="${RET}" cp -a -f $CONFFILE $CONFFILE.tmp # If the admin deleted or commented some variables but then set # them via debconf, (re-)add them to the conffile. test -z "$auto_init" || grep -Eq '^ *auto_init=' $CONFFILE || \ echo "auto_init=" >> $CONFFILE test -z "$valid_sound_devices" || grep -Eq '^ *valid_sound_devices=' $CONFFILE || \ echo "valid_sound_devices=" >> $CONFFILE sed -e "s/^ *auto_init=.*/auto_init=\"$auto_init\"/" \ -e "s/^ *valid_sound_devices=.*/valid_sound_devices=\"$valid_sound_devices\"/" \ < $CONFFILE > $CONFFILE.tmp mv -f $CONFFILE.tmp $CONFFILE #DEBHELPER# debian/control0000644000000000000000000000206712242725546010607 0ustar Source: gom Section: sound Priority: optional Maintainer: Stephan Sürken Standards-Version: 3.9.5 Build-Depends: debhelper (>= 9~), libncurses5-dev, po-debconf Homepage: http://software.installiert.net Vcs-Git: git://git.debian.org/git/collab-maint/gom.git Vcs-Browser: http://git.debian.org/?p=collab-maint/gom.git;a=summary Package: gom Architecture: any Pre-Depends: debconf (>= 1.5.11) Depends: ${shlibs:Depends}, ${misc:Depends} Replaces: gom-x Conflicts: gom-x Description: Command line and interactive ncurses-based OSS audio mixer gom is a command line mixer utility with optional built-in ncurses interactive interface. . Its main feature is an exhaustive command line interface that makes it ideal for scripting (e.g. for audio recording, running at user and/or system login time, setting/restoring of settings, etc). . It supports OSS only, so if you want to use it with ALSA, you will need its OSS-compatible modules. If you want to use all possible features of ALSA however, you would need to use a mixer program dedicated for ALSA. debian/changelog0000644000000000000000000004634312242733037011055 0ustar gom (0.30.2-6) unstable; urgency=low * [b85f3c5] Ack all NMU changes (0.30.2-5..0.30.2-5.4). Thx! * [6292779] Update translation: ja.po. (Closes: 717708) * [582059d] control: Update Stds-Ver to 3.9.5 (no changes needed). * [3968dc8] gom.init: Source the lsb init functions for systemd (Fixes lintian warning). * [45479d6] debian: Update delhelper compat level to 9 (Fixes lintian: hardening-no-relro). * [0620ab6] [vc] Add .gitignore -- Stephan Sürken Tue, 19 Nov 2013 20:02:36 +0100 gom (0.30.2-5.4) unstable; urgency=low * Non-maintainer upload. * Fix "modifies conffiles (policy 10.7.3): /etc/default/gom": - don't ship /etc/default/gom, it's created in the postinst - update handling of /etc/default/gom in postinst: + create a new file if it doesn't exist + update the existing one otherwise (instead of always writing it from scratch, thus overwriting comments etc.) + don't put date in /etc/default/gom - remove in in postrm/purge (Closes: #688378) -- gregor herrmann Wed, 03 Oct 2012 22:17:10 +0200 gom (0.30.2-5.3) unstable; urgency=low * Non-maintainer upload. * Debconf translations: - Czech, Miroslav Kure. (Closes: #687186) -- David Prévot Mon, 10 Sep 2012 21:30:35 -0400 gom (0.30.2-5.2) unstable; urgency=low * Non-maintainer upload. * Mark all debconf messages translatable. * Debconf translations: - Danish, Joe Hansen. (Closes: #666534, #686285) - Slovak, Slavko. (Closes: #685374, #686022) - Polish, Michał Kułach. (Closes: #685703, #686395) - Italian, Beatrice Torracca. (Closes: #685899) - Russian, Yuri Kozlov. (Closes: #686018) - Basque, Iñaki Larrañaga Murgoitio. (Closes: #686069) - French, Christian Perrier. (Closes: #686187) - German, Erik Pfannenstein. (Closes: #686279) - Dutch, Jeroen Schot. (Closes: #686439) - Spanish, Camaleón. (Closes: #686435) - Portuguese, Miguel Figueiredo. (Closes: #686432) - Swedish, Martin Bagge. (Closes: #686446) - Brazilian Portuguese, José dos Santos Júnior. (Closes: #686457) - Norwegian Bokmål, Bjørn Steensrud. (Closes: #686529) -- David Prévot Sun, 02 Sep 2012 17:43:01 -0400 gom (0.30.2-5.1) unstable; urgency=low * Non-maintainer upload. * Debconf translations: - Japanese. (Closes: #602153) -- Nobuhiro Iwamatsu Wed, 14 Dec 2011 12:25:32 +0900 gom (0.30.2-5) unstable; urgency=low * [68828a6] Add es.po translation; update using debconf-updatepo. (Closes: 584445) - thanks to Camaleón -- Stephan Sürken Fri, 04 Jun 2010 12:20:41 +0200 gom (0.30.2-4) unstable; urgency=low * [432a47b] Update stds-ver tpo 3.8.4 (no changes needed). * [f9bf735] Update to 3.0 (quilt). -- Stephan Sürken Wed, 24 Feb 2010 17:38:23 +0100 gom (0.30.2-3) unstable; urgency=low * [08ab33b] control: Sync maintainer name notation * [355b83f] control: Update stds-ver to 3.8.3 (no changes needed) * [b39e7e1] control: Migrated to git, updating VC meta info. * [ff5bf5a] control, compat: Update to debhelper 7. * [8a8445e] rules: Greatly simplify using dh7 sequences and overrides * [6681a4b] gom.init: Cosmetic change in LSB section -- Stephan Sürken Thu, 17 Sep 2009 20:11:51 +0200 gom (0.30.2-2) unstable; urgency=low * Add Homepage to control. * copyright: Also add GPL header as recommended. * control: Cut out the "A" from my name (fixes wrong lintian NMU warning). * debhelper: Update compat to 5 (no changes needed). * [svn] remove obsolete .cvsignore. -- Stephan Suerken Sat, 05 Jul 2008 14:44:02 +0000 gom (0.30.2-1) unstable; urgency=low * Ack NMU: Add LSB dependency header to init.d scripts (Closes: #468312). Thanks. * Update to standards version 3.7.3: * Fix menu entry from "Apps/Sound" to "Applications/Sound". * debconf: As we use it in preinstall, Pre-Depend on debconf (fixes lintian warning). * config: Rename to gom.config for consistency. * copyright: Pimp style and use UTF-8 copyright sign (fixes lintian warning). Add updated new download location. * rules, postinst, postrm, gom.modutils: Removing support for auto-init on module load; add note to README.Debian. Fixes: "Either update or remove mixer initialisation on module", thanks to Lucas Nussbaum (Closes: #408243). Also fixes the big install warning not to use update-modules ;). * New upstream 0.30.2 (some updates to outdated docs only). -- Stephan Suerken Sun, 11 May 2008 17:30:42 +0000 gom (0.30.1-4.1) unstable; urgency=low * Non-maintainer upload to solve release goal. * Add LSB dependency header to init.d scripts (Closes: #468312). -- Petter Reinholdtsen Mon, 31 Mar 2008 00:23:49 +0200 gom (0.30.1-4) unstable; urgency=low * Remove build run cruft from svn. * Add pt_BR debconf translation; thanks to "Eder L. Marques". (Closes: #447149) -- Stephan A Suerken Sun, 13 Jan 2008 17:06:31 +0000 gom (0.30.1-3) unstable; urgency=low * Moving pkg development to alioth, collab-maint. * control: Add Xs-Vcs-Svn and -Browser information. * Ack NMU 2.1; thanks. * lintian warnings fixed: - rules: Don't ignore distclean errors. * control: Update to standards version 3.7.2 (no changes needed). * Bug fix: "gom: [INTL:de] initial German debconf translation", thanks to Helge Kreutzmann (Closes: #411281) [was already included in NMU]. * Bug fix: "[INTL:nl] Dutch po-debconf translation", thanks to cobaco (aka Bart Cornelis) (Closes: #423052). -- Stephan A Suerken Sun, 05 Aug 2007 08:59:49 +0000 gom (0.30.1-2.1) unstable; urgency=low * Non-maintainer upload to fix pending debconf issues. * Switch to po-debconf for debconf templates. Closes: #356202 * Rewrite the debconf templates to comply with the Developer's Reference recommendations * Debconf translations: - French - Galician. Closes: #411189 - Portuguese. Closes: #411184 - Tamil. Closes: #411212 - Czech. Closes: #411221 - Swedish. Closes: #411229 - Russian. Closes: #411241 - Basque. Closes: 411461 - Romanian. Closes: #411518 -- Christian Perrier Mon, 19 Feb 2007 18:08:41 +0100 gom (0.30.1-2) unstable; urgency=low * postrm|inst: Check for update-modules before calling. Fixes: "gom: postinst fails: line 21: update-modules: command not found", thanks to Lucas Nussbaum (Closes: #408243). -- Stephan A Suerken Fri, 26 Jan 2007 12:38:58 +0000 gom (0.30.1-1) unstable; urgency=low * New upstream. - Fixes: "gom: FTBFS on GNU/kFreeBSD", thanks to Petr Salinger (Closes: #364884)). -- Stephan A Suerken Sat, 17 Jun 2006 14:31:21 +0200 gom (0.30.0-2) unstable; urgency=low * Obsoleting binary package gom-x (X binary deprecated upstream): - Package "gom" conflicts/replaces "gom-x". - No more gom-ct, gom-ctx binaries, removal of all alternatives handling. - Reverting change to gom-ct binary in upstream's gomconfig script. - Removal of superfluous extra gom-ct, gom-ctx manpages. * Update to debhelper compat level 4. - Remove now-obsolete extra "conffile" config. * rules: Update "./configure" call && use upstream's "make install". * rules: Remove obsolete "source diff" target. * rules: Don't use /bin/bash explicitely as SHELL (?). * Bug fix: "gom: please use debconf", thanks to Lars Wirzenius (Closes: #328320): - Not calling gomconfig at all from control scripts. - Using mixer defaults as standard config files. - purge: Only ask for (rm -rf) if there are files left in /etc/gom. * Fix: Add ${misc:Depends} for proper (debconf) deps. * Update to standards version 3.6.2 (debconf). * A lot of textual updates. * debian/*: Prefixing all files for binary package gom. -- Stephan A Suerken Tue, 7 Mar 2006 22:19:24 +0000 gom (0.30.0-1) unstable; urgency=low * New upstream version (Closes: #149421). From upstream's NEWS: . This is a long-due update release (last release was back in 1999), fixing two pending problems (powerpc, BSD), got some long-due internal changes done. Only some new features for better scripting ability are added. . The X interface is rather obsolete, and not really maintained. I (again) left it in the package, though ;). Just use the ncurses interface (gom -it) if possible. . As for ALSA support, afaics there's no point in a gom driver backend, as gom's internal API does not support all ALSA features. So, the same practical result is achieved by using ALSA's OSS compatibility modules. If you need special ALSA support, use some dedicated ALSA mixer utility. * debian/control: Updated package descriptions (be more pragmatic). * debian/menu*: Quoting all menu entry items, fixing lintian warnings. * strap_auto removed again; obsoleted by upstreams auto_bootstrap. * debian/rules: Using -X in dh_installexamples to avoid CVS dirs. This also fixes a lintian warning. -- Stephan A Suerken Mon, 31 May 2004 16:09:16 +0000 gom (0.29.103-12) unstable; urgency=low * Recompile with gcc-3.3. * Honoring DEB_BUILD_OPTIONS for CFLAGS (Policy 10.1). * Updating to standards version 3.6.1. * Re-strapped autotools with autoconf 2.57 + automake 1.7. Added "strap_auto" script for that. * Bug fix: "gom: add support for ALSA in /etc/modutils/gom", thanks to Ludovic Rousseau (Closes: #192451). -- Stephan A Suerken Fri, 10 Oct 2003 18:37:16 +0200 gom (0.29.103-11) unstable; urgency=low * Fixed init. Closes: #108479. * Bug #56409 is ancient, for version -2, I couldn't ever reproduce the bug, and gom-x_0.29.103-10 is now available for powerpc. So this Closes: #56409. (feel free to reopen if there is still a problem). * Re-adding "gom-x.prerm" to CVS tree (it somehow got lost ;). Closes: #104592. -- Stephan A Suerken Sun, 10 Feb 2002 20:45:02 +0100 gom (0.29.103-10) unstable; urgency=low * Note: 0.29.103-9 was rejected by dinstall. Treat that version as non-existent. I have purged all instances. This changelog has all changes of -9 merged in. * Fixed bashism "source" -> "." in /etc/init.d/gom. Closes: #99451. * Corrected man pages as suggested in Bug #97051, supposed to cure man-db's parse errors. Closes: #97051. * Initialization via /etc/init.d/gom now works for both kernel 2.2 and 2.4. Closes: #98982. * Bug #56409 (powerpc) is due to the fact that powerpc obviously does not catch up, so I can't do anything about it. Please comment if that is wrong. * Added support for debug in DEB_BUILD_OPTIONS. * Purged some old slink compat things from scripts. * Updating Standards-Version 3.5.2 -> 3.5.5: - 11.7.3 examples/default now template. Upgrade..ups..ok. New Install..ups..ok. -- Stephan A Suerken Sun, 17 Jun 2001 19:56:39 +0200 gom (0.29.103-8) unstable; urgency=low * rules, control, etc: dh_installmanpages to dh_installman. * More FHS: Using usr/bin usr/share/man for all bins / mans. * Removed bashism in init script. Closes: #92875. * Checked archs: Consistent on all supported archs except - powerpc: obviously due to missing xview. There is a recent successful xview buildlog on voltaire, so hopefully gom will eventually be available here too (Compare #56409). -- Stephan A Suerken Fri, 6 Apr 2001 19:36:28 +0200 gom (0.29.103-7) unstable; urgency=low * Updated Standards-Version from 3.0.0 to 3.5.2: - Build-Depends: debhelper, libncurses5-dev, xutils, xviewg-dev (n.b.: xutils: at least on i386, ./configure needs xmkmf) Closes: #85197. - We seem to violate 12.8, but I am leaving this until xview is phased out by upstream (many people do not want to install xview, btw ;). - Adding /etc/default/gom. Consequently changing /etc/init.d/gom, postinst, README.Debian; removing /etc/gom/NO_AUTO_INIT. * Making lintian happy: - Removed hint to /usr/doc in "copyrights" for pre-potato dists. - Fixing preinst: using "tempfile". * Misc: - Bug 68784 is not a bug, rather pointing to some non-intuitively understandable but documented fact ;). Closing this now. Closes: #68787. -- Stephan A Suerken Sun, 25 Feb 2001 04:17:20 +0100 gom (0.29.103-6) frozen unstable; urgency=low * Added clarification about ALSA/initialization to README.Debian. Closes: #56119, #56493. -- Stephan A Suerken Wed, 2 Feb 2000 11:20:02 +0100 gom (0.29.103-5) frozen unstable; urgency=low * Version in frozen is currently 0.29.103-3. This version solves two bugs and improves installation scripts. * Added conflict for gom on ancient gom-x. Closes: #55311. -- Stephan A Suerken Wed, 19 Jan 2000 17:39:02 +0100 gom (0.29.103-0.slink.4) unstable; urgency=low * Recompile for slink. * postinst: Hack to find default config with slink debhelper. -- Stephan A Suerken Sun, 16 Jan 2000 01:57:42 +0100 gom (0.29.103-4) unstable; urgency=low * postinst: Removed conf. check on upgrades. Closes: #54845. * postinst: Making NO_AUTO_INIT default for new installs; +remarks. * postinst: Copying new default config for upgrades from ancient versions. * postinst: Cosmetic/internal changes. * rules: Hack to make gom-ctx.1 symlink valid with slink debhelper. -- Stephan A Suerken Sat, 15 Jan 2000 23:08:31 +0100 gom (0.29.103-3) unstable; urgency=low * Fixed maintainer name in debian/control to "Stephan A Suerken". Might be the reason for dinstall thinking I do NMUs. * Improved init.d/gom and modutils/gom. Closes: #50561. Might be really closed this time. -- Stephan A Suerken Thu, 6 Jan 2000 07:19:55 +0100 gom (0.29.103-2) unstable; urgency=low * Mixer initialization improvements: - added test for binary existence (init.d/gom). This actually was a bug. - sane message now if it fails (for autoloaded sound: no more annoying error messages on bootup). - New conffile /etc/modutils/gom for initialization when using sound as module. - cosmetic changes. Closes: #50561. * Files /etc/gom/* no longer conffiles. 100% handled by scripts. -- Stephan A Suerken Tue, 4 Jan 2000 01:50:09 +0100 gom (0.29.103-1) unstable; urgency=low * New upstream. Closes: #43940. * Adding stubborn default configuration (working out-of-the-box on many installations). Closes: #45925. * Using FHS debhelper. Changes in rules to cope with usr/share. Fear build will fail with non-FHS debhelper ;( * Added reference to /usr/share/common-licenses/GPL in doc/copyright. * Checked upgrade-policy (3.0.0); Faithfully updated standards version to 3.0.0. * Changed postinst configuration handling. Forcing interactive configuration on new installs or versions <0.29.99, else only configuration check (and no stopping). * Moved some information from postinst to README.Debian. -- Stephan A Suerken Wed, 27 Oct 1999 03:52:34 +0200 gom (0.29.102-2) unstable; urgency=low * Forgot to change gomconfig references to /usr/bin/gom-ct in the new upstream. Sigh. (see 0.29.99-2; this will falsify gomconfig if: updating from 0.29.10 && gom-x installed && gom-x is default alternative) -- Stephan Alexander Suerken Sat, 28 Aug 1999 03:24:08 +0200 gom (0.29.102-1) unstable; urgency=low * New upstream. * New upstream has own example dir - using that. * Added preinst entry deleting obsolete /etc/rc.boot/gom file. (closes: #42110). * /etc/init.d/gom will now exit 0 even if configuration is invalid (this caused the install process to stop in that case...) * Added reference to /usr/share/common-licenses/GPL in doc/copyright. * Added note about gom bootup initialization + sound as module to postinst. -- Stephan Alexander Suerken Fri, 27 Aug 1999 07:06:32 +0200 gom (0.29.99-2) unstable; urgency=low * Changed references to gom to /usr/bin/gom-ct to avoid wrong binary problems with gomconfig, init.d/gom on update. * Closing old obsolete Bug#29416 :). * Removing possible bashism from postinst, closing Bug#40274. -- Stephan Alexander Suerken Wed, 30 Jun 1999 23:37:40 +0200 gom (0.29.99-1) unstable; urgency=low * New upstream source. Closes #25448, #34488. * Several internal changes due to the new upstream. * Moved system bootup script from /etc/rc.boot to /etc/init.d + /etc/rcS.d handling, as it is obviously policy. Closes #32440. * Added postrm/purge entry to (optionally) remove /etc/gom. -- Stephan Alexander Suerken Fri, 25 Jun 1999 15:02:44 +0200 gom (0.29.10-5.1) unstable; urgency=low * Cosmetic change in gomconfig. Solves #29416. -- Stephan Alexander Suerken Sun, 22 Nov 1998 12:53:23 +0100 gom (0.29.10-5) unstable frozen; urgency=low * Recompilation because of missing X support in gom-ctx. The ./configure script needed some help... Thanks to Ionutz Borcoman for reporting this. -- Stephan Alexander Suerken Wed, 18 Nov 1998 07:09:33 +0100 gom (0.29.10-4) unstable frozen; urgency=low * Recompilation for slink. Fixes false dependency on ncurses3.4. * Patched source code to avoid bug with snprintf. Fixes shortopts and the help messages. * Added warning to README.Debian not to call an interface in /etc/gom/gomrc (see bug 25448). * Fixed bug in gomconfig: now creating ~/.gom or /etc/gom if non-existent. * Added option '--purge' to gomconfig. -- Stephan Alexander Suerken Sun, 24 May 1998 23:20:54 +0200 gom (0.29.10-3) unstable frozen; urgency=low * Upload to frozen to close Bugs on gom_0.29.10-1.1.deb, thusly adding binary package gom-x to frozen, too. * gom-ctx now in usr/X11R6/. * Plus /usr/sbin/gomconfig, changes in package configuration. * Closing Bug#12332 (an already closed bug I added long ago myself merely for testing purposes :). -- Stephan Alexander Suerken Mon, 4 May 1998 21:14:32 +0200 gom (0.29.10-2) unstable; urgency=low * Converted from debstd to debhelper. * Update to Standards-Version 2.4.0.0. * Added menu support. * Conffiles gomrc, default, rc.boot/gom (possible mixer init on boootup) added. * Corrected invalid Standards-Version (Bug#14695, Bug#16749). * Mixed dependencies fixed (Bug#14794). * Lintian Bug Report#19320: a) The copyright file now refers to the _un_compressed /usr/doc/copyright/GPL. b) Added pseudo man pages for gom-[c|ct|ctx] binaries. c) Fixed missing /usr/doc/gom-x && copyright notice for gom-x. -- Stephan Alexander Suerken Wed, 22 Apr 1998 18:59:49 +0200 gom (0.29.10-1) unstable; urgency=low * New upstream release. * Fundamental package reconstruction. * Developed under hamm. -- Stephan Alexander Suerken Sun, 28 Sep 1997 22:00:12 +0200 gom (0.29.8-1) unstable; urgency=low * Initial Release. -- Stephan Alexander Suerken Thu, 31 Jul 1997 19:35:21 +0200 debian/source/0000755000000000000000000000000011341252437010470 5ustar debian/source/format0000644000000000000000000000001411341252437011676 0ustar 3.0 (quilt) debian/gom.init0000644000000000000000000000333412242724462010645 0ustar #!/bin/sh -e ### BEGIN INIT INFO # Provides: gom # Required-Start: $remote_fs # Required-Stop: # Default-Start: S # Default-Stop: # Short-Description: Bootup for gom: Initialize audio mixer(s) ### END INIT INFO # # (c) 1998-2006 Stephan A Suerken # # Needed for systemd . /lib/lsb/init-functions # # Where adm default values can be stored # gom_defaults=/etc/default/gom gom_cmd=/usr/bin/gom # # Variable script defaults; Customize in /etc/default/gom if needed. # auto_init="false" valid_sound_devices="sound alsa" # # Variable admin default # [ ! -e ${gom_defaults} ] || . ${gom_defaults} # # Silent exits # # Explicit configuration [ "${auto_init}" = "yes" -o "${auto_init}" = "true" ] || exit 0 # gom.deb is removed but not purged [ -x ${gom_cmd} ] || exit 0 # valid sound device there? (this works for (at least) kernels 2.2.x and 2.4.x) sound_device="" for d in ${valid_sound_devices}; do if grep --quiet ${d} /proc/devices; then sound_device=${d}; break; fi; done [ "${sound_device}" ] || exit 0 # # Initialization # case "$1" in # At this point, gom is installed properly and the (oss) sound # driver is present. # Won't fail even if configuration is invalid. start|restart|reload|force-reload) echo -n "Gom initializing audio mixer(s)..." if ${gom_cmd} --quiet --initialize >/dev/null 2>&1 ; then echo "done." else echo "some errors. Check 'gom --initialize' and/or finetune via 'gomconfig'." fi ;; stop) ;; *) echo "Usage: /etc/init.d/gom {start|restart|reload|force-reload|stop}" >&2 echo echo " start|restart|reload|force-reload initializes audio mixer(s)." >&2 echo " stop does nothing." >&2 exit 1 ;; esac exit 0 debian/gom.templates0000644000000000000000000000216412242720056011673 0ustar Template: gom/auto_init Type: boolean Default: false _Description: Initialize mixer on system startup? If you choose this option, "/etc/init.d/gom start" (on system startup, or if run manually) will set mixer settings to your saved configuration. . You may use upstream's "gomconfig" script as root later to fine-tune the settings. Template: gom/valid_sound_devices Type: string Default: sound alsa _Description: Space-separated list of valid sound devices: If none of these device names exists in /proc/devices, /etc/init.d/gom will exit silently (so it does not produce errors if the system has no sound at all). . You would usually not touch the default value ("sound" is OSS, "alsa" is ALSA). Template: gom/purge_etc_gom Type: boolean Default: true _Description: Remove /etc/gom completely? The /etc/gom directory seems to contain additional local customization files. Please choose whether you want to remove it entirely. Template: gom/remove_obsolete_rcboot Type: boolean Default: true _Description: Remove obsoleted /etc/rc.boot/gom? The /etc/rc.boot/gom file is obsoleted but might contain local customizations. debian/copyright0000644000000000000000000000252711253747004011132 0ustar This package was debianized by Stephan Sürken in 1997. The current Debian maintainer is Stephan Sürken . It was downloaded from: http://software.installiert.net. Upstream Authors: Stephan Sürken, Hannu Savolainen. The gom software is © 1996-2008 Stephan Sürken . gom's upstream "X gomii" is also © 1993 Hannu Savolainen (the X gomii originally derived from "xvmixer" by Hannu Savolainen, also licensed under the GPL). 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. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian systems, a verbatim uncompressed copy of the GPL is available as /usr/share/common-licenses/GPL-3. The Debian packaging is © 1997-2008 Stephan Sürken , and is licensed under the GPL, see above. debian/po/0000755000000000000000000000000012242732362007607 5ustar debian/po/pl.po0000644000000000000000000000656512242720056010573 0ustar # Translation of gom debconf templates to Polish. # Copyright (C) 2007 # This file is distributed under the same license as the gom package. # # Michał Kułach , 2012. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-09-01 00:48+0200\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" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Lokalize 1.4\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Zainicjować mikser w czasie rozruchu systemu?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Jeśli wybierze się tę opcję, to \"/etc/init.d/gom start\" (w czasie rozruchu " "lub jeśli zostanie wykonane ręcznie) ustawi ustawienia miksera zgodnie z " "zapisaną konfiguracją użytkownika." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Można później użyć, jako root, skryptu \"gomconfig\" dostarczonego przez " "projekt macierzysty, do dokładnego dostosowania ustawień." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Oddzielona spacjami lista poprawnych urządzeń dźwiękowych:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Jeśli żadne z tych urządzeń nie będzie istniało w /proc/devices, to " "/etc/init.d/gom wyjdzie bez żadnego komunikatu (nie wypisze błędów, jeśli " "system jest pozbawiony urządzeń dźwiękowych)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Z reguły nie ma potrzeby zmiany wartości domyślnej (\"sound\" oznacza OSS, " "\"alsa\" - ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Całkowicie usunąć /etc/gom?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Katalog /etc/gom prawdopodobnie zawiera dodatkowe pliki, utworzone lokalnie. " "Proszę wybrać, czy należy je usunąć." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Usunąć przestarzałe /etc/rc.boot/gom?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "Plik /etc/rc.boot/gom jest przestarzały, lecz może zawierać dodatkowe, " "lokalne modyfikacje." debian/po/ro.po0000644000000000000000000000615212242720056010570 0ustar # translation of ro.po to Romanian # Romanian translations for PACKAGE package # Traducerea în limba română pentru pachetul PACKAGE. # Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Eddy Petrisor , 2007. # Eddy Petrișor , 2007. msgid "" msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2007-02-19 15:43+0200\n" "Last-Translator: Eddy Petrișor \n" "Language-Team: Romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" "X-Generator: KBabel 1.11.4\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Se iniţializează mixerul la pornirea sistemului?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Dacă alegeţi acestă opţiune, „/etc/init.d/gom start” (la pornirea sistemului " "sau dacă e rulat manual) va ajusta configuraţia mixerului conform cu cea " "salvată." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Puteţi folosi scriptul „gomconfig” ca utilizatorul root pentru a rafina " "configuraţia." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Se şterge complet /etc/gom?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Directorul /etc/gom pare să conţină fişiere adiţionale de configurare " "locale. Alegeţi dacă doriţi să îl ştergeţi în întregime." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Se şterge fişierul învechit /etc/rc.boot/gom?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "Fişierul /etc/rc.boot/gom este învechit dar poate conţine modificări locale." debian/po/nl.po0000644000000000000000000000642112242720056010560 0ustar # Dutch translation of gom debconf templates. # Copyright (C) 2007, 2012 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the gom package. # Bart Cornelis , 2007. # Jeroen Schot , 2012. # msgid "" msgstr "" "Project-Id-Version: gom 0.30.2-5.1\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-08-28 10:31+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 #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Wilt u de mixer initialiseren bij de systeemstart?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Als u deze optie kiest zal \"/etc/init.d/gom start\" (tijdens de " "systeemstart, of wanneer handmatig aangeroepen) de mixer instellen volgens " "uw opgeslagen configuratie." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "U kunt later als beheerder het script \"gomconfig\" van de oorspronkelijke " "makers gebruiken om de instellingen bij te stellen." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Door spaties gescheiden lijst van geldige geluidsapparaten:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Wanneer geen van deze apparaten bestaan in /proc/devices, dan zal /etc/init." "d/gom stil afsluiten (dus het zal geen foutmeldingen geven als het systeem " "helemaal geen geluid heeft)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Meestal wilt u de standaardwaarde niet veranderen (\"sound\" staat voor OSS, " "\"alsa\" voor ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Wilt u /etc/gom volledig verwijderen?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "De map /etc/gom lijkt aanvullende, of lokaal aangepaste bestanden te " "bevatten. Wilt u deze geheel verwijderen?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Wilt u de verouderde /etc/rc.boot/gom verwijderen?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "Het bestand /etc/rc.boot/gom is verouderd maar kan mogelijk lokale " "aanpassingen bevatten." debian/po/pt.po0000644000000000000000000000625512242720056010577 0ustar # Portuguese translation of gom's debconf messages. # Copyright (C) 2007 Carlos Lisboa # This file is distributed under the same license as the gom package. # Carlos Lisboa , 2007 # Miguel Figueiredo , 2012 # msgid "" msgstr "" "Project-Id-Version: gom\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-09-01 14:43+0100\n" "Last-Translator: Carlos Lisboa \n" "Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Inicializar o misturador no arranque do sistema?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Se escolher esta opção, \"/etc/init.d/gom start\" (no arranque do sistema, " "ou se o correr manualmente) irá activar as opções do misturador na sua " "configuração guardada." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Poderá usar o script original \"gomconfig\" como root mais tarde para afinar " "as opções." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Lista separada por espaços de dispositivos de som válidos:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Se nenhum destes nomes de dispositivos existir em /proc/devices, " "/etc/init.d/gom irá terminar silenciosamente (não produz erros se o " "sistema não tiver som)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Normalmente não irá tocar no valor predefinido (\"sound\" é OSS, \"alsa\" é " "ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Remover completamente o /etc/gom?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "O directório /etc/gom parece conter ficheiros locais adicionais de " "personalização. Por favor escolha se deseja remover completamente." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Remover o obsoleto /etc/rc.boot/gom?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "O ficheiro /etc/rc.boot/gom está obsoleto mas poderá conter personalizações " "locais." debian/po/fr.po0000644000000000000000000000673312242720056010564 0ustar # translation of fr.po to French # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Christian Perrier , 2007, 2012. msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-08-27 19:20+0200\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.4\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Faut-il initialiser la table de mixage au démarrage ?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Si vous choisissez cette option, la commande « /etc/init.d/gom " "start » (lancée au démarrage ou manuellement) appliquera votre propre " "configuration de la table de mixage, préalablement sauvegardée." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Vous pourrez plus tard utiliser le script « gomconfig » avec les privilèges " "du superutilisateur pour adapter ces réglages." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Liste (séparés par des espaces) de périphériques audio :" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Si aucun des noms de périphériques n'existe dans /proc/devices, /etc/init.d/" "gom se terminera silencieusement. Ainsi, aucune erreur ne sera rencontrée au " "cas où le système ne comporte pas de dispositif sonore." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Il est en général inutile de modifier la valeur par défaut (utiliser " "« sound » pour les périphériques OSS et « alsa » pour les périphériques " "ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Faut-il supprimer complètement /etc/gom ?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Le répertoire /etc/gom semble contenir des fichiers de paramétrages locaux. " "Veuillez choisir si vous souhaitez le supprimer complètement." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Faut-il supprimer le fichier obsolète /etc/rc.boot/gom ?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "Le fichier /etc/rc.boot/gom n'est plus utilisé mais pourrait contenir des " "paramétrages locaux." debian/po/cs.po0000644000000000000000000000621412242720056010554 0ustar # Czech PO debconf template translation of gom. # Copyright (C) 2007 Miroslav Kure # This file is distributed under the same license as the gom package. # Miroslav Kure , 2007 - 2012. # msgid "" msgstr "" "Project-Id-Version: gom 0.30.2-5.2\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-09-09 14:48+0100\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Inicializovat mixér při startu systému?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Zvolíte-li tuto možnost, příkaz \"/etc/init.d/gom start\" (spuštěný při " "zavádění systému nebo ručně) nastaví mixér podle uloženého stavu." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Pro jemnější nastavení můžete jako uživatel root použít skript \"gomconfig\" " "přímo od autora aplikace." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Seznam platných zvukových zařízení oddělený mezerami:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Pokud v /proc/devices nebude existovat žádný z názvů těchto zařízení, /etc/" "init.d/gom tiše skončí (takže nevypíše žádné chyby, pokud systém nemá vůbec " "žádný zvuk)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Obvykle není třeba výchozí hodnotu upravovat (\"sound\" je OSS, \"alsa\" je " "ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Úplně odstranit /etc/gom?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Zdá se, že adresář /etc/gom obsahuje místní soubory s nastavením. Zvolte si " "prosím, zda je chcete odstranit." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Odstranit zastaralý /etc/rc.boot/gom?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "Soubor /etc/rc.boot/gom je zastaralý, ale může obsahovat místní úpravy." debian/po/templates.pot0000644000000000000000000000425012242720056012327 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: gom\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" debian/po/es.po0000644000000000000000000001002012242720056010544 0ustar # gom po-debconf translation to Spanish # Copyright (C) 2010 Software in the Public Interest # This file is distributed under the same license as the gom package. # Changes: # - Initial translation # Camaleón , 2010 # - Updates # 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: gom 0.30.2-5.1\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-09-01 16:18+0200\n" "Last-Translator: Camaleón \n" "Language-Team: Debian 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 #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "¿Desea iniciar el mezclador de sonido al arrancar el sistema?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Si selecciona esta opción, «/etc/init.d/gom start» (al arrancar el sistema o " "si lo ejecuta de forma manual) establecerá los ajustes del mezclador de " "sonido en el archivo de configuración." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Puede utilizar el script «gomconfig» del desarrollador principal (como " "usuario root) para afinar los ajustes." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "" "Lista de dispositivos de sonido válidos (separados por un espacio en blanco):" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Si no existe ninguno de estos dispositivos en «/proc/devices», el script «/" "etc/init.d/gom» producirá una salida silenciosa por lo que no se generará " "ningún error si el sistema no dispone de sonido." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "No debería modificar el valor predeterminado («sound» es OSS y «alsa» es " "ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "¿Desea eliminar «/etc/gom» por completo?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Parece que el directorio «/etc/gom» contiene archivos con configuraciones " "personalizadas. Por favor, indique si quiere eliminarlo por completo." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "¿Desea eliminar el archivo «/etc/rc.boot/gom» obsoleto?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "El archivo «/etc/rc.boot/gom» está obsoleto pero podría contener " "configuraciones personalizadas." debian/po/ja.po0000644000000000000000000000663312242720455010551 0ustar # Copyright (C) 2010 Nobuhiro Iwamatsu # This file is distributed under the same license as the gom package. # Nobuhiro Iwamatsu , 2010. # msgid "" msgstr "" "Project-Id-Version: gom 0.30.2-5\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-08-27 23:43+0900\n" "Last-Translator: Nobuhiro Iwamatsu \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "システムの起動時にミキサーを初期化しますか?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "このオプションを選択した時、\"/etc/init.d/gom start\" (システムの起動時か、手" "動で実行) はミキサー設定を保存している設定に設定します。" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "root として後で設定を微調整するために、アップストリームの \"gomconfig\" スク" "リプトを使用できます。" #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "正しい音声デバイス一覧を空白で区切って入力してください:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "入力されたデバイス名が /proc/devices に一つも存在しない場合、/etc/init.d/gom " "は静かに終了します (システムに音声機能が何もない場合にはエラーを出さないことに" "なります)。" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "既定値 (「sound」が OSS、「alsa」が ALSA) を変更する必要は通常ありません。" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "/etc/gom を完全に削除しますか?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "/etc/gom ディレクトリは 追加されたローカル設定を含んでいるように見えます。そ" "れを完全に取り除きたいかどうかを選んでください。" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "廃止された /etc/rc.boot/gom を削除しますか?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "/etc/rc.boot/gom ファイルは廃止されましたが、ローカルでの変更を含んでいる可能" "性があります。" debian/po/it.po0000644000000000000000000000637112242720056010567 0ustar # Italian translation of gom debconf messages # Copyright (C) 2012, gom package copyright holder # This file is distributed under the same license as the gom package. # Beatrice Torracca , 2012. msgid "" msgstr "" "Project-Id-Version: gom\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-08-29 14:20+0200\n" "Last-Translator: Beatrice Torracca \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" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.7.1\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Inizializzare il mixer all'avvio del sistema?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Se si sceglie questa opzione, «/etc/init.d/gom start» (all'avvio del sistema " "o se eseguito manualmente) imposta i livelli del mixer alla configurazione " "salvata." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Si può successivamente usare come utente root lo script «gomconfig» degli " "autori originali per regolare le impostazioni." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Elenco di device audio validi separati da spazi:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Se nessuno di questi nomi di device esiste in /proc/devices, /etc/init.d/gom " "terminerà in modo silenzioso (perciò non produce errori se il sistema non " "ha per nulla l'audio)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Solitamente non si deve modificare il valore predefinito (\"sound\" è OSS, " "\"alsa\" è ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Rimuovere /etc/gom completamente?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "La directory /etc/gom sembra contenere file locali aggiuntivi di " "personalizzazione. Scegliere se rimuoverla completamente." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Rimuovere il file /etc/rc.boot/gom obsoleto?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "Il file /etc/rc.boot/gom è obsoleto ma potrebbe contenere personalizzazioni " "locali." debian/po/gl.po0000644000000000000000000000542412242720056010553 0ustar # Galician translation of gom's debconf templates # This file is distributed under the same license as the gom package. # Jacobo Tarrio , 2007. # msgid "" msgstr "" "Project-Id-Version: gom\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2007-02-16 23:46+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "¿Inicializar o mesturador ao iniciar o sistema?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Se escolle esta opción, \"/etc/init.d/gom start\" (no inicio do sistema, ou " "ao executalo manualmente) ha establecer as posicións do mesturador á " "configuración gravada." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Pode empregar despois o script \"gomconfig\" coma administrador para afinar " "a configuración." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "¿Eliminar /etc/gom completamente?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Semella que o directorio /etc/gom contén ficheiros de personalización locais " "adicionais. Indique se quere borralo completamente." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "¿Eliminar o ficheiro obsoleto /etc/rc.boot/gom?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "O ficheiro /etc/rc.boot/gom está obsoleto pero pode conter personalizacións " "locais." debian/po/de.po0000644000000000000000000000657312242720056010547 0ustar # Translation of gom debconf templates to German # Copyright (C) Helge Kreutzmann , 2007. # Copyright (C) Erik Pfannenstein , 2012. # This file is distributed under the same license as the gom package. # Erik Pfannenstein , 2012. msgid "" msgstr "" "Project-Id-Version: gom 0.30.2-5.2\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-08-28 20:14+0200\n" "Last-Translator: Erik Pfannenstein \n" "Language-Team: de \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.7.1\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Mischpult beim Systemstart initialisieren?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Falls Sie diese Option wählen, wird »/etc/init.d/gom start« (beim " "Systemstart oder falls Sie es manuell ausführen) Ihr Mischpult " "auf die gespeicherte Konfiguration einstellen." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Sie können später als Benutzer Root das Skript »gomconfig« der " "Originalautoren verwenden, um Feineinstellungen vorzunehmen." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Durch Leerzeichen getrennte Liste gültiger Audiogeräte:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Wenn keiner dieser Gerätenamen in /proc/devices vorhanden ist, wird sich " "/etc/init.d/gom still beenden (also keine Fehler ausgeben, wenn das " "System überhaupt keinen Ton hat)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Normalerweise werden Sie den Vorgabewert nicht ändern (»sound« steht für " "OSS, »alsa« für ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "/etc/gom komplett entfernen?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Das Verzeichnis /etc/gom scheint zusätzliche lokale Anpassungsdateien zu " "enthalten. Bitte wählen Sie, ob Sie es komplett entfernen wollen." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Veraltete Datei /etc/rc.boot/gom entfernen?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "Die Datei /etc/rc.boot/gom ist veraltet, könnte aber lokale Anpassungen " "enthalten." debian/po/ta.po0000644000000000000000000000720012242720056010547 0ustar # translation of gom.po to TAMIL # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Dr.T.Vasudevan , 2007. msgid "" msgstr "" "Project-Id-Version: gom\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2007-02-17 11:07+0530\n" "Last-Translator: Dr.T.Vasudevan \n" "Language-Team: TAMIL \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "கணினி துவங்கும் போது கலப்பானை ஆரம்பிக்கலாமா?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "இந்த தேர்வை தெரிவு செய்தால் \"/etc/init.d/gom start\" (கணினி துவங்கும் போது அல்லது " "கை முறையாக இயக்கும் போது) சேமித்துள்ள வடிவமைப்புக்கு கலப்பான் அமைப்பை அமைக்கும்." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "இந்த வடிவமைப்பை பின்னால் ரூட் ஆக மேலோடையின் \"gomconfig\" சிறு நிரல் மூலம் நுண் " "அமைத்துக் கொள்ளலாம்." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "/etc/gom ஐ முழுமையாக நீக்கலாமா?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "இந்த /etc/gom அடைவில் கூடுதல் தனிப் பயன் கோப்புகள் இருப்பதாகத் தெரிகிறது. முழுமையாக " "நீக்கலாமா என உறுதி செய்து கொள்ளவும்." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "வழக்கற்ற /etc/rc.boot/gom ஐ நீக்கலாமா?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "/etc/rc.boot/gom வழக்கற்று விட்டது. ஆனால் அதில் தனிப்பயன் அமைப்புகள் இருக்கலாம்." debian/po/eu.po0000644000000000000000000000635412242720056010565 0ustar # Basque translations for PACKAGE package. # Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # pi , 2007. # Iñaki Larrañaga Murgoitio , 2012. msgid "" msgstr "" "Project-Id-Version: gom-debconf\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-08-28 09:48+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio \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 #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Abiarazi nahasgailua sistema abiatzean?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Aukera hau hautatuz gero, \"/etc/init.d/gom start\" (sistemaren abioan edo " "eskuz abiarazita) komandoak zuk gordetako nahasgailuaren konfigurazioak " "ezarriko ditu." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "'root' gisa \"gomconfig\" scripta beranduago erabil dezakezu ezarpenak " "fintzeko." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Baliozko soiñu-gailuen zerrenda zuriunez bereiztuta:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Gailu hauen izenetarikorik ez badago /proc/devices direktorioan, " "/etc/init.d/gom scripta isil-isilik amaituko da (sistemak ez " "badauka inolako soinurik ez du errorerik sortuko)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Normalean ez zenuke balio lehenetsia ukitu beharko ('sound' = OSS, 'alsa' = " "ALSA)" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Kendu /etc/gom erabat?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Badirudi /etc/gom direktorioak pertsonalizatutako lokaleko fitxategi " "gehigarriak dituela. " "Aukeratu erabat kentzea nahi duzun edo ez." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Kendu /etc/rc.boot/gom zaharkitua?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "/etc/rc.boot/gom fitxategia zaharkitua dagoen arren, " "ezarpen lokalak eduki ditzake." debian/po/POTFILES.in0000644000000000000000000000005011253747004011357 0ustar [type: gettext/rfc822deb] gom.templates debian/po/sk.po0000644000000000000000000000654012242720056010566 0ustar # Slovak translations for gom package # Slovenské preklady pre balík gom. # Copyright (C) 2012 THE gom'S COPYRIGHT HOLDER # This file is distributed under the same license as the gom package. # Slavko , 2012. # msgid "" msgstr "" "Project-Id-Version: gom 0.30.2-5.2\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-08-27 19:07+0200\n" "Last-Translator: Slavko \n" "Language-Team: slovenčina \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-POFile-SpellExtra: gom gomconfig start boot etc init rc root sound OSS\n" "X-POFile-SpellExtra: devices alsa proc ALSA\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Inicializovať mixér pri štarte systému?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Ak si zvolíte túto možnosť, „/etc/init.d/gom start” (pri štarte systému " "alebo pri manuálnom spustení) načíta nastavenia mixéra z uloženej " "konfigurácie." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Neskôr môžete na jemné doladenie nastavení použiť skript „gomconfig” ako " "root." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Medzerou oddelený zoznam platných zvukových zariadení:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Ak žiadne z týchto mien zariadení neexistuje v /proc/devices, /etc/init.d/" "gom mlčky skončí (takže nebude generovať chyby, ak systém celkovo nemá zvuk)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Zvyčajne by nemalo byť potrebné meniť predvolenú hodnotu (\"sound\" je OSS, " "\"alsa\" je ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Odstrániť úplne /etc/gom?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Vyzerá to, že adresár /etc/gom obsahuje dodatočné, lokálne upravené, súbory. " "Prosím, vyberte si, či ho chcete úplne odstrániť." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Odstrániť zastaraný /etc/rc.boot/gom?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "Súbor /etc/rc.boot/gom je zastaraný, ale môže obsahovať lokálne úpravy." debian/po/pt_BR.po0000644000000000000000000000643412242720056011161 0ustar # Debconf translations for gom # Copyright (C) 2012 THE gom'S COPYRIGHT HOLDER # This file is distributed under the same license as the gom package. # Eder L. Marques , 2007. # José dos Santos Júnior , 2012. # msgid "" msgstr "" "Project-Id-Version: gom 0.30.2-5.2\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-08-30 19:30-0300\n" "Last-Translator: J. S. Júnior \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Inicializar o mixer na inicialização do sistema?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Se você escolher esta opção, \"/etc/init.d/gom start\" (na inicialização do " "sistema, ou se executar manualmente) definirá as configurações do mixer para " "as suas configurações salvas." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Você pode usar o script \"gomconfig\" do autor original (\"upstream\") como " "root, posteriormente, para ajustar os detalhes da configuração." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Lista dos dispositivos de som válidos separados por espaços:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Se nenhum destes dispositivos existir em /proc/devices, /etc/init.d/gom " "sairá silenciosamente (assim ele não produzirá erros se o seu sistema não " "tiver som)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Você geralmente não deveria tocar no valor padrão (\"sound\" é OSS, \"alsa\" " "é ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Remover o /etc/gom completamente?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "O diretório /etc/gom parece conter arquivos locais personalizados. Por " "favor, escolha se você quer removê-lo completamente." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Remover o obsoleto /etc/rc.boot/gom?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "O arquivo /etc/rc.boot/gom está obsoleto mas pode conter personalizações " "locais." debian/po/nb.po0000644000000000000000000000617612242720056010555 0ustar # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Bjørn Steensrud , 2012. msgid "" msgstr "" "Project-Id-Version: gom\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-09-02 21:45+0200\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 1.4\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Skal mikseren klargjøres ved systemoppstart?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Hvis du velger dette, så vil «/etc/init.d/gom start» (ved systemoppstart " "eller hvis kjørt manuelt) sette mikserinnstillingene slik du lagret oppsettet." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Senere kan du bruke oppstrøms «gmconfig»-skrpt til å finjustere" "innstillingene. " #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Liste over gyldige lydenheter, atskilt med mellomrom:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Hvis ingen av disse enhetene finnes i /proc/devices, så vil /etc/init.d/gom " "avslutte stille (så det ikke lager feil dersom systemet ikke har lyd i det " "hele tatt)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Som regel trenger du ikke røre standardverdien («lyd» er OSS, «alsa» er " "ALSA)," #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Skal /etc/gom fjernes helt?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Det ser ut til at det ligger flere lokale tilpasningsfiler i /etc/gom. Velg " "om " "du fil fjerne hele mappa." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Skal foreldet /etc/rc.boot/gom fjernes?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "Fila /etc/rc.boot/gom er utdatert, men kan inneholde lokale " "tilpasninger." debian/po/ru.po0000644000000000000000000001007412242720056010574 0ustar # translation of gom_0.30.1-2_debconf_ru.po to Russian # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the gom package. # # Yuri Kozlov , 2007, 2012. msgid "" msgstr "" "Project-Id-Version: gom 0.30.2-5.2\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-08-27 20:40+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: Lokalize 1.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 #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Инициализировать микшер при загрузке системы?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Если вы ответите утвердительно, то запуск «/etc/init.d/gom start» " "(во время загрузки системы, или если запустить вручную) " "восстановит ранее сохранённые настройки параметров микшера." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Позже вы можете воспользоваться сценарием «gomconfig» для точной " "настройки, запустив его с правами суперпользователя." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Список корректных имён звуковых устройств, перечисленных через пробел:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Если ни одно из указанных имён устройств нет в /proc/devices, " "то /etc/init.d/gom просто завершит работу ничего не выдав " "(то есть это не приведёт к ошибкам при отсутствии звука в системе)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Обычно, значение по умолчанию менять не нужно («sound» — " "при наличии OSS, «alsa» — при наличии ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Удалить /etc/gom?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Кажется, что в каталоге /etc/gom содержатся дополнительные пользовательские " "файлы. Выберите, нужно ли удалять этот каталог совсем." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Удалить устаревший /etc/rc.boot/gom?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "Файл /etc/rc.boot/gom устарел, но может содержать локальные настройки " "пользователя." debian/po/sv.po0000644000000000000000000000614212242720056010577 0ustar # Translation of gom debconf template to Swedish # Copyright (C) 2012 Martin Bagge # This file is distributed under the same license as the gom package. # # Martin Bagge , 2012 msgid "" msgstr "" "Project-Id-Version: gom\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2007-02-17 10:47+0100\n" "Last-Translator: Daniel Nylander \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" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Initiera mixern vid systemets uppstart?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Om du väljer det här alternativet, \"/etc/init.d/gom start\" (vid systemets " "uppstart, eller om du manuellt kör) kommer ställa in mixerinställningarna " "till din sparade konfiguration." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Du kan använda uppströmsskriptet \"gomconfig\" som root senare för att " "finjustera inställningarna." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Lista med tillgängliga ljudenheter separerad med mellanslag:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Om inga av dessa enhetsnamn finns i /proc/devices kommer /etc/init.d/gom att " "avslutas tyst (så att inga fel visas om systemet inte har något ljud)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Vanligen ska inte standardvärdet röras (\"sound\" är OSS, \"alsa\" är ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Ta bort hela /etc/gom?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Katalogen /etc/gom verkar innehålla ytterligare lokala anpassningsfiler. " "Välj huruvida du fullständigt vill ta bort katalogen." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Ta bort föråldrade /etc/rc.boot/gom?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "Filen /etc/rc.boot/gom är föråldrad men kan innehålla lokala anpassningar." debian/po/da.po0000644000000000000000000000613012242720056010530 0ustar # Danish translation gom. # Copyright (C) 2012 gom & nedenstående oversættere. # This file is distributed under the same license as the gom package. # Joe Hansen (joedalton2@yahoo.dk), 2012. # msgid "" msgstr "" "Project-Id-Version: gom\n" "Report-Msgid-Bugs-To: gom@packages.debian.org\n" "POT-Creation-Date: 2012-08-27 10:43-0400\n" "PO-Revision-Date: 2012-08-30 12:42+0000\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "Initialize mixer on system startup?" msgstr "Initialiser mikser ved systemopstart?" #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "If you choose this option, \"/etc/init.d/gom start\" (on system startup, or " "if run manually) will set mixer settings to your saved configuration." msgstr "" "Hvis du vælger denne indstilling, vil »/etc/init.d/gom start« (ved " "systemopstart, eller hvis kørt manuelt) angive mikserindstillinger for din " "gemte konfiguration." #. Type: boolean #. Description #: ../gom.templates:1001 msgid "" "You may use upstream's \"gomconfig\" script as root later to fine-tune the " "settings." msgstr "" "Du kan bruge opstrøms skript »gomconfig« som root (administrator) senere til " "at fintune indstillingerne." #. Type: string #. Description #: ../gom.templates:2001 msgid "Space-separated list of valid sound devices:" msgstr "Mellemrumsadskilt liste over gyldige lydenheder:" #. Type: string #. Description #: ../gom.templates:2001 msgid "" "If none of these device names exists in /proc/devices, /etc/init.d/gom will " "exit silently (so it does not produce errors if the system has no sound at " "all)." msgstr "" "Hvis ingen af disse enhedsnavne findes i /proc/devices, vil /etc/init.d/gom " "afslutte stille (så den producerer ikke fejl hvis systemet ikke har nogen " "lyd overhovedet)." #. Type: string #. Description #: ../gom.templates:2001 msgid "" "You would usually not touch the default value (\"sound\" is OSS, \"alsa\" is " "ALSA)." msgstr "" "Du vil normalt ikke ændre standardværdien (»sound« er OSS, »alsa« er " "ALSA)." #. Type: boolean #. Description #: ../gom.templates:3001 msgid "Remove /etc/gom completely?" msgstr "Fjern /etc/gom fuldstændig?" #. Type: boolean #. Description #: ../gom.templates:3001 msgid "" "The /etc/gom directory seems to contain additional local customization " "files. Please choose whether you want to remove it entirely." msgstr "" "Mappen /etc/gom ser ud til at indeholde yderligere lokale tilpasningsfiler. " "Vælg venligst hvorvidt du ønsker at fjerne den fuldstændig." #. Type: boolean #. Description #: ../gom.templates:4001 msgid "Remove obsoleted /etc/rc.boot/gom?" msgstr "Fjern forældet /etc/rc.boot/gom?" #. Type: boolean #. Description #: ../gom.templates:4001 msgid "" "The /etc/rc.boot/gom file is obsoleted but might contain local " "customizations." msgstr "" "Filen /etc/rc.boot/gom er forældet men kan indeholde lokale tilpasninger." debian/gom.menu0000644000000000000000000000020711253747004010640 0ustar ?package(gom): needs="text" section="Applications/Sound" title="Gom Audio Mixer" \ command="/usr/bin/gom --interface=t" debian/gom.preinst0000644000000000000000000000176011253747004011365 0ustar #!/bin/sh -e #DEBHELPER# # # Policy 11.7.3 (templates), since 0.29.103-10 # # dpkg would not delete dir share/doc/gom/examples/default, and, when installing files, would not # overwrite it with a symlink to share/gom/default. Rather a dpkg bug, afaik. # This fixes this simply and hopefully sanely. # This is no longer dir, but symlink to share/gom/default old_default_cfg="/usr/share/doc/gom/examples/default" if [ -d "${old_default_cfg}" ]; then rm -rf ${old_default_cfg} fi case "$1" in upgrade|install) rcboot_file=/etc/rc.boot/gom if [ -e ${rcboot_file} ]; then . /usr/share/debconf/confmodule db_input critical gom/remove_obsolete_rcboot || true db_go || true db_get gom/remove_obsolete_rcboot || true if [ "$RET" = true ]; then rm -f ${rcboot_file} fi fi ;; esac # All support for alternatives dropped, always remove update-alternatives --remove gom /usr/bin/gom-c update-alternatives --remove gom /usr/bin/gom-ct update-alternatives --remove gom /usr/bin/gom-ctx debian/gom.config0000644000000000000000000000061511253747004011144 0ustar #!/bin/sh -e . /usr/share/debconf/confmodule CONFFILE="/etc/default/gom" if [ -e "${CONFFILE}" ]; then . "${CONFFILE}" || true [ -z "${auto_init}" ] || db_set gom/auto_init "${auto_init}" [ -z "${valid_sound_devices}" ] || db_set gom/valid_sound_devices "${valid_sound_devices}" fi db_input medium gom/auto_init || true db_input low gom/valid_sound_devices || true db_go || true