[SCM] jackd2 packaging branch, master, updated. upstream/1.9.3+svn3819-5-gc7e336d

adiknoth-guest at users.alioth.debian.org adiknoth-guest at users.alioth.debian.org
Thu Nov 19 14:11:55 UTC 2009


The following commit has been merged in the master branch:
commit c7e336d5f47da5a0efc720a3d9a049aa34824070
Author: Adrian Knoth <adi at drcomp.erfurt.thur.de>
Date:   Thu Nov 19 15:10:46 2009 +0100

    Copy the jackd realtime templates from jackd1
    
    This is all about the realtime posix priorities, including
    all the reviewed templates.

diff --git a/debian/jackd.config b/debian/jackd.config
new file mode 100644
index 0000000..679de7b
--- /dev/null
+++ b/debian/jackd.config
@@ -0,0 +1,9 @@
+#!/bin/sh -e
+
+# Source debconf library.
+. /usr/share/debconf/confmodule
+
+# realtime prio?
+db_input high jackd/tweak_rt_limits || true
+db_go
+
diff --git a/debian/jackd.postinst b/debian/jackd.postinst
new file mode 100644
index 0000000..2b423fa
--- /dev/null
+++ b/debian/jackd.postinst
@@ -0,0 +1,29 @@
+#!/bin/sh -e
+
+# Source debconf library.
+. /usr/share/debconf/confmodule
+
+CONFIG_FILE=/etc/security/limits.d/audio.conf
+
+db_get jackd/tweak_rt_limits
+if [ $RET = "true" ]; then
+   mkdir -p $(dirname $CONFIG_FILE)
+   cat > $CONFIG_FILE << EOF
+# generated by jackd's postinst.
+#
+# Do not edit this file by hand, use
+#
+#    dpkg-reconfigure -p high jackd
+#
+# instead.
+ at audio   -  rtprio     99
+ at audio   -  memlock    unlimited
+#@audio   -  nice      -19
+EOF
+
+else
+    # user doesn't want RT prio
+    rm -rf $CONFIG_FILE
+fi
+
+#DEBHELPER#
diff --git a/debian/jackd.postrm b/debian/jackd.postrm
new file mode 100644
index 0000000..605917c
--- /dev/null
+++ b/debian/jackd.postrm
@@ -0,0 +1,22 @@
+#!/bin/sh -e
+#
+#
+CONFIG_FILE=/etc/security/limits.d/audio.conf
+
+if [ "$1" = "purge" ]
+then
+    if [ -e $CONFIG_FILE ]
+    then
+        rm $CONFIG_FILE
+    fi
+
+    # if we still have debconf, also remove our entries from the DB
+    if [ -e /usr/share/debconf/confmodule ]
+    then
+        # Source debconf library.
+        . /usr/share/debconf/confmodule
+        db_purge
+    fi
+fi
+
+#DEBHELPER#
diff --git a/debian/jackd.preinst b/debian/jackd.preinst
new file mode 100644
index 0000000..32e6e65
--- /dev/null
+++ b/debian/jackd.preinst
@@ -0,0 +1,33 @@
+#!/bin/sh -e
+
+# Remove a no-longer used conffile
+rm_conffile() {
+    local PKGNAME="$1"
+    local CONFFILE="$2"
+
+    [ -e "$CONFFILE" ] || return 0
+
+    local md5sum="$(md5sum $CONFFILE | sed -e 's/ .*//')"
+    local old_md5sum="$(dpkg-query -W -f='${Conffiles}' $PKGNAME | \
+            sed -n -e "\' $CONFFILE ' { s/ obsolete$//; s/.* //; p }")"
+    if [ "$md5sum" != "$old_md5sum" ] && \
+       [ "$md5sum" != "c9d1f0caa7b49ce7f0d2bc7b458bdd3f" ]; then
+        echo "Obsolete conffile $CONFFILE has been modified by you."
+        echo "Saving as $CONFFILE.dpkg-bak ..."
+        mv -f "$CONFFILE" "$CONFFILE".dpkg-bak
+    else
+        echo "Removing obsolete conffile $CONFFILE ..."
+        rm -f "$CONFFILE"
+    fi
+}
+
+LASTVERSION=0.116.2+svn3592-2
+
+case "$1" in
+install|upgrade)
+    if dpkg --compare-versions "$2" le "$LASTVERSION"; then
+        rm_conffile jackd "/etc/init.d/jackd"
+    fi
+esac
+
+#DEBHELPER#
diff --git a/debian/jackd.templates b/debian/jackd.templates
new file mode 100644
index 0000000..49bf2f6
--- /dev/null
+++ b/debian/jackd.templates
@@ -0,0 +1,22 @@
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# debian-l10n-english at lists.debian.org for advice.
+#
+# Even minor modifications require translation updates and such
+# changes should be coordinated with translators and reviewers.
+
+Template: jackd/tweak_rt_limits
+Type: boolean
+Default: false
+_Description: Enable realtime process priority?
+ If you want to run jackd with realtime priorities, the user starting jackd
+ needs realtime permissions. Accept this option to create the
+ file /etc/security/limits.d/audio.conf, granting realtime
+ priority and memlock privileges to the audio group.
+ .
+ Running jackd with realtime priority minimizes latency, but
+ may lead to complete system lock-ups by requesting
+ all the available physical system memory, which is unacceptable in
+ multi-user environments.
diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in
new file mode 100644
index 0000000..9eb3215
--- /dev/null
+++ b/debian/po/POTFILES.in
@@ -0,0 +1,2 @@
+[type: gettext/rfc822deb] jackd.templates
+
diff --git a/debian/po/cs.po b/debian/po/cs.po
new file mode 100644
index 0000000..8447466
--- /dev/null
+++ b/debian/po/cs.po
@@ -0,0 +1,72 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the jack-audio-connection-kit package.
+# Martin Sin <martin.sin at zshk.cz>, 2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: jack-audio-connection-kit 0.116.2+svn3592-2\n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: 2009-10-10 18:49+0200\n"
+"Last-Translator: Martin Sin <martin.sin at zshk.cz>\n"
+"Language-Team: Czech <debian-l10n-czech at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr "Povolit realtimovou prioritu procesu?"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+#| msgid ""
+#| "If you want to run jackd with realtime priorities, the user starting "
+#| "jackd needs realtime permissions. This is usually accomplished by "
+#| "tweaking rtprio and memlock in /etc/security/limits.conf, either for a "
+#| "specific user or for the audio group in general."
+msgid ""
+"If you want to run jackd with realtime priorities, the user starting jackd "
+"needs realtime permissions. Accept this option to create the file /etc/"
+"security/limits.d/audio.conf, granting realtime priority and memlock "
+"privileges to the audio group."
+msgstr ""
+"Pokud chcete spouštět jackd s realtimovými prioritami, potřebuje uživatel "
+"který spouští jackd příslušná realtimová oprávnění. Budete-li s tím "
+"souhlasit, dojde k vytvoření souboru /etc/security/limits.d/audio.conf "
+"a přiřazení příslušných práv (realtimové priority a memlock) pro skupinu "
+"audio."
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+#| msgid ""
+#| "Raising memlock and rtprio limits may lead to complete system lock-ups "
+#| "due to highest scheduler priorities or denial of service attacks by "
+#| "requesting all the available physical system memory, which is "
+#| "unacceptable in multi-user environments."
+msgid ""
+"Running jackd with realtime priority minimizes latency, but may lead to "
+"complete system lock-ups by requesting all the available physical system "
+"memory, which is unacceptable in multi-user environments."
+msgstr ""
+"Spuštění jackd s realtimovou prioritou minimalizuje reakce počítače, ale může "
+"vést ke kompletnímu zatuhnutí systému způsobenému plným obsazením "
+"fyzické paměti což je nepřípustné zejména ve více-uživatelských prostředích."
+
+#~ msgid "Do you want to enable realtime priorities in /etc/security/limits.d?"
+#~ msgstr "Chcete povolit realtimové priority v /etc/security/limits.d?"
+
+#~ msgid ""
+#~ "The Debian default is to DISABLE realtime priorities, however, if you "
+#~ "intend to run jackd with very low latencies, enable this option in order "
+#~ "to place the approriate settings in /etc/security/limits.d/audio.conf."
+#~ msgstr ""
+#~ "Výchozím nastavením v Debianu je ZAKÁZAT realtimové priority, samozřejmě "
+#~ "pokud chcete spouštět jackd s nízkým reakčním časem, povolte tuto volbu a "
+#~ "tím budou provedena odpovídající nastavení v /etc/security/limits.d/audio."
+#~ "conf za vás."
diff --git a/debian/po/de.po b/debian/po/de.po
new file mode 100644
index 0000000..342716c
--- /dev/null
+++ b/debian/po/de.po
@@ -0,0 +1,48 @@
+# Translation of jack-audio-connection-kit debconf templates to German
+# Copyright (C) Helge Kreutzmann <debian at helgefjell.de>, 2009.
+# This file is distributed under the same license as the jack-audio-connection-kit package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: jack-audio-connection-kit 0.116.2+svn3592-4\n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: 2009-10-12 18:42+0200\n"
+"Last-Translator: Helge Kreutzmann <debian at helgefjell.de>\n"
+"Language-Team: de <debian-l10n-german at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr "Echtzeit-Verarbeitungspriorität aktivieren?"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"If you want to run jackd with realtime priorities, the user starting jackd "
+"needs realtime permissions. Accept this option to create the file /etc/"
+"security/limits.d/audio.conf, granting realtime priority and memlock "
+"privileges to the audio group."
+msgstr ""
+"Falls Sie Jackd mit Echtzeitpriorität ausführen möchten, benötigt der "
+"Benutzer, der Jackd startet, die Echtzeit-Rechte. Akzeptieren Sie diese "
+"Option, um die Datei /etc/security/limits.d/audio.conf zu erstellen und damit "
+"der Gruppe »audio« Echtzeit- und Memlock-Priorität zu gewähren."
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"Running jackd with realtime priority minimizes latency, but may lead to "
+"complete system lock-ups by requesting all the available physical system "
+"memory, which is unacceptable in multi-user environments."
+msgstr ""
+"Durch Betrieb von Jackd mit Echtzeitpriorität wird die Latenz minimiert. Dies "
+"kann aber auch zum kompletten Aufhängen des Systems führen, indem der gesamte "
+"physische Speicher angefordert wird, was in einer Mehrbenutzerumgebung nicht "
+"akzeptabel ist."
diff --git a/debian/po/es.po b/debian/po/es.po
new file mode 100644
index 0000000..ea0d023
--- /dev/null
+++ b/debian/po/es.po
@@ -0,0 +1,56 @@
+# jack-audio-connection-kit po-debconf translation to Spanish
+# Copyright (C) 2009 Software in the Public Interest
+# This file is distributed under the same license as the jack-audio-connection-kit package.
+#
+# Changes:
+#   - Initial translation
+#       Francisco Javier Cuadrado <fcocuadrado at gmail.com>, 2009
+#
+# Traductores, si no conocen el formato PO, merece la pena leer la
+# documentación de gettext, especialmente las secciones dedicadas a este
+# formato, por ejemplo ejecutando:
+#       info -n '(gettext)PO Files'
+#       info -n '(gettext)Header Entry'
+#
+# Equipo de traducción al español, por favor, lean antes de traducir
+# los siguientes documentos:
+#
+#   - El proyecto de traducción de Debian al español
+#     http://www.debian.org/intl/spanish/
+#     especialmente las notas 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: jack-audio-connection-kit 0.116.2+svn3592-4\n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: 2009-10-10 18:00+0200\n"
+"Last-Translator: Francisco Javier Cuadrado <fcocuadrado at gmail.com>\n"
+"Language-Team: Debian l10n Spanish <debian-l10n-spanish at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr "¿Desea habilitar la prioridad en tiempo real del proceso?"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid "If you want to run jackd with realtime priorities, the user starting jackd needs realtime permissions. Accept this option to create the file /etc/security/limits.d/audio.conf, granting realtime priority and memlock privileges to the audio group."
+msgstr "Si quiere ejecutar jackd con prioridades en tiempo real, el usuario que ejecute jackd necesita tener permisos para dicha prioridad. Acepte esta opción para crear el archivo «/etc/security/limits.d/audio.conf», para permitir la prioridad en tiempo real y los privilegios de «memlock» al grupo audio."
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid "Running jackd with realtime priority minimizes latency, but may lead to complete system lock-ups by requesting all the available physical system memory, which is unacceptable in multi-user environments."
+msgstr "Ejecutar jackd con la prioridad en tiempo real reduce la latencia, pero puede llevar a un bloqueo completo del sistema al pedir toda la memoria física disponible del sistema, lo que es inaceptable en entornos multiusuario."
+
diff --git a/debian/po/fi.po b/debian/po/fi.po
new file mode 100644
index 0000000..459a3f4
--- /dev/null
+++ b/debian/po/fi.po
@@ -0,0 +1,51 @@
+# Copyright (C) 2009
+# This file is distributed under the same license as the jack-audio-connection-kit package.
+#
+# Esko Arajärvi <edu at iki.fi>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: 2009-10-11 12:23+0300\n"
+"Last-Translator: Esko Arajärvi <edu at iki.fi>\n"
+"Language-Team: Finnish <debian-l10n-finnish at lists.debian.org>\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
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr "Asetetaanko prosessi ajettavaksi reaaliaikaisella prioriteetilla?"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"If you want to run jackd with realtime priorities, the user starting jackd "
+"needs realtime permissions. Accept this option to create the file /etc/"
+"security/limits.d/audio.conf, granting realtime priority and memlock "
+"privileges to the audio group."
+msgstr ""
+"Ohjelman jackd ajaminen reaaliaikaisella prioriteetilla vaatii, että sen "
+"käynnistäjällä on tähän vaadittavat oikeudet. Tämän vaihtoehdon "
+"valitseminen luo tiedoston /etc/security/limits.d/audio.conf, jossa "
+"ryhmälle ”audio” annetaan oikeudet reaaliaikaisen prioriteetin ja "
+"memlockin käyttöön."
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"Running jackd with realtime priority minimizes latency, but may lead to "
+"complete system lock-ups by requesting all the available physical system "
+"memory, which is unacceptable in multi-user environments."
+msgstr ""
+"Ohjelman jackd ajaminen reaaliaikaisella prioriteetilla minimoi latenssin, "
+"mutta voi aiheuttaa järjestelmän täydellisen lukkiutumisen vaatimalla "
+"järjestelmän kaiken fyysisen muistin, mikä ei ole hyväksyttävää monen "
+"käyttäjän ympäristössä."
diff --git a/debian/po/fr.po b/debian/po/fr.po
new file mode 100644
index 0000000..4cff5df
--- /dev/null
+++ b/debian/po/fr.po
@@ -0,0 +1,53 @@
+# Translation of jack-audio-connection-kit debconf templates to French
+# Copyright (C) 2009 Debian French l10n team <debian-l10n-french at lists.debian.org>
+# This file is distributed under the same license as the jack-audio-connection-kit package.
+#
+# Translators:
+# Christian Perrier <bubulle at debian.org>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: 2009-10-19 19:16+0200\n"
+"Last-Translator: Christian Perrier <bubulle at debian.org>\n"
+"Language-Team: French <debian-l10n-french at lists.debian.org>\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
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr "Faut-il activer la gestion des priorités de processus en temps réel ?"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"If you want to run jackd with realtime priorities, the user starting jackd "
+"needs realtime permissions. Accept this option to create the file /etc/"
+"security/limits.d/audio.conf, granting realtime priority and memlock "
+"privileges to the audio group."
+msgstr ""
+"Si vous voulez exécuter jackd avec des priorités en temps réel, "
+"l'identifiant qui exécute le démon doit avoir des autorisations « realtime ». "
+"Vous pouvez choisir cette option pour créer un fichier /etc/security/limits."
+"d/audio.conf qui donnera la priorité « realtime » et le privilège "
+"« memlock » (verrouillage de la mémoire) au groupe « audio »."
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"Running jackd with realtime priority minimizes latency, but may lead to "
+"complete system lock-ups by requesting all the available physical system "
+"memory, which is unacceptable in multi-user environments."
+msgstr ""
+"Si jackd est exécuté en priorité temps réel, les délais de latence seront "
+"diminués mais cela peut provoquer un gel complet du système si toute la "
+"mémoire physique du système est mobilisée, ce qui est difficilement "
+"acceptable en environnement multi-utilisateurs."
diff --git a/debian/po/gl.po b/debian/po/gl.po
new file mode 100644
index 0000000..a077253
--- /dev/null
+++ b/debian/po/gl.po
@@ -0,0 +1,53 @@
+# Copyright (C) 2009 Debian
+# This file is distributed under the same license as the jack-audio-connection-kit package.
+#
+# Marce Villarino <mvillarino at gmail.com>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: 2009-11-03 21:17+0100\n"
+"Last-Translator: Marce Villarino <mvillarino at gmail.com>\n"
+"Language-Team: Galician <proxecto at trasno.net>\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
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr "Desexa activar a prioridade de tempo real?"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"If you want to run jackd with realtime priorities, the user starting jackd "
+"needs realtime permissions. Accept this option to create the file /etc/"
+"security/limits.d/audio.conf, granting realtime priority and memlock "
+"privileges to the audio group."
+msgstr ""
+"Se desexa executar jackd con prioridades de tempo real o usuario que "
+"inicie "
+"jackd precisa ter permisos para tempo real. Escolle esta opción para crear "
+"o ficheiro /etc/security/limits.d/audio.conf, que lle concederá a "
+"prioridade "
+"para tempo real e privilexios de bloqueo de memoria para o grupo de son."
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"Running jackd with realtime priority minimizes latency, but may lead to "
+"complete system lock-ups by requesting all the available physical system "
+"memory, which is unacceptable in multi-user environments."
+msgstr ""
+"Executa jackd con prioridade de tempo real minimiza a latencia pero pode "
+"causar bloqueos completos do sistema se pide toda a memoria física "
+"dispoñíbel "
+"no sistema, o que non é admisíbel en ambientes multiusuario."
+
diff --git a/debian/po/it.po b/debian/po/it.po
new file mode 100644
index 0000000..cb1679c
--- /dev/null
+++ b/debian/po/it.po
@@ -0,0 +1,50 @@
+# Italian translation of jack-audio-connection-kit.
+# COPYRIGHT (C) 2009 THE JACK-AUDIO-CONNECTION-KIT'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the jack-audio-connection-kit package.
+# Luca Monducci <luca.mo at tiscali.it>, 2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: jack-audio-connection-kit 0.116.2+svn3592 debconf "
+"templates\n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: 2009-10-21 21:31+0200\n"
+"Last-Translator: Luca Monducci <luca.mo at tiscali.it>\n"
+"Language-Team: Italian <debian-l10n-italian at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr "Attivare la priorità realtime del processo?"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"If you want to run jackd with realtime priorities, the user starting jackd "
+"needs realtime permissions. Accept this option to create the file /etc/"
+"security/limits.d/audio.conf, granting realtime priority and memlock "
+"privileges to the audio group."
+msgstr ""
+"Per eseguire jackd con le priorità realtime, l'utente che avvia jackd "
+"necessita dei permessi realtime. Accettando verrà creato il file /etc/"
+"security/limits.conf, che garantirà i privilegi di priorità realtime e di "
+"memlock al gruppo audio."
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"Running jackd with realtime priority minimizes latency, but may lead to "
+"complete system lock-ups by requesting all the available physical system "
+"memory, which is unacceptable in multi-user environments."
+msgstr ""
+"L'esecuzione di jackd con priorità in realtime minimizza la latenza, ma "
+"potrebbe comportare dei blocchi del sistema dovuti alla richiesta di tutta "
+"la memoria fisica disponibile sul sistema, inaccettabile in ambienti multi-"
+"utente."
diff --git a/debian/po/ja.po b/debian/po/ja.po
new file mode 100644
index 0000000..9556951
--- /dev/null
+++ b/debian/po/ja.po
@@ -0,0 +1,48 @@
+# Copyright (C) 2009 Debian Multimedia Maintainers <pkg-multimedia-maintainers at lists.alioth.debian.org>
+# This file is distributed under the same license as jack-audio-connection-kit package.
+# Hideki Yamane (Debian-JP) <henrich at debian.or.jp>, 2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: jack-audio-connection-kit 0.116.2+svn3592-3\n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: 2009-10-14 17:32+0900\n"
+"Last-Translator: Hideki Yamane (Debian-JP) <henrich at debian.or.jp>\n"
+"Language-Team: Japanese <debian-japanese at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr "リアルタイム実行優先度の設定を有効にしますか?"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"If you want to run jackd with realtime priorities, the user starting jackd "
+"needs realtime permissions. Accept this option to create the file /etc/"
+"security/limits.d/audio.conf, granting realtime priority and memlock "
+"privileges to the audio group."
+msgstr ""
+"jackd をリアルタイム優先度で動作させたい場合、jackd を起動したユーザはリア"
+"ルタイム動作をさせられるパーミッションが必要です。このオプションを選択すると、"
+"/etc/security/limits.d/audio.conf ファイルを作成し、audio グループに対し"
+"てリアルタイム優先度と memlock 権限を許可します。"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"Running jackd with realtime priority minimizes latency, but may lead to "
+"complete system lock-ups by requesting all the available physical system "
+"memory, which is unacceptable in multi-user environments."
+msgstr ""
+"レイテンシー (遅延) を抑えて jackd をリアルタイム優先度でに動作させると、"
+"システムの物理メモリを可能な限り要求して完全にシステム停止を引き起こす"
+"可能性があります。これは、マルチユーザ環境では容認出来ません。"
+
diff --git a/debian/po/pt.po b/debian/po/pt.po
new file mode 100644
index 0000000..9147055
--- /dev/null
+++ b/debian/po/pt.po
@@ -0,0 +1,53 @@
+# translation of jack-audio-connection-kit debconf to Portuguese
+# Copyright (C) 2009 the jack-audio-connection-kit's copyright holder
+# This file is distributed under the same license as the jack-audio-connection-kit package.
+#
+# Américo Monteiro <a_monteiro at netcabo.pt>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: jack-audio-connection-kit 0.116.2+svn3592-4\n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: 2009-10-11 10:52+0100\n"
+"Last-Translator: Américo Monteiro <a_monteiro at netcabo.pt>\n"
+"Language-Team: Portuguese <traduz at debianpt.org>\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
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr "Activar prioridade do processo em tempo real?"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"If you want to run jackd with realtime priorities, the user starting jackd "
+"needs realtime permissions. Accept this option to create the file /etc/"
+"security/limits.d/audio.conf, granting realtime priority and memlock "
+"privileges to the audio group."
+msgstr ""
+"Se deseja correr o jackd com prioridades de tempo real, o utilizador que "
+"arrancar o jackd precisa ter permissões de tempo real. Aceite esta opção "
+"para criar o ficheiro /etc/security/limits.d/audio.conf. garantindo "
+"prioridade de tempo real e privilégios memlock ao grupo audio."
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"Running jackd with realtime priority minimizes latency, but may lead to "
+"complete system lock-ups by requesting all the available physical system "
+"memory, which is unacceptable in multi-user environments."
+msgstr ""
+"Correr o jackd com prioridade de tempo real minimiza a latência, mas pode "
+"levar a paragens completas do sistema ao requisitar toda a memória física "
+"disponível do sistema, o que é inaceitável em ambientes de "
+"multi-utilizador."
+
+
diff --git a/debian/po/ru.po b/debian/po/ru.po
new file mode 100644
index 0000000..145153c
--- /dev/null
+++ b/debian/po/ru.po
@@ -0,0 +1,63 @@
+# translation of ru.po to Russian
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Yuri Kozlov <yuray at komyakino.ru>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: jack-audio-connection-kit 0.116.2+svn3592-4\n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: 2009-10-11 09:40+0400\n"
+"Last-Translator: Yuri Kozlov <yuray at komyakino.ru>\n"
+"Language-Team: Russian <debian-l10n-russian at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr "Использовать приоритет реального времени в работе?"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+#| msgid ""
+#| "If you want to run jackd with realtime priorities, the user starting "
+#| "jackd needs realtime permissions. This is usually accomplished by "
+#| "tweaking rtprio and memlock in /etc/security/limits.conf, either for a "
+#| "specific user or for the audio group in general."
+msgid ""
+"If you want to run jackd with realtime priorities, the user starting jackd "
+"needs realtime permissions. Accept this option to create the file /etc/"
+"security/limits.d/audio.conf, granting realtime priority and memlock "
+"privileges to the audio group."
+msgstr ""
+"Если вы хотите, чтобы jackd выполнялся с приоритетом реального времени, то "
+"пользователю, запускающему jackd, нужны права на работу с приоритетом "
+"реального времени. Если ответить утвердительно, то будет создан файл "
+"/etc/security/limits.d/audio.conf, предоставляющий приоритет реального "
+"времени memlock для группы audio."
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+#| msgid ""
+#| "Raising memlock and rtprio limits may lead to complete system lock-ups "
+#| "due to highest scheduler priorities or denial of service attacks by "
+#| "requesting all the available physical system memory, which is "
+#| "unacceptable in multi-user environments."
+msgid ""
+"Running jackd with realtime priority minimizes latency, but may lead to "
+"complete system lock-ups by requesting all the available physical system "
+"memory, which is unacceptable in multi-user environments."
+msgstr ""
+"Работа jackd с приоритетом реального времени сократит задержку, но может "
+"привести к полной блокировке системы, запрашивая всю доступную "
+"физическую системную память, что неприемлемо в многопользовательских "
+"системах."
+
diff --git a/debian/po/sv.po b/debian/po/sv.po
new file mode 100644
index 0000000..fcdc173
--- /dev/null
+++ b/debian/po/sv.po
@@ -0,0 +1,51 @@
+# translation of jack-audio-connection-kit_sv.po to Swedish
+# Copyright (C) 2009
+# This file is distributed under the same license as the jack-audio-connection-kit package.
+#
+# Martin Ågren <martin.agren at gmail.com>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: jack-audio-connection-kit_sv\n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: 2009-10-10 18:08+0200\n"
+"Last-Translator: Martin Ågren <martin.agren at gmail.com>\n"
+"Language-Team: Swedish <debian-l10n-swedish at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms:  nplurals=2; plural=(n != 1);\n"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr "Aktivera realtidsprocessprioritet?"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"If you want to run jackd with realtime priorities, the user starting jackd "
+"needs realtime permissions. Accept this option to create the file /etc/"
+"security/limits.d/audio.conf, granting realtime priority and memlock "
+"privileges to the audio group."
+msgstr ""
+"Om du vill köra jackd med realtidsprioriteter, behöver den användare som startar jackd "
+"realtidsrättigheter. Acceptera detta val för att skapa filen /etc/"
+"security/limits.d/audio.conf, vilket ger realtidsprioritet och "
+"memlockrättigheter till audiogruppen."
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"Running jackd with realtime priority minimizes latency, but may lead to "
+"complete system lock-ups by requesting all the available physical system "
+"memory, which is unacceptable in multi-user environments."
+msgstr ""
+"Om jackd körs med realtidsprioritet minimeras latensen, men det kan leda till "
+"att systemet låser sig fullständigt genom att efterfråga allt tillgängligt fysiskt "
+"systemminne, vilket är oacceptabelt i en fleranvändarmiljö."
+
diff --git a/debian/po/templates.pot b/debian/po/templates.pot
new file mode 100644
index 0000000..04208ff
--- /dev/null
+++ b/debian/po/templates.pot
@@ -0,0 +1,42 @@
+# 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 <EMAIL at ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"If you want to run jackd with realtime priorities, the user starting jackd "
+"needs realtime permissions. Accept this option to create the file /etc/"
+"security/limits.d/audio.conf, granting realtime priority and memlock "
+"privileges to the audio group."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"Running jackd with realtime priority minimizes latency, but may lead to "
+"complete system lock-ups by requesting all the available physical system "
+"memory, which is unacceptable in multi-user environments."
+msgstr ""
diff --git a/debian/po/vi.po b/debian/po/vi.po
new file mode 100644
index 0000000..952e483
--- /dev/null
+++ b/debian/po/vi.po
@@ -0,0 +1,42 @@
+# Vietnamese translation for Jack Audio Conection Kit.
+# Copyright © 2009 Free Software Foundation, Inc.
+# Clytie Siddall <clytie at riverland.net.au>, 2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: jack-audio-connection-kit 0.116.2+svn3592-4\n"
+"Report-Msgid-Bugs-To: jack-audio-connection-kit at packages.debian.org\n"
+"POT-Creation-Date: 2009-10-10 14:57+0100\n"
+"PO-Revision-Date: 2009-10-11 17:37+1030\n"
+"Last-Translator: Clytie Siddall <clytie at riverland.net.au>\n"
+"Language-Team: Vietnamese <vi-VN at googlegroups.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: LocFactoryEditor 1.8\n"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid "Enable realtime process priority?"
+msgstr "Bật mức ưu tiên tiến trình thời gian thực ?"
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"If you want to run jackd with realtime priorities, the user starting jackd "
+"needs realtime permissions. Accept this option to create the file /etc/"
+"security/limits.d/audio.conf, granting realtime priority and memlock "
+"privileges to the audio group."
+msgstr "Nếu bạn muốn chạy trình nền jackd ở mức ưu tiên thời gian thực thì người dùng khởi chạy jackd cần có quyền truy cập thời gian thực. Hiệu lực tuỳ chọn này để tạo tập tin cấu hình « /etc/security/limits.d/audio.conf » mà cấp cho nhóm « audio » (âm thânh) quyền truy cập thời gian thực đối với mức ưu tiên và khoá bộ nhớ."
+
+#. Type: boolean
+#. Description
+#: ../jackd.templates:2001
+msgid ""
+"Running jackd with realtime priority minimizes latency, but may lead to "
+"complete system lock-ups by requesting all the available physical system "
+"memory, which is unacceptable in multi-user environments."
+msgstr "Chạy trình nền jackd ở mức ưu tiên thời gian thực thì giảm sự âm ỷ, nhưng mà cũng có thể dẫn tới toàn bộ hệ thống đang treo cứng do yêu cầu tất cả các bộ nhớ hệ thống vật lý sẵn sàng, một trường hợp không thể chấp nhận được trong môi trường đa người dùng."

-- 
jackd2 packaging



More information about the pkg-multimedia-commits mailing list