diff options
-rw-r--r-- | buffer.c | 15 | ||||
-rw-r--r-- | channels.c | 5 | ||||
-rw-r--r-- | debian/README.Debian | 5 | ||||
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/po/da.po | 10 | ||||
-rw-r--r-- | debian/po/de.po | 10 | ||||
-rw-r--r-- | debian/po/es.po | 10 | ||||
-rw-r--r-- | debian/po/fr.po | 24 | ||||
-rw-r--r-- | debian/po/ja.po | 135 | ||||
-rw-r--r-- | debian/po/pl.po | 12 | ||||
-rw-r--r-- | debian/po/pt_BR.po | 13 | ||||
-rw-r--r-- | debian/po/ru.po | 10 | ||||
-rw-r--r-- | debian/po/templates.pot | 10 | ||||
-rw-r--r-- | debian/templates.master | 8 |
14 files changed, 146 insertions, 128 deletions
@@ -12,7 +12,7 @@ | |||
12 | */ | 12 | */ |
13 | 13 | ||
14 | #include "includes.h" | 14 | #include "includes.h" |
15 | RCSID("$OpenBSD: buffer.c,v 1.16 2002/06/26 08:54:18 markus Exp $"); | 15 | RCSID("$OpenBSD: buffer.c,v 1.18 2003/09/16 21:02:39 markus Exp $"); |
16 | 16 | ||
17 | #include "xmalloc.h" | 17 | #include "xmalloc.h" |
18 | #include "buffer.h" | 18 | #include "buffer.h" |
@@ -23,8 +23,11 @@ RCSID("$OpenBSD: buffer.c,v 1.16 2002/06/26 08:54:18 markus Exp $"); | |||
23 | void | 23 | void |
24 | buffer_init(Buffer *buffer) | 24 | buffer_init(Buffer *buffer) |
25 | { | 25 | { |
26 | buffer->alloc = 4096; | 26 | const u_int len = 4096; |
27 | buffer->buf = xmalloc(buffer->alloc); | 27 | |
28 | buffer->alloc = 0; | ||
29 | buffer->buf = xmalloc(len); | ||
30 | buffer->alloc = len; | ||
28 | buffer->offset = 0; | 31 | buffer->offset = 0; |
29 | buffer->end = 0; | 32 | buffer->end = 0; |
30 | } | 33 | } |
@@ -34,8 +37,10 @@ buffer_init(Buffer *buffer) | |||
34 | void | 37 | void |
35 | buffer_free(Buffer *buffer) | 38 | buffer_free(Buffer *buffer) |
36 | { | 39 | { |
37 | memset(buffer->buf, 0, buffer->alloc); | 40 | if (buffer->alloc > 0) { |
38 | xfree(buffer->buf); | 41 | memset(buffer->buf, 0, buffer->alloc); |
42 | xfree(buffer->buf); | ||
43 | } | ||
39 | } | 44 | } |
40 | 45 | ||
41 | /* | 46 | /* |
diff --git a/channels.c b/channels.c index 1937b0244..218744d1a 100644 --- a/channels.c +++ b/channels.c | |||
@@ -229,12 +229,13 @@ channel_new(char *ctype, int type, int rfd, int wfd, int efd, | |||
229 | if (found == -1) { | 229 | if (found == -1) { |
230 | /* There are no free slots. Take last+1 slot and expand the array. */ | 230 | /* There are no free slots. Take last+1 slot and expand the array. */ |
231 | found = channels_alloc; | 231 | found = channels_alloc; |
232 | channels_alloc += 10; | ||
233 | if (channels_alloc > 10000) | 232 | if (channels_alloc > 10000) |
234 | fatal("channel_new: internal error: channels_alloc %d " | 233 | fatal("channel_new: internal error: channels_alloc %d " |
235 | "too big.", channels_alloc); | 234 | "too big.", channels_alloc); |
235 | channels = xrealloc(channels, | ||
236 | (channels_alloc + 10) * sizeof(Channel *)); | ||
237 | channels_alloc += 10; | ||
236 | debug2("channel: expanding %d", channels_alloc); | 238 | debug2("channel: expanding %d", channels_alloc); |
237 | channels = xrealloc(channels, channels_alloc * sizeof(Channel *)); | ||
238 | for (i = found; i < channels_alloc; i++) | 239 | for (i = found; i < channels_alloc; i++) |
239 | channels[i] = NULL; | 240 | channels[i] = NULL; |
240 | } | 241 | } |
diff --git a/debian/README.Debian b/debian/README.Debian index 4b6875d2c..ca928f9f0 100644 --- a/debian/README.Debian +++ b/debian/README.Debian | |||
@@ -87,10 +87,7 @@ Protocol 2,1 | |||
87 | Also add the line: | 87 | Also add the line: |
88 | HostKey /etc/ssh/ssh_host_key | 88 | HostKey /etc/ssh/ssh_host_key |
89 | 89 | ||
90 | If you do not already have an RSA1 host key in /etc/ssh/ssh_host_key, | 90 | (you may need to generate a host key if you do not already have one) |
91 | you will need to generate one. To do so, run this command as root: | ||
92 | |||
93 | ssh-keygen -f /etc/ssh/ssh_host_key -N '' -t rsa1 | ||
94 | 91 | ||
95 | X11 Forwarding | 92 | X11 Forwarding |
96 | -------------- | 93 | -------------- |
diff --git a/debian/changelog b/debian/changelog index 12d42598a..9a61869a6 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -1,3 +1,10 @@ | |||
1 | openssh (1:3.6.1p2-8) unstable; urgency=high | ||
2 | |||
3 | * Merge more buffer allocation fixes from new upstream version 3.7.1p1 | ||
4 | (closes: #211324). | ||
5 | |||
6 | -- Colin Watson <cjwatson@debian.org> Wed, 17 Sep 2003 03:07:19 +0100 | ||
7 | |||
1 | openssh (1:3.6.1p2-7) unstable; urgency=high | 8 | openssh (1:3.6.1p2-7) unstable; urgency=high |
2 | 9 | ||
3 | * Update debconf template translations: | 10 | * Update debconf template translations: |
diff --git a/debian/po/da.po b/debian/po/da.po index 56b157d18..56a83f826 100644 --- a/debian/po/da.po +++ b/debian/po/da.po | |||
@@ -16,7 +16,7 @@ msgid "" | |||
16 | msgstr "" | 16 | msgstr "" |
17 | "Project-Id-Version: PACKAGE VERSION\n" | 17 | "Project-Id-Version: PACKAGE VERSION\n" |
18 | "Report-Msgid-Bugs-To: \n" | 18 | "Report-Msgid-Bugs-To: \n" |
19 | "POT-Creation-Date: 2003-09-12 21:03+0100\n" | 19 | "POT-Creation-Date: 2003-08-27 02:20+0100\n" |
20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | 20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
22 | "Language-Team: LANGUAGE <LL@li.org>\n" | 22 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -73,9 +73,9 @@ msgstr "" | |||
73 | #, fuzzy | 73 | #, fuzzy |
74 | msgid "" | 74 | msgid "" |
75 | "Since you've opted to have me generate an sshd_config file for you, you can " | 75 | "Since you've opted to have me generate an sshd_config file for you, you can " |
76 | "choose whether or not to have privilege separation turned on or not. Unless " | 76 | "choose whether or not to have Privilege Separation turned on or not. Unless " |
77 | "you know you need to use PAM features that won't work with this option, you " | 77 | "you know you need to use PAM features that won't work with this option, you " |
78 | "should enable it." | 78 | "should say yes here." |
79 | msgstr "" | 79 | msgstr "" |
80 | "Siden du har bedt mig om at lave en sshd_config fil til dig, kan du vælge om " | 80 | "Siden du har bedt mig om at lave en sshd_config fil til dig, kan du vælge om " |
81 | "du vil have privilegie adskillelse slået til eller ej. Medmindre du kører " | 81 | "du vil have privilegie adskillelse slået til eller ej. Medmindre du kører " |
@@ -182,7 +182,7 @@ msgstr "" | |||
182 | 182 | ||
183 | #. Description | 183 | #. Description |
184 | #: ../templates.master:78 | 184 | #: ../templates.master:78 |
185 | msgid "Do you want to continue (and risk killing active ssh sessions)?" | 185 | msgid "Do you want to continue (and risk killing active ssh sessions) ?" |
186 | msgstr "Vil du fortsætte (og risikere at afbryde aktive ssh-forbindelser)?" | 186 | msgstr "Vil du fortsætte (og risikere at afbryde aktive ssh-forbindelser)?" |
187 | 187 | ||
188 | #. Description | 188 | #. Description |
@@ -325,7 +325,7 @@ msgstr "" | |||
325 | 325 | ||
326 | #. Description | 326 | #. Description |
327 | #: ../templates.master:137 | 327 | #: ../templates.master:137 |
328 | msgid "Do you want to run the sshd server?" | 328 | msgid "Do you want to run the sshd server ?" |
329 | msgstr "Vil du køre sshd-serveren?" | 329 | msgstr "Vil du køre sshd-serveren?" |
330 | 330 | ||
331 | #. Description | 331 | #. Description |
diff --git a/debian/po/de.po b/debian/po/de.po index c97b14e22..1e363835d 100644 --- a/debian/po/de.po +++ b/debian/po/de.po | |||
@@ -16,7 +16,7 @@ msgid "" | |||
16 | msgstr "" | 16 | msgstr "" |
17 | "Project-Id-Version: PACKAGE VERSION\n" | 17 | "Project-Id-Version: PACKAGE VERSION\n" |
18 | "Report-Msgid-Bugs-To: \n" | 18 | "Report-Msgid-Bugs-To: \n" |
19 | "POT-Creation-Date: 2003-09-12 21:03+0100\n" | 19 | "POT-Creation-Date: 2003-08-27 02:20+0100\n" |
20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | 20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
22 | "Language-Team: LANGUAGE <LL@li.org>\n" | 22 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -62,9 +62,9 @@ msgstr "" | |||
62 | #: ../templates.master:19 | 62 | #: ../templates.master:19 |
63 | msgid "" | 63 | msgid "" |
64 | "Since you've opted to have me generate an sshd_config file for you, you can " | 64 | "Since you've opted to have me generate an sshd_config file for you, you can " |
65 | "choose whether or not to have privilege separation turned on or not. Unless " | 65 | "choose whether or not to have Privilege Separation turned on or not. Unless " |
66 | "you know you need to use PAM features that won't work with this option, you " | 66 | "you know you need to use PAM features that won't work with this option, you " |
67 | "should enable it." | 67 | "should say yes here." |
68 | msgstr "" | 68 | msgstr "" |
69 | 69 | ||
70 | #. Description | 70 | #. Description |
@@ -142,7 +142,7 @@ msgstr "" | |||
142 | 142 | ||
143 | #. Description | 143 | #. Description |
144 | #: ../templates.master:78 | 144 | #: ../templates.master:78 |
145 | msgid "Do you want to continue (and risk killing active ssh sessions)?" | 145 | msgid "Do you want to continue (and risk killing active ssh sessions) ?" |
146 | msgstr "Wollen Sie weitermachen (und das Killen der Session riskieren)?" | 146 | msgstr "Wollen Sie weitermachen (und das Killen der Session riskieren)?" |
147 | 147 | ||
148 | #. Description | 148 | #. Description |
@@ -277,7 +277,7 @@ msgstr "" | |||
277 | 277 | ||
278 | #. Description | 278 | #. Description |
279 | #: ../templates.master:137 | 279 | #: ../templates.master:137 |
280 | msgid "Do you want to run the sshd server?" | 280 | msgid "Do you want to run the sshd server ?" |
281 | msgstr "Möchten Sie den sshd Server starten?" | 281 | msgstr "Möchten Sie den sshd Server starten?" |
282 | 282 | ||
283 | #. Description | 283 | #. Description |
diff --git a/debian/po/es.po b/debian/po/es.po index 844c43598..92cfbe2bd 100644 --- a/debian/po/es.po +++ b/debian/po/es.po | |||
@@ -17,7 +17,7 @@ msgid "" | |||
17 | msgstr "" | 17 | msgstr "" |
18 | "Project-Id-Version: openssh 3.6.1p2-3\n" | 18 | "Project-Id-Version: openssh 3.6.1p2-3\n" |
19 | "Report-Msgid-Bugs-To: \n" | 19 | "Report-Msgid-Bugs-To: \n" |
20 | "POT-Creation-Date: 2003-09-12 21:03+0100\n" | 20 | "POT-Creation-Date: 2003-08-27 02:20+0100\n" |
21 | "PO-Revision-Date: 2003-06-21 15:30+0200\n" | 21 | "PO-Revision-Date: 2003-06-21 15:30+0200\n" |
22 | "Last-Translator: Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>\n" | 22 | "Last-Translator: Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>\n" |
23 | "Language-Team: Debian L10n Spanish <debian-l10n-spanish@lists.debian.org>\n" | 23 | "Language-Team: Debian L10n Spanish <debian-l10n-spanish@lists.debian.org>\n" |
@@ -75,9 +75,9 @@ msgstr "" | |||
75 | #, fuzzy | 75 | #, fuzzy |
76 | msgid "" | 76 | msgid "" |
77 | "Since you've opted to have me generate an sshd_config file for you, you can " | 77 | "Since you've opted to have me generate an sshd_config file for you, you can " |
78 | "choose whether or not to have privilege separation turned on or not. Unless " | 78 | "choose whether or not to have Privilege Separation turned on or not. Unless " |
79 | "you know you need to use PAM features that won't work with this option, you " | 79 | "you know you need to use PAM features that won't work with this option, you " |
80 | "should enable it." | 80 | "should say yes here." |
81 | msgstr "" | 81 | msgstr "" |
82 | "Puesto que ha elegido crear automáticamente el fichero sshd_config, puede " | 82 | "Puesto que ha elegido crear automáticamente el fichero sshd_config, puede " |
83 | "decidir ahora si quiere activar la opción de separación de privilegios. A " | 83 | "decidir ahora si quiere activar la opción de separación de privilegios. A " |
@@ -187,7 +187,7 @@ msgstr "" | |||
187 | 187 | ||
188 | #. Description | 188 | #. Description |
189 | #: ../templates.master:78 | 189 | #: ../templates.master:78 |
190 | msgid "Do you want to continue (and risk killing active ssh sessions)?" | 190 | msgid "Do you want to continue (and risk killing active ssh sessions) ?" |
191 | msgstr "¿Desea continuar, aún a riesgo de matar las sesiones ssh activas?" | 191 | msgstr "¿Desea continuar, aún a riesgo de matar las sesiones ssh activas?" |
192 | 192 | ||
193 | #. Description | 193 | #. Description |
@@ -326,7 +326,7 @@ msgstr "" | |||
326 | 326 | ||
327 | #. Description | 327 | #. Description |
328 | #: ../templates.master:137 | 328 | #: ../templates.master:137 |
329 | msgid "Do you want to run the sshd server?" | 329 | msgid "Do you want to run the sshd server ?" |
330 | msgstr "¿Quiere ejecutar el servidor sshd?" | 330 | msgstr "¿Quiere ejecutar el servidor sshd?" |
331 | 331 | ||
332 | #. Description | 332 | #. Description |
diff --git a/debian/po/fr.po b/debian/po/fr.po index 178c833d5..d72a5d5d7 100644 --- a/debian/po/fr.po +++ b/debian/po/fr.po | |||
@@ -13,9 +13,9 @@ | |||
13 | # | 13 | # |
14 | msgid "" | 14 | msgid "" |
15 | msgstr "" | 15 | msgstr "" |
16 | "Project-Id-Version: openssh 3.6.1p2-5\n" | 16 | "Project-Id-Version: openssh 3.6.1p2-2\n" |
17 | "Report-Msgid-Bugs-To: \n" | 17 | "Report-Msgid-Bugs-To: \n" |
18 | "POT-Creation-Date: 2003-09-12 21:03+0100\n" | 18 | "POT-Creation-Date: 2003-08-27 02:20+0100\n" |
19 | "PO-Revision-Date: 2003-05-22 10:34+0200\n" | 19 | "PO-Revision-Date: 2003-05-22 10:34+0200\n" |
20 | "Last-Translator: Denis Barbier <barbier@debian.org>\n" | 20 | "Last-Translator: Denis Barbier <barbier@debian.org>\n" |
21 | "Language-Team: French <Debian-l10n-french@lists.debian.org>\n" | 21 | "Language-Team: French <Debian-l10n-french@lists.debian.org>\n" |
@@ -70,17 +70,19 @@ msgstr "" | |||
70 | 70 | ||
71 | #. Description | 71 | #. Description |
72 | #: ../templates.master:19 | 72 | #: ../templates.master:19 |
73 | #, fuzzy | ||
73 | msgid "" | 74 | msgid "" |
74 | "Since you've opted to have me generate an sshd_config file for you, you can " | 75 | "Since you've opted to have me generate an sshd_config file for you, you can " |
75 | "choose whether or not to have privilege separation turned on or not. Unless " | 76 | "choose whether or not to have Privilege Separation turned on or not. Unless " |
76 | "you know you need to use PAM features that won't work with this option, you " | 77 | "you know you need to use PAM features that won't work with this option, you " |
77 | "should enable it." | 78 | "should say yes here." |
78 | msgstr "" | 79 | msgstr "" |
79 | "Comme vous souhaitez que le fichier de configuration sshd_config soit généré " | 80 | "Comme vous souhaitez que je génère le fichier de configuration sshd_config à " |
80 | "à votre place, vous pouvez choisir d'activer ou non l'option de séparation " | 81 | "votre place, vous pouvez choisir d'activer ou non l'option de séparation des " |
81 | "des privilèges. Si vous êtes sûr d'avoir besoin de fonctionnalités PAM, cela " | 82 | "privilèges. Si vous utilisez un noyau 2.0 (dans ce cas vous *devez* " |
82 | "ne fonctionnera pas si cette option est activée. Dans le cas contraire vous " | 83 | "désactiver cette option ou alors sshd ne se lancera pas) ou bien si vous " |
83 | "devriez l'activer." | 84 | "avez besoin de fonctionnalités PAM, cela ne fonctionnera pas si cette option " |
85 | "est activée, dans le cas contraire vous devriez l'activer." | ||
84 | 86 | ||
85 | #. Description | 87 | #. Description |
86 | #: ../templates.master:36 | 88 | #: ../templates.master:36 |
@@ -187,7 +189,7 @@ msgstr "" | |||
187 | 189 | ||
188 | #. Description | 190 | #. Description |
189 | #: ../templates.master:78 | 191 | #: ../templates.master:78 |
190 | msgid "Do you want to continue (and risk killing active ssh sessions)?" | 192 | msgid "Do you want to continue (and risk killing active ssh sessions) ?" |
191 | msgstr "" | 193 | msgstr "" |
192 | "Voulez-vous continuer (et risquer de rompre les sessions ssh actives) ?" | 194 | "Voulez-vous continuer (et risquer de rompre les sessions ssh actives) ?" |
193 | 195 | ||
@@ -337,7 +339,7 @@ msgstr "" | |||
337 | 339 | ||
338 | #. Description | 340 | #. Description |
339 | #: ../templates.master:137 | 341 | #: ../templates.master:137 |
340 | msgid "Do you want to run the sshd server?" | 342 | msgid "Do you want to run the sshd server ?" |
341 | msgstr "Voulez-vous utiliser le serveur sshd ?" | 343 | msgstr "Voulez-vous utiliser le serveur sshd ?" |
342 | 344 | ||
343 | #. Description | 345 | #. Description |
diff --git a/debian/po/ja.po b/debian/po/ja.po index 444e29217..dcead1cdb 100644 --- a/debian/po/ja.po +++ b/debian/po/ja.po | |||
@@ -11,14 +11,15 @@ | |||
11 | # | 11 | # |
12 | # Developers do not need to manually edit POT or PO files. | 12 | # Developers do not need to manually edit POT or PO files. |
13 | # | 13 | # |
14 | #, fuzzy | ||
14 | msgid "" | 15 | msgid "" |
15 | msgstr "" | 16 | msgstr "" |
16 | "Project-Id-Version: PACKAGE VERSION\n" | 17 | "Project-Id-Version: PACKAGE VERSION\n" |
17 | "Report-Msgid-Bugs-To: \n" | 18 | "Report-Msgid-Bugs-To: \n" |
18 | "POT-Creation-Date: 2003-09-12 21:03+0100\n" | 19 | "POT-Creation-Date: 2003-08-27 02:20+0100\n" |
19 | "PO-Revision-Date: 2003-09-11 13:11+0900\n" | 20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
20 | "Last-Translator: Kenshi Muto <kmuto@debian.org>\n" | 21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
21 | "Language-Team: Japanese <debian-japanese@lists.debian.org>\n" | 22 | "Language-Team: LANGUAGE <LL@li.org>\n" |
22 | "MIME-Version: 1.0\n" | 23 | "MIME-Version: 1.0\n" |
23 | "Content-Type: text/plain; charset=EUC-JP\n" | 24 | "Content-Type: text/plain; charset=EUC-JP\n" |
24 | "Content-Transfer-Encoding: 8bit\n" | 25 | "Content-Transfer-Encoding: 8bit\n" |
@@ -35,8 +36,8 @@ msgid "" | |||
35 | "turned off, you need to add \"UsePrivilegeSeparation no\" to /etc/ssh/" | 36 | "turned off, you need to add \"UsePrivilegeSeparation no\" to /etc/ssh/" |
36 | "sshd_config." | 37 | "sshd_config." |
37 | msgstr "" | 38 | msgstr "" |
38 | "Æø¢Ê¬Î¥¤Ï¥Ç¥Õ¥©¥ë¥È¤Ç͸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£Ìµ¸ú¤Ë¤·¤¿¤¤¾ì¹ç¤Ï¡¢/etc/ssh/" | 39 | "Æø¢Ê¬Î¥¤Ï¥Ç¥Õ¥©¥ë¥È¤Ç͸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£Ìµ¸ú¤Ë¤·¤¿¤¤¾ì¹ç¤Ï¡¢ /etc/ssh/" |
39 | "sshd_conf ¤Ë¡ÖUsePrivilegeSeparation no¡×¤È¤¤¤¦¹Ô¤òÄɲ䷤Ƥ¯¤À¤µ¤¤¡£" | 40 | "sshd_conf ¤Ë¡ÖUsePrivilegeSeparation no¡×¤È¤¤¤¦¹Ô¤òÄɲà ¤·¤Æ¤¯¤À¤µ¤¤¡£" |
40 | 41 | ||
41 | #. Description | 42 | #. Description |
42 | #: ../templates.master:19 | 43 | #: ../templates.master:19 |
@@ -51,7 +52,7 @@ msgid "" | |||
51 | "reduces the impact of security holes in sshd." | 52 | "reduces the impact of security holes in sshd." |
52 | msgstr "" | 53 | msgstr "" |
53 | "ËܥС¼¥¸¥ç¥ó¤Î OpenSSH ¤Ï¡¢¿·¤·¤¤Æø¢Ê¬Î¥¥ª¥×¥·¥ç¥ó¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹¡£ ¤³¤ì¤Ë" | 54 | "ËܥС¼¥¸¥ç¥ó¤Î OpenSSH ¤Ï¡¢¿·¤·¤¤Æø¢Ê¬Î¥¥ª¥×¥·¥ç¥ó¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹¡£ ¤³¤ì¤Ë" |
54 | "¤è¤Ã¤Æ¡¢root ¸¢¸Â¤Ç¼Â¹Ô¤µ¤ì¤ë¥³¡¼¥É¤ÎÎ̤òÂçÉý¤Ë¸º¤é¤¹¤³¤È¤¬¤Ç¤¡¢sshd ¤Î¥»" | 55 | "¤è¤Ã¤Æ¡¢root ¸¢¸Â¤Ç¼Â¹Ô¤µ¤ì¤ë¥³¡¼¥É¤ÎÎ̤òÂçÉý¤Ë¸º¤é¤¹¤³¤È¤¬ ¤Ç¤¡¢sshd ¤Î¥»" |
55 | "¥¥å¥ê¥Æ¥£¥Û¡¼¥ë¤Î±Æ¶Á¤ò¸º¤é¤¹¤³¤È¤¬¤Ç¤¤Þ¤¹¡£" | 56 | "¥¥å¥ê¥Æ¥£¥Û¡¼¥ë¤Î±Æ¶Á¤ò¸º¤é¤¹¤³¤È¤¬¤Ç¤¤Þ¤¹¡£" |
56 | 57 | ||
57 | #. Description | 58 | #. Description |
@@ -61,8 +62,8 @@ msgid "" | |||
61 | "session modules that need to run as root (pam_mkhomedir, for example) will " | 62 | "session modules that need to run as root (pam_mkhomedir, for example) will " |
62 | "fail, and PAM keyboard-interactive authentication won't work." | 63 | "fail, and PAM keyboard-interactive authentication won't work." |
63 | msgstr "" | 64 | msgstr "" |
64 | "»ÄÇ°¤Ê¤³¤È¤Ë¡¢Æø¢Ê¬Î¥¤Ï PAM ¤Ë°±Æ¶Á¤òÍ¿¤¨¤Þ¤¹¡£root ¤Ç¼Â¹Ô¤µ¤ì¤ë¤¹¤Ù¤Æ¤Î " | 65 | "»ÄÇ°¤Ê¤³¤È¤Ë¡¢Æø¢Ê¬Î¥¤Ï PAM ¤Ë°±Æ¶Á¤òÍ¿¤¨¤Þ¤¹¡£root ¤Ç¼Â¹Ô¤µ¤ì¤ë Á´¤Æ¤Î " |
65 | "PAM ¥»¥Ã¥·¥ç¥ó¥â¥¸¥å¡¼¥ë (¤¿¤È¤¨¤Ð pam_mkhomedir) ¤ÏÆ°¤«¤Ê¤¯¤Ê¤ê¤Þ¤¹¡£¤Þ¤¿¡¢" | 66 | "PAM ¥»¥Ã¥·¥ç¥ó¥â¥¸¥å¡¼¥ë (Î㤨¤Ð pam_mkhomedir) ¤ÏÆ°¤«¤Ê¤¯ ¤Ê¤ê¤Þ¤¹¡£¤Þ¤¿¡¢" |
66 | "PAM ¥¡¼¥Ü¡¼¥ÉÂÐÏÃŪǧ¾Ú¤âÆ°ºî¤·¤Ê¤¯¤Ê¤ê¤Þ¤¹¡£" | 67 | "PAM ¥¡¼¥Ü¡¼¥ÉÂÐÏÃŪǧ¾Ú¤âÆ°ºî¤·¤Ê¤¯¤Ê¤ê¤Þ¤¹¡£" |
67 | 68 | ||
68 | #. Description | 69 | #. Description |
@@ -70,13 +71,14 @@ msgstr "" | |||
70 | #, fuzzy | 71 | #, fuzzy |
71 | msgid "" | 72 | msgid "" |
72 | "Since you've opted to have me generate an sshd_config file for you, you can " | 73 | "Since you've opted to have me generate an sshd_config file for you, you can " |
73 | "choose whether or not to have privilege separation turned on or not. Unless " | 74 | "choose whether or not to have Privilege Separation turned on or not. Unless " |
74 | "you know you need to use PAM features that won't work with this option, you " | 75 | "you know you need to use PAM features that won't work with this option, you " |
75 | "should enable it." | 76 | "should say yes here." |
76 | msgstr "" | 77 | msgstr "" |
77 | "sshd_config ¥Õ¥¡¥¤¥ë¤ò¼«Æ°À¸À®¤¹¤ë¤³¤È¤òÁªÂò¤·¤¿¤Î¤Ç¡¢ ¤³¤³¤ÇÆø¢Ê¬Î¥¤ò͸ú¤Ë" | 78 | "¤¢¤Ê¤¿¤Ï sshd_config ¥Õ¥¡¥¤¥ë¤ò¼«Æ°À¸À®¤¹¤ë¤³¤È¤òÁªÂò¤·¤Þ¤·¤¿¤Î¤Ç¡¢ ¤³¤³¤ÇÆÃ" |
78 | "¤¹¤ë¤«¤·¤Ê¤¤¤«¤òÁªÂò¤Ç¤¤Þ¤¹¡£PAM ¤Îµ¡Ç½¤Î¤¦¤ÁÆø¢Ê¬Î¥¤È¶¦Â¸¤Ç¤¤Ê¤¤µ¡Ç½¤ò»È" | 79 | "¸¢Ê¬Î¥¤ò͸ú¤Ë¤¹¤ë¤«¤·¤Ê¤¤¤«¤òÁªÂò¤Ç¤¤Þ¤¹¡£2.0 ·ÏÎó¤Î ¥«¡¼¥Í¥ë¤ò»È¤Ã¤Æ¤¤¤ë" |
79 | "¤¤¤¿¤¤¾ì¹ç°Ê³°¤Ï¡¢¡Ö¤Ï¤¤¡×¤òÁª¤Ö¤Ù¤¤Ç¤¹¡£" | 80 | "¤« (¤³¤Î¾ì¹ç¤Ë¤Ï¡Ö¤¤¤¤¤¨¡×¤òÁª¤Ð¤Ê¤¤¤È sshd ¤Ïµ¯Æ°¤¹¤é¤·¤Þ¤»¤ó)¡¢PAM ¤Îµ¡Ç½¤Î" |
81 | "¤¦¤ÁÆø¢Ê¬Î¥¤È¶¦Â¸¤Ç¤¤Ê¤¤µ¡Ç½¤ò »È¤¤¤¿¤¤¾ì¹ç°Ê³°¤Ï¡¢¡Ö¤Ï¤¤¡×¤òÁª¤Ö¤Ù¤¤Ç¤¹¡£" | ||
80 | 82 | ||
81 | #. Description | 83 | #. Description |
82 | #: ../templates.master:36 | 84 | #: ../templates.master:36 |
@@ -93,11 +95,11 @@ msgid "" | |||
93 | "any customisations you made with the old version." | 95 | "any customisations you made with the old version." |
94 | msgstr "" | 96 | msgstr "" |
95 | "OpenSSH ¤Î¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ï¡¢Debian 'Potato' ¤Ë´Þ¤Þ¤ì¤Æ¤¤¤ë¥Ð¡¼¥¸¥ç¥ó (¤¤¤Þ¡¢" | 97 | "OpenSSH ¤Î¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ï¡¢Debian 'Potato' ¤Ë´Þ¤Þ¤ì¤Æ¤¤¤ë¥Ð¡¼¥¸¥ç¥ó (¤¤¤Þ¡¢" |
96 | "¤½¤Î¥Ð¡¼¥¸¥ç¥ó¤«¤é¤Î¥Ð¡¼¥¸¥ç¥ó¥¢¥Ã¥×¤ò»î¤ß¤Æ¤¤¤ë¤È¤³¤í) ¤«¤é¡¢ÀßÄê¥Õ¥¡¥¤¥ë¤¬" | 98 | "¤½¤Î¥Ð¡¼¥¸¥ç¥ó¤«¤é¤Î¥Ð¡¼¥¸¥ç¥ó¥¢¥Ã¥×¤ò»î¤ß¤Æ¤¤¤ë¤È¤³¤í) ¤«¤é¡¢ ÀßÄê¥Õ¥¡¥¤¥ë¤¬" |
97 | "ÂçÉý¤ËÊѲ½¤·¤Æ¤¤¤Þ¤¹¡£¤¤¤Þ¡¢¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤Î¥µ¡¼¥Ð¤Ç»È¤¦¤³¤È¤¬¤Ç¤¤ë¿·¤·¤¤" | 99 | "ÂçÉý¤ËÊѲ½¤·¤Æ¤¤¤Þ¤¹¡£¤¤¤Þ¡¢¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤Î¥µ¡¼¥Ð¤Ç »È¤¦¤³¤È¤¬¤Ç¤¤ë¿·¤·¤¤" |
98 | "ÀßÄê¥Õ¥¡¥¤¥ë (/etc/ssh/sshd/config) ¤ò¼«Æ°À¸À®¤¹¤ë¤³¤È¤¬¤Ç¤¤Þ¤¹¤¬¡¢¤½¤Î¥Õ¥¡" | 100 | "ÀßÄê¥Õ¥¡¥¤¥ë (/etc/ssh/sshd/config) ¤ò¼«Æ°À¸À® ¤¹¤ë¤³¤È¤¬¤Ç¤¤Þ¤¹¤¬¡¢¤½¤Î¥Õ¥¡" |
99 | "¥¤¥ë¤Ï¡¢¸Å¤¤¥Ð¡¼¥¸¥ç¥ó¤ÎÀßÄê¥Õ¥¡¥¤¥ë¤Ë´Þ¤Þ¤ì¤ë¤¢¤Ê¤¿¤ÎÀßÄ꤬¤Þ¤Ã¤¿¤¯´Þ¤Þ¤ì¤Þ" | 101 | "¥¤¥ë¤Ï¡¢¸Å¤¤¥Ð¡¼¥¸¥ç¥ó¤ÎÀßÄê¥Õ¥¡¥¤¥ë¤Ë ´Þ¤Þ¤ì¤ë¤¢¤Ê¤¿¤ÎÀßÄ꤬Á´¤¯´Þ¤Þ¤ì¤Þ¤»" |
100 | "¤»¤ó¡£" | 102 | "¤ó¡£" |
101 | 103 | ||
102 | #. Description | 104 | #. Description |
103 | #: ../templates.master:36 | 105 | #: ../templates.master:36 |
@@ -108,10 +110,10 @@ msgid "" | |||
108 | "the correct default (see README.Debian for more details), but you can always " | 110 | "the correct default (see README.Debian for more details), but you can always " |
109 | "edit sshd_config and set it to no if you wish." | 111 | "edit sshd_config and set it to no if you wish." |
110 | msgstr "" | 112 | msgstr "" |
111 | "¤³¤Î¿·¤·¤¤ÀßÄê¥Õ¥¡¥¤¥ë¤Ï¡¢¡ÖPermitRootLogin¡×¤ò¡Öyes¡×¤ËÀßÄꤷ¤Þ¤¹ (¤Ä¤Þ¤ê¡¢" | 113 | "¤³¤Î¿·¤·¤¤ÀßÄê¥Õ¥¡¥¤¥ë¤Ï¡¢¡ÖPermitRootLogin¡×¤ò¡Öyes¡×¤ËÀßÄꤷ¤Þ¤¹¡£ (¤Ä¤Þ" |
112 | "root ¤Î¥Ñ¥¹¥ï¡¼¥É¤òÃΤäƤ¤¤ë¿Í¤Ê¤éï¤Ç¤âľÀÜ¥í¥°¥¤¥ó¤Ç¤¤Þ¤¹)¡£¤³¤ì¤Ç¤è¤¤¡¢" | 114 | "¤ê¡¢root ¤Î¥Ñ¥¹¥ï¡¼¥É¤òÃΤäƤ¤¤ë¿Í¤Ê¤éï¤Ç¤âľÀÜ¥í¥°¥¤¥ó¤Ç¤¤Þ ¤¹)¡£¤³¤ì¤Ç¤è" |
113 | "¤È¤¤¤¦¤Î¤¬¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¥á¥ó¥Æ¥Ê¤Î°Õ¸«¤Ç¤¹¤¬ (¾Ü¤·¤¯¤Ï README.Debian ¤òÆɤó" | 115 | "¤¤¡¢¤È¤¤¤¦¤Î¤¬¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¥á¥ó¥Æ¥Ê¤Î°Õ¸«¤Ç¤¹¤¬ (¾Ü¤· ¤¯¤Ï README.Debian " |
114 | "¤Ç¤¯¤À¤µ¤¤)¡¢sshd_config ¤òÊÔ½¸¤·¤Æ¡Öno¡×¤ËÀßÄꤹ¤ë¤³¤È¤â¤Ç¤¤Þ¤¹¡£" | 116 | "¤òÆɤó¤Ç²¼¤µ¤¤)¡¢sshd_config ¤òÊÔ½¸¤·¤Æ¡Öno¡×¤ËÀß Äꤹ¤ë¤³¤È¤â¤Ç¤¤Þ¤¹¡£" |
115 | 117 | ||
116 | #. Description | 118 | #. Description |
117 | #: ../templates.master:36 | 119 | #: ../templates.master:36 |
@@ -134,8 +136,8 @@ msgid "" | |||
134 | "connecting (the ssh client shipped with \"potato\" is affected)." | 136 | "connecting (the ssh client shipped with \"potato\" is affected)." |
135 | msgstr "" | 137 | msgstr "" |
136 | "OpenSSH ¤Î¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ï¡¢¤º¤Ã¤È°ÂÁ´¤Ê¡¢ssh ¥×¥í¥È¥³¥ë¤Î¥Ð¡¼¥¸¥ç¥ó 2 ¤ò¥µ" | 138 | "OpenSSH ¤Î¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ï¡¢¤º¤Ã¤È°ÂÁ´¤Ê¡¢ssh ¥×¥í¥È¥³¥ë¤Î¥Ð¡¼¥¸¥ç¥ó 2 ¤ò¥µ" |
137 | "¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¡£ssh 1 ¤ò¶Ø»ß¤¹¤ë¤³¤È¤ò¤ª´«¤á¤·¤Þ¤¹¤¬¡¢ÃÙ¤¤¥Þ¥·¥ó¤Ç¤ÏÆ°ºî¤¬" | 139 | "¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¡£ssh 1 ¤ò¶Ø»ß¤¹¤ë¤³¤È¤ò¤ª´«¤á¤·¤Þ¤¹¤¬¡¢ÃÙ¤¤¥Þ ¥·¥ó¤Ç¤ÏÆ°ºî¤¬" |
138 | "ÃÙ¤¯¤Ê¤Ã¤¿¤ê¡¢¸Å¤¤¥¯¥é¥¤¥¢¥ó¥È¤«¤éÀܳ¤Ç¤¤Ê¤¯¤Ê¤Ã¤¿¤ê¤·¤Þ¤¹ (\"potato\" ¤Î " | 140 | "ÃÙ¤¯¤Ê¤Ã¤¿¤ê¡¢¸Å¤¤¥¯¥é¥¤¥¢¥ó¥È¤«¤éÀܳ¤Ç¤¤Ê¤¯¤Ê¤Ã¤¿¤ê ¤·¤Þ¤¹ (\"potato\" ¤Î " |
139 | "ssh ¥¯¥é¥¤¥¢¥ó¥È¤âÀܳ¤Ç¤¤Ê¤¯¤Ê¤ê¤Þ¤¹)¡£" | 141 | "ssh ¥¯¥é¥¤¥¢¥ó¥È¤âÀܳ¤Ç¤¤Ê¤¯¤Ê¤ê¤Þ¤¹)¡£" |
140 | 142 | ||
141 | #. Description | 143 | #. Description |
@@ -144,7 +146,7 @@ msgid "" | |||
144 | "Also please note that keys used for protocol 1 are different so you will not " | 146 | "Also please note that keys used for protocol 1 are different so you will not " |
145 | "be able to use them if you only allow protocol 2 connections." | 147 | "be able to use them if you only allow protocol 2 connections." |
146 | msgstr "" | 148 | msgstr "" |
147 | "¤Þ¤¿¡¢¥×¥í¥È¥³¥ë 1 ¤Ç»È¤¦¥¡¼¤Ï°Û¤Ê¤ë¤¿¤á¡¢¥×¥í¥È¥³¥ë 2 ¤ò͸ú¤Ë¤·¤¿¤À¤±¤Ç¤Ï" | 149 | "¤Þ¤¿¡¢¥×¥í¥È¥³¥ë 1 ¤Ç»È¤¦¥¡¼¤Ï°Û¤Ê¤ë¤¿¤á¡¢¥×¥í¥È¥³¥ë 2 ¤ò͸ú¤Ë¤·¤¿ ¤À¤±¤Ç¤Ï" |
148 | "¤½¤Î¥¡¼¤ò»È¤¦¤³¤È¤¬¤Ç¤¤Þ¤»¤ó¡£" | 150 | "¤½¤Î¥¡¼¤ò»È¤¦¤³¤È¤¬¤Ç¤¤Þ¤»¤ó¡£" |
149 | 151 | ||
150 | #. Description | 152 | #. Description |
@@ -153,8 +155,8 @@ msgid "" | |||
153 | "If you later change your mind about this setting, README.Debian has " | 155 | "If you later change your mind about this setting, README.Debian has " |
154 | "instructions on what to do to your sshd_config file." | 156 | "instructions on what to do to your sshd_config file." |
155 | msgstr "" | 157 | msgstr "" |
156 | "¤â¤·º£¸å¤¢¤Ê¤¿¤¬¹Í¤¨¤òÊѤ¨¤¿¤é¡¢README.Debian ¤òÆɤà¤È sshd_config ¤ò¤É¤Î¤è¤¦" | 158 | "¤â¤·º£¸å¤¢¤Ê¤¿¤¬¹Í¤¨¤òÊѤ¨¤¿¤é¡¢README.Debian ¤òÆɤà¤È sshd_config ¤ò ¤É¤Î¤è" |
157 | "¤ËÊѹ¹¤·¤¿¤é¤è¤¤¤«¤¬Ê¬¤«¤ê¤Þ¤¹¡£" | 159 | "¤¦¤ËÊѹ¹¤·¤¿¤é¤è¤¤¤«¤¬Ê¬¤«¤ê¤Þ¤¹¡£" |
158 | 160 | ||
159 | #. Description | 161 | #. Description |
160 | #: ../templates.master:69 | 162 | #: ../templates.master:69 |
@@ -168,14 +170,14 @@ msgid "" | |||
168 | "keys. This means the authorized_keys2 and known_hosts2 files are no longer " | 170 | "keys. This means the authorized_keys2 and known_hosts2 files are no longer " |
169 | "needed. They will still be read in order to maintain backwards compatibility" | 171 | "needed. They will still be read in order to maintain backwards compatibility" |
170 | msgstr "" | 172 | msgstr "" |
171 | "OpenSSH ¤Î¥Ð¡¼¥¸¥ç¥ó 3 ¤Ï¡¢ssh1 ¤È ssh2 ¤Î¥¡¼¤Ë¸ÄÊ̤Υե¡¥¤¥ë¤ò»È¤¤¤Þ¤»¤ó¡£" | 173 | "OpenSSH ¤Î¥Ð¡¼¥¸¥ç¥ó 3 ¤Ï¡¢ssh1 ¤È ssh2 ¤Î¥¡¼¤Ë¸ÄÊ̤Υե¡¥¤¥ë¤ò»È¤¤ ¤Þ¤»¤ó¡£" |
172 | "¤Ä¤Þ¤ê¡¢authorized_keys2 ¥Õ¥¡¥¤¥ë¤È known_hosts2 ¥Õ¥¡¥¤¥ë¤Ï¤â¤Ï¤äÉÔÍפȤʤê¤Þ" | 174 | "¤Ä¤Þ¤ê¡¢authorized_keys2 ¥Õ¥¡¥¤¥ë¤È known_hosts2 ¥Õ¥¡¥¤¥ë¤Ï¤â ¤Ï¤äÉÔÍפȤʤê" |
173 | "¤·¤¿¡£¸åÊý¸ß´¹À¤òÊݤĤ¿¤á¤Ë¤Ï¤³¤ì¤é¤Î¥Õ¥¡¥¤¥ë¤¬É¬ÍפǤ¹¡£" | 175 | "¤Þ¤·¤¿¡£¸åÊý¸ß´¹À¤òÊݤĤ¿¤á¤Ë¤Ï¤³¤ì¤é¤Î¥Õ¥¡¥¤¥ë¤¬É¬Í× ¤Ç¤¹¡£" |
174 | 176 | ||
175 | #. Description | 177 | #. Description |
176 | #: ../templates.master:78 | 178 | #: ../templates.master:78 |
177 | msgid "Do you want to continue (and risk killing active ssh sessions)?" | 179 | msgid "Do you want to continue (and risk killing active ssh sessions) ?" |
178 | msgstr "³¤±¤Æ¤è¤¤¤Ç¤¹¤« (ÀܳÃæ¤Î ssh ¥»¥Ã¥·¥ç¥ó¤¬ÀÚ¤ì¤ë¤«¤â¤·¤ì¤Þ¤»¤ó)" | 180 | msgstr "³¤±¤Æ¤¤¤¤¤Ç¤¹¤« (ÀܳÃæ¤Î ssh ¥»¥Ã¥·¥ç¥ó¤¬ÀÚ¤ì¤ë¤«¤â¤·¤ì¤Þ¤»¤ó)" |
179 | 181 | ||
180 | #. Description | 182 | #. Description |
181 | #: ../templates.master:78 | 183 | #: ../templates.master:78 |
@@ -184,9 +186,9 @@ msgid "" | |||
184 | "all running sshd instances. If you are doing this upgrade via an ssh " | 186 | "all running sshd instances. If you are doing this upgrade via an ssh " |
185 | "session, that would be a Bad Thing(tm)." | 187 | "session, that would be a Bad Thing(tm)." |
186 | msgstr "" | 188 | msgstr "" |
187 | "¤¤¤Þ¥¤¥ó¥¹¥È¡¼¥ë¤·¤¿ /etc/init.d/ssh ¤Ï¡¢¤ª¤½¤é¤¯¼Â¹ÔÃæ¤Î sshd ¤ò¤¹¤Ù¤ÆÄä»ß¤µ" | 189 | "¤¤¤Þ¥¤¥ó¥¹¥È¡¼¥ë¤·¤¿ /etc/init.d/ssh ¤Ï¡¢¤ª¤½¤é¤¯¼Â¹ÔÃæ¤Î sshd ¤òÁ´¤Æ Ää»ß¤µ" |
188 | "¤»¤Þ¤¹¡£¤³¤Î¥Ð¡¼¥¸¥ç¥ó¥¢¥Ã¥×¤ò ssh ¥»¥Ã¥·¥ç¥ó¤òÍѤ¤¤Æ¹Ô¤¦¤Î¤Ï´Ö°ã¤Ã¤¿¤ä¤ê¤«¤¿" | 190 | "¤»¤Þ¤¹¡£¤³¤Î¥Ð¡¼¥¸¥ç¥ó¥¢¥Ã¥×¤ò ssh ¥»¥Ã¥·¥ç¥ó¤òÍѤ¤¤Æ¹Ô¤¦¤Î¤Ï´Ö °ã¤Ã¤¿¤ä¤ê¤«" |
189 | "¤Ç¤¹¡£" | 191 | "¤¿¤Ç¤¹¡£" |
190 | 192 | ||
191 | #. Description | 193 | #. Description |
192 | #: ../templates.master:78 | 194 | #: ../templates.master:78 |
@@ -217,13 +219,13 @@ msgid "" | |||
217 | "You can enable it for servers you trust, either in one of the configuration " | 219 | "You can enable it for servers you trust, either in one of the configuration " |
218 | "files, or with the -X command line option." | 220 | "files, or with the -X command line option." |
219 | msgstr "" | 221 | msgstr "" |
220 | "ÀßÄê¥Õ¥¡¥¤¥ë¤ò»È¤Ã¤¿¤ê¡¢-X ¥³¥Þ¥ó¥É¥é¥¤¥ó¥ª¥×¥·¥ç¥ó¤ò»È¤Ã¤¿¤ê¤¹¤ë¤³¤È¤Ç¡¢¿®ÍÑ" | 222 | "ÀßÄê¥Õ¥¡¥¤¥ë¤ò»È¤Ã¤¿¤ê¡¢-X ¥³¥Þ¥ó¥É¥é¥¤¥ó¥ª¥×¥·¥ç¥ó¤ò»È¤Ã¤¿¤ê¤¹¤ë ¤³¤È¤Ç¡¢¿®" |
221 | "¤Ç¤¤ë¥µ¡¼¥Ð¤ËÂФ·¤Æµö²Ä¤¹¤ë¤³¤È¤¬¤Ç¤¤Þ¤¹¡£" | 223 | "ÍѤǤ¤ë¥µ¡¼¥Ð¤ËÂФ·¤Æµö²Ä¤¹¤ë¤³¤È¤¬¤Ç¤¤Þ¤¹¡£" |
222 | 224 | ||
223 | #. Description | 225 | #. Description |
224 | #: ../templates.master:88 | 226 | #: ../templates.master:88 |
225 | msgid "More details can be found in /usr/share/doc/ssh/README.Debian" | 227 | msgid "More details can be found in /usr/share/doc/ssh/README.Debian" |
226 | msgstr "¾ÜºÙ¤Ï /usr/share/doc/ssh/README.Debian ¤òÆɤó¤Ç¤¯¤À¤µ¤¤¡£" | 228 | msgstr "¾ÜºÙ¤Ï /usr/share/doc/ssh/README.Debian ¤òÆɤó¤Ç²¼¤µ¤¤¡£" |
227 | 229 | ||
228 | #. Description | 230 | #. Description |
229 | #: ../templates.master:99 | 231 | #: ../templates.master:99 |
@@ -237,8 +239,8 @@ msgid "" | |||
237 | "having rsh-server installed undermines the security that you were probably " | 239 | "having rsh-server installed undermines the security that you were probably " |
238 | "wanting to obtain by installing ssh. I'd advise you to remove that package." | 240 | "wanting to obtain by installing ssh. I'd advise you to remove that package." |
239 | msgstr "" | 241 | msgstr "" |
240 | "rsh-server ¤¬¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë¤È¡¢¤¢¤Ê¤¿¤¬ ssh ¤Ë¤è¤Ã¤ÆÆÀ¤¿¤¤¤È»×¤Ã¤Æ¤¤" | 242 | "rsh-server ¤¬¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë¤È¡¢¤¢¤Ê¤¿¤¬ ssh ¤Ë¤è¤Ã¤ÆÆÀ¤¿¤¤¤È »×¤Ã¤Æ¤¤" |
241 | "¤ë¤Ç¤¢¤í¤¦¥»¥¥å¥ê¥Æ¥£¤¬Â»¤Ê¤ï¤ì¤Þ¤¹¡£¤½¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤³" | 243 | "¤ë¤Ç¤¢¤í¤¦¥»¥¥å¥ê¥Æ¥£¤¬Â»¤Ê¤ï¤ì¤Þ¤¹¡£¤½¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¥¢¥ó¥¤ ¥ó¥¹¥È¡¼¥ë¤¹¤ë¤³" |
242 | "¤È¤ò¤ª´«¤á¤·¤Þ¤¹¡£" | 244 | "¤È¤ò¤ª´«¤á¤·¤Þ¤¹¡£" |
243 | 245 | ||
244 | #. Description | 246 | #. Description |
@@ -256,7 +258,7 @@ msgid "" | |||
256 | msgstr "" | 258 | msgstr "" |
257 | "(¤â¤· telnet ¥¢¥¯¥»¥¹¤òÄ󶡤·¤¿¤¤¤È»×¤Ã¤Æ¤¤¤Ê¤¤¤Î¤Ç¤·¤¿¤é) telnetd ¥Ñ¥Ã¥±¡¼¥¸" | 259 | "(¤â¤· telnet ¥¢¥¯¥»¥¹¤òÄ󶡤·¤¿¤¤¤È»×¤Ã¤Æ¤¤¤Ê¤¤¤Î¤Ç¤·¤¿¤é) telnetd ¥Ñ¥Ã¥±¡¼¥¸" |
258 | "¤ò¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤«¡¢¤Þ¤¿¤Ï¡¢telnetd-ssh ¥Ñ¥Ã¥±¡¼¥¸¤ò ¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¾¯" | 260 | "¤ò¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤«¡¢¤Þ¤¿¤Ï¡¢telnetd-ssh ¥Ñ¥Ã¥±¡¼¥¸¤ò ¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¾¯" |
259 | "¤Ê¤¯¤È¤â¥Í¥Ã¥È¥ï¡¼¥¯¾å¤ò°Å¹æ²½¤µ¤ì¤Æ¤¤¤Ê¤¤¥æ¡¼¥¶Ì¾¤ä¥Ñ¥¹¥ï¡¼¥É¤ä¥»¥Ã¥·¥ç¥ó¾ð" | 261 | "¤Ê¤¯¤È¤â¥Í¥Ã¥È¥ï¡¼¥¯¾å¤ò°Å¹æ²½¤µ¤ì¤Æ¤¤¤Ê¤¤¥æ¡¼¥¶Ì¾ ¤ä¥Ñ¥¹¥ï¡¼¥É¤ä¥»¥Ã¥·¥ç¥ó¾ð" |
260 | "Êó¤¬Î®¤ì¤Ê¤¤¤è¤¦¤Ë¤¹¤ë¤³¤È¤ò¤ª´«¤á¤·¤Þ¤¹¡£" | 262 | "Êó¤¬Î®¤ì¤Ê¤¤¤è¤¦¤Ë¤¹¤ë¤³¤È¤ò¤ª´«¤á¤·¤Þ¤¹¡£" |
261 | 263 | ||
262 | #. Description | 264 | #. Description |
@@ -272,8 +274,8 @@ msgid "" | |||
272 | "the old (non-free) SSH installation." | 274 | "the old (non-free) SSH installation." |
273 | msgstr "" | 275 | msgstr "" |
274 | "IDEA ¤Ç°Å¹æ²½¤µ¤ì¤¿¸Å¤¤¥¡¼¤¬ /etc/ssh/ssh_host_key ¤Ë¤¢¤ê¤Þ¤¹¡£ OpenSSH ¤Ï¤³" | 276 | "IDEA ¤Ç°Å¹æ²½¤µ¤ì¤¿¸Å¤¤¥¡¼¤¬ /etc/ssh/ssh_host_key ¤Ë¤¢¤ê¤Þ¤¹¡£ OpenSSH ¤Ï¤³" |
275 | "¤Î¥Û¥¹¥È¥¡¼¥Õ¥¡¥¤¥ë¤ò°·¤¨¤Þ¤»¤ó¡£¤Þ¤¿¡¢º£¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë¸Å¤¤ (¥Õ¥ê¡¼" | 277 | "¤Î¥Û¥¹¥È¥¡¼¥Õ¥¡¥¤¥ë¤ò°·¤¨¤Þ¤»¤ó¡£¤Þ¤¿¡¢º£¥¤¥ó¥¹¥È¡¼¥ë ¤µ¤ì¤Æ¤¤¤ë¸Å¤¤ (¥Õ¥ê¡¼" |
276 | "¤Ç¤Ï¤Ê¤¤) SSH ¤Ë¤Ï ssh-keygen ¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" | 278 | "¤Ç¤Ï¤Ê¤¤) SSH ¤Ë¤Ï ssh-keygen ¥æ¡¼¥Æ¥£¥ê¥Æ¥£ ¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" |
277 | 279 | ||
278 | #. Description | 280 | #. Description |
279 | #: ../templates.master:114 | 281 | #: ../templates.master:114 |
@@ -291,8 +293,8 @@ msgid "" | |||
291 | "You have the option of installing the ssh-keysign helper with the SUID bit " | 293 | "You have the option of installing the ssh-keysign helper with the SUID bit " |
292 | "set." | 294 | "set." |
293 | msgstr "" | 295 | msgstr "" |
294 | "ssh-keysign ¥Ø¥ë¥Ñ¡¼¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¡¢SUID ¥Ó¥Ã¥È¤òÀßÄꤹ¤ë¤«¤·¤Ê¤¤¤«¤òÁª" | 296 | "ssh-keysign ¥Ø¥ë¥Ñ¡¼¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¡¢SUID ¥Ó¥Ã¥È¤òÀßÄꤹ¤ë¤« ¤·¤Ê¤¤¤«¤ò" |
295 | "¤Ö¤³¤È¤¬¤Ç¤¤Þ¤¹¡£" | 297 | "Áª¤Ö¤³¤È¤¬¤Ç¤¤Þ¤¹¡£" |
296 | 298 | ||
297 | #. Description | 299 | #. Description |
298 | #: ../templates.master:124 | 300 | #: ../templates.master:124 |
@@ -300,8 +302,8 @@ msgid "" | |||
300 | "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-" | 302 | "If you make ssh-keysign SUID, you will be able to use SSH's Protocol 2 host-" |
301 | "based authentication." | 303 | "based authentication." |
302 | msgstr "" | 304 | msgstr "" |
303 | "ssh-keysign ¤ò SUID ¤ËÀßÄꤷ¤¿¾ì¹ç¡¢SSH ¥×¥í¥È¥³¥ë 2 ¤Î¥Û¥¹¥È¤Ë´ð¤Å¤¯Ç§¾Ú¤ò»È" | 305 | "ssh-keysign ¤ò SUID ¤ËÀßÄꤷ¤¿¾ì¹ç¡¢SSH ¥×¥í¥È¥³¥ë 2 ¤Î¥Û¥¹¥È¤Ë ´ð¤Å¤¯Ç§¾Ú¤ò" |
304 | "¤¦¤³¤È¤¬¤Ç¤¤Þ¤¹¡£" | 306 | "»È¤¦¤³¤È¤¬¤Ç¤¤Þ¤¹¡£" |
305 | 307 | ||
306 | #. Description | 308 | #. Description |
307 | #: ../templates.master:124 | 309 | #: ../templates.master:124 |
@@ -310,11 +312,11 @@ msgid "" | |||
310 | "can change your mind later by running: dpkg-reconfigure ssh" | 312 | "can change your mind later by running: dpkg-reconfigure ssh" |
311 | msgstr "" | 313 | msgstr "" |
312 | "¤è¤¯Ê¬¤«¤é¤Ê¤¤¾ì¹ç¤Ï¡¢SUID ¤ò͸ú¤Ë¤¹¤ë¤³¤È¤ò¤ª´«¤á¤·¤Þ¤¹¡£¤â¤· ÌäÂ꤬µ¯¤³¤ì" | 314 | "¤è¤¯Ê¬¤«¤é¤Ê¤¤¾ì¹ç¤Ï¡¢SUID ¤ò͸ú¤Ë¤¹¤ë¤³¤È¤ò¤ª´«¤á¤·¤Þ¤¹¡£¤â¤· ÌäÂ꤬µ¯¤³¤ì" |
313 | "¤Ð¡¢dpkg-reconfigure ssh ¤ò¼Â¹Ô¤¹¤ë¤³¤È¤ÇÀßÄê¤òÊѹ¹¤¹¤ë¤³¤È¤¬¤Ç¤¤Þ¤¹¡£" | 315 | "¤Ð¡¢dpkg-reconfigure ssh ¤ò¼Â¹Ô¤¹¤ë¤³¤È¤ÇÀßÄê¤òÊѹ¹ ¤¹¤ë¤³¤È¤¬¤Ç¤¤Þ¤¹¡£" |
314 | 316 | ||
315 | #. Description | 317 | #. Description |
316 | #: ../templates.master:137 | 318 | #: ../templates.master:137 |
317 | msgid "Do you want to run the sshd server?" | 319 | msgid "Do you want to run the sshd server ?" |
318 | msgstr "sshd ¥µ¡¼¥Ð¤ò¼Â¹Ô¤·¤Þ¤¹¤«?" | 320 | msgstr "sshd ¥µ¡¼¥Ð¤ò¼Â¹Ô¤·¤Þ¤¹¤«?" |
319 | 321 | ||
320 | #. Description | 322 | #. Description |
@@ -328,8 +330,8 @@ msgid "" | |||
328 | "Normally the sshd Secure Shell Server will be run to allow remote logins via " | 330 | "Normally the sshd Secure Shell Server will be run to allow remote logins via " |
329 | "ssh." | 331 | "ssh." |
330 | msgstr "" | 332 | msgstr "" |
331 | "Ä̾sshd ¥»¥¥å¥¢¥·¥§¥ë¥µ¡¼¥Ð¤Ï¡¢ssh ¤òÍѤ¤¤¿¥ê¥â¡¼¥È¤«¤é¤Î¥í¥°¥¤¥ó¤ò²Äǽ¤Ë" | 333 | "Ä̾sshd ¥»¥¥å¥¢¥·¥§¥ë¥µ¡¼¥Ð¤Ï¡¢ssh ¤òÍѤ¤¤¿¥ê¥â¡¼¥È¤«¤é¤Î¥í¥°¥¤¥ó ¤ò²Äǽ" |
332 | "¤¹¤ë¤¿¤á¤Ë¼Â¹Ô¤·¤Þ¤¹¡£" | 334 | "¤Ë¤¹¤ë¤¿¤á¤Ë¼Â¹Ô¤·¤Þ¤¹¡£" |
333 | 335 | ||
334 | #. Description | 336 | #. Description |
335 | #: ../templates.master:137 | 337 | #: ../templates.master:137 |
@@ -338,9 +340,9 @@ msgid "" | |||
338 | "on this machine, and don't want to log into it at all using ssh, then you " | 340 | "on this machine, and don't want to log into it at all using ssh, then you " |
339 | "can disable sshd here." | 341 | "can disable sshd here." |
340 | msgstr "" | 342 | msgstr "" |
341 | "¤â¤· ssh ¥¯¥é¥¤¥¢¥ó¥È¤ò»È¤Ã¤Æ¤³¤Î¥Þ¥·¥ó¤«¤é¾¥Þ¥·¥ó¤Ø¤ÈÀܳ¤¹¤ë¤À¤±¤Ç¡¢¤³¤Î¥Þ" | 343 | "¤â¤· ssh ¥¯¥é¥¤¥¢¥ó¥È¤ò»È¤Ã¤Æ¤³¤Î¥Þ¥·¥ó¤«¤é¾¥Þ¥·¥ó¤Ø¤ÈÀܳ¤¹¤ë¤À¤±¤Ç ¤Ç¡¢¤³" |
342 | "¥·¥ó¤Ø¤È ssh ¤ò»È¤Ã¤Æ¥í¥°¥¤¥ó¤·¤Ê¤¤¤Î¤Ç¤·¤¿¤é¡¢¤³¤³¤Ç sshd ¤ò¼Â¹Ô¤·¤Ê¤¤¤Ç¤ª¤" | 344 | "¤Î¥Þ¥·¥ó¤Ø¤È ssh ¤ò»È¤Ã¤Æ¥í¥°¥¤¥ó¤·¤Ê¤¤¤Î¤Ç¤·¤¿¤é¡¢¤³¤³¤Ç sshd ¤ò¼Â¹Ô¤·¤Ê¤¤¤Ç" |
343 | "¤Þ¤¹¡£" | 345 | "¤ª¤¤Þ¤¹¡£" |
344 | 346 | ||
345 | #. Description | 347 | #. Description |
346 | #: ../templates.master:149 | 348 | #: ../templates.master:149 |
@@ -355,10 +357,10 @@ msgid "" | |||
355 | "are using this option in an authorized_keys file, beware that the keys in " | 357 | "are using this option in an authorized_keys file, beware that the keys in " |
356 | "question will no longer work until the option is removed." | 358 | "question will no longer work until the option is removed." |
357 | msgstr "" | 359 | msgstr "" |
358 | "ËܥС¼¥¸¥ç¥ó¤Î OpenSSH ¤Ï¡¢¸ø³«¸°¤Î´Ä¶¥ª¥×¥·¥ç¥ó¤ò¥Ç¥Õ¥©¥ë¥È¤Ç̵¸ú¤ËÀßÄꤷ¤Æ" | 360 | "ËܥС¼¥¸¥ç¥ó¤Î OpenSSH ¤Ï¡¢¸ø³«¸°¤Î´Ä¶¥ª¥×¥·¥ç¥ó¤ò¥Ç¥Õ¥©¥ë¥È¤Ç ̵¸ú¤ËÀßÄꤷ" |
359 | "¤¤¤Þ¤¹¡£LD_PRELOAD ¤Ê¤É¤Î¹¶·â¤òÈò¤±¤ë¤¿¤á¤Ç¤¹¡£¤â¤· authorized_keys ¥Õ¥¡¥¤¥ë" | 361 | "¤Æ¤¤¤Þ¤¹¡£LD_PRELOAD ¤Ê¤É¤Î¹¶·â¤òÈò¤±¤ë¤¿¤á¤Ç¤¹¡£ ¤â¤· authorized_keys ¥Õ¥¡¥¤" |
360 | "¤Ç¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¤¤¤ë¾ì¹ç¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤ò½üµî¤·¤Ê¤¤¸Â¤ê¤Ï¤½¤Î¸°¤Ï" | 362 | "¥ë¤Ç¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¤¤¤ë¾ì¹ç¡¢ ¤³¤Î¥ª¥×¥·¥ç¥ó¤ò½üµî¤·¤Ê¤¤¸Â¤ê¤Ï¤½¤Î¸°" |
361 | "ÍøÍѤǤ¤Ê¤¤¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£" | 363 | "¤ÏÍøÍѤǤ¤Ê¤¤¤³¤È¤ËÃí°Õ ¤·¤Æ¤¯¤À¤µ¤¤¡£" |
362 | 364 | ||
363 | #. Description | 365 | #. Description |
364 | #: ../templates.master:149 | 366 | #: ../templates.master:149 |
@@ -367,6 +369,15 @@ msgid "" | |||
367 | "sshd_config after the upgrade is complete, taking note of the warning in the " | 369 | "sshd_config after the upgrade is complete, taking note of the warning in the " |
368 | "sshd_config(5) manual page." | 370 | "sshd_config(5) manual page." |
369 | msgstr "" | 371 | msgstr "" |
370 | "¤³¤Î¥ª¥×¥·¥ç¥ó¤òºÆ¤Ó͸ú¤Ë¤¹¤ë¤Ë¤Ï¡¢¥¢¥Ã¥×¥°¥ì¡¼¥É½ªÎ»¸å¤Ë¡¢sshd_config(5) ¥Þ" | 372 | "¤³¤Î¥ª¥×¥·¥ç¥ó¤òºÆ¤Ó͸ú¤Ë¤¹¤ë¤Ë¤Ï¡¢¥¢¥Ã¥×¥°¥ì¡¼¥É½ªÎ»¸å¤Ë¡¢ sshd_config(5) " |
371 | "¥Ë¥å¥¢¥ë¥Ú¡¼¥¸¤Î·Ù¹ð»ö¹à¤òÆɤó¤Ç¡¢ /etc/ssh/sshd_config ¥Õ¥¡¥¤¥ë¤Ë" | 373 | "¥Þ¥Ë¥å¥¢¥ë¥Ú¡¼¥¸¤Î·Ù¹ð»ö¹à¤òÆɤó¤Ç¡¢ /etc/ssh/sshd_config ¥Õ¥¡¥¤¥ë¤Ë" |
372 | "¡ÖPermitUserEnvironment yes¡×¤ÈÀßÄꤷ¤Æ¤¯¤À¤µ¤¤¡£" | 374 | "¡ÖPermitUserEnvironment yes¡×¤È ÀßÄꤷ¤Æ¤¯¤À¤µ¤¤¡£" |
375 | |||
376 | #~ msgid "" | ||
377 | #~ "NB! If you are running a 2.0 series Linux kernel, then privilege " | ||
378 | #~ "separation will not work at all, and your sshd will fail to start unless " | ||
379 | #~ "you explicitly turn privilege separation off." | ||
380 | #~ msgstr "" | ||
381 | #~ "Ãí°Õ! Linux ¥«¡¼¥Í¥ë¤Î¥Ð¡¼¥¸¥ç¥ó 2.0 ·ÏÎó¤ò»È¤Ã¤Æ¤¤¤ë¾ì¹ç¡¢Æø¢ ʬΥ¤ÏÁ´¤¯" | ||
382 | #~ "Æ°ºî¤·¤Þ¤»¤ó¡£ÌÀ¼¨Åª¤ËÆø¢Ê¬Î¥¤ò̵¸ú¤Ë¤·¤Ê¤¤¸Â¤ê¡¢sshd ¤Ïµ¯Æ°¤Ë¼ºÇÔ¤·¤Þ" | ||
383 | #~ "¤¹¡£" | ||
diff --git a/debian/po/pl.po b/debian/po/pl.po index 853144294..6910ceaf7 100644 --- a/debian/po/pl.po +++ b/debian/po/pl.po | |||
@@ -16,7 +16,7 @@ msgid "" | |||
16 | msgstr "" | 16 | msgstr "" |
17 | "Project-Id-Version: PACKAGE VERSION\n" | 17 | "Project-Id-Version: PACKAGE VERSION\n" |
18 | "Report-Msgid-Bugs-To: \n" | 18 | "Report-Msgid-Bugs-To: \n" |
19 | "POT-Creation-Date: 2003-09-12 21:03+0100\n" | 19 | "POT-Creation-Date: 2003-08-27 02:20+0100\n" |
20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | 20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
22 | "Language-Team: LANGUAGE <LL@li.org>\n" | 22 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -73,9 +73,9 @@ msgstr "" | |||
73 | #, fuzzy | 73 | #, fuzzy |
74 | msgid "" | 74 | msgid "" |
75 | "Since you've opted to have me generate an sshd_config file for you, you can " | 75 | "Since you've opted to have me generate an sshd_config file for you, you can " |
76 | "choose whether or not to have privilege separation turned on or not. Unless " | 76 | "choose whether or not to have Privilege Separation turned on or not. Unless " |
77 | "you know you need to use PAM features that won't work with this option, you " | 77 | "you know you need to use PAM features that won't work with this option, you " |
78 | "should enable it." | 78 | "should say yes here." |
79 | msgstr "" | 79 | msgstr "" |
80 | "Zdecydowa³e¶ siê na to abym wygenerowa³ dla ciebie plik sshd_config, i " | 80 | "Zdecydowa³e¶ siê na to abym wygenerowa³ dla ciebie plik sshd_config, i " |
81 | "mo¿esz wybraæ czy chcesz w³±czyæ Separacjê Uprawnieñ, czy te¿ nie. Je¶li nie " | 81 | "mo¿esz wybraæ czy chcesz w³±czyæ Separacjê Uprawnieñ, czy te¿ nie. Je¶li nie " |
@@ -183,8 +183,7 @@ msgstr "" | |||
183 | 183 | ||
184 | #. Description | 184 | #. Description |
185 | #: ../templates.master:78 | 185 | #: ../templates.master:78 |
186 | #, fuzzy | 186 | msgid "Do you want to continue (and risk killing active ssh sessions) ?" |
187 | msgid "Do you want to continue (and risk killing active ssh sessions)?" | ||
188 | msgstr "Czy chcesz kontynuowaæ (i ryzykowaæ zabicie aktywnych sesji ssh) ?" | 187 | msgstr "Czy chcesz kontynuowaæ (i ryzykowaæ zabicie aktywnych sesji ssh) ?" |
189 | 188 | ||
190 | #. Description | 189 | #. Description |
@@ -327,8 +326,7 @@ msgstr "" | |||
327 | 326 | ||
328 | #. Description | 327 | #. Description |
329 | #: ../templates.master:137 | 328 | #: ../templates.master:137 |
330 | #, fuzzy | 329 | msgid "Do you want to run the sshd server ?" |
331 | msgid "Do you want to run the sshd server?" | ||
332 | msgstr "Czy chcesz uruchamiaæ serwer sshd ?" | 330 | msgstr "Czy chcesz uruchamiaæ serwer sshd ?" |
333 | 331 | ||
334 | #. Description | 332 | #. Description |
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po index 9ac5f81ae..017d13cf4 100644 --- a/debian/po/pt_BR.po +++ b/debian/po/pt_BR.po | |||
@@ -15,7 +15,7 @@ msgid "" | |||
15 | msgstr "" | 15 | msgstr "" |
16 | "Project-Id-Version: openssh-3.6.1p2-5\n" | 16 | "Project-Id-Version: openssh-3.6.1p2-5\n" |
17 | "Report-Msgid-Bugs-To: \n" | 17 | "Report-Msgid-Bugs-To: \n" |
18 | "POT-Creation-Date: 2003-09-12 21:03+0100\n" | 18 | "POT-Creation-Date: 2003-08-27 02:20+0100\n" |
19 | "PO-Revision-Date: 2003-03-08 16:56+0300\n" | 19 | "PO-Revision-Date: 2003-03-08 16:56+0300\n" |
20 | "Last-Translator: André Luís Lopes <andrelop@debian.org>\n" | 20 | "Last-Translator: André Luís Lopes <andrelop@debian.org>\n" |
21 | "Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n" | 21 | "Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n" |
@@ -69,12 +69,11 @@ msgstr "" | |||
69 | 69 | ||
70 | #. Description | 70 | #. Description |
71 | #: ../templates.master:19 | 71 | #: ../templates.master:19 |
72 | #, fuzzy | ||
73 | msgid "" | 72 | msgid "" |
74 | "Since you've opted to have me generate an sshd_config file for you, you can " | 73 | "Since you've opted to have me generate an sshd_config file for you, you can " |
75 | "choose whether or not to have privilege separation turned on or not. Unless " | 74 | "choose whether or not to have Privilege Separation turned on or not. Unless " |
76 | "you know you need to use PAM features that won't work with this option, you " | 75 | "you know you need to use PAM features that won't work with this option, you " |
77 | "should enable it." | 76 | "should say yes here." |
78 | msgstr "" | 77 | msgstr "" |
79 | "Uma vez que você optou por permitir que o debconf gere o arquivo sshd_config " | 78 | "Uma vez que você optou por permitir que o debconf gere o arquivo sshd_config " |
80 | "para você, é possível escolher se você deseja ter ou não o recurso de " | 79 | "para você, é possível escolher se você deseja ter ou não o recurso de " |
@@ -190,8 +189,7 @@ msgstr "" | |||
190 | 189 | ||
191 | #. Description | 190 | #. Description |
192 | #: ../templates.master:78 | 191 | #: ../templates.master:78 |
193 | #, fuzzy | 192 | msgid "Do you want to continue (and risk killing active ssh sessions) ?" |
194 | msgid "Do you want to continue (and risk killing active ssh sessions)?" | ||
195 | msgstr "Deseja continuar (e arriscar acabar com sessões ssh ativas) ?" | 193 | msgstr "Deseja continuar (e arriscar acabar com sessões ssh ativas) ?" |
196 | 194 | ||
197 | #. Description | 195 | #. Description |
@@ -332,8 +330,7 @@ msgstr "" | |||
332 | 330 | ||
333 | #. Description | 331 | #. Description |
334 | #: ../templates.master:137 | 332 | #: ../templates.master:137 |
335 | #, fuzzy | 333 | msgid "Do you want to run the sshd server ?" |
336 | msgid "Do you want to run the sshd server?" | ||
337 | msgstr "Você quer executar o servidor sshd ?" | 334 | msgstr "Você quer executar o servidor sshd ?" |
338 | 335 | ||
339 | #. Description | 336 | #. Description |
diff --git a/debian/po/ru.po b/debian/po/ru.po index ddb40af47..bb33e63a1 100644 --- a/debian/po/ru.po +++ b/debian/po/ru.po | |||
@@ -16,7 +16,7 @@ msgid "" | |||
16 | msgstr "" | 16 | msgstr "" |
17 | "Project-Id-Version: PACKAGE VERSION\n" | 17 | "Project-Id-Version: PACKAGE VERSION\n" |
18 | "Report-Msgid-Bugs-To: \n" | 18 | "Report-Msgid-Bugs-To: \n" |
19 | "POT-Creation-Date: 2003-09-12 21:03+0100\n" | 19 | "POT-Creation-Date: 2003-08-27 02:20+0100\n" |
20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | 20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
22 | "Language-Team: LANGUAGE <LL@li.org>\n" | 22 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -62,9 +62,9 @@ msgstr "" | |||
62 | #: ../templates.master:19 | 62 | #: ../templates.master:19 |
63 | msgid "" | 63 | msgid "" |
64 | "Since you've opted to have me generate an sshd_config file for you, you can " | 64 | "Since you've opted to have me generate an sshd_config file for you, you can " |
65 | "choose whether or not to have privilege separation turned on or not. Unless " | 65 | "choose whether or not to have Privilege Separation turned on or not. Unless " |
66 | "you know you need to use PAM features that won't work with this option, you " | 66 | "you know you need to use PAM features that won't work with this option, you " |
67 | "should enable it." | 67 | "should say yes here." |
68 | msgstr "" | 68 | msgstr "" |
69 | 69 | ||
70 | #. Description | 70 | #. Description |
@@ -142,7 +142,7 @@ msgstr "" | |||
142 | 142 | ||
143 | #. Description | 143 | #. Description |
144 | #: ../templates.master:78 | 144 | #: ../templates.master:78 |
145 | msgid "Do you want to continue (and risk killing active ssh sessions)?" | 145 | msgid "Do you want to continue (and risk killing active ssh sessions) ?" |
146 | msgstr "÷Ù ÈÏÔÉÔÅ ÐÒÏÄÏÌÖÉÔØ (ÒÉÓËÕÑ ÐÏÔÅÒÑÔØ ÁËÔÉ×ÎÙÅ ssh-ÓÏÅÄÉÎÅÎÉÑ)?" | 146 | msgstr "÷Ù ÈÏÔÉÔÅ ÐÒÏÄÏÌÖÉÔØ (ÒÉÓËÕÑ ÐÏÔÅÒÑÔØ ÁËÔÉ×ÎÙÅ ssh-ÓÏÅÄÉÎÅÎÉÑ)?" |
147 | 147 | ||
148 | #. Description | 148 | #. Description |
@@ -288,7 +288,7 @@ msgstr "" | |||
288 | 288 | ||
289 | #. Description | 289 | #. Description |
290 | #: ../templates.master:137 | 290 | #: ../templates.master:137 |
291 | msgid "Do you want to run the sshd server?" | 291 | msgid "Do you want to run the sshd server ?" |
292 | msgstr "èÏÔÉÔÅ ÚÁÐÕÓÔÉÔØ ÓÅÒ×ÅÒ sshd?" | 292 | msgstr "èÏÔÉÔÅ ÚÁÐÕÓÔÉÔØ ÓÅÒ×ÅÒ sshd?" |
293 | 293 | ||
294 | #. Description | 294 | #. Description |
diff --git a/debian/po/templates.pot b/debian/po/templates.pot index 6d22b7ce4..42e6a9522 100644 --- a/debian/po/templates.pot +++ b/debian/po/templates.pot | |||
@@ -16,7 +16,7 @@ msgid "" | |||
16 | msgstr "" | 16 | msgstr "" |
17 | "Project-Id-Version: PACKAGE VERSION\n" | 17 | "Project-Id-Version: PACKAGE VERSION\n" |
18 | "Report-Msgid-Bugs-To: \n" | 18 | "Report-Msgid-Bugs-To: \n" |
19 | "POT-Creation-Date: 2003-09-12 21:03+0100\n" | 19 | "POT-Creation-Date: 2003-08-27 02:20+0100\n" |
20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | 20 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 21 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
22 | "Language-Team: LANGUAGE <LL@li.org>\n" | 22 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -62,9 +62,9 @@ msgstr "" | |||
62 | #: ../templates.master:19 | 62 | #: ../templates.master:19 |
63 | msgid "" | 63 | msgid "" |
64 | "Since you've opted to have me generate an sshd_config file for you, you can " | 64 | "Since you've opted to have me generate an sshd_config file for you, you can " |
65 | "choose whether or not to have privilege separation turned on or not. Unless " | 65 | "choose whether or not to have Privilege Separation turned on or not. Unless " |
66 | "you know you need to use PAM features that won't work with this option, you " | 66 | "you know you need to use PAM features that won't work with this option, you " |
67 | "should enable it." | 67 | "should say yes here." |
68 | msgstr "" | 68 | msgstr "" |
69 | 69 | ||
70 | #. Description | 70 | #. Description |
@@ -142,7 +142,7 @@ msgstr "" | |||
142 | 142 | ||
143 | #. Description | 143 | #. Description |
144 | #: ../templates.master:78 | 144 | #: ../templates.master:78 |
145 | msgid "Do you want to continue (and risk killing active ssh sessions)?" | 145 | msgid "Do you want to continue (and risk killing active ssh sessions) ?" |
146 | msgstr "" | 146 | msgstr "" |
147 | 147 | ||
148 | #. Description | 148 | #. Description |
@@ -256,7 +256,7 @@ msgstr "" | |||
256 | 256 | ||
257 | #. Description | 257 | #. Description |
258 | #: ../templates.master:137 | 258 | #: ../templates.master:137 |
259 | msgid "Do you want to run the sshd server?" | 259 | msgid "Do you want to run the sshd server ?" |
260 | msgstr "" | 260 | msgstr "" |
261 | 261 | ||
262 | #. Description | 262 | #. Description |
diff --git a/debian/templates.master b/debian/templates.master index 4d60e95da..a4005fd38 100644 --- a/debian/templates.master +++ b/debian/templates.master | |||
@@ -26,9 +26,9 @@ _Description: Enable Privilege separation | |||
26 | fail, and PAM keyboard-interactive authentication won't work. | 26 | fail, and PAM keyboard-interactive authentication won't work. |
27 | . | 27 | . |
28 | Since you've opted to have me generate an sshd_config file for you, you | 28 | Since you've opted to have me generate an sshd_config file for you, you |
29 | can choose whether or not to have privilege separation turned on or not. | 29 | can choose whether or not to have Privilege Separation turned on or not. |
30 | Unless you know you need to use PAM features that won't work with this | 30 | Unless you know you need to use PAM features that won't work with this |
31 | option, you should enable it. | 31 | option, you should say yes here. |
32 | 32 | ||
33 | Template: ssh/new_config | 33 | Template: ssh/new_config |
34 | Type: boolean | 34 | Type: boolean |
@@ -75,7 +75,7 @@ _Description: ssh2 keys merged in configuration files | |||
75 | Template: ssh/use_old_init_script | 75 | Template: ssh/use_old_init_script |
76 | Type: boolean | 76 | Type: boolean |
77 | Default: false | 77 | Default: false |
78 | _Description: Do you want to continue (and risk killing active ssh sessions)? | 78 | _Description: Do you want to continue (and risk killing active ssh sessions) ? |
79 | The version of /etc/init.d/ssh that you have installed, is likely to kill | 79 | The version of /etc/init.d/ssh that you have installed, is likely to kill |
80 | all running sshd instances. If you are doing this upgrade via an ssh | 80 | all running sshd instances. If you are doing this upgrade via an ssh |
81 | session, that would be a Bad Thing(tm). | 81 | session, that would be a Bad Thing(tm). |
@@ -134,7 +134,7 @@ _Description: Do you want /usr/lib/ssh-keysign to be installed SUID root? | |||
134 | Template: ssh/run_sshd | 134 | Template: ssh/run_sshd |
135 | Type: boolean | 135 | Type: boolean |
136 | Default: true | 136 | Default: true |
137 | _Description: Do you want to run the sshd server? | 137 | _Description: Do you want to run the sshd server ? |
138 | This package contains both the ssh client, and the sshd server. | 138 | This package contains both the ssh client, and the sshd server. |
139 | . | 139 | . |
140 | Normally the sshd Secure Shell Server will be run to allow remote logins | 140 | Normally the sshd Secure Shell Server will be run to allow remote logins |