From 395c04e70974ffc3718903f5a75d269bdb0e8ee0 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Sun, 3 Aug 2008 04:08:16 -0700 Subject: first stab at a perl helper to manage common-*: parse our config files and generate a debconf prompt from them, but don't yet do anything with the information --- debian/libpam-runtime.templates | 13 +++++++ debian/local/pam-auth-update | 80 +++++++++++++++++++++++++++++++++++++++++ debian/po/POTFILES.in | 1 + debian/po/bg.po | 29 +++++++++++++-- debian/po/cs.po | 29 +++++++++++++-- debian/po/de.po | 29 +++++++++++++-- debian/po/es.po | 35 +++++++++++++++--- debian/po/eu.po | 29 +++++++++++++-- debian/po/fi.po | 29 +++++++++++++-- debian/po/fr.po | 29 +++++++++++++-- debian/po/gl.po | 29 +++++++++++++-- debian/po/it.po | 29 +++++++++++++-- debian/po/ja.po | 29 +++++++++++++-- debian/po/nl.po | 29 +++++++++++++-- debian/po/pt.po | 29 +++++++++++++-- debian/po/pt_BR.po | 29 +++++++++++++-- debian/po/ro.po | 29 +++++++++++++-- debian/po/ru.po | 29 +++++++++++++-- debian/po/sk.po | 29 +++++++++++++-- debian/po/sv.po | 29 +++++++++++++-- debian/po/templates.pot | 37 +++++++++++++++---- debian/po/tr.po | 29 +++++++++++++-- debian/po/vi.po | 29 +++++++++++++-- debian/po/zh_CN.po | 29 +++++++++++++-- 24 files changed, 668 insertions(+), 49 deletions(-) create mode 100644 debian/libpam-runtime.templates create mode 100755 debian/local/pam-auth-update (limited to 'debian') diff --git a/debian/libpam-runtime.templates b/debian/libpam-runtime.templates new file mode 100644 index 00000000..65f3c3fc --- /dev/null +++ b/debian/libpam-runtime.templates @@ -0,0 +1,13 @@ +Template: libpam-runtime/profiles +Type: multiselect +Choices: ${profiles} +Choices-C: ${profile_names} +_Description: PAM profiles to enable: + Pluggable Authentication Modules (PAM) determine how authentication, + authorization, and password changing are handled on the system, as well + as allowing configuration of additional actions to take when starting + user sessions. + . + Some PAM module packages provide profiles that can be used to + automatically adjust the behavior of all PAM-using applications on the + system. Please indicate which of these behaviors you wish to enable. diff --git a/debian/local/pam-auth-update b/debian/local/pam-auth-update new file mode 100755 index 00000000..4f41f264 --- /dev/null +++ b/debian/local/pam-auth-update @@ -0,0 +1,80 @@ +#!/usr/bin/perl -w + +# pam-auth-update: update /etc/pam.d/common-* from /usr/share/pam-configs +# +# Update the /etc/pam.d/common-* files based on the per-package profiles +# provided in /usr/share/pam-configs/ taking into consideration user's +# preferences (as determined via debconf prompting). +# +# Written by Steve Langasek +# +# Copyright (C) 2008 Canonical Ltd. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of version 3 of the GNU General Public License as +# published by the Free Software Foundation. +# +# # This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, +# USA. + +use strict; +use Debconf::Client::ConfModule ':all'; + +version('2.0'); +my $capb=capb('backup'); + +my $inputdir = '/usr/share/pam-configs'; +my $template = 'libpam-runtime/profiles'; +my (%profiles, @sorted, @enabled); + +opendir(DIR, $inputdir) || die "could not open config directory: $!"; +while (my $profile = readdir(DIR)) { + next if ($profile eq '.' || $profile eq '..'); + %{$profiles{$profile}} = parse_pam_profile($inputdir . '/' . $profile); +} +closedir DIR; + +x_loadtemplatefile('/var/lib/dpkg/info/libpam-runtime.templates','libpam-runtime'); +@sorted = sort { $profiles{$b}->{'Priority'} <=> $profiles{$a}->{'Priority'} } + keys(%profiles); +subst($template, 'profile_names', join(', ',@sorted)); +subst($template, 'profiles', + join(', ', map { $profiles{$_}->{'Name'} } @sorted)); + +# this needs to be replaced by proper detection of any profiles that are +# already enabled. +fset($template,'seen','false'); +set($template, + join(', ', grep { $profiles{$_}->{'Default'} eq 'yes' } @sorted)); +input('high',$template); +go(); + +@enabled = split(/, /, get($template)); + +# simple function to parse a provided config file, in pseudo-RFC822 +# format, +sub parse_pam_profile +{ + my ($profile) = $_[0]; + my $fieldname; + my %profile; + open(PROFILE, $profile) || die "could not read profile $profile: $!"; + while () { + if (/^(\S+):\s+(.*)$/) { + $fieldname = $1; + $profile{$1} = $2; + } else { + chomp; + $profile{$fieldname} .= "\n$_"; + } + } + close(PROFILE); + return %profile; +} diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in index 8c641cfc..7a673ed8 100644 --- a/debian/po/POTFILES.in +++ b/debian/po/POTFILES.in @@ -1 +1,2 @@ [type: gettext/rfc822deb] libpam0g.templates +[type: gettext/rfc822deb] libpam-runtime.templates diff --git a/debian/po/bg.po b/debian/po/bg.po index 9b0b2bab..4ea40e9f 100644 --- a/debian/po/bg.po +++ b/debian/po/bg.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-09-25 14:24+0300\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" @@ -87,3 +87,28 @@ msgid "" "You will need to start these manually by running '/etc/init.d/ " "start'." msgstr "Ще трябва сами да ги стартирате чрез „/etc/init.d/<услуга> start“." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/cs.po b/debian/po/cs.po index 0bfadf14..35ef1c23 100644 --- a/debian/po/cs.po +++ b/debian/po/cs.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-09-29 15:30+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" @@ -91,6 +91,31 @@ msgid "" msgstr "" "Tyto služby budete muset spustit ručně příkazem '/etc/init.d/ start'." +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" + #~ msgid "" #~ "Among the services that require restarting are the display managers kdm, " #~ "wdm, and xdm. If you are upgrading from within an X session started with " diff --git a/debian/po/de.po b/debian/po/de.po index 4fa78a91..c910e7cc 100644 --- a/debian/po/de.po +++ b/debian/po/de.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-09-29 14:18+0200\n" "Last-Translator: Sven Joachim \n" "Language-Team: German \n" @@ -93,3 +93,28 @@ msgid "" msgstr "" "Sie müssen diese manuell neu starten, indem Sie »/etc/init.d/ start« " "ausführen." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/es.po b/debian/po/es.po index 63dbccf8..624c93fc 100644 --- a/debian/po/es.po +++ b/debian/po/es.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.79-4\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-09-29 02:28+0200\n" "Last-Translator: Javier Fernández-Sanguino \n" "Language-Team: Debian Spanish \n" @@ -71,9 +71,9 @@ msgid "" "cannot be restarted for you. You will not be able to authenticate to these " "services until you restart them manually." msgstr "" -"Algunos servicios, como «xscreensaver», «gnome-screensaver» y «xlockmore», " -"no podrán reiniciarse. La autenticación no funcionará en estos servicios " -"hasta que los reinicie manualmente." +"Algunos servicios, como «xscreensaver», «gnome-screensaver» y «xlockmore», no " +"podrán reiniciarse. La autenticación no funcionará en estos servicios hasta " +"que los reinicie manualmente." #. Type: error #. Description @@ -121,6 +121,31 @@ msgstr "" "Deberá arrancar manualmente estos servicios ejecutando «/etc/init.d/" " start»." +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" + #~ msgid "" #~ "Among the services that require restarting are the display managers kdm, " #~ "wdm, and xdm. If you are upgrading from within an X session started with " diff --git a/debian/po/eu.po b/debian/po/eu.po index 79e1ad5b..c0abfb4a 100644 --- a/debian/po/eu.po +++ b/debian/po/eu.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: eu\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2008-04-02 14:26+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \n" @@ -94,3 +94,28 @@ msgid "" msgstr "" "Hauek zure kabuz berrabiarazi beharko dituzu '/etc/init.d/ start' " "eginaz." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/fi.po b/debian/po/fi.po index e753209d..cc33876b 100644 --- a/debian/po/fi.po +++ b/debian/po/fi.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-4\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-12-30 00:14+0200\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" @@ -91,3 +91,28 @@ msgid "" msgstr "" "Nämä palvelut tulee käynnistää uudelleen ajamalla '/etc/init.d/ " "start'." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/fr.po b/debian/po/fr.po index e14fd177..e59130bb 100644 --- a/debian/po/fr.po +++ b/debian/po/fr.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-10-03 12:07+0200\n" "Last-Translator: Cyril Brulebois \n" "Language-Team: French \n" @@ -94,6 +94,31 @@ msgstr "" "Vous devez les démarrer vous-même avec la commande « /etc/init.d/ " "start »." +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" + #~ msgid "" #~ "Among the services that require restarting are the display managers kdm, " #~ "wdm, and xdm. If you are upgrading from within an X session started with " diff --git a/debian/po/gl.po b/debian/po/gl.po index 378d225c..ce589634 100644 --- a/debian/po/gl.po +++ b/debian/po/gl.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-10-01 20:04+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" @@ -89,3 +89,28 @@ msgid "" msgstr "" "Ha ter que reinicialos manualmente executando \"/etc/init.d/ start" "\"." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/it.po b/debian/po/it.po index d4b214bf..5ccac0a1 100644 --- a/debian/po/it.po +++ b/debian/po/it.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2008-06-01 08:38+0100\n" "Last-Translator: David Paleino \n" "Language-Team: LANGUAGE \n" @@ -90,3 +90,28 @@ msgid "" "start'." msgstr "" "Bisognerà avviarli manualmente eseguendo '/etc/init.d/ start'." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/ja.po b/debian/po/ja.po index 1772b2cd..29bd5ad1 100644 --- a/debian/po/ja.po +++ b/debian/po/ja.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-10-14 16:48+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Japanese \n" @@ -89,3 +89,28 @@ msgid "" msgstr "" "/etc/init.d/<サービス> start' を実行することで、これらを手動で起動する必要が" "あります。" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/nl.po b/debian/po/nl.po index b3db3f53..f58f7457 100644 --- a/debian/po/nl.po +++ b/debian/po/nl.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-10-26 19:55+0100\n" "Last-Translator: Bart Cornelis \n" "Language-Team: debian-l10n-dutch \n" @@ -92,3 +92,28 @@ msgid "" msgstr "" "U dient deze diensten handmatig op te starten via het commando '/etc/init.d/" " start'." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/pt.po b/debian/po/pt.po index 39089ea2..2f207f0e 100644 --- a/debian/po/pt.po +++ b/debian/po/pt.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-09-25 19:04+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" @@ -92,3 +92,28 @@ msgid "" msgstr "" "Você precisa de iniciar manualmente estes serviços fazendo '/etc/init.d/" " start'." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po index 8200e558..240374d6 100644 --- a/debian/po/pt_BR.po +++ b/debian/po/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam_0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-09-26 15:53-0300\n" "Last-Translator: Eder L. Marques \n" "Language-Team: l10n Portuguese \n" @@ -93,3 +93,28 @@ msgid "" "start'." msgstr "" "Você deverá iniciá-los manualmente executando '/etc/init.d/ start'." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/ro.po b/debian/po/ro.po index ad224aee..b744b2a2 100644 --- a/debian/po/ro.po +++ b/debian/po/ro.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: templates\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2008-07-21 10:28+0300\n" "Last-Translator: Igor Stirbu \n" "Language-Team: Romanian \n" @@ -95,3 +95,28 @@ msgid "" msgstr "" "Trebuie să reporniți manual aceste servicii rulând „/etc/init.d/ " "start”" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/ru.po b/debian/po/ru.po index e684545c..f9830180 100644 --- a/debian/po/ru.po +++ b/debian/po/ru.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.99.7.1-4\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-09-25 20:51+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -92,3 +92,28 @@ msgid "" "start'." msgstr "" "Вам нужно перезапустить их вручную, выполнив '/etc/init.d/<сервис> start'." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/sk.po b/debian/po/sk.po index 5c380704..a0a13c66 100644 --- a/debian/po/sk.po +++ b/debian/po/sk.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: \n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -89,3 +89,28 @@ msgid "" "start'." msgstr "" "Budete ich musieť reštartovať ručne spustením „/etc/init.d/ start”." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/sv.po b/debian/po/sv.po index 1b8b0863..ea7b28be 100644 --- a/debian/po/sv.po +++ b/debian/po/sv.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-12-24 12:29+0100\n" "Last-Translator: Christer Andersson \n" "Language-Team: Swedish \n" @@ -90,3 +90,28 @@ msgid "" msgstr "" "Du behver starta om dessa manuellt genom att kra \"/etc/init.d/ " "start\"." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/templates.pot b/debian/po/templates.pot index 0d388eec..531f68ce 100644 --- a/debian/po/templates.pot +++ b/debian/po/templates.pot @@ -1,14 +1,14 @@ -# Debconf questions for the Linux-PAM package. -# Copyright (C) 2007 Steve Langasek -# This file is distributed under the same license as the pam package. +# 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: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -77,3 +77,28 @@ msgid "" "You will need to start these manually by running '/etc/init.d/ " "start'." msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/tr.po b/debian/po/tr.po index d6273c1f..9e7a8112 100644 --- a/debian/po/tr.po +++ b/debian/po/tr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2008-07-15 01:39+0200\n" "Last-Translator: Mert Dirik \n" "Language-Team: Debian L10n Turkish \n" @@ -94,3 +94,28 @@ msgid "" msgstr "" "Bu hizmetleri '/etc/init.d/ start' komutunu kullanarak elinizle " "başlatmanız gerekecek." + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" diff --git a/debian/po/vi.po b/debian/po/vi.po index df7e1bf2..903eae60 100644 --- a/debian/po/vi.po +++ b/debian/po/vi.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-09-28 23:58+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -92,6 +92,31 @@ msgstr "" "Bạn cần phải tự khởi chạy lại chúng bằng cách chạy lệnh « /etc/init.d/" " start »." +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" + #~ msgid "" #~ "Among the services that require restarting are the display managers kdm, " #~ "wdm, and xdm. If you are upgrading from within an X session started with " diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po index e4fb11fa..18f8fdae 100644 --- a/debian/po/zh_CN.po +++ b/debian/po/zh_CN.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-08-03 03:58-0700\n" "PO-Revision-Date: 2007-09-25 23:06-0500\n" "Last-Translator: Ming Hua \n" "Language-Team: Debian Chinese [GB] \n" @@ -89,3 +89,28 @@ msgid "" "You will need to start these manually by running '/etc/init.d/ " "start'." msgstr "您需要运行“/etc/init.d/<服务> start”来手动启动这些服务。" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "PAM profiles to enable:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Pluggable Authentication Modules (PAM) determine how authentication, " +"authorization, and password changing are handled on the system, as well as " +"allowing configuration of additional actions to take when starting user " +"sessions." +msgstr "" + +#. Type: multiselect +#. Description +#: ../libpam-runtime.templates:1001 +msgid "" +"Some PAM module packages provide profiles that can be used to automatically " +"adjust the behavior of all PAM-using applications on the system. Please " +"indicate which of these behaviors you wish to enable." +msgstr "" -- cgit v1.2.3