From 231868ac0c5d34eeed70c84ff96069ef691203e5 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Tue, 21 May 2013 23:59:16 +0100 Subject: Remove support for upgrading from ssh-nonfree. --- debian/changelog | 1 + debian/copyright.head | 2 +- debian/openssh-client.config | 5 ---- debian/openssh-server.config | 17 ----------- debian/openssh-server.preinst | 28 ------------------ debian/openssh-server.templates | 10 ------- debian/po/bg.po | 59 ++++++++++++++++--------------------- debian/po/ca.po | 59 ++++++++++++++++--------------------- debian/po/cs.po | 59 ++++++++++++++++--------------------- debian/po/da.po | 61 +++++++++++++++++--------------------- debian/po/de.po | 61 +++++++++++++++++--------------------- debian/po/el.po | 65 +++++++++++++++++------------------------ debian/po/es.po | 61 +++++++++++++++++--------------------- debian/po/eu.po | 61 +++++++++++++++++--------------------- debian/po/fi.po | 59 ++++++++++++++++--------------------- debian/po/fr.po | 59 ++++++++++++++++--------------------- debian/po/gl.po | 61 +++++++++++++++++--------------------- debian/po/id.po | 61 +++++++++++++++++--------------------- debian/po/it.po | 61 +++++++++++++++++--------------------- debian/po/ja.po | 59 ++++++++++++++++--------------------- debian/po/ko.po | 59 ++++++++++++++++--------------------- debian/po/nb.po | 61 +++++++++++++++++--------------------- debian/po/nl.po | 62 +++++++++++++++++---------------------- debian/po/pl.po | 59 ++++++++++++++++--------------------- debian/po/pt.po | 60 +++++++++++++++++-------------------- debian/po/pt_BR.po | 61 +++++++++++++++++--------------------- debian/po/ro.po | 59 ++++++++++++++++--------------------- debian/po/ru.po | 61 +++++++++++++++++--------------------- debian/po/sk.po | 59 ++++++++++++++++--------------------- debian/po/sv.po | 61 +++++++++++++++++--------------------- debian/po/ta.po | 59 ++++++++++++++++--------------------- debian/po/templates.pot | 40 ++++++------------------- debian/po/tr.po | 61 +++++++++++++++++--------------------- debian/po/uk.po | 62 ++++++++++++++++----------------------- debian/po/vi.po | 61 +++++++++++++++++--------------------- debian/po/zh_CN.po | 60 +++++++++++++++---------------------- 36 files changed, 753 insertions(+), 1101 deletions(-) diff --git a/debian/changelog b/debian/changelog index f76eb1b59..afa63f18d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,7 @@ openssh (1:6.2p2-2) UNRELEASED; urgency=low * Remove ssh/use_old_init_script, which was a workaround for a very old bug in /etc/init.d/ssh. If anyone has ignored this for >10 years then they aren't going to be convinced now. + * Remove support for upgrading from ssh-nonfree. -- Colin Watson Tue, 21 May 2013 17:49:35 +0100 diff --git a/debian/copyright.head b/debian/copyright.head index 311a06a7e..c59278825 100644 --- a/debian/copyright.head +++ b/debian/copyright.head @@ -7,7 +7,7 @@ It was downloaded from here: worldwide mirrors are listed here: http://www.openssh.com/ftp.html -The Debian specific parts of the package are mostly taken from the +The Debian-specific parts of the package were initially derived from the original ssh package, which has since been renamed as ssh-nonfree. The Debian patch is distributed under the terms of the GPL, which you diff --git a/debian/openssh-client.config b/debian/openssh-client.config index 736e464ed..6d678055f 100644 --- a/debian/openssh-client.config +++ b/debian/openssh-client.config @@ -7,11 +7,6 @@ version=$2 . /usr/share/debconf/confmodule db_version 2.0 -if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then - version=1.2.27 - cp -a /etc/ssh-nonfree /etc/ssh -fi - # Was ssh-keysign's setuid bit turned off using the obsolete debconf # question? If so, turn this into a statoverride. (Ugh.) if dpkg --compare-versions "$2" lt 1:4.1p1-2 && \ diff --git a/debian/openssh-server.config b/debian/openssh-server.config index 4cd14a753..3cbcf6ea6 100644 --- a/debian/openssh-server.config +++ b/debian/openssh-server.config @@ -35,23 +35,6 @@ then fi fi -key=/etc/ssh/ssh_host_key -export key -if [ -n "$version" ] && [ -f $key ] && [ ! -x /usr/bin/ssh-keygen ] && - dpkg --compare-versions "$version" lt 1.2.28 -then - # make sure that keys get updated to get rid of IDEA; preinst - # actually does the work, but if the old ssh-keygen is not found, - # it can't do that -- thus, we tell the user that he must create - # a new host key. - printf '\0\0' | 3<&0 sh -c \ - 'dd if=$key bs=1 skip=32 count=2 2>/dev/null | cmp -s - /dev/fd/3' || { - # this means that bytes 32&33 of the key were not both zero, in which - # case the key is encrypted, which we need to fix - db_input high ssh/encrypted_host_key_but_no_keygen || true - } -fi - db_go diff --git a/debian/openssh-server.preinst b/debian/openssh-server.preinst index 83fd22e59..8bb2d6f1a 100644 --- a/debian/openssh-server.preinst +++ b/debian/openssh-server.preinst @@ -16,36 +16,8 @@ prepare_mv_conffile () { fi } -if [ -d /etc/ssh-nonfree ] && [ ! -d /etc/ssh ]; then - version=1.2.27 -fi - if [ "$action" = upgrade ] || [ "$action" = install ] then - # deal with upgrading from pre-OpenSSH versions - key=/etc/ssh/ssh_host_key - export key - if [ -n "$version" ] && [ -x /usr/bin/ssh-keygen ] && [ -f $key ] && - dpkg --compare-versions "$version" lt 1.2.28 - then - # make sure that keys get updated to get rid of IDEA - # - # N.B. this only works because we've still got the old - # nonfree ssh-keygen at this point - # - # First, check if we need to bother - printf '\0\0' | 3<&0 sh -c \ - 'dd if=$key bs=1 skip=32 count=2 2>/dev/null | cmp -s - /dev/fd/3' || { - # this means that bytes 32&33 of the key were not both zero, in which - # case the key is encrypted, which we need to fix - chmod 600 $key - ssh-keygen -u -f $key >/dev/null - if which restorecon >/dev/null 2>&1; then - restorecon "$key.pub" - fi - } - fi - if dpkg --compare-versions "$version" lt 1:4.7p1-4; then prepare_mv_conffile /etc/pam.d/ssh fi diff --git a/debian/openssh-server.templates b/debian/openssh-server.templates index 29bbe188b..b2d94fabe 100644 --- a/debian/openssh-server.templates +++ b/debian/openssh-server.templates @@ -7,16 +7,6 @@ # Even minor modifications require translation updates and such # changes should be coordinated with translators and reviewers. # -Template: ssh/encrypted_host_key_but_no_keygen -Type: note -_Description: New host key mandatory - The current host key, in /etc/ssh/ssh_host_key, is encrypted with the - IDEA algorithm. OpenSSH can not handle this host key file, and the - ssh-keygen utility from the old (non-free) SSH installation does not - appear to be available. - . - You need to manually generate a new host key. - Template: ssh/disable_cr_auth Type: boolean Default: false diff --git a/debian/po/bg.po b/debian/po/bg.po index 70a97923b..393176b87 100644 --- a/debian/po/bg.po +++ b/debian/po/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-19 09:27+0300\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" @@ -17,40 +17,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Необходим е нов ключ за хоста" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"В момента ключа на хоста в /etc/ssh/ssh_host_key е шифриран с алгоритъма " -"IDEA. OpenSSH не може да работи с този файл, а програмата ssh-keygen от " -"старата инсталация не е налична." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Необходимо е да се генерира ръчно нов ключ за хоста." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Забрана на удостоверяването challenge-response?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -68,7 +43,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -82,13 +57,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Уязвимите ключове на хоста ще бъдат създадени наново" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -101,7 +76,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -115,13 +90,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Засегнатите ключове на хоста са:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -132,6 +107,22 @@ msgstr "" "информация погледнете /usr/share/doc/openssh-server/README.compromised-keys." "gz." +#~ msgid "New host key mandatory" +#~ msgstr "Необходим е нов ключ за хоста" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "В момента ключа на хоста в /etc/ssh/ssh_host_key е шифриран с алгоритъма " +#~ "IDEA. OpenSSH не може да работи с този файл, а програмата ssh-keygen от " +#~ "старата инсталация не е налична." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Необходимо е да се генерира ръчно нов ключ за хоста." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Да се прекъснат ли текущите връзки по SSH?" diff --git a/debian/po/ca.po b/debian/po/ca.po index e5c6f26a5..0d64a597e 100644 --- a/debian/po/ca.po +++ b/debian/po/ca.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: 1:4.6p1-2\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2007-06-30 01:13+0200\n" "Last-Translator: Jordà Polo \n" "Language-Team: Català \n" @@ -19,40 +19,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Nova clau obligatòria" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"L'actual clau de la màquina, a /etc/ssh/ssh_host_key, està xifrada amb " -"l'algorisme IDEA. OpenSSH no pot gestionar aquest fitxer de clau, i no es " -"pot trobar l'eina ssh-keygen de la instal·lació d'SSH anterior (non-free)." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Haureu de generar manualment una nova clau per a la màquina." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Voleu desactivar l'autenticació «challenge-response»?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -71,7 +46,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -85,13 +60,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -101,7 +76,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -111,19 +86,35 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" "README.compromised-keys.gz for more details." msgstr "" +#~ msgid "New host key mandatory" +#~ msgstr "Nova clau obligatòria" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "L'actual clau de la màquina, a /etc/ssh/ssh_host_key, està xifrada amb " +#~ "l'algorisme IDEA. OpenSSH no pot gestionar aquest fitxer de clau, i no es " +#~ "pot trobar l'eina ssh-keygen de la instal·lació d'SSH anterior (non-free)." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Haureu de generar manualment una nova clau per a la màquina." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Voleu arriscar-vos a aturar les sessions SSH actives?" diff --git a/debian/po/cs.po b/debian/po/cs.po index 82c96793d..03263b985 100644 --- a/debian/po/cs.po +++ b/debian/po/cs.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-17 14:49+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" @@ -24,40 +24,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Nutný nový serverový klíč" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Aktuální serverový klíč v /etc/ssh/ssh_host_key je šifrovaný algoritmem " -"IDEA. OpenSSH neumí tento soubor zpracovat a zdá se, že utilita ssh-keygen " -"ze staré (nesvobodné) instalace SSH není k dispozici." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Musíte ručně vygenerovat nový serverový klíč" - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Zakázat autentizaci challenge-response?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -74,7 +49,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -88,13 +63,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Zranitelné serverové klíče budou přegenerovány" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -107,7 +82,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -121,13 +96,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Postižené serverové klíče:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -137,6 +112,22 @@ msgstr "" "kontrolu můžete použít příkaz „ssh-vulnkey“. Více informací naleznete v " "souboru /usr/share/doc/openssh-server/README.compromised-keys.gz." +#~ msgid "New host key mandatory" +#~ msgstr "Nutný nový serverový klíč" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Aktuální serverový klíč v /etc/ssh/ssh_host_key je šifrovaný algoritmem " +#~ "IDEA. OpenSSH neumí tento soubor zpracovat a zdá se, že utilita ssh-" +#~ "keygen ze staré (nesvobodné) instalace SSH není k dispozici." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Musíte ručně vygenerovat nový serverový klíč" + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Chcete riskovat ukončení aktivních SSH spojení?" diff --git a/debian/po/da.po b/debian/po/da.po index ead7a0feb..a9d4169a4 100644 --- a/debian/po/da.po +++ b/debian/po/da.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2010-08-12 17:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -17,41 +17,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Ny værtsnøgle er krævet" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Den aktuelle værtsnøgle, i /etc/ssh/ssh_host_key, er krypteret med en IDEA-" -"algoritme. OpenSSH kan ikke håndtere en sådan værtsnøglefil, og værktøjet " -"ssh-keygen fra den gamle (ikke-frie, 'non-free') SSH-installation lader ikke " -"til at være tilgængeligt." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Du skal manuelt oprette en ny værtsnøgle." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Slå udfordrings-svar godkendelse fra?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -68,7 +42,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -82,13 +56,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Sårbare værtsnøgler vil blive oprettet" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -102,7 +76,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -116,13 +90,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "De påvirkede værtsnøgler er:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -132,6 +106,23 @@ msgstr "" "vulnkey' kan bruges som en delvis test vedrørende dette. Se /usr/share/doc/" "openssh-server/README.compromised-keys.gz for yderligere detaljer." +#~ msgid "New host key mandatory" +#~ msgstr "Ny værtsnøgle er krævet" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Den aktuelle værtsnøgle, i /etc/ssh/ssh_host_key, er krypteret med en " +#~ "IDEA-algoritme. OpenSSH kan ikke håndtere en sådan værtsnøglefil, og " +#~ "værktøjet ssh-keygen fra den gamle (ikke-frie, 'non-free') SSH-" +#~ "installation lader ikke til at være tilgængeligt." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Du skal manuelt oprette en ny værtsnøgle." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Vil du risikere at afbryde aktive SSH-forbindelser?" diff --git a/debian/po/de.po b/debian/po/de.po index df2b6fbce..5decc23cb 100644 --- a/debian/po/de.po +++ b/debian/po/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh 1:4.7p1-9\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-17 23:09+0200\n" "Last-Translator: Helge Kreutzmann \n" "Language-Team: de \n" @@ -15,41 +15,15 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Neuer Host-Schlssel verpflichtend" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Der aktuelle Host-Schlssel in /etc/ssh/ssh_host_key ist mit dem IDEA-" -"Algorithmus verschlsselt. OpenSSH kann diese Host-Schlssel-Datei nicht " -"verarbeiten und das ssh-keygen-Hilfswerkzeug von der alten (nicht-freien) " -"SSH-Installation scheint nicht verfgbar zu sein." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Sie mssen manuell einen neuen Host-Schlssel erzeugen." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Challenge-response-Authentifizierung deaktivieren?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -68,7 +42,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -83,13 +57,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Verwundbare Host-Schlssel werden neu erzeugt" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -104,7 +78,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -119,13 +93,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Die betroffenen Host-Schlssel sind:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -136,6 +110,23 @@ msgstr "" "zu ermitteln. Lesen Sie /usr/share/doc/openssh-server/README.compromised-" "keys.gz fr weitere Details." +#~ msgid "New host key mandatory" +#~ msgstr "Neuer Host-Schlssel verpflichtend" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Der aktuelle Host-Schlssel in /etc/ssh/ssh_host_key ist mit dem IDEA-" +#~ "Algorithmus verschlsselt. OpenSSH kann diese Host-Schlssel-Datei nicht " +#~ "verarbeiten und das ssh-keygen-Hilfswerkzeug von der alten (nicht-freien) " +#~ "SSH-Installation scheint nicht verfgbar zu sein." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Sie mssen manuell einen neuen Host-Schlssel erzeugen." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Wollen Sie das Beenden aktiver SSH-Sitzungen riskieren?" diff --git a/debian/po/el.po b/debian/po/el.po index 9c2b77837..f168567e7 100644 --- a/debian/po/el.po +++ b/debian/po/el.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2004-10-14 21:34+0300\n" "Last-Translator: Konstantinos Margaritis \n" "Language-Team: Greek \n" @@ -26,44 +26,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.0.2\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -#, fuzzy -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Υπάρχει ένα παλαιότερο κλειδί /etc/ssh/ssh_host_key, που είναι " -"κρυπτογραφημένο με τον αλγόριθμο IDEA. Το OpenSSH δε μπορεί να χειριστεί " -"αυτό το κλειδί και δεν έχει βρεθεί το εργαλείο ssh-keygen από την παλιά (μη " -"ελεύθερη) εγκατάσταση του SSH." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -#, fuzzy -#| msgid "You will need to generate a new host key." -msgid "You need to manually generate a new host key." -msgstr "Πρέπει να δημιουργήσετε ένα νέο κλειδί για τον υπολογιστή (host key)." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Να απενεργοποιηθεί η πιστοποίηση challenge-response;" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 #, fuzzy #| msgid "" #| "Password authentication appears to be disabled in your current OpenSSH " @@ -89,7 +60,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -103,13 +74,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -119,7 +90,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -129,19 +100,37 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" "README.compromised-keys.gz for more details." msgstr "" +#, fuzzy +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Υπάρχει ένα παλαιότερο κλειδί /etc/ssh/ssh_host_key, που είναι " +#~ "κρυπτογραφημένο με τον αλγόριθμο IDEA. Το OpenSSH δε μπορεί να χειριστεί " +#~ "αυτό το κλειδί και δεν έχει βρεθεί το εργαλείο ssh-keygen από την παλιά " +#~ "(μη ελεύθερη) εγκατάσταση του SSH." + +#, fuzzy +#~| msgid "You will need to generate a new host key." +#~ msgid "You need to manually generate a new host key." +#~ msgstr "" +#~ "Πρέπει να δημιουργήσετε ένα νέο κλειδί για τον υπολογιστή (host key)." + #, fuzzy #~| msgid "Do you want to continue (and risk killing active ssh sessions)?" #~ msgid "Do you want to risk killing active SSH sessions?" diff --git a/debian/po/es.po b/debian/po/es.po index 2169876eb..4b0680528 100644 --- a/debian/po/es.po +++ b/debian/po/es.po @@ -33,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh 3.6.1p2-11\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-22 00:56+0200\n" "Last-Translator: Javier Fernandez-Sanguino Pea \n" "Language-Team: Debian L10n Spanish \n" @@ -47,41 +47,15 @@ msgstr "" "X-POFile-SpellExtra: gz README ssh sshd doc keygen ARCHIVOCLAVESISTEMA SSH\n" "X-POFile-SpellExtra: openssh root compromised\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Nueva clave de sistema obligatoria" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"La clave actual de su sistema, en /etc/ssh/ssh_host_key, est cifrada con el " -"algoritmo IDEA. OpenSSH no puede manejar este fichero de clave y tampoco " -"parece estar disponible la utilidad ssh-keygen de la instalacin antigua " -"de SSH (no libre)." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Debe generar manualmente una nueva clave de sistema." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Desea deshabilitar la autenticacin basada en desafo-respuesta?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -100,7 +74,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -114,13 +88,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Se regenerarn las claves vulnerables del sistema" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -135,7 +109,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -149,13 +123,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Las claves del sistema afectadas son:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -166,6 +140,23 @@ msgstr "" "detectar el problema. Consulte la informacin en /usr/share/doc/openssh-" "server/README.compromised-keys.gz para conocer los detalles." +#~ msgid "New host key mandatory" +#~ msgstr "Nueva clave de sistema obligatoria" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "La clave actual de su sistema, en /etc/ssh/ssh_host_key, est cifrada con " +#~ "el algoritmo IDEA. OpenSSH no puede manejar este fichero de clave y " +#~ "tampoco parece estar disponible la utilidad ssh-keygen de la " +#~ "instalacin antigua de SSH (no libre)." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Debe generar manualmente una nueva clave de sistema." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Desea correr el riesgo de matar las sesiones SSH activas?" diff --git a/debian/po/eu.po b/debian/po/eu.po index 44217cc04..ad3fce253 100644 --- a/debian/po/eu.po +++ b/debian/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh-templates\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2007-04-27 12:10+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: librezale \n" @@ -18,41 +18,15 @@ msgstr "" "X-Generator: Pootle 0.11\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Ostalari gako berria beharrezkoa" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"/etc/ssh/ssh_host_key-ko ostalari gakoa IDEA algoritmoaren bidez " -"enkriptaturik dago. OpenSSH ez da ostalari gako mota hau kudeatzeko gai eta " -"SSH instalazio zaharreko (ez-librea) ssh-keygen lanabesa dirudienez ez dago " -"erabilgarri." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Ostalari gako berri bat eskuz sortu behar duzu." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "erronka-erantzun autentifikazioa desgaitu?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -70,7 +44,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -84,13 +58,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Ostalari gako ahulak birsortu egingo dira" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -104,7 +78,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -118,13 +92,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Ostalari gako hauei eragingo die:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -135,6 +109,23 @@ msgstr "" "usr/share/doc/openssh-server/README.compromised-keys.gz xehetasun " "gehiagorako." +#~ msgid "New host key mandatory" +#~ msgstr "Ostalari gako berria beharrezkoa" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "/etc/ssh/ssh_host_key-ko ostalari gakoa IDEA algoritmoaren bidez " +#~ "enkriptaturik dago. OpenSSH ez da ostalari gako mota hau kudeatzeko gai " +#~ "eta SSH instalazio zaharreko (ez-librea) ssh-keygen lanabesa dirudienez " +#~ "ez dago erabilgarri." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Ostalari gako berri bat eskuz sortu behar duzu." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Irekirik dauden SSH saioak ixteko arriskua hartu nahi duzu?" diff --git a/debian/po/fi.po b/debian/po/fi.po index 824fad88f..51ef18cbc 100644 --- a/debian/po/fi.po +++ b/debian/po/fi.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-17 16:38+0200\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" @@ -27,40 +27,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Uusi järjestelmäavain pakollinen" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Olemassa oleva järjestelmäavain /etc/ssh/ssh_host_key on salattu IDEA-" -"algoritmilla. OpenSSH ei voi käsitellä tätä järjestelmäavaintiedostoa, eikä " -"vanhan (ei-vapaan) SSH-asennuksen ssh-keygen-ohjelmaa löydy." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Uuden järjestelmäavaimen (host key) luominen on tarpeen." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Poistetaanko haaste-vaste-autentikointi käytöstä?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -78,7 +53,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -92,13 +67,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Haavoittuvaiset järjestelmäavaimet luodaan uudelleen" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -112,7 +87,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -126,13 +101,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Järjestelmäavaimet, joihin tämä vaikuttaa:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -142,6 +117,22 @@ msgstr "" "vulnkey” voidaan osittain testata tätä. Tiedostossa /usr/share/doc/openssh-" "server/README.compromised-keys.gz on lisätietoja." +#~ msgid "New host key mandatory" +#~ msgstr "Uusi järjestelmäavain pakollinen" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Olemassa oleva järjestelmäavain /etc/ssh/ssh_host_key on salattu IDEA-" +#~ "algoritmilla. OpenSSH ei voi käsitellä tätä järjestelmäavaintiedostoa, " +#~ "eikä vanhan (ei-vapaan) SSH-asennuksen ssh-keygen-ohjelmaa löydy." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Uuden järjestelmäavaimen (host key) luominen on tarpeen." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Haluatko ottaa riskin, että aktiiviset SSH-istunnot tapetaan?" diff --git a/debian/po/fr.po b/debian/po/fr.po index 59b83a2c5..ef7a8750a 100644 --- a/debian/po/fr.po +++ b/debian/po/fr.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-15 10:23+0200\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" @@ -27,40 +27,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Nouvelle clé d'hôte obligatoire" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"La clé d'hôte actuelle, /etc/ssh/ssh_host_key, est chiffrée avec IDEA. " -"OpenSSH ne peut utiliser ce fichier de clé, et l'utilitaire ssh-keygen de " -"l'installation précédente (non libre) de SSH n'a pas été trouvé." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Vous devez générer une nouvelle clé d'hôte vous-même." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Faut-il désactiver l'authentification par défi-réponse ?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -79,7 +54,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -94,13 +69,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Recréation des clés d'hôte vulnérables" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -114,7 +89,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -129,13 +104,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Les clés concernées sont les suivantes :" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -146,6 +121,22 @@ msgstr "" "vulnérabilité. Veuillez consulter le fichier /usr/share/doc/openssh-server/" "README.compromised-keys.gz pour plus d'informations." +#~ msgid "New host key mandatory" +#~ msgstr "Nouvelle clé d'hôte obligatoire" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "La clé d'hôte actuelle, /etc/ssh/ssh_host_key, est chiffrée avec IDEA. " +#~ "OpenSSH ne peut utiliser ce fichier de clé, et l'utilitaire ssh-keygen de " +#~ "l'installation précédente (non libre) de SSH n'a pas été trouvé." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Vous devez générer une nouvelle clé d'hôte vous-même." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Voulez-vous risquer de rompre les sessions SSH actives ?" diff --git a/debian/po/gl.po b/debian/po/gl.po index 708886aee..861062a66 100644 --- a/debian/po/gl.po +++ b/debian/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-17 10:29+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" @@ -16,41 +16,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "É obrigatorio ter unha nova clave de servidor" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"A clave de servidor actual, armacenada en /etc/ssh/ssh_host_key, está " -"cifrada mediante o algoritmo IDEA. OpenSSH non pode xestionar este ficheiro " -"de clave de servidor, e non semella que estea dispoñible a utilidade ssh-" -"keygen da anterior instalación de SSH (non libre)." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Ten que xerar unha nova clave de servidor." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "¿Desactivar a autenticación por desafío-resposta?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -69,7 +43,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -83,13 +57,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Hanse rexenerar as claves de servidor vulnerables" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -104,7 +78,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -118,13 +92,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "As claves de servidor afectadas son:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -135,6 +109,23 @@ msgstr "" "Consulte /usr/share/doc/openssh-server/README.compromised-keys.gz para máis " "detalles." +#~ msgid "New host key mandatory" +#~ msgstr "É obrigatorio ter unha nova clave de servidor" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "A clave de servidor actual, armacenada en /etc/ssh/ssh_host_key, está " +#~ "cifrada mediante o algoritmo IDEA. OpenSSH non pode xestionar este " +#~ "ficheiro de clave de servidor, e non semella que estea dispoñible a " +#~ "utilidade ssh-keygen da anterior instalación de SSH (non libre)." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Ten que xerar unha nova clave de servidor." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "¿Quere arriscarse a matar as sesións de SSH activas?" diff --git a/debian/po/id.po b/debian/po/id.po index a42afdbba..abf46b097 100644 --- a/debian/po/id.po +++ b/debian/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh debconf 1-6.0p1-2\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2012-07-15 18:29+0700\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian \n" @@ -18,41 +18,15 @@ msgstr "" "X-Poedit-Language: Indonesian\n" "X-Poedit-Country: INDONESIA\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Kunci host baru wajib" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Kunci host saat ini, dalam /etc/ssh/ssh_host_key, dienkripsi memakai " -"algoritma IDEA. OpenSSH tak bisa menangani berkas kunci host ini, dan " -"utilitas ssh-keygen dari instalasi SSH lama (non-free) sepertinya tak " -"tersedia." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Anda perlu membuat kunci host baru secara manual." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Nonaktifkan otentikasi challenge-response?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -70,7 +44,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -84,13 +58,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Kunci host yang vulnerable akan dibuat ulang" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -104,7 +78,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -118,13 +92,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Kunci host yang terpengaruh adalah:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -134,6 +108,23 @@ msgstr "" "vulnkey' dapat dipakai sebagai uji parsial untuk ini. Lihat /usr/share/doc/" "openssh-server/README.compromised-keys.gz untuk rincian lebih lanjut." +#~ msgid "New host key mandatory" +#~ msgstr "Kunci host baru wajib" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Kunci host saat ini, dalam /etc/ssh/ssh_host_key, dienkripsi memakai " +#~ "algoritma IDEA. OpenSSH tak bisa menangani berkas kunci host ini, dan " +#~ "utilitas ssh-keygen dari instalasi SSH lama (non-free) sepertinya tak " +#~ "tersedia." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Anda perlu membuat kunci host baru secara manual." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Apakah Anda mau menanggung resiko mematikan sesi SSH aktif?" diff --git a/debian/po/it.po b/debian/po/it.po index 491274159..33a0d5120 100644 --- a/debian/po/it.po +++ b/debian/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh 4.7p1 italian debconf templates\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-18 12:08+0200\n" "Last-Translator: Luca Monducci \n" "Language-Team: Italian \n" @@ -17,41 +17,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Necessaria una nuova chiave host" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"L'attuale chiave host, contenuta in /etc/ssh/ssh_host_key, è cifrata con " -"l'algoritmo IDEA. OpenSSH non è in grado di gestire questa chiave host e non " -"è disponibile il programma (non-free) ssh-keygen dalla precedente " -"installazione di SSH." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "È necessario generare manualmente una nuova chiave host." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Disabilitare l'autenticazione interattiva?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -70,7 +44,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -85,13 +59,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Le chiavi host vulnerabili devono essere rigenerate" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -106,7 +80,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -121,13 +95,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Le chiavi host vulnerabili sono:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -138,6 +112,23 @@ msgstr "" "loro vulnerabilità. Si veda /usr/share/doc/openssh-server/README.compromised-" "keys.gz per ulteriori informazioni." +#~ msgid "New host key mandatory" +#~ msgstr "Necessaria una nuova chiave host" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "L'attuale chiave host, contenuta in /etc/ssh/ssh_host_key, è cifrata con " +#~ "l'algoritmo IDEA. OpenSSH non è in grado di gestire questa chiave host e " +#~ "non è disponibile il programma (non-free) ssh-keygen dalla precedente " +#~ "installazione di SSH." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "È necessario generare manualmente una nuova chiave host." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Si vuole rischiare di terminare le sessioni SSH attive?" diff --git a/debian/po/ja.po b/debian/po/ja.po index fc7ea78c6..eb60f9b6a 100644 --- a/debian/po/ja.po +++ b/debian/po/ja.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-17 21:28+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Japanese \n" @@ -24,40 +24,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "新しいホストキーが必要です" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"/etc/ssh/ssh_host_key にある現在のホストキーは IDEA で暗号化されていあす。" -"OpenSSH はこのホストキーファイルを扱えず、古い (フリーではない) SSH の ssh-" -"keygen ユーティリティはもう利用できません。" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "新しいホストキーを手動で生成する必要があります。" - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "チャレンジ-レスポンス認証を無効にしますか?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -74,7 +49,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -88,13 +63,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "脆弱なホストキーは再生成されます" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -108,7 +83,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -121,13 +96,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "影響を受けるホストキーは次のとおりです:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -137,6 +112,22 @@ msgstr "" "て、'ssh-vulnkey' コマンドを利用できます。詳細については /usr/share/doc/" "openssh-server/README.compromised-keys.gz を参照してください。" +#~ msgid "New host key mandatory" +#~ msgstr "新しいホストキーが必要です" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "/etc/ssh/ssh_host_key にある現在のホストキーは IDEA で暗号化されていあす。" +#~ "OpenSSH はこのホストキーファイルを扱えず、古い (フリーではない) SSH の " +#~ "ssh-keygen ユーティリティはもう利用できません。" + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "新しいホストキーを手動で生成する必要があります。" + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "接続中の SSH セッションが切れるかもしれませんがよいですか?" diff --git a/debian/po/ko.po b/debian/po/ko.po index 8d0624ed7..5b48d40d1 100644 --- a/debian/po/ko.po +++ b/debian/po/ko.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-06-06 16:06-0400\n" "Last-Translator: Sunjae Park \n" "Language-Team: Korean \n" @@ -18,40 +18,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "호스트키 새로 만들어야 함" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"/etc/ssh/ssh_host_key에 있는 현재 호스트키늘 IDEA 알고리즘으로 암호화되어있습" -"니다. OpenSSH는 이 호스트키 파일을 다루지 못하며, 이전에 설치되었던 (비자유) " -"SSH 프로그램의 ssh-keygen 응용프로그램이 없는 것 같습니다." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "호스트키를 직접 새로 생성하셔야 합니다." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "제기-응답 인증방식을 해제하도록 할까요?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -67,7 +42,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -81,13 +56,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "취약한 호스트키를 다시 생성합니다" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -100,7 +75,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -114,13 +89,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "관련된 호스트키의 목록은:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -130,6 +105,22 @@ msgstr "" "여 부분적으로나마 그렇한지를 검사할 수 있습니다. 자세한 정보는 /usr/share/" "doc/openssh-server/README.compromised-keys.gz를 참조하십시오." +#~ msgid "New host key mandatory" +#~ msgstr "호스트키 새로 만들어야 함" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "/etc/ssh/ssh_host_key에 있는 현재 호스트키늘 IDEA 알고리즘으로 암호화되어" +#~ "있습니다. OpenSSH는 이 호스트키 파일을 다루지 못하며, 이전에 설치되었던 " +#~ "(비자유) SSH 프로그램의 ssh-keygen 응용프로그램이 없는 것 같습니다." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "호스트키를 직접 새로 생성하셔야 합니다." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "현재 사용중인 SSH 세션을 죽여도 괜찮습니까?" diff --git a/debian/po/nb.po b/debian/po/nb.po index af958815b..575b49f4f 100644 --- a/debian/po/nb.po +++ b/debian/po/nb.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-17 11:04+0200\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -18,41 +18,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Ny vertsnøkkel obligatorisk" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Den gjeldende vertsnøkkelen, i /etc/ssh/ssh_host_key, er kryptert med IDEA-" -"algoritmen. OpenSSH kan ikke håndtere denne vertsnøkkelfila, og det ser ikke " -"ut til at verktøyet ssh-keygen fra den gamle (ikke-frie) SSH-installasjonen " -"er tilgjengelig." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "En ny vertsnøkkel må lages manuelt." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Skal autentisering med utfordring/svar slås av?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -70,7 +44,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -84,13 +58,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Sårbare vertsnøkler vil bli laget på nytt" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -104,7 +78,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -118,13 +92,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "De vertsnøklene dette gjelder er:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -134,6 +108,23 @@ msgstr "" "dette kan gjøres med kommandoen «ssh-vulnkey». Mer detaljer finnes i /usr/" "share/doc/openssh-server/README.compromised-keys.gz." +#~ msgid "New host key mandatory" +#~ msgstr "Ny vertsnøkkel obligatorisk" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Den gjeldende vertsnøkkelen, i /etc/ssh/ssh_host_key, er kryptert med " +#~ "IDEA-algoritmen. OpenSSH kan ikke håndtere denne vertsnøkkelfila, og det " +#~ "ser ikke ut til at verktøyet ssh-keygen fra den gamle (ikke-frie) SSH-" +#~ "installasjonen er tilgjengelig." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "En ny vertsnøkkel må lages manuelt." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Vil du risikere å avbryte aktive SSH-økter?" diff --git a/debian/po/nl.po b/debian/po/nl.po index 250efe5fc..45109ce70 100644 --- a/debian/po/nl.po +++ b/debian/po/nl.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh 3.6.1p2-9\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-26 15:19+0200\n" "Last-Translator: Bart Cornelis \n" "Language-Team: debian-l10n-dutch \n" @@ -25,41 +25,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Dutch\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Een nieuwe computersleutel is verplicht" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"De huidige computersleutel in /etc/ssh/ssh_host_key is versleuteld met het " -"IDEA-algoritme. OpenSSH kan dit computer-sleutelbestand niet aan, en het ssh-" -"keygen programma van de oude (niet-vrije) SSH-installatie is niet " -"beschikbaar." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "U dient bijgevolg handmatig een nieuwe computersleutel te genereren." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Challenge-response-authenticatie deactiveren?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -77,7 +51,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -91,13 +65,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Kwetsbare computersleutels worden opnieuw aangemaakt" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -111,7 +85,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -126,13 +100,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "De getroffen computersleutels zijn:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -143,6 +117,24 @@ msgstr "" "details vindt u in /usr/share/doc/openssh-server/README.compromised-keys." "gz . " +#~ msgid "New host key mandatory" +#~ msgstr "Een nieuwe computersleutel is verplicht" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "De huidige computersleutel in /etc/ssh/ssh_host_key is versleuteld met " +#~ "het IDEA-algoritme. OpenSSH kan dit computer-sleutelbestand niet aan, en " +#~ "het ssh-keygen programma van de oude (niet-vrije) SSH-installatie is niet " +#~ "beschikbaar." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "" +#~ "U dient bijgevolg handmatig een nieuwe computersleutel te genereren." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Wilt u het afsluiten van actieve SSH-sessies riskeren?" diff --git a/debian/po/pl.po b/debian/po/pl.po index c22a5dd75..b02b7a743 100644 --- a/debian/po/pl.po +++ b/debian/po/pl.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2012-02-14 00:55+0100\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" @@ -29,40 +29,15 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Konieczny jest nowy klucz hosta" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Obecny klucz hosta, /etc/ssh/ssh_host_key, jest zaszyfrowany algorytmem " -"IDEA. OpenSSH nie umie obsłużyć takiego pliku hosta, a dodatkowo ssh-keygen " -"ze starej (niewolnej) instalacji SSH wygląda na niedostępny." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Należy ręcznie wygenerować nowy klucz hosta." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Wyłączyć uwierzytelnianie typu pytanie-odpowiedź?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -80,7 +55,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -96,13 +71,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Narażone klucze zostaną wygenerowane ponownie" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -116,7 +91,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -130,13 +105,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Klucze hosta dotknięte problemem:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -147,6 +122,22 @@ msgstr "" "usr/share/doc/openssh-server/README.compromised-keys.gz, aby uzyskać więcej " "szczegółów." +#~ msgid "New host key mandatory" +#~ msgstr "Konieczny jest nowy klucz hosta" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Obecny klucz hosta, /etc/ssh/ssh_host_key, jest zaszyfrowany algorytmem " +#~ "IDEA. OpenSSH nie umie obsłużyć takiego pliku hosta, a dodatkowo ssh-" +#~ "keygen ze starej (niewolnej) instalacji SSH wygląda na niedostępny." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Należy ręcznie wygenerować nowy klucz hosta." + #~| msgid "Do you want to continue (and risk killing active ssh sessions)?" #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Czy ryzykować przerwaniem aktywnych sesji SSH?" diff --git a/debian/po/pt.po b/debian/po/pt.po index 3f408feb2..a37f447ec 100644 --- a/debian/po/pt.po +++ b/debian/po/pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh 4.7p1-9\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-18 14:48+0100\n" "Last-Translator: Ricardo Silva \n" "Language-Team: Native Portuguese \n" @@ -15,40 +15,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Uma nova chave de anfitrião é obrigatória" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"A chave actual, em /etc/ssh/ssh_host_key, está cifrada com o algoritmo IDEA. " -"O OpenSSH não consegue usar este ficheiro, e o utilitário ssh-keygen da " -"antiga (e não livre) instalação do SSH não parece estar disponível." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Terá de gerar manualmente uma nova chave para o host." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Desactivar autenticação por desafio-resposta?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -66,7 +41,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -80,13 +55,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Chaves do anfitrião vulneráveis serão regeneradas" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -100,7 +75,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -114,13 +89,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "As chaves afectadas são:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -131,6 +106,23 @@ msgstr "" "Veja o ficheiro /usr/share/doc/openssh-server/README.compromised-keys.gz " "para mais detalhes." +#~ msgid "New host key mandatory" +#~ msgstr "Uma nova chave de anfitrião é obrigatória" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "A chave actual, em /etc/ssh/ssh_host_key, está cifrada com o algoritmo " +#~ "IDEA. O OpenSSH não consegue usar este ficheiro, e o utilitário ssh-" +#~ "keygen da antiga (e não livre) instalação do SSH não parece estar " +#~ "disponível." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Terá de gerar manualmente uma nova chave para o host." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Quer arriscar matar sessões activas de SSH?" diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po index e528bdcfc..6870871a2 100644 --- a/debian/po/pt_BR.po +++ b/debian/po/pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh 1:4.7p1-9\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-27 10:10-0300\n" "Last-Translator: Eder L. Marques (frolic) \n" "Language-Team: Brazilian Portuguese \n" "Language-Team: Romanian \n" @@ -21,40 +21,15 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "O cheie nouă este obligatorie" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Cheia curentă în /etc/ssh/ssh_host_key este criptată cu algoritmul IDEA. " -"OpenSSH nu suportă acest tip de cheie, iar utilitarul ssh-keygen din " -"versiunea SSH (non-liberă) anterior instalată nu pare să fie disponibil." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Va trebui să generați manual o nouă cheie pentru sistem." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Dezactivează modul de autentificare provocare-răspuns?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -72,7 +47,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -86,13 +61,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Cheile vulnerabile vor fi regenerate" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -106,7 +81,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -120,13 +95,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Cheile gazdă afectate sunt:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -137,6 +112,22 @@ msgstr "" "se vedea /usr/share/doc/openssh-server/README.compromised-keys.gz pentru mai " "multe detalii." +#~ msgid "New host key mandatory" +#~ msgstr "O cheie nouă este obligatorie" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Cheia curentă în /etc/ssh/ssh_host_key este criptată cu algoritmul IDEA. " +#~ "OpenSSH nu suportă acest tip de cheie, iar utilitarul ssh-keygen din " +#~ "versiunea SSH (non-liberă) anterior instalată nu pare să fie disponibil." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Va trebui să generați manual o nouă cheie pentru sistem." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Doriți să riscați întreruperea sesiunilor ssh active?" diff --git a/debian/po/ru.po b/debian/po/ru.po index ff8c44ccd..190583842 100644 --- a/debian/po/ru.po +++ b/debian/po/ru.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh 1:4.7p1-9\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-18 08:55+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -29,41 +29,15 @@ msgstr "" "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: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Необходим новый ключ хоста" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Текущий ключ хоста, /etc/ssh/ssh_host_key, зашифрован алгоритмом IDEA. " -"OpenSSH не может работать с таким файлом ключа хоста, а утилита создания ssh-" -"ключа (ssh-keygen) из прежней (не свободной) установки SSH, кажется, " -"недоступна." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Вам нужно вручную создать новый ключ хоста." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Отключить аутентификацию запрос-ответ?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -81,7 +55,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -95,13 +69,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Уязвимые ключи хоста будут созданы заново" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -116,7 +90,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -130,13 +104,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Ключи хоста, которые будут заменены:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -146,6 +120,23 @@ msgstr "" "можно воспользоваться командой 'ssh-vulnkey'. В файле /usr/share/doc/openssh-" "server/README.compromised-keys.gz дано более подробное описание." +#~ msgid "New host key mandatory" +#~ msgstr "Необходим новый ключ хоста" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Текущий ключ хоста, /etc/ssh/ssh_host_key, зашифрован алгоритмом IDEA. " +#~ "OpenSSH не может работать с таким файлом ключа хоста, а утилита создания " +#~ "ssh-ключа (ssh-keygen) из прежней (не свободной) установки SSH, кажется, " +#~ "недоступна." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Вам нужно вручную создать новый ключ хоста." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Вы хотите пойти на риск потерять активные SSH соединения?" diff --git a/debian/po/sk.po b/debian/po/sk.po index 58b68c12e..eb4a81b44 100644 --- a/debian/po/sk.po +++ b/debian/po/sk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh 1_4.6p1-5\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-29 08:51+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -11,40 +11,15 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Nový kľúč hostiteľa je povinný" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Aktuálny kľúč hostiteľa v /etc/ssh/ssh_host_key je kryptovaný algoritmom " -"IDEA. OpenSSH nemôže pracovať s týmto súborom s kľúčom hostiteľa a nástroj " -"ssh-keygen zo starej (neslobodnej) inštalácie SSH nie je dostupný." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Musíte ručne vygenerovať nový kľúč hostiteľa." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Vypnúť autentifikáciu výzva-odpoveď?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -62,7 +37,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -76,13 +51,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Namiesto zneužiteľných kľúčov hostiteľa sa vytvoria nové" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -96,7 +71,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -110,13 +85,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Postihnuté kľúče sú:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -126,6 +101,22 @@ msgstr "" "zraniteľnosti je možné použiť príkaz „ssh-vulnkey“. Podrobnosti nájdete v /" "usr/share/doc/openssh-server/README.compromised-keys.gz" +#~ msgid "New host key mandatory" +#~ msgstr "Nový kľúč hostiteľa je povinný" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Aktuálny kľúč hostiteľa v /etc/ssh/ssh_host_key je kryptovaný algoritmom " +#~ "IDEA. OpenSSH nemôže pracovať s týmto súborom s kľúčom hostiteľa a " +#~ "nástroj ssh-keygen zo starej (neslobodnej) inštalácie SSH nie je dostupný." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Musíte ručne vygenerovať nový kľúč hostiteľa." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Chcete riskovať zrušenie aktívnych SSH relácií?" diff --git a/debian/po/sv.po b/debian/po/sv.po index f05d85240..4df5b91d3 100644 --- a/debian/po/sv.po +++ b/debian/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-25 23:32+0200\n" "Last-Translator: Martin Bagge \n" "Language-Team: swedish \n" @@ -17,41 +17,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Ny värdnyckel är obligatorisk" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Den aktuella värdnyckeln i /etc/ssh/ssh_host_key är krypterad med IDEA-" -"algoritmen. OpenSSH kan inte hantera den här värdnyckelfilen och verktyget " -"ssh-keygen från den gamla (ickefria) SSH-installationen verkar inte finnas " -"tillgänglig." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Du behöver manuellt generera en ny värdnyckel." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Inaktivera challenge-response-autentisering?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -69,7 +43,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -83,13 +57,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Sårbara värdnycklar kommer att omskapas" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -103,7 +77,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -117,13 +91,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "De drabbade värdnycklarna är:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -133,6 +107,23 @@ msgstr "" "vulnkey' kan användas som ett deltest. Läs /usr/share/doc/openssh-server/" "README.compromised-keys.gz för mer ingående detaljer." +#~ msgid "New host key mandatory" +#~ msgstr "Ny värdnyckel är obligatorisk" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Den aktuella värdnyckeln i /etc/ssh/ssh_host_key är krypterad med IDEA-" +#~ "algoritmen. OpenSSH kan inte hantera den här värdnyckelfilen och " +#~ "verktyget ssh-keygen från den gamla (ickefria) SSH-installationen verkar " +#~ "inte finnas tillgänglig." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Du behöver manuellt generera en ny värdnyckel." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Vill du riskera att döda aktiva SSH-sessioner?" diff --git a/debian/po/ta.po b/debian/po/ta.po index b24d93d93..826799d78 100644 --- a/debian/po/ta.po +++ b/debian/po/ta.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2007-04-24 20:52+0530\n" "Last-Translator: Dr.T.Vasudevan \n" "Language-Team: TAMIL \n" @@ -17,40 +17,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "புதிய புரவலன் விசை கட்டாயமாகும்" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"இப்போதைய /etc/ssh/ssh_host_key இல் உள்ள புரவலன் விசை IDEA அல்காரிதத்தில் குறியீடு " -"செய்யப்பட்டது. இந்த புரவலன் விசையை ஓபன் எஸ்எஸ்ஹெச் கையாள இயலாது. பழைய பதிப்பிலிருந்து " -"ssh-keygen பயன்பாடு இருப்பில் இல்லை." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "நீங்கள் கைமுறையாக புதிய புரவலன் விசையை உருவாக்க வேண்டும்." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "கேள்வி பதில் உறுதிப்படுத்தலை செயலிழக்க செய்யவா?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -67,7 +42,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -81,13 +56,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -97,7 +72,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -107,19 +82,35 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" "README.compromised-keys.gz for more details." msgstr "" +#~ msgid "New host key mandatory" +#~ msgstr "புதிய புரவலன் விசை கட்டாயமாகும்" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "இப்போதைய /etc/ssh/ssh_host_key இல் உள்ள புரவலன் விசை IDEA அல்காரிதத்தில் குறியீடு " +#~ "செய்யப்பட்டது. இந்த புரவலன் விசையை ஓபன் எஸ்எஸ்ஹெச் கையாள இயலாது. பழைய " +#~ "பதிப்பிலிருந்து ssh-keygen பயன்பாடு இருப்பில் இல்லை." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "நீங்கள் கைமுறையாக புதிய புரவலன் விசையை உருவாக்க வேண்டும்." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "" #~ "செயலில் இருக்கும் எஸ்எஸ்ஹெச் அமர்வுகளை செயல் நீக்கம் செய்வதை அனுமதிக்க விரும்புகிறீகளா?" diff --git a/debian/po/templates.pot b/debian/po/templates.pot index c8cd8b7b5..702148928 100644 --- a/debian/po/templates.pot +++ b/debian/po/templates.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,37 +17,15 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "" - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -59,7 +37,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -69,13 +47,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -85,7 +63,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -95,13 +73,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" diff --git a/debian/po/tr.po b/debian/po/tr.po index 58cd8d0b9..9f98d6d3b 100644 --- a/debian/po/tr.po +++ b/debian/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ssh\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-23 16:24+0200\n" "Last-Translator: Mert Dirik \n" "Language-Team: Turkish \n" @@ -17,41 +17,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Yeni makine anahtarı zorunlu" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Şu anda kullandığınız makine anahtarı, /etc/ssh/ssh_host_key, IDEA " -"algoritmasıyla şifrelenmiş. OpenSSH bu anahtar dosyasını yönetemez; ayrıca " -"eski (özgür olmayan) SSH kurulumuna ait ssh-keygen aracı da ulaşılabilir " -"değil." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Yeni bir makine anahtarı oluşturmanız gerekiyor." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Sorgula-yanıtla yöntemiyle kimlik doğrulama devre dışı bırakılsın mı?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -70,7 +44,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -85,13 +59,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Saldırıya açık makine anahtarları yeniden yaratılacak" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -105,7 +79,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -120,13 +94,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Etkilenmiş makine anahtarları:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -136,6 +110,23 @@ msgstr "" "sorun için kısmi bir test olarak kullanılabilir. Ayrıntılar için /usr/share/" "doc/openssh-server/README.compromised-keys.gz belgesine bakın." +#~ msgid "New host key mandatory" +#~ msgstr "Yeni makine anahtarı zorunlu" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Şu anda kullandığınız makine anahtarı, /etc/ssh/ssh_host_key, IDEA " +#~ "algoritmasıyla şifrelenmiş. OpenSSH bu anahtar dosyasını yönetemez; " +#~ "ayrıca eski (özgür olmayan) SSH kurulumuna ait ssh-keygen aracı da " +#~ "ulaşılabilir değil." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Yeni bir makine anahtarı oluşturmanız gerekiyor." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Etkin SSH oturumlarının öldürülmesi riskini göze alıyor musunuz?" diff --git a/debian/po/uk.po b/debian/po/uk.po index 350515eb1..68e94f7a2 100644 --- a/debian/po/uk.po +++ b/debian/po/uk.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh-uk\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2005-03-28 22:28+0300\n" "Last-Translator: Eugeniy Meshcheryakov \n" "Language-Team: Ukrainian\n" @@ -27,43 +27,15 @@ msgstr "" "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: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -#, fuzzy -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Старий ключ в /etc/ssh/ssh_host_key зашифрований за допомогою IDEA. OpenSSH " -"не може обробляти такий файл ключа вузла, також неможливо знайти програму " -"ssh-keygen зі старої (невільної) версії SSH." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -#, fuzzy -#| msgid "You will need to generate a new host key." -msgid "You need to manually generate a new host key." -msgstr "Вам потрібно створити новий ключ вузла." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Заборонити автентифікацію запит-відповідь?" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 #, fuzzy #| msgid "" #| "Password authentication appears to be disabled in your current OpenSSH " @@ -89,7 +61,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -104,13 +76,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -120,7 +92,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -130,19 +102,35 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" "README.compromised-keys.gz for more details." msgstr "" +#, fuzzy +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Старий ключ в /etc/ssh/ssh_host_key зашифрований за допомогою IDEA. " +#~ "OpenSSH не може обробляти такий файл ключа вузла, також неможливо знайти " +#~ "програму ssh-keygen зі старої (невільної) версії SSH." + +#, fuzzy +#~| msgid "You will need to generate a new host key." +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Вам потрібно створити новий ключ вузла." + #, fuzzy #~| msgid "Do you want to continue (and risk killing active ssh sessions)?" #~ msgid "Do you want to risk killing active SSH sessions?" diff --git a/debian/po/vi.po b/debian/po/vi.po index 0541b4131..cb8deb95d 100644 --- a/debian/po/vi.po +++ b/debian/po/vi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh 1:4.7p1-9\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2008-05-19 16:49+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -17,35 +17,9 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: LocFactoryEditor 1.7b3\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "Bắt buộc phải có khoá máy mới" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"Khoá máy hiện thời, trong « /etc/ssh/ssh_host_key », được mặt mã bằng thuật " -"toán IDEA. Phần mềm OpenSSH không thể xử lý tập tin khoá máy kiểu này; cũng " -"có vẻ là tiện ích « ssh-keygen » (tạo khoá SSH) thuộc về bản cài đặt SSH cũ " -"(khác tự do) không sẵn sàng." - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "You need to manually generate a new host key." -msgstr "Vậy bạn cần phải tự tạo một khoá máy mới." - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "Tắt chức năng xác thực kiểu yêu cầu/đáp ứng không?" @@ -57,7 +31,7 @@ msgstr "Tắt chức năng xác thực kiểu yêu cầu/đáp ứng không?" # Unix password file authentication. #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -75,7 +49,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -89,13 +63,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "Mọi khoá máy dễ bị tấn công đều sẽ được tạo lại" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -109,7 +83,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -123,13 +97,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "Những máy khoá bị ảnh hưởng:" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" @@ -140,6 +114,23 @@ msgstr "" "dễ tấn công. Xem tài liệu Đọc Đi « /usr/share/doc/openssh-server/README." "compromised-keys.gz » để tìm thêm chi tiết." +#~ msgid "New host key mandatory" +#~ msgstr "Bắt buộc phải có khoá máy mới" + +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "Khoá máy hiện thời, trong « /etc/ssh/ssh_host_key », được mặt mã bằng " +#~ "thuật toán IDEA. Phần mềm OpenSSH không thể xử lý tập tin khoá máy kiểu " +#~ "này; cũng có vẻ là tiện ích « ssh-keygen » (tạo khoá SSH) thuộc về bản " +#~ "cài đặt SSH cũ (khác tự do) không sẵn sàng." + +#~ msgid "You need to manually generate a new host key." +#~ msgstr "Vậy bạn cần phải tự tạo một khoá máy mới." + #~ msgid "Do you want to risk killing active SSH sessions?" #~ msgstr "Bạn có muốn rủi ro giết phiên bản SSH đang chạy không?" diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po index cc1b14721..7233d4db0 100644 --- a/debian/po/zh_CN.po +++ b/debian/po/zh_CN.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: openssh 3.6.1p2-11\n" "Report-Msgid-Bugs-To: openssh@packages.debian.org\n" -"POT-Creation-Date: 2013-05-21 23:52+0100\n" +"POT-Creation-Date: 2013-05-21 23:58+0100\n" "PO-Revision-Date: 2004-02-02 18:48+1300\n" "Last-Translator: Hiei Xu \n" "Language-Team: Chinese/Simplified \n" @@ -24,42 +24,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -msgid "New host key mandatory" -msgstr "" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -#, fuzzy -msgid "" -"The current host key, in /etc/ssh/ssh_host_key, is encrypted with the IDEA " -"algorithm. OpenSSH can not handle this host key file, and the ssh-keygen " -"utility from the old (non-free) SSH installation does not appear to be " -"available." -msgstr "" -"/etc/ssh/ssh_host_key 是由 IDEA 加密的旧密钥文件。OpenSSH 不能处理这种密钥文" -"件,我也无法找到旧的(非自由的) SSH 安装所带的 ssh-keygen 密钥生成工具。" - -#. Type: note -#. Description -#: ../openssh-server.templates:1001 -#, fuzzy -#| msgid "You will need to generate a new host key." -msgid "You need to manually generate a new host key." -msgstr "您需要创建一个新的主机密钥。" - #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "Disable challenge-response authentication?" msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "Password authentication appears to be disabled in the current OpenSSH server " "configuration. In order to prevent users from logging in using passwords " @@ -71,7 +44,7 @@ msgstr "" #. Type: boolean #. Description -#: ../openssh-server.templates:2001 +#: ../openssh-server.templates:1001 msgid "" "If you disable challenge-response authentication, then users will not be " "able to log in using passwords. If you leave it enabled (the default " @@ -81,13 +54,13 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "Vulnerable host keys will be regenerated" msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Some of the OpenSSH server host keys on this system were generated with a " "version of OpenSSL that had a broken random number generator. As a result, " @@ -97,7 +70,7 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "Users of this system should be informed of this change, as they will be " "prompted about the host key change the next time they log in. Use 'ssh-" @@ -107,19 +80,34 @@ msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "The affected host keys are:" msgstr "" #. Type: note #. Description -#: ../openssh-server.templates:3001 +#: ../openssh-server.templates:2001 msgid "" "User keys may also be affected by this problem. The 'ssh-vulnkey' command " "may be used as a partial test for this. See /usr/share/doc/openssh-server/" "README.compromised-keys.gz for more details." msgstr "" +#, fuzzy +#~ msgid "" +#~ "The current host key, in /etc/ssh/ssh_host_key, is encrypted with the " +#~ "IDEA algorithm. OpenSSH can not handle this host key file, and the ssh-" +#~ "keygen utility from the old (non-free) SSH installation does not appear " +#~ "to be available." +#~ msgstr "" +#~ "/etc/ssh/ssh_host_key 是由 IDEA 加密的旧密钥文件。OpenSSH 不能处理这种密钥" +#~ "文件,我也无法找到旧的(非自由的) SSH 安装所带的 ssh-keygen 密钥生成工具。" + +#, fuzzy +#~| msgid "You will need to generate a new host key." +#~ msgid "You need to manually generate a new host key." +#~ msgstr "您需要创建一个新的主机密钥。" + #, fuzzy #~| msgid "Do you want to continue (and risk killing active ssh sessions)?" #~ msgid "Do you want to risk killing active SSH sessions?" -- cgit v1.2.3