From a6b119b9cefbbade76ecabd5f1848f1c319673fd Mon Sep 17 00:00:00 2001 From: root Date: Mon, 23 May 2005 01:53:59 +0000 Subject: [PATCH] bug fixes more code more lang updates --- includes/account.php | 108 ++++++++++++++---- includes/account_stuff.php | 2 +- includes/general.php | 14 ++- locale/bg.po | 2 +- locale/da.po | 2 +- locale/de.po | 16 +-- locale/es.po | 2 +- locale/fi.po | 82 +++++++------- locale/fr.po | 222 +++++++++++++++++++------------------ locale/he.po | 2 +- locale/hr.po | 2 +- locale/hu.po | 2 +- locale/it.po | 2 +- locale/ja.po | 2 +- locale/nl.po | 2 +- locale/pt.po | 2 +- locale/pt_BR.po | 184 +++++++++++++++--------------- locale/ro.po | 2 +- locale/ru.po | 2 +- locale/sv.po | 2 +- locale/tr.po | 2 +- locale/zh.po | 2 +- pages/account/10.php | 7 +- pages/account/16.php | 7 ++ pages/account/18.php | 5 +- pages/account/20.php | 5 +- pages/account/22.php | 7 +- pages/account/3.php | 23 ++-- pages/account/39.php | 2 +- pages/account/40.php | 2 +- pages/index/10.php | 2 +- pages/index/11.php | 2 +- pages/index/7.php | 2 +- pages/wot/2.php | 2 +- pages/wot/4.php | 2 +- scripts/clientcerts.php | 8 +- scripts/gpgcerts.php | 2 +- scripts/removedead.php | 4 +- scripts/servercerts.php | 8 +- www/account.php | 6 +- www/cps.php | 2 +- www/disputes.php | 4 +- www/index.php | 28 ++--- www/stats.php | 16 ++- www/wot.php | 10 +- 45 files changed, 459 insertions(+), 355 deletions(-) diff --git a/includes/account.php b/includes/account.php index 92b6f06..8e76a6a 100644 --- a/includes/account.php +++ b/includes/account.php @@ -1,5 +1,5 @@ + Copyright (C) 2004-2005 by Duane Groth This file is part of CAcert. @@ -62,7 +62,7 @@ $body .= "http://".$_SESSION['_config']['normalhostname']."/verify.php?type=email&emailid=$emailid&hash=$hash\n\n"; $body .= _("Best regards")."\n"._("CAcert.org Support!"); - sendmail($email, "[CAcert.org] "._("Email Probe"), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($email, "[CAcert.org] "._("Email Probe"), $body, "support@cacert.org", "", "", "CAcert Support"); showheader(_("My CAcert.org Account!")); printf(_("The email address '%s' has been added to the system, however before any certificates for this can be issued you need to open the link in a browser that has been sent to your email address."), $email); @@ -152,6 +152,14 @@ $_SESSION['_config']['codesign'] = 1; else $_SESSION['_config']['codesign'] = 0; + + $_SESSION['_config']['rootcert'] = 1; + if($_SESSION['profile']['points'] >= 50) + { + $_SESSION['_config']['rootcert'] = intval($_POST['rootcert']); + if($_SESSION['_config']['rootcert'] < 1 || $_SESSION['_config']['rootcert'] > 2) + $_SESSION['_config']['rootcert'] = 1; + } $id = 4; } @@ -206,7 +214,8 @@ $query = "insert into `emailcerts` set `CN`='$defaultemail', `keytype`='NS', `memid`='".$_SESSION['profile']['id']."', `created`=FROM_UNIXTIME(UNIX_TIMESTAMP()), - `codesign`='".$_SESSION['_config']['codesign']."'"; + `codesign`='".$_SESSION['_config']['codesign']."', + `rootcert`='".$_SESSION['_config']['rootcert']."'"; mysql_query($query); $emailid = mysql_insert_id(); if(is_array($addys)) @@ -273,7 +282,8 @@ `memid`='".$_SESSION['profile']['id']."', `created`=FROM_UNIXTIME(UNIX_TIMESTAMP()), `subject`='$csrsubject', - `codesign`='".$_SESSION['_config']['codesign']."'"; + `codesign`='".$_SESSION['_config']['codesign']."', + `rootcert`='".$_SESSION['_config']['rootcert']."'"; mysql_query($query); $emailid = mysql_insert_id(); if(is_array($addys)) @@ -417,7 +427,7 @@ $body .= "http://".$_SESSION['_config']['normalhostname']."/verify.php?type=domain&domainid=$domainid&hash=$hash\n\n"; $body .= _("Best regards")."\n"._("CAcert.org Support!"); - sendmail($authaddy, "[CAcert.org] "._("Email Probe"), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($authaddy, "[CAcert.org] "._("Email Probe"), $body, "support@cacert.org", "", "", "CAcert Support"); showheader(_("My CAcert.org Account!")); printf(_("The domain '%s' has been added to the system, however before any certificates for this can be issued you need to open the link in a browser that has been sent to your email address."), $_SESSION['_config']['domain']); @@ -479,6 +489,14 @@ showfooter(); exit; } + + $_SESSION['_config']['rootcert'] = 1; + if($_SESSION['profile']['points'] >= 50) + { + $_SESSION['_config']['rootcert'] = intval($_POST['rootcert']); + if($_SESSION['_config']['rootcert'] < 1 || $_SESSION['_config']['rootcert'] > 2) + $_SESSION['_config']['rootcert'] = 1; + } } if($process != "" && $oldid == 11) @@ -494,22 +512,40 @@ } $subject = ""; + $count = 0; if(is_array($_SESSION['_config']['rows'])) foreach($_SESSION['_config']['rows'] as $row) - $subject .= "/CN=$row"; + { + $count++; + if($count <= 1) + { + $subject .= "/CN=$row"; + if(!strstr($subject, "=$row/") && + substr($subject, -strlen("=$row")) != "=$row") + $subject .= "/subjectAltName=$row"; + } else { + if(!strstr($subject, "=$row/") && + substr($subject, -strlen("=$row")) != "=$row") + $subject .= "/subjectAltName=$row"; + } + } if(is_array($_SESSION['_config']['altrows'])) foreach($_SESSION['_config']['altrows'] as $row) - $subject .= "/subjectAltName=$row"; + if(!strstr($subject, "=$row/") && + substr($subject, -strlen("=$row")) != "=$row") + $subject .= "/subjectAltName=$row"; if($_SESSION['_config']['rowid']['0'] > 0) { $query = "insert into `domaincerts` set `CN`='".$_SESSION['_config']['rows']['0']."', `domid`='".$_SESSION['_config']['rowid']['0']."', - `created`=NOW(),`subject`='$subject'"; + `created`=NOW(),`subject`='$subject', + `rootcert`='".$_SESSION['_config']['rootcert']."'"; } else { $query = "insert into `domaincerts` set `CN`='".$_SESSION['_config']['altrows']['0']."', `domid`='".$_SESSION['_config']['altid']['0']."', - `created`=NOW(),`subject`='$subject'"; + `created`=NOW(),`subject`='$subject', + `rootcert`='".$_SESSION['_config']['rootcert']."'"; } mysql_query($query); $CSRid = mysql_insert_id(); @@ -570,7 +606,7 @@ $row = mysql_fetch_assoc($res); $query = "insert into `domaincerts` set `domid`='".$row['domid']."', `CN`='".$row['CN']."', `csr_name`='".$row['csr_name']."', `created`='".$row['created']."', - `modified`=NOW()"; + `modified`=NOW(), `rootcert`='".$row['rootcert']."'"; mysql_query($query); $newid = mysql_insert_id(); $newfile = $_SESSION['_config']['filepath']."/csr/server-$newid.csr"; @@ -595,12 +631,28 @@ } $subject = ""; + $count = 0; if(is_array($_SESSION['_config']['rows'])) foreach($_SESSION['_config']['rows'] as $row) - $subject .= "/CN=$row"; + { + $count++; + if($count <= 1) + { + $subject .= "/CN=$row"; + if(!strstr($subject, "=$row/") && + substr($subject, -strlen("=$row")) != "=$row") + $subject .= "/subjectAltName=$row"; + } else { + if(!strstr($subject, "=$row/") && + substr($subject, -strlen("=$row")) != "=$row") + $subject .= "/subjectAltName=$row"; + } + } if(is_array($_SESSION['_config']['altrows'])) foreach($_SESSION['_config']['altrows'] as $row) - $subject .= "/subjectAltName=$row"; + if(!strstr($subject, "=$row/") && + substr($subject, -strlen("=$row")) != "=$row") + $subject .= "/subjectAltName=$row"; mysql_query("update `domaincerts` set `subject`='$subject',`csr_name`='$newfile' where `id`='$newid'"); @@ -707,7 +759,8 @@ $row = mysql_fetch_assoc($res); $query = "insert into `emailcerts` set `memid`='".$row['memid']."', `CN`='".$row['CN']."', `keytype`='".$row['keytype']."', `csr_name`='".$row['csr_name']."', - `created`='".$row['created']."', `modified`=NOW()"; + `created`='".$row['created']."', `modified`=NOW(), + `rootcert`='".$row['rootcert']."'"; mysql_query($query); $newid = mysql_insert_id(); $newfile = $_SESSION['_config']['filepath']."/csr/client-$newid.csr"; @@ -948,6 +1001,10 @@ if($oldid == 16 && $process != "") { + $_SESSION['_config']['rootcert'] = intval($_POST['rootcert']); + if($_SESSION['_config']['rootcert'] < 1 || $_SESSION['_config']['rootcert'] > 2) + $_SESSION['_config']['rootcert'] = 1; + if(@count($_SESSION['_config']['emails']) > 0) $id = 17; } @@ -993,7 +1050,8 @@ $emails .= "SPKAC = ".str_replace("\n", "", str_replace("\r", "", $_POST['SPKAC'])); $query = "insert into `orgemailcerts` set `CN`='$defaultemail', `keytype`='NS', `orgid`='".$org['orgid']."', - `created`=FROM_UNIXTIME(UNIX_TIMESTAMP())"; + `created`=FROM_UNIXTIME(UNIX_TIMESTAMP()), + `rootcert`='".$_SESSION['_config']['rootcert']."'"; mysql_query($query); $emailid = mysql_insert_id(); @@ -1055,7 +1113,8 @@ $query = "insert into `orgemailcerts` set `CN`='$defaultemail', `keytype`='MS', `orgid`='".$org['orgid']."', `created`=FROM_UNIXTIME(UNIX_TIMESTAMP()), - `subject`='$csrsubject'"; + `subject`='$csrsubject', + `rootcert`='".$_SESSION['_config']['rootcert']."'"; mysql_query($query); $emailid = mysql_insert_id(); @@ -1111,7 +1170,8 @@ } $query = "insert into `orgemailcerts` set `orgid`='".$row['orgid']."', `CN`='".$row['CN']."', `keytype`='".$row['keytype']."', `csr_name`='".$row['csr_name']."', - `created`='".$row['created']."', `modified`=NOW(), `subject`='".$row['subject']."'"; + `created`='".$row['created']."', `modified`=NOW(), + `subject`='".$row['subject']."', `rootcert`='".$row['rootcert']."'"; mysql_query($query); $newid = mysql_insert_id(); $newfile = $_SESSION['_config']['filepath']."/csr/orgclient-$newid.csr"; @@ -1239,6 +1299,10 @@ showfooter(); exit; } + + $_SESSION['_config']['rootcert'] = intval($_POST['rootcert']); + if($_SESSION['_config']['rootcert'] < 1 || $_SESSION['_config']['rootcert'] > 2) + $_SESSION['_config']['rootcert'] = 1; } if($process != "" && $oldid == 21) @@ -1298,11 +1362,13 @@ { $query = "insert into `orgdomaincerts` set `CN`='".$_SESSION['_config']['rows']['0']."', `orgid`='".$org['id']."', - `created`=NOW(),`subject`='$csrsubject'"; + `created`=NOW(),`subject`='$csrsubject', + `rootcert`='".$_SESSION['_config']['rootcert']."'"; } else { $query = "insert into `orgdomaincerts` set `CN`='".$_SESSION['_config']['altrows']['0']."', `orgid`='".$org['id']."', - `created`=NOW(),`subject`='$csrsubject'"; + `created`=NOW(),`subject`='$csrsubject', + `rootcert`='".$_SESSION['_config']['rootcert']."'"; } mysql_query($query); $CSRid = mysql_insert_id(); @@ -1359,7 +1425,7 @@ } $query = "insert into `orgdomaincerts` set `orgid`='".$row['orgid']."', `CN`='".$row['CN']."', `csr_name`='".$row['csr_name']."', `created`='".$row['created']."', - `modified`=NOW(), `subject`='".$row['subject']."'"; + `modified`=NOW(), `subject`='".$row['subject']."', `rootcert`='".$row['rootcert']."'"; mysql_query($query); $newid = mysql_insert_id(); $newfile = $_SESSION['_config']['filepath']."/csr/orgserver-$newid.csr"; @@ -2061,7 +2127,7 @@ $body .= _("Best regards")."\n"; $body .= _("CAcert Support Team"); - sendmail($user['email'], "[CAcert.org] Thawte Notary Points Transfer", $body, "website-form@cacert.org", "returns@cacert.org", "", "CAcert Tverify"); + sendmail($user['email'], "[CAcert.org] Thawte Notary Points Transfer", $body, "website-form@cacert.org", "support@cacert.org", "", "CAcert Tverify"); } $rc = mysql_num_rows(mysql_query("select * from `tverify-vote` where `tverify`='$uid' and `vote`='-1'")); @@ -2082,7 +2148,7 @@ $body .= _("Best regards")."\n"; $body .= _("CAcert Support Team"); - sendmail($user['email'], "[CAcert.org] Thawte Notary Points Transfer", $body, "website-form@cacert.org", "returns@cacert.org", "", "CAcert Tverify"); + sendmail($user['email'], "[CAcert.org] Thawte Notary Points Transfer", $body, "website-form@cacert.org", "support@cacert.org", "", "CAcert Tverify"); } showheader(_("My CAcert.org Account!")); diff --git a/includes/account_stuff.php b/includes/account_stuff.php index 74008b6..2bce68f 100644 --- a/includes/account_stuff.php +++ b/includes/account_stuff.php @@ -62,7 +62,7 @@ case 19: $expand = " explode('clientorg');"; break; case 20: case 21: - case 21: + case 22: case 23: $expand = " explode('serverorg');"; break; case 24: case 25: diff --git a/includes/general.php b/includes/general.php index b78643f..e314933 100644 --- a/includes/general.php +++ b/includes/general.php @@ -1,5 +1,5 @@ + Copyright (C) 2004-2005 by Duane Groth This file is part of CAcert. @@ -53,13 +53,17 @@ "de_DE" => "Deutsch", "en_AU" => "English", "es_ES" => "Español", + "fi_FI" => "Suomi", "fr_FR" => "Français", + "he_IL" => "עברית", + "hr_HR" => "Hrvatski", "it_IT" => "Italiano", "ja_JP" => "日本語", "hu_HU" => "Magyar", "nl_NL" => "Nederlands", "pt_PT" => "Português", "pt_BR" => "Português Brasileiro", + "ro_RO" => "Română", "ru_RU" => "Русский", "sv_SE" => "Svenska", "tr_TR" => "Türkçe", @@ -584,17 +588,17 @@ $line = fgets($fp, 4096); if(substr($line, 0, 3) != "220") continue; - fputs($fp, "helo hlin.cacert.org\r\n"); + fputs($fp, "HELO hlin.cacert.org\r\n"); $line = fgets($fp, 4096); if(substr($line, 0, 3) != "250") continue; - fputs($fp, "mail from: returns@cacert.org\r\n"); + fputs($fp, "MAIL FROM: \r\n"); $line = fgets($fp, 4096); if(substr($line, 0, 3) != "250") continue; - fputs($fp, "rcpt to: $email\r\n"); + fputs($fp, "RCPT TO: <$email>\r\n"); $line = trim(fgets($fp, 4096)); - fputs($fp, "quit\r\n"); + fputs($fp, "QUIT\r\n"); fclose($fp); if(substr($line, 0, 3) != "250") diff --git a/locale/bg.po b/locale/bg.po index 964f0d0..939b599 100644 --- a/locale/bg.po +++ b/locale/bg.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:21:01+0000\n" +"PO-Revision-Date: 2005-05-21 02:03:00+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/da.po b/locale/da.po index f531cf8..76b1f1c 100644 --- a/locale/da.po +++ b/locale/da.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:21:10+0000\n" +"PO-Revision-Date: 2005-05-21 02:03:05+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/de.po b/locale/de.po index 070eb31..ba7ea2c 100644 --- a/locale/de.po +++ b/locale/de.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:21:18+0000\n" +"PO-Revision-Date: 2005-05-21 02:03:11+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -2830,7 +2830,7 @@ msgstr "" #: www/account/52.php:42 msgid "Current Points" -msgstr "Assurance Punkte" +msgstr "Aktuelle Punktzahl" #: www/disputes/6.php:16 #, php-format @@ -2959,7 +2959,7 @@ msgstr "" #: www/disputes.php:91 www/disputes.php:115 www/disputes.php:182 #: www/disputes.php:206 msgid "Invalid request. Can't continue." -msgstr "Die E-Mail-Adresse ist ungültig." +msgstr "Ungültige Anfrage. Fortfahren nicht möglich." #: includes/tverify_stuff.php:39 msgid "Main Website" @@ -3142,11 +3142,11 @@ msgstr "Aktualisieren" #: www/wot/2.php:26 msgid "Upon receiving your documents you will be notified, and points will be added to your account." -msgstr "Sobald Ihre Dokumente angekommen sind werden Sie informiert und die Punkte Ihrem Konto gutgeschrieben." +msgstr "Nach Eingang Ihrer Dokumente werden Sie benachrichtigt und die Punkte Ihrem Konto gutgeschrieben." #: www/account/12.php:18 www/account/5.php:18 msgid "View all certificates" -msgstr "Gültige Zertifikate" +msgstr "Alle Zertifikate anzeigen" #: www/disputes/1.php:20 msgid "Which Email?" @@ -3174,7 +3174,7 @@ msgstr "" #: includes/account.php:2010 msgid "You have already voted on this request." -msgstr "Sie haben keinen Zugang zu diesem Bereich." +msgstr "Sie haben für diese Anfrage bereits abgestimmt." #: www/disputes.php:416 #, php-format @@ -3209,7 +3209,7 @@ msgstr "" #: www/verify.php:34 msgid "You've attempted to verify the same email address a fourth time with an invalid hash, subsequently this request has been deleted in the system" -msgstr "Sie haben versucht dieselbe Domain mehrmals mit einem ungültigen Hash zu bestätigen, daher wird Ihre Anfrage aus dem System gelöscht." +msgstr "Sie haben zum vierten mal versucht die selbe E-Mail-Adresse mit einem ungültigen Hash zu bestätigen, daher wurde diese Anfrage aus dem System gelöscht." #: www/disputes.php:201 msgid "Your attempt to accept or reject a disputed domain is invalid due to the hash string not matching with the domain ID." @@ -3229,4 +3229,4 @@ msgstr "" #: includes/account.php:2089 msgid "Your vote has been accepted." -msgstr "Ihre Nachricht wurde versandt." +msgstr "Ihre Stimme wurde gezählt." diff --git a/locale/es.po b/locale/es.po index 570e95d..95468ea 100644 --- a/locale/es.po +++ b/locale/es.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:21:31+0000\n" +"PO-Revision-Date: 2005-05-21 02:03:16+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/fi.po b/locale/fi.po index d61bbbe..06fea95 100644 --- a/locale/fi.po +++ b/locale/fi.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:21:54+0000\n" +"PO-Revision-Date: 2005-05-21 02:03:27+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #: www/account/43.php:43 www/account/49.php:43 #, php-format msgid "%s rows displayed." -msgstr "Näytetään %s riviä" +msgstr "%s riviä näkyvillä." #: www/account/43.php:71 #, php-format @@ -57,7 +57,7 @@ msgstr "'%s' on nyt päivitetty tietokantaan." #: www/help/3.php:64 msgid "...then click 'Next'." -msgstr "...klikkaa 'Seuraava'." +msgstr "...valitse 'Seuraava'." #: www/wot/3.php:42 msgid "A CAcert Assurer who knowingly, or reasonably ought to have known, assures an applicant contrary to this policy may be held liable." @@ -92,11 +92,11 @@ msgstr "Lisää" #: www/account/7.php:19 msgid "Add Domain" -msgstr "Lisää domain" +msgstr "Lisää verkkotunnus" #: www/account/1.php:18 msgid "Add Email" -msgstr "Lisää email" +msgstr "Lisää sähköposti" #: www/account/16.php:22 www/account/2.php:24 www/account/3.php:31 #: www/account/9.php:23 @@ -154,7 +154,7 @@ msgstr "Ja se on siinä!" #: www/account/16.php:39 msgid "Another Email" -msgstr "Toinen email" +msgstr "Toinen sähköposti" #: includes/account.php:404 msgid "Any valid certificates will be revoked as well" @@ -245,7 +245,7 @@ msgstr "" #: www/account/15.php:32 www/account/23.php:32 msgid "Below is your Server Certificate" -msgstr "" +msgstr "Alla on palvelinvarmenteenne" #: www/index/0.php:53 www/index/0.php:63 www/index/0.php:73 www/index/0.php:83 #: www/index/0.php:93 www/index/0.php:103 www/index/0.php:113 @@ -345,7 +345,7 @@ msgstr "" #: includes/account.php:1464 includes/account.php:1515 www/account/30.php:34 #: www/account/31.php:30 www/account/34.php:34 msgid "Cancel" -msgstr "" +msgstr "Peru" #: includes/general_stuff.php:58 msgid "Cert Login" @@ -384,7 +384,7 @@ msgstr "" #: www/stats.php:31 msgid "Certificates Issued" -msgstr "" +msgstr "Myönnetyt varmenteet" #: www/index/0.php:64 msgid "Certificates expires in 12 months." @@ -409,7 +409,7 @@ msgstr "" #: includes/account_stuff.php:146 www/account/43.php:98 www/account/43.php:99 #: www/account/44.php:19 www/account/50.php:19 msgid "Change Password" -msgstr "" +msgstr "Vaihda salasanaa" #: www/help/3.php:36 msgid "Choose a filename to save the request to" @@ -525,7 +525,7 @@ msgstr "" #: www/account/11.php:32 www/account/21.php:35 www/account/24.php:37 #: www/account/27.php:40 msgid "Country" -msgstr "" +msgstr "Maa" #: www/account/36.php:23 www/index/1.php:112 msgid "Country Announcements" @@ -555,11 +555,11 @@ msgstr "" #: www/account/13.php:46 www/account/13.php:94 www/account/43.php:94 #: www/index/1.php:41 www/index/5.php:25 www/wot/6.php:47 msgid "Date of Birth" -msgstr "" +msgstr "Syntymäaika" #: www/account/2.php:21 msgid "Default" -msgstr "" +msgstr "Oletus" #: includes/account_stuff.php:146 msgid "Default Language" @@ -620,25 +620,25 @@ msgstr "" #: www/account/43.php:181 www/account/48.php:22 www/account/49.php:34 #: www/account/7.php:22 msgid "Domain" -msgstr "" +msgstr "Verkkotunnus" #: www/account/12.php:18 www/account/22.php:18 msgid "Domain Certificates" -msgstr "" +msgstr "Verkkotunnuksen varmenteet" #: includes/account_stuff.php:157 www/account/25.php:21 www/account/25.php:38 #: www/account/9.php:18 msgid "Domains" -msgstr "" +msgstr "Verkkotunnukset" #: www/account/0.php:23 msgid "Domains and Server Certificates." -msgstr "" +msgstr "Verkkotunnus- ja palvelinvarmenteet" #: includes/account_stuff.php:209 includes/general_stuff.php:108 #: www/account/38.php:15 www/index/13.php:15 msgid "Donations" -msgstr "" +msgstr "Lahjoitukset" #: www/error404.php:21 msgid "Due to recent site changes bookmarks may no longer be valid, please update your bookmarks." @@ -786,7 +786,7 @@ msgstr "" #: www/account/13.php:27 www/account/13.php:75 www/account/43.php:78 #: www/index/1.php:22 msgid "First Name" -msgstr "" +msgstr "Etunimi" #: includes/account.php:769 msgid "First and Last name fields can not be blank." @@ -863,7 +863,7 @@ msgstr "" #: www/help/2.php:16 msgid "Good question" -msgstr "" +msgstr "Hyvä kysymys" #: www/stats.php:102 msgid "Growth by year" @@ -875,7 +875,7 @@ msgstr "" #: www/help/0.php:1 msgid "Help!" -msgstr "" +msgstr "Apua!" #: www/account/19.php:54 www/account/6.php:52 msgid "Hit the 'Install your Certificate' button below to install the certificate into MS IE 5.x and above." @@ -891,7 +891,7 @@ msgstr "" #: www/wot/1.php:23 www/wot/7.php:26 msgid "Home" -msgstr "" +msgstr "Koti" #: www/help/2.php:8 msgid "How do I create my own digital signature?!" @@ -923,7 +923,7 @@ msgstr "" #: www/index/51.php:27 msgid "How?" -msgstr "" +msgstr "Kuinka?" #: includes/general_stuff.php:64 msgid "Howto Information" @@ -1118,7 +1118,7 @@ msgstr "" #: includes/general_stuff.php:53 msgid "Join" -msgstr "" +msgstr "Liity" #: includes/general_stuff.php:52 msgid "Join CAcert.org" @@ -1138,12 +1138,12 @@ msgstr "" #: www/wot/9.php:47 msgid "Language" -msgstr "" +msgstr "Kieli" #: www/account/13.php:37 www/account/13.php:85 www/account/43.php:86 #: www/index/1.php:32 msgid "Last Name" -msgstr "" +msgstr "Sukunimi" #: www/index/0.php:28 msgid "Latest News" @@ -1341,7 +1341,7 @@ msgstr "" #: www/account/16.php:35 www/wot/1.php:119 www/wot/6.php:43 msgid "Name" -msgstr "" +msgstr "Nimi" #: includes/account_stuff.php:154 includes/account_stuff.php:162 #: includes/account_stuff.php:167 includes/account_stuff.php:171 @@ -1407,7 +1407,7 @@ msgstr "" #: www/account/50.php:29 msgid "No" -msgstr "" +msgstr "Ei" #: www/account/3.php:52 msgid "No Name" @@ -1821,7 +1821,7 @@ msgstr "" #: www/wot/7.php:127 msgid "Search" -msgstr "" +msgstr "Hae" #: www/wot/7.php:120 msgid "Search this region" @@ -1833,7 +1833,7 @@ msgstr "" #: www/index/8.php:4 msgid "Secretary" -msgstr "" +msgstr "Sihteeri" #: www/help/2.php:36 msgid "Security is a serious matter. For a digital certificate with full rights to be issued to an individual by a Certificate Authority, stringent tests must be conducted, including meeting the physical person to verify their identity. At the current moment in time, my physical identity has not been verified by CAcert.org, but they have verified my email address. Installing their root certificate (see above) will thus automatically allow you to validate my digital signature. You can then be confident of the authenticity of my email address - only I have the ability to digitally sign my emails using my CAcert.org certificate, so if you get an email that I digitally signed and which is validated by your email software using the cacert.org root certificate that you installed, you know it's from me. (Visually you get a simple indication that my email is signed and trusted). Technically, they haven't verified that I really am me! But you have the guarantee that emails from my address are sent by the person who physically administers that address, i.e. me! The only way that someone could forge my digital signature would be if they logged on to my home computer (using the password) and ran my email software (using the password) to send you a digitally signed email from my address. Although I have noticed the cats watching me logon..." @@ -1878,7 +1878,7 @@ msgstr "" #: includes/account_stuff.php:161 msgid "Server Certificates" -msgstr "" +msgstr "Palvelinvarmenteet" #: www/index/0.php:80 msgid "Server certificates (un-assured)" @@ -2300,7 +2300,7 @@ msgstr "" #: www/account/29.php:23 www/account/30.php:23 msgid "Warning!" -msgstr "" +msgstr "Varoitus!" #: www/index/1.php:15 www/index/4.php:19 msgid "Warning! This site requires cookies to be enabled to ensure your privacy and security. This site uses session cookies to store temporary values to prevent people from copying and pasting the session ID to someone else exposing their account, personal details and identity theft as a result." @@ -2369,11 +2369,11 @@ msgstr "" #: www/account/43.php:194 www/account/43.php:229 www/wot/10.php:23 #: www/wot/10.php:56 msgid "Who" -msgstr "" +msgstr "Kuka" #: www/index/51.php:19 msgid "Who?" -msgstr "" +msgstr "Kuka?" #: www/help/2.php:3 www/help/2.php:19 msgid "Why digitally sign your own emails?! (weirdo..)" @@ -2393,7 +2393,7 @@ msgstr "" #: www/index/51.php:23 msgid "Why?" -msgstr "" +msgstr "Miksi?" #: www/help/7.php:8 msgid "With the proposed root certificate changes, there would be a new root, this would sign at least 1 sub-root, then the private key stored offline in a bank vault, with the sub-root doing all the signing, or alternatively 2 sub-roots, 1 for client certificates, one for server, the thinking behind this, if any of the sub-roots are compromised they can be revoked and reissued." @@ -2409,11 +2409,11 @@ msgstr "" #: www/wot/6.php:48 msgid "YYYY-MM-DD" -msgstr "" +msgstr "VVVV-KK-PP" #: www/account/50.php:29 msgid "Yes" -msgstr "" +msgstr "Kyllä" #: www/account/39.php:52 www/index/10.php:52 msgid "You are able to update, add and remove your information at any time via our web interface, log into the 'My Account' and then click on the 'My Details' section, and then click the relevant link" @@ -2612,7 +2612,7 @@ msgstr "" #: www/account/40.php:26 www/account/40.php:44 www/index/11.php:26 #: www/index/11.php:44 msgid "Your Name" -msgstr "" +msgstr "Nimesi" #: includes/account.php:846 www/index.php:106 msgid "Your Pass Phrase has been updated and your primary email account has been notified of the change." @@ -2680,12 +2680,12 @@ msgstr "" #: www/help/3.php:48 msgid "and" -msgstr "" +msgstr "ja" #: www/account/13.php:47 www/account/13.php:95 www/index/1.php:42 #: www/index/5.php:26 msgid "dd/mm/yyyy" -msgstr "" +msgstr "pp/kk/vvvv" #: www/help/6.php:3 www/help/6.php:5 www/help/6.php:9 msgid "here" @@ -3146,7 +3146,7 @@ msgstr "" #: www/account/12.php:18 www/account/5.php:18 msgid "View all certificates" -msgstr "" +msgstr "Näytä kaikki varmenteet" #: www/disputes/1.php:20 msgid "Which Email?" diff --git a/locale/fr.po b/locale/fr.po index 88d8a15..5a189b1 100644 --- a/locale/fr.po +++ b/locale/fr.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:21:41+0000\n" +"PO-Revision-Date: 2005-05-21 02:03:21+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" #: www/account/43.php:43 www/account/49.php:43 #, php-format msgid "%s rows displayed." -msgstr "%s lignes affichées." +msgstr "Nouveau certificat client" #: www/account/43.php:71 #, php-format @@ -349,7 +349,7 @@ msgstr "Annuler" #: includes/general_stuff.php:58 msgid "Cert Login" -msgstr "Acces/authentification par certificat" +msgstr "Accès/authentification par certificat" #: www/account/19.php:101 www/account/6.php:99 msgid "Certificate Installation Complete!" @@ -1393,7 +1393,7 @@ msgstr "Nouveaux utilisateurs" #: includes/general_stuff.php:63 msgid "News" -msgstr "Nouveaux" +msgstr "Nouvelles" #: www/account/16.php:40 www/account/24.php:45 www/account/3.php:70 #: www/account/42.php:26 www/account/44.php:30 www/account/48.php:26 @@ -1890,7 +1890,7 @@ msgstr "Dans un court instant, la personne que vous accréditez et vous m& #: www/account/40.php:51 www/index/11.php:51 msgid "Snail Mail" -msgstr "Email Escargot (?)" +msgstr "Courrier postal... transmis à la vitesse de l'escargot" #: www/help/2.php:50 msgid "So if you don't pass the audit, you don't get to be a Certificate Authority. And to pass the audit, well, you've got to show that you can do a good job issuing certificates. That they're secure, you only give them to the right people, etc. So what happens when you make a mistake and you erroneously issue a certificate that risks the entire Internet browsing population, like Verisign did? Well, er, nothing actually. They already paid for their audit, and damn it, they're so big now, we couldn't possibly revoke their Certificate Authority status. (There's too much money at stake!)" @@ -2015,7 +2015,7 @@ msgstr "Le mot de passe que vous avez fourni est trop court. Il doit contenir au #: www/help/2.php:59 msgid "The Regulation of Investigational Powers Act (RIPA)</a> ('Snooping Bill' official gov site, UK)" -msgstr "La loi sur la règlementation du pouvoir d'investigation AKA 'The Regulation of Investigational Powers Act' (RIPA) (aussi nommée 'Snooping Bill' d'après le site web officiel du gouvernement britanique)" +msgstr "La loi sur la règlementation du pouvoir d'investigation AKA 'The Regulation of Investigational Powers Act' (RIPA) (aussi nommée 'Snooping Bill' d'après le site web officiel du gouvernement britannique)" #: www/account/0.php:28 msgid "The Web of Trust system CAcert uses is similar to that many involved with GPG/PGP use, they hold face to face meetings to verify each others photo identities match their GPG/PGP key information. CAcert differs however in that we have modified things to work within the PKI framework, for you to gain trust in the system you must first locate someone already trusted. The trust person depending how many people they've trusted or meet before will determine how many points they can issue to you (the number of points they can issue is listed in the locate assurer section). Once you've met up you can show your ID and you will need to fill out a CAP form which the person assuring your details must retain for verification reasons. You can also get trust points via the Trust Third Party system where you go to a lawyer, bank manager, accountant, or public notary/juctise of the peace and they via your ID and fill in the TTP form to state they have viewed your ID documents and it appears authentic and true. More information on the TTP system can be found in the TTP sub-menu" @@ -2225,7 +2225,7 @@ msgstr "FAQ/Wiki non officielle" #: www/account/2.php:34 www/account/9.php:40 msgid "Unverified" -msgstr "Non accrédité" +msgstr "Non validé" #: www/account/13.php:123 www/account/27.php:48 www/account/29.php:35 #: www/account/41.php:36 www/wot/8.php:35 @@ -2792,83 +2792,83 @@ msgstr "Vous avez reçu %s points, toutefois, le système a ré #: www/wot.php:49 msgid "A reminder notice has been sent." -msgstr "Votre message a été envoyé." +msgstr "Une notification de rappel a été envoyée." #: includes/account_stuff.php:214 www/disputes/0.php:19 msgid "Abuses" -msgstr "" +msgstr "Abus" #: www/disputes/4.php:26 www/disputes/6.php:26 msgid "Accept Dispute" -msgstr "" +msgstr "Accepter la Contestation" #: www/wot/10.php:19 msgid "Assurer Ranking" -msgstr "Accréditeurs" +msgstr "Classement des Accréditeurs" #: www/index/16.php:24 www/index/3.php:24 msgid "CAcert's GPG Key" -msgstr "Clé GPG de basse confiance (Low Trust)" +msgstr "Clé GPG de CAcert" #: www/account/52.php:39 msgid "Certificate Subject" -msgstr "Certificats Client délivrés" +msgstr "Sujet du Certificat" #: www/index/16.php:17 www/index/3.php:17 msgid "Click here if you want to import the root certificate into Microsoft Internet Explorer" -msgstr "Cliquer ici si vous voulez importer les certificats racine dans Microsoft Internet Explorer" +msgstr "Cliquez ici si vous voulez importer les certificats racine dans Microsoft Internet Explorer" #: www/account/52.php:48 msgid "Comment" -msgstr "Commentaires" +msgstr "Commentaire" #: includes/account.php:478 includes/account.php:491 includes/account.php:592 #: includes/account.php:1238 includes/account.php:1251 #: includes/account.php:1859 includes/account.php:1884 msgid "CommonName field was blank. This is usually caused by entering your own name when openssl prompt's you for 'YOUR NAME', or if you try to issue certificates for domains you haven't already verified, as such this process can't continue." -msgstr "" +msgstr "Le champ du Nom Commun (CommonName) était vide. Ceci est habituellement provoqué en écrivant votre propre nom quand OpenSSL vous demande 'VOTRE NOM' ('YOUR NAME'), ou si vous essayez de délivrer des certificats pour des domaines que vous n'avez pas vérifié, dans ce cas le processus ne peut pas continuer. " #: www/account/52.php:42 msgid "Current Points" -msgstr "Points d'accréditation" +msgstr "Décompte actuel des Points" #: www/disputes/6.php:16 #, php-format msgid "Currently the domain '%s' is in dispute, you have been sent an email to resolve the issue, below you have the option to accept, reject or report the request as fraudulent." -msgstr "" +msgstr "Actuellement le domaine '%s' est contesté, vous allez recevoir un email pour résoudre ce problème, ainsi vous avez l'option d'accepter, de rejeter ou de déclarer la demande comme frauduleuse. " #: www/disputes/4.php:16 #, php-format msgid "Currently the email '%s' is in dispute, you have been sent an email to resolve the issue, below you have the option to accept, reject or report the request as fraudulent." -msgstr "" +msgstr "Actuellement l'email '%s' est contesté, vous allez recevoir un email pour résoudre ce problème, ainsi vous aurez l'option d'accepter, de rejeter ou de déclarer la demande comme frauduleuse. " #: www/account/1.php:31 www/account/7.php:33 msgid "Currently we only issue certificates for Punycode domains if the person requesting them has code signing attributes attached to their account, as these have potentially slightly higher security risk." -msgstr "" +msgstr "Actuellement nous fournissons seulement des certificats pour les domaines en Unicode aux personnes ayant l'attribut de signature de code rattaché à leur compte, puisque ces domaines ont un risque de sécurité plus important. " #: www/index/7.php:25 msgid "Did a substantial amount of work on the previous website design, adn has been floating about on the mailing lists often giving invaluble insight into what we should be doing better." -msgstr "" +msgstr "Nous avons réalisé une quantité substantielle de travail sur le design du site web précédent, qui est resté en l'état alors que les mailing listes donnaient des signes que nous devions l'améliorer." #: www/disputes/2.php:20 msgid "Dispute Domain" -msgstr "Trouver un domaine" +msgstr "Contestation de domaines" #: www/disputes.php:286 www/disputes.php:420 msgid "Dispute Probe" -msgstr "Test de l'email" +msgstr "Verification de Contestation" #: www/disputes/0.php:17 msgid "Disputes" -msgstr "" +msgstr "Contestations" #: www/disputes/0.php:15 msgid "Disputes and Abuse Reporting" -msgstr "" +msgstr "Contestations et déclaration d'Abus" #: includes/account_stuff.php:213 msgid "Disputes/Abuses" -msgstr "" +msgstr "Contestations/Abus" #: includes/account_stuff.php:214 www/disputes.php:138 www/disputes.php:147 #: www/disputes.php:154 www/disputes.php:181 www/disputes.php:195 @@ -2877,23 +2877,23 @@ msgstr "" #: www/disputes.php:377 www/disputes.php:422 www/disputes/2.php:15 #: www/disputes/6.php:15 www/disputes/6.php:20 msgid "Domain Dispute" -msgstr "Domaines" +msgstr "Contestation de Domaines" #: www/disputes.php:399 msgid "Domain Dispute!" -msgstr "Domaines" +msgstr "Contestation de Domaines" #: www/disputes.php:428 msgid "Domain and Email Disputes" -msgstr "" +msgstr "Contestations de Domaines et d'Emails" #: www/index/5.php:58 msgid "Due to the increasing number of people that haven't been able to recover their passwords via the lost password form there is now 2 other options available to you. If you don't care about your account you can signup under a new account file dispute forms to recover your email accounts and domains. If you would like to recover your password via help from support staff this requires a small payment to cover time from a real person to verify your claims to ownership on an account, click the payment button below to continue." -msgstr "" +msgstr "En raison du nombre croissant de personnes qui n'ont pas pu récupérer leur mot de passe par l'intermédiaire du formulaire de mot de passe perdu il y a maintenant 2 autres options à votre disposition. Si vous ne vous inquiétez pas pour votre compte vous pouvez ouvrir un autre compte et remplir un formulaire de Contestation pour récupérer vos domaines et adresses email. Si vous voulez retrouver votre mot de passe avec l'aide de l'équipe de support, il sera exigé le paiement d'une modique somme d'argent couvrant le temps passé par la personne pour vérifier l'appartenance du compte, cliquez sur le bouton de paiement pour continuer." #: includes/account.php:50 includes/account.php:402 www/index.php:293 msgid "Email Address given was invalid, or a test connection couldn't be made to your server, or the server rejected the email address as invalid" -msgstr "" +msgstr "L'adresse email donnée était invalide, ou un test de connexion ne pouvait pas être établi à votre serveur, ou le serveur a rejeté comme invalide l'adresse email" #: includes/account_stuff.php:214 www/disputes.php:28 www/disputes.php:39 #: www/disputes.php:46 www/disputes.php:90 www/disputes.php:104 @@ -2902,331 +2902,333 @@ msgstr "" #: www/disputes.php:268 www/disputes.php:288 www/disputes/1.php:15 #: www/disputes/4.php:15 www/disputes/4.php:20 msgid "Email Dispute" -msgstr "Ecrire un email à l'accréditeur" +msgstr "Contestation d'email" #: www/disputes/1.php:27 www/disputes/2.php:28 msgid "File Dispute" -msgstr "" +msgstr "Remplir une demande de Contestation" #: www/index/7.php:22 msgid "For much of the art work that exists on the website, t-shirt designs, much of the organisational work for Usenix '04, as well as a few published articles and written documents." -msgstr "" +msgstr "Pour une grande partie des travaux graphiques qui existent sur le site Web, les conceptions de t-shirt, une grande partie du travail d'organisation pour Usenix '04, aussi bien que quelques articles édités et des documents écrits." #: www/index/16.php:23 www/index/3.php:23 msgid "GPG Key" -msgstr "Clés GPG" +msgstr "Clef GPG" #: www/account/40.php:20 www/index/11.php:20 msgid "General questions about CAcert should be sent to the general support list, please send all emails in ENGLISH only, this list has many more volunteers then those directly involved with the running of the website, everyone on the mailing list understands english, even if this isn't their native language this will increase your chance at a competent reply. While it's best if you sign up to the mailing list to get replied to, you don't have to, but please make sure you note this in your email, otherwise it might seem like you didn't get a reply to your question." -msgstr "Les questions générales à propos de CAcert doivent être envoyées à la mailing liste du support, cette liste dispose de nombreux volontaires autre que les personnes impliquées directement dans le fonctionnement du site. Il est préférable de s'enregistrer auprès de la mailing liste du support pour obtenir une réponse, vous n'etes pas obligé, mais vérifiez que vous le mentionnez dans votre email, autrement il se pourrait que vous n'obteniez pas de réponse à votre question." +msgstr "Les questions générales au sujet de CAcert doivent être envoyées à la liste de support, s'il vous plait envoyez vos mails en ANGLAIS seulement, cette liste dispose de nombreux volontaires autre que les personnes impliquées directement dans le fonctionnement du site, toutes les personnes de la mailing liste comprennent l'anglais, même si ce n'est pas leur langue maternelle cela augmentera vos chances d'obtenir une réponse convenable. Même s'il est préférable de s'enregistrer auprès de la mailing liste du support pour obtenir une réponse, vous n'etes pas obligé, mais vérifiez que vous mentionnez bien votre adresse dans votre email, autrement vous pourriez avoir l'impression de ne pas obtenir de réponse à votre question." #: www/index/7.php:24 msgid "Has put a lot of time and effort into promoting and assuring people in Brazil and South America, and for doing most of the Portuguese translations" -msgstr "" +msgstr "Il a mis beaucoup de temps et effort pour promouvoir et accréditer des personnes au Brésil et en Amérique du Sud, et pour avoir fait la plupart des traductions portugaises " #: www/index/7.php:23 msgid "Has put so much effort into CAcert I don't know where to begin, he managed to bring the CPS Chrisitian had started up to draft status, he has given countless hours to assuring people and attending conferences to help spread the word" -msgstr "" +msgstr "Il a mis tellement d'effort dans CAcert que je ne sais pas où commencer, il est parvenu à donner au CPS, que Christian avait commencé, un statut d'ébauche avancée, il a offert des heures innombrables à accréditer des personnes et à participer à des conférences pour faire de la promotion" #: www/index/7.php:21 msgid "He's constantly helping out on the support list, building up documentation and all round nice guy, he was even offered a free book and turned down the offer until there is a book on CAcert available!" -msgstr "" +msgstr "Il aide constamment à travers la liste de support, créant de la documentation et comme c'est un type sympa, on lui a même proposé de lui offrir un livre mais il a refusé l'offre jusqu'à ce qu'un livre soit disponible sur CAcert !" #: www/account/52.php:49 msgid "I agree with this Application" -msgstr "" +msgstr "Je suis d'accord avec ce principe" #: www/account/52.php:50 msgid "I don't agree with this Application" -msgstr "" +msgstr "Je ne suis pas d'accord avec ce principe" #: www/disputes/0.php:18 msgid "If you want to dispute who has control of your email address or domain, select 'Dispute Email' or 'Dispute Domain' on the right hand side." -msgstr "" +msgstr "Si vous voulez contester le contrôle qu'une personne a sur votre adresse email ou votre domaine, selectionner 'Contestation d'Email' ou 'Contestation de Domaines' sur le côté droit" #: www/disputes/0.php:20 msgid "If you would like to report an abuse of our certificates that breaches our policies please select the Abuse menu on the right." msgstr "" +"Si vous voulez déclarer un abus de nos certificats qui enfraint nos politiques s'il vous plait veuillez choisir le menu 'Abus' sur le côté droit. " +"" #: www/disputes/2.php:16 msgid "If your dispute is sucessful the domain will be removed from the current account and any certificates will be revoked." -msgstr "" +msgstr "Si votre contestation est validée, le domaine sera enlevé du compte actuel et tous les certificats seront revoqués. " #: www/disputes/1.php:16 msgid "If your dispute is sucessful you will have the email address removed from the system, you will need add the email address as per usual afterwards. The email will be removed from the current account and any certificates will be revoked." -msgstr "" +msgstr "Si votre contestation est validée, l'adresse email sera retirée du système, vous devrez rajouter l'adresse email ensuite comme d'habitude. L'adresse email sera retirée du compte actuel et tous les certificats seront révoqués." #: www/disputes.php:91 www/disputes.php:115 www/disputes.php:182 #: www/disputes.php:206 msgid "Invalid request. Can't continue." -msgstr "L'adresse email n'est pas valide. Ne peut pas continuer." +msgstr "Requête invalide. Ne peut pas continuer." #: includes/tverify_stuff.php:39 msgid "Main Website" -msgstr "" +msgstr "Site Web Principal" #: includes/account_stuff.php:214 msgid "More Information" -msgstr "Informations Générales" +msgstr "Plus d'informations" #: www/account/52.php:37 msgid "Name on file" -msgstr "" +msgstr "Nom dans le dossier" #: www/account/11.php:36 msgid "No additional information will be included on certificates because it can not be automatically checked by the system." -msgstr "" +msgstr "Aucune information supplémentaire ne sera insérée dans nos certificats puisqu'elles ne peuvent pas être verifiée automatiquement par le système." #: www/disputes.php:300 msgid "Not a valid Domain. Can't continue." -msgstr "L'adresse email n'est pas valide. Ne peut pas continuer." +msgstr "Le nom de domaine n'est pas valide. Ne peut pas continuer." #: www/account/52.php:40 msgid "Notary URL" -msgstr "" +msgstr "URL de l'accréditeur" #: includes/account_stuff.php:198 msgid "Organisation Assurance" -msgstr "Nom de l'organisation" +msgstr "Accréditation d'organisation" #: www/wot/11.php:19 msgid "Organisational Assurance" -msgstr "Nom de l'organisation" +msgstr "Accréditation de l'organisation" #: www/wot/11.php:22 msgid "Orgnisation Title" -msgstr "Nom de l'organisation" +msgstr "Titre de l'organisation" #: www/index/16.php:28 www/index/3.php:28 msgid "PKI finger/thumb print signed by the CAcert GPG Key" -msgstr "Empreinte PKI signée par la clef de confiance élevée (High Trust) GPG" +msgstr "Empreinte PKI signée par la clef GPG de CAcert" #: www/account/52.php:41 msgid "Photo ID URL" -msgstr "" +msgstr "URL de la photo d'identité" #: www/disputes/0.php:16 msgid "Please select the most appropriate section to report your problem." -msgstr "" +msgstr "S'il vous plait choisissez la section la plus appropriée à votre problème" #: www/account/52.php:43 msgid "Potential Points" -msgstr "Nombre total de points" +msgstr "Points Potentiels" #: www/account/52.php:38 msgid "Primary email address" -msgstr "Adresse email" +msgstr "Adresse email principale" #: www/index/7.php:20 msgid "Put a lot of effort convincing people in Germany to signup and be assured, he started work on a new RFC complient CPS, spent countless hours helping with tech support, and so much more" -msgstr "" +msgstr "Il a fait beaucoup d'efforts pour convaincre des personnes en Allemagne de signer et d'être alors accréditées, il a commencé à travailler sur un nouveau CPS conforme à la nouvelle RFC, ne comptant pas son temps pour aider au support technique, et tellement plus de chose encore " #: www/disputes/4.php:23 www/disputes/6.php:23 msgid "Reject Dispute" -msgstr "" +msgstr "Refus de Contestation" #: www/account/11.php:40 msgid "Rejected" -msgstr "" +msgstr "Refusé" #: www/disputes/4.php:29 www/disputes/6.php:29 msgid "Report Dispute as Abuse" -msgstr "" +msgstr "Déclarer une Contestation comme un Abus" #: www/account/52.php:36 msgid "Request Details" -msgstr "Mes détails" +msgstr "Demande des détails" #: www/index/0.php:75 msgid "Same as above plus get 100 assurance points by meeting with multiple assurers from the CAcert Web of Trust, who verify your identity using your government issued photo identity documents." -msgstr "Le même qu'au dessus plus l'obtention de 100 points d'accréditation en rencontrant plusieurs accréditeurs de la Toile de Confiance CAcert qui auront verifiés votre identité en utilisant vos documents d'identité avec photo fournis par votre gouvernement." +msgstr "Le même qu'au dessus plus l'obtention de 100 points d'accréditation en rencontrant plusieurs accréditeurs de la Toile de Confiance CAcert, lesquels auront verifiés votre identité en utilisant vos documents officiel d'identité avec photo." #: www/wot/5.php:20 msgid "Send reminder notice" -msgstr "" +msgstr "Envoyer un rappel de notification" #: www/disputes.php:310 #, php-format msgid "The domain '%s' already exists in the dispute system. Can't continue." -msgstr "l'adresse email '%s' est déjà enregistrée dans le système. Impossible de poursuivre le processus." +msgstr "Le domaine '%s' est déjà enregistrée dans le système de contestation. Ne peut continuer." #: www/disputes.php:320 #, php-format msgid "The domain '%s' doesn't already in the system. Can't continue." -msgstr "l'adresse email '%s' est déjà enregistrée dans le système. Impossible de poursuivre le processus." +msgstr "Le domaine '%s' est déjà enregistrée dans le système. Ne peut continuer." #: www/disputes.php:423 #, php-format msgid "The domain '%s' has been entered into the dispute system, the email address you choose will now be sent an email which will give the recipent the option of accepting or rejecting the request, if after 2 days we haven't received a valid response for or against we will discard the request." -msgstr "" +msgstr "Le domaine '%s' a été entré dans le système de Contestation, l'adresse email que vous avez choisi va maintenant recevoir un email qui donnera à son récipiendaire la possibilité d'accepter ou de rejeter la demande, si après 2 jours vous n'avez pas reçu une réponse valable pour ou contre, nous retirerons votre requête." #: www/disputes.php:400 #, php-format msgid "The domain '%s' isn't in the system. Can't continue." -msgstr "l'adresse email '%s' est déjà enregistrée dans le système. Impossible de poursuivre le processus." +msgstr "le domaine '%s' est déjà enregistrée dans le système. Ne peut continuer." #: www/disputes.php:236 #, php-format msgid "The email address '%s' already exists in the dispute system. Can't continue." -msgstr "l'adresse email '%s' est déjà enregistrée dans le système. Impossible de poursuivre le processus." +msgstr "L'adresse email '%s' est déjà enregistrée dans le système de contestation. Ne peut continuer." #: www/disputes.php:247 #, php-format msgid "The email address '%s' doesn't already in the system. Can't continue." -msgstr "l'adresse email '%s' est déjà enregistrée dans le système. Impossible de poursuivre le processus." +msgstr "L'adresse email '%s' est déjà enregistrée dans le système. Ne peut continuer." #: www/disputes.php:289 #, php-format msgid "The email address '%s' has been entered into the dispute system, the email address will now be sent an email which will give the recipent the option of accepting or rejecting the request, if after 2 days we haven't received a valid response for or against we will discard the request." -msgstr "" +msgstr "L'adresse email '%s' a été entré dans le système de Contestation, l'adresse email va maintenant recevoir un email qui donnera à son récipiendaire la possibilité d'accepter ou de rejeter la demande, si après 2 jours vous n'avez pas reçu une réponse valable pour ou contre, nous retirerons votre requête." #: includes/account.php:2056 msgid "The following comments were made by reviewers" -msgstr "Les comptes suivants ont été supprimés :" +msgstr "Les commentaires suivants ont été fait par les vérificateurs" #: www/account/11.php:38 msgid "The following hostnames were rejected because the system couldn't link them to your account, if they are valid please verify the domains against your account." -msgstr "" +msgstr "Les domaines suivants ont été rejetés parce que le système ne pouvait pas les relier à votre compte, s'ils sont valides alors s'il vous plait veuillez vérifiez les domaines avec votre compte." #: www/index/7.php:18 msgid "The list of names are in no sense of order" -msgstr "" +msgstr "La liste des noms est dans un ordre quelconque" #: www/wot/2.php:28 msgid "The only other way to receive assurance points is to have had your identity checked by a third party CA, whose policies are suitably set to not let identity fraud run rampant. Please contact us if you would like more details about this." -msgstr "Le seul autre moyen de recevoir des points d'accréditations est qu'une Autorité de certification tierce ait validée votre identité suivant une politique qui ne permet pas la falsification d'identité. Contactez-nous pour avoir plus d'information à ce sujet." +msgstr "Le seul autre moyen de recevoir des points d'accréditations est qu'une Autorité de Certification tierce ait validée votre identité en suivant une politique qui ne permette pas la falsification d'identité. S'il vous plait, contactez-nous pour avoir plus d'information à ce sujet." #: www/wot/2.php:17 msgid "There are several ways to become a CAcert Assurer, the most common of which is face to face meetings with existing assurers, who check your ID documents (you need to show 2 government issued photo ID where possible otherwise you won't be allocated as many points!)." -msgstr "Plusieurs possibités existent pour devenir accréditeur CAcert, la plus commune est la rencontre face-à-face avec des accréditeurs qui vérifiront vos documents d'identité (vous aurez besoin de montrer 2 documents avec photographie délivrés par vos services gouvernementaux sinon vous n'obtiendrez pas le nombre maximum de point)." +msgstr "Plusieurs possibités existent pour devenir accréditeur CAcert, la plus commune est la rencontre face-à-face avec des accréditeurs qui vérifiront vos documents d'identité (vous aurez besoin de montrer 2 documents avec photographie délivrés par vos services gouvernementaux faute de quoi vous n'obtiendrez pas le nombre maximum de point !)." #: www/account/51.php:27 www/account/52.php:59 msgid "This UID has already been voted on." -msgstr "" +msgstr "Cet identifiant d'utilisateur a déjà voté." #: www/disputes.php:29 www/disputes.php:139 msgid "This dispute no longer seems to be in the database, can't continue." -msgstr "" +msgstr "Cette contestation semble ne plus être dans la base de données. Ne peut pas continuer." #: www/disputes.php:76 msgid "This was the primary email on the account, and no emails or domains were left linked so the account has also been removed from the system." -msgstr "" +msgstr "C'était l'adresse principale du compte, et plus aucune adresse email ou aucun domaine n'y sont liés alors ce compte a été retiré du système. " #: www/wot.php:255 msgid "To make it easier for others in your area to find you, it's helpful to list yourself as an assurer (this is voluntry), as well as a physical location where you live or work the most. You can flag your account to be listed, and add a comment to the display by going to:" -msgstr "" +msgstr "Afin de faciliter votre contact par les autres personnes de votre secteur, il serait utile de vous lister comme accréditeur (c'est un acte volontaire) aussi bien que d'indiquer la localisation géographique de votre domicile ou de votre lieu de travail principal. Vous pouvez cocher le listage de votre compte, et ajouter un commentaire à l'écran en allant à :" #: www/account/43.php:101 msgid "Tverify Account" -msgstr "Mon compte" +msgstr "Compte Tverify" #: www/account/11.php:48 msgid "Unable to continue as no valid commonNames or subjectAltNames were present on your certificate request." -msgstr "" +msgstr "Impossible de continuer puisqu'aucun 'commonNames' ou 'subjectAltNames' valides n'étaient présents dans votre requête de certificat." #: includes/account.php:1997 msgid "Unable to find a valid tverify request for this ID." -msgstr "" +msgstr "Impossible de trouver une requête 'tverify' pour cet identifiant." #: www/account/51.php:29 www/account/52.php:61 msgid "Unable to locate a valid request for that UID." -msgstr "" +msgstr "Impossible de trouver une requête valide pour cette identifiant d'utilisateur." #: includes/account.php:2075 msgid "Unfortunately your request for a points increase has been denied, below is the comments from people that reviewed your request as to why they rejected your application." -msgstr "" +msgstr "Malheureusement votre requête pour une augmentation de vos points a été rejetée, en-dessous vous trouverez les commentaires des personnes qui ont étudiées votre requête et les raisons pour lequelles elles l'ont rejetée." #: www/disputes/4.php:32 www/disputes/5.php:29 www/disputes/6.php:32 msgid "Update Dispute" -msgstr "Sauvegarder" +msgstr "Mettre à jour vos contestations" #: www/wot/2.php:26 msgid "Upon receiving your documents you will be notified, and points will be added to your account." -msgstr "A la réception des documents, vous serez prévenus et des points seront ajoutés à votre compte." +msgstr "A la réception de vos documents vous serez prévenus, et des points seront ajoutés à votre compte." #: www/account/12.php:18 www/account/5.php:18 msgid "View all certificates" -msgstr "Certificats valides" +msgstr "Voir tous les certificats" #: www/disputes/1.php:20 msgid "Which Email?" -msgstr "" +msgstr "Quel Email ?" #: www/wot/6.php:40 msgid "You are about to assure a person that isn't currently verified. If you continue and they do not verify their account within 48 hours the account could automatically be removed by the system." -msgstr "" +msgstr "Vous êtes sur le point d'accréditer une personne qui n'est pas verifiée. Si vous continuez et s'il ne valide pas le compte dans les 48 heures, le compte pourra être automatiquement retiré par le système." #: includes/account.php:2081 msgid "You are welcome to try submitting another request at any time in the future, please make sure you take the reviewer comments into consideration or you risk having your application rejected again." -msgstr "" +msgstr "Vous pouvez tenter de soumettre une autre demande à tout moment à l'avenir, veuillez s'il vous plait vous assurer d'avoir bien pris en compte les commentaires des vérificateurs ou vous prenez le risque d'avoir votre demande rejetée à nouveau. " #: www/disputes.php:257 www/disputes.php:329 msgid "You aren't allowed to dispute your own email addresses. Can't continue." -msgstr "L'adresse email n'est pas valide. Ne peut pas continuer." +msgstr "Vous ne pouvez pas contester la possession de vos propres adresses email. Ne peut pas continuer." #: www/wot/2.php:19 msgid "You can also become a CAcert Assurer by seeking out a public notary, justice of the peace, accountant, lawyer or bank manager. You will need to download and print out a copy of the TTP.pdf and fill in your sections. You will need to produce a photo copy of your ID, which the person assuring you will inspect against the originals. Once they are satisfied the documents appear to be genuine they need to sign the back of the photo copies, and fill in their sections of the TTP document. Once you have had your ID verified by 2 different people, pop the copies + forms in an envelope and post them to:" -msgstr "Vous pouvez aussi devenir un accréditeur CAcert en cherchant un notaire (possédant une charge ministérielle), un magistrat, un comptable, un avocat ou un banquier. Vous devrez télécharger et imprimer une copie du fichier TTP.pdf et remplir les parties vous concernant. Vous aurez besoin de fournir une photocopie de vos papiers d’identité que vos accréditeurs compareront avec vos documents originaux. Une fois que vos documents leur apparaîtront authentiques, il devront contre-signer l’arrière des photocopies et remplir à leur tour les sections du formulaire TTP les concernant. Une fois que votre identité est vérifiée par 2 personnes différentes, envoyez les copies et les formulaires dans une enveloppe et postez les à :" +msgstr "Vous pouvez aussi devenir un accréditeur CAcert en cherchant un notaire, un magistrat, un comptable, un avocat ou un banquier. Vous devrez télécharger et imprimer une copie du fichier TTP.pdf et remplir les parties vous concernant. Vous aurez besoin de fournir une photocopie de vos papiers d’identité que vos accréditeurs compareront avec vos documents originaux. Une fois que vos documents leur apparaîtront authentiques, il devront signer le verso des photocopies et remplir à leur tour les sections du formulaire TTP les concernant. Une fois que votre identité est vérifiée par 2 personnes différentes, envoyez les copies et les formulaires dans une enveloppe et postez les à :" #: www/wot.php:257 msgid "You can list your location by going to:" -msgstr "" +msgstr "Vous pouvez lister vous localisation géographique en allant à :" #: includes/account.php:2010 msgid "You have already voted on this request." -msgstr "Vous n'avez pas le droit à l'accès à cette zone." +msgstr "Vous avez déjà voté pour cette question." #: www/disputes.php:416 #, php-format msgid "You have been sent this email as the domain '%s' is being disputed. You have the option to accept or reject this request, after 2 days the request will automatically be discarded. Click the following link to accept or reject the dispute:" -msgstr "" +msgstr "Vous avez reçu cet email car le domaine '%s' est contesté. Vous avez l'option d'accepter ou de rejeter cette requête, après 2 jours la requête sera automatiquement supprimée. Cliquez sur le lien suivant pour accepter ou rejeter la contestation :" #: www/disputes.php:282 #, php-format msgid "You have been sent this email as the email address '%s' is being disputed. You have the option to accept or reject this request, after 2 days the request will automatically be discarded. Click the following link to accept or reject the dispute:" -msgstr "" +msgstr "Vous avez reçu cet email car l'adresse email '%s' est contestée. Vous avez l'option d'accepter ou de rejeter cette requête, après 2 jours la requête sera automatiquement supprimée. Cliquez sur le lien suivant pour accepter ou rejeter la contestation :" #: www/wot/10.php:34 #, php-format msgid "You have made %s assurances which ranks you as the #%s top assurer." -msgstr "" +msgstr "Vous avez réalisé %s accréditations ce qui vous classe à la %s ème place de meilleur accréditeur." #: www/disputes.php:155 msgid "You have opted to accept this dispute and the request will now remove this domain from the existing account, and revoke any current certificates." -msgstr "" +msgstr "Vous avez choisi d'accepter cette contestation et la requête va maintenant retirer ce domaine du compte existant, et revoquera tous les certificats actuels." #: www/disputes.php:47 msgid "You have opted to accept this dispute and the request will now remove this email address from the existing account, and revoke any current certificates." -msgstr "" +msgstr "Vous avez choisi d'accepter cette contestation et la requête va maintenant retirer cette adresse email du compte existant, et revoquera tous les certificats actuels." #: www/disputes.php:40 www/disputes.php:148 msgid "You have opted to reject this dispute and the request will be removed from the database" -msgstr "" +msgstr "Vous avez choisi de rejeter cette contestation et cette requête sera retirée de la base de données." #: www/disputes.php:269 msgid "You only dispute the primary email address of an account if there is no longer any email addresses or domains linked to it." -msgstr "" +msgstr "Vous ne pouvez contester l'adresse principale d'un compte que s'il n'y a plus ni adresse email ni domaine liés à lui." #: www/verify.php:34 msgid "You've attempted to verify the same email address a fourth time with an invalid hash, subsequently this request has been deleted in the system" -msgstr "Vous avez tenté de verifier le même domaine une quatrième fois avec un hachage invalide, par conséquence, cette requête vient d'être supprimée du système." +msgstr "Vous avez tenté de verifier la même adresse email une quatrième fois avec un hachage invalide, par conséquence, cette requête vient d'être supprimée du système." #: www/disputes.php:201 msgid "Your attempt to accept or reject a disputed domain is invalid due to the hash string not matching with the domain ID." -msgstr "" +msgstr "Votre tentative d'accepter ou de rejeter un domaine contesté est invalide puisque le hachage ne correspond pas à l'identifiant du domaine." #: www/disputes.php:198 msgid "Your attempt to accept or reject a disputed domain is invalid due to the hash string not matching with the domain ID. Your attempt has been logged and the request will be removed from the system as a result." -msgstr "" +msgstr "Votre tentative d'accepter ou de rejeter un domaine contesté est invalide puisque le hachage ne correspond pas à l'identifiant du domaine. Votre tentative a été enregistrée et la requête sera retirée du système en conséquence." #: www/disputes.php:110 msgid "Your attempt to accept or reject a disputed email is invalid due to the hash string not matching with the email ID." -msgstr "" +msgstr "Votre tentative d'accepter ou de rejeter une adresse email contestée est invalide puisque le hachage ne correspond pas à l'identifiant de l'adresse email." #: www/disputes.php:107 msgid "Your attempt to accept or reject a disputed email is invalid due to the hash string not matching with the email ID. Your attempt has been logged and the request will be removed from the system as a result." -msgstr "" +msgstr "Votre tentative d'accepter ou de rejeter une adresse email contestée est invalide puisque le hachage ne correspond pas à l'identifiant de l'adresse email. Votre tentative a été enregistrée et la requête sera retirée du système en conséquence." #: includes/account.php:2089 msgid "Your vote has been accepted." -msgstr "Votre message a été envoyé." +msgstr "Votre vote a été accepté." diff --git a/locale/he.po b/locale/he.po index 53721fe..d976dfa 100644 --- a/locale/he.po +++ b/locale/he.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:22:02+0000\n" +"PO-Revision-Date: 2005-05-21 02:03:32+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/hr.po b/locale/hr.po index 8fc21bc..54c9ad6 100644 --- a/locale/hr.po +++ b/locale/hr.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:24:52+0000\n" +"PO-Revision-Date: 2005-05-21 02:03:36+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/hu.po b/locale/hu.po index 1c02f89..4d92c30 100644 --- a/locale/hu.po +++ b/locale/hu.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:22:10+0000\n" +"PO-Revision-Date: 2005-05-21 02:03:41+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/it.po b/locale/it.po index 7a0cb60..e3b7be7 100644 --- a/locale/it.po +++ b/locale/it.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:22:26+0000\n" +"PO-Revision-Date: 2005-05-21 02:03:46+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/ja.po b/locale/ja.po index ebc22b9..6bc55b9 100644 --- a/locale/ja.po +++ b/locale/ja.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:22:37+0000\n" +"PO-Revision-Date: 2005-05-21 02:03:51+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/nl.po b/locale/nl.po index 5695dee..cf7cbdd 100644 --- a/locale/nl.po +++ b/locale/nl.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:22:48+0000\n" +"PO-Revision-Date: 2005-05-21 02:03:57+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/pt.po b/locale/pt.po index f6c1ede..5922921 100644 --- a/locale/pt.po +++ b/locale/pt.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:22:59+0000\n" +"PO-Revision-Date: 2005-05-21 02:04:02+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/pt_BR.po b/locale/pt_BR.po index db97734..0f991b0 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:23:05+0000\n" +"PO-Revision-Date: 2005-05-21 02:04:06+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -114,7 +114,7 @@ msgstr "Administradores" #: www/wot/3.php:28 msgid "After the meeting, visit the CAcert Web site's make an Assurance page and:" -msgstr "Após o encontro, visite o site da CAcert, dirija-se à página de Notarização e:" +msgstr "Após o encontro, visite o site da CAcert, dirija-se à página de certificação e:" #: www/help/3.php:44 msgid "After your certificate has been emailed to you, follow this process to install the certificate." @@ -332,7 +332,7 @@ msgstr "Suporte CAcert.org!" #: www/account/37.php:17 www/index/12.php:17 msgid "CAcert.org is a community driven, Certificate Authority that issues certificates to the public at large for free." -msgstr "" +msgstr "CAcert.org é uma Autoridade Certificadora dirigida à comunidade, que emite certificados ao público gratuitamente." #: www/wot/0.php:17 msgid "CAcert.org was designed to be by the community for the community, and instead of placing all the labour on a central authority and in turn increasing the cost of certificates, the idea was to get community in conjunction with this website to have trust maintained in a dispersed and automated manner!" @@ -435,7 +435,7 @@ msgstr "Certificados de Cliente" #: www/index/0.php:50 msgid "Client certificates (un-assured)" -msgstr "Certificados de Cliente" +msgstr "Certificados de Cliente (não verificados)" #: www/account/3.php:63 msgid "Code Signing" @@ -529,7 +529,7 @@ msgstr "País" #: www/account/36.php:23 www/index/1.php:112 msgid "Country Announcements" -msgstr "" +msgstr "Anúncios para o país" #: www/help/4.php:9 msgid "Country Name (2 letter code) [AU]:" @@ -575,7 +575,7 @@ msgstr "Excluir" #: www/account/43.php:102 www/account/43.php:103 msgid "Delete Account" -msgstr "Deletar Conta" +msgstr "Excluir Conta" #: www/account/34.php:28 #, php-format @@ -602,7 +602,7 @@ msgstr "Assinatura Digital (um guia para pessoas normais)" #: www/help/2.php:17 msgid "Digital signing thus provides security on the Internet." -msgstr "" +msgstr "Assinaturas digitais provém, desta forma, segurança na Internet." #: www/index/0.php:73 msgid "Digitally sign code, web applets, installers, etc. including your name and location in the certificates." @@ -629,7 +629,7 @@ msgstr "Certificados de Domínio" #: includes/account_stuff.php:157 www/account/25.php:21 www/account/25.php:38 #: www/account/9.php:18 msgid "Domains" -msgstr "Dominios" +msgstr "Domínios" #: www/account/0.php:23 msgid "Domains and Server Certificates." @@ -642,7 +642,7 @@ msgstr "Doações" #: www/error404.php:21 msgid "Due to recent site changes bookmarks may no longer be valid, please update your bookmarks." -msgstr "" +msgstr "Devido a recentes mudanças no site, seus marcadores podem não ser mais válidos. Por favor, atualize seus marcadores." #: www/help/2.php:39 msgid "Easy. Ish. Go to CAcert.org, install their root certificate and then follow their joining instructions. Once you have joined, request a certificate from the menu. You will receive an email with a link to the certificate. Click on the link from your email software, and hopefully it will be seamlessly installed. Next find the security section of the settings in your email software and configure digital signatures using the certificate you just downloaded. Hmm. Call me if you want, I'll guide you through it." @@ -698,19 +698,19 @@ msgstr "Possibilita transferencia de dados encriptados para usuários aces #: www/help/3.php:58 msgid "Ensure 'Process the pending request and install the certificate' is selected and click on 'Next'." -msgstr "" +msgstr "Certifique-se de que 'Processar o pedido pendente e instalar o certificado' está marcado e clique em 'Próximo'." #: www/help/3.php:63 msgid "Ensure that you are processing the correct certificate" -msgstr "" +msgstr "Certifique-se de que você está processando o certificado correto" #: www/help/3.php:17 msgid "Enter a certificate name and select Certificate strength" -msgstr "" +msgstr "Entre com um nome de certificado e selecione a força do certificado" #: www/help/3.php:26 msgid "Enter the Organisation name: this must be the full legal name of the Organisation that is applying for the certificate." -msgstr "" +msgstr "Entre com o nome da Organização: este deve ser o nome legal completo da Organização que está requerendo o certificado." #: www/wot/3.php:30 msgid "Enter the applicant's email address;" @@ -761,7 +761,7 @@ msgstr "Arquivo não encontrado!" #: www/help/4.php:16 msgid "Finally you will be asked information about 'extra' attribute, you simply hit enter to both these questions." -msgstr "" +msgstr "Finalmente você será questionado sobre o atributo 'extra'. Simplesmente pressione enter para ambas as questões." #: includes/account_stuff.php:191 msgid "Find Domain" @@ -781,7 +781,7 @@ msgstr "Procurar um Notário" #: www/help/3.php:41 msgid "Finish up and exit IIS Certificate Wizard" -msgstr "" +msgstr "Terminar e sair do Assistente de Certificados do IIS" #: www/account/13.php:27 www/account/13.php:75 www/account/43.php:78 #: www/index/1.php:22 @@ -798,15 +798,15 @@ msgstr "Nome ou Sobrenome estavam em branco." #: www/help/6.php:1 msgid "Firstly you need to join CAcert to do that go:" -msgstr "" +msgstr "Primeiramente você precisa filiar-se à CAcert. Para fazer isto, vá:" #: www/help/4.php:1 msgid "Firstly you will need to run the following command, preferably in secured directory no one else can access, however protecting your private keys is beyond the scope of this document." -msgstr "" +msgstr "Primeiramente você terá que executar o seguinte comando, preferencialmente em um diretório seguro que ninguém mais tenha acesso. Entretanto, proteger sua chave privada é além do escopo deste documento." #: www/help/0.php:2 msgid "Following are several tips you may find useful." -msgstr "" +msgstr "A seguir, várias dicas que podem ser úteis." #: www/account/37.php:23 www/index/12.php:23 msgid "For administrators looking to protect the services they offer, we provide host and wild card certificates which you can issue almost immediately. Not only can you use these to protect websites, but also POP3, SMTP and IMAP connections, to list but a few. Unlike other certificate authorities, we don't limit the strength of the certificates, or the use of wild card certificates. Everyone should have the right to security and to protect their privacy, not just those looking to run ecommerce sites." @@ -814,11 +814,11 @@ msgstr "" #: www/help/3.php:71 msgid "For more information, refer to your server documentation or visit" -msgstr "" +msgstr "Para maiores informações, refira-se à documentação de seu servidor ou visite" #: www/account/37.php:21 www/index/12.php:21 msgid "For the enthusiast looking to dip their toe in the water, we have an easy way of obtaining certificates you can use with your email program. You can use these not only to encrypt, but to prove to your friends and family that your email really does come from you." -msgstr "" +msgstr "Para os entusiastas, nós temos uma maneira fácil de obter certificados que podem ser utilizados com seu programa de email. Você pode usar estes para encriptar e também provar para seus amigos e família que seu email realmente foi escrito por você." #: www/index/0.php:19 msgid "For years we've all been charged high amounts of money to pay for security that doesn't and shouldn't cost the earth." @@ -835,7 +835,7 @@ msgstr "Chaves GPG/PGP" #: www/account/36.php:22 www/index/1.php:111 msgid "General Announcements" -msgstr "" +msgstr "Anúncios Gerais" #: www/account/40.php:17 www/index/11.php:17 msgid "General Questions" @@ -847,11 +847,11 @@ msgstr "Gerando uma chave privada RSA de 1024 bit" #: www/help/3.php:1 msgid "Generating a Key Pair and Certificate Signing Request (CSR) for a Microsoft Internet Information Server (IIS) 5.0." -msgstr "" +msgstr "Gerando um par de chaves e requisição de assinatura de certificado para um servidor Microsoft Internet Information Server (IIS) 5.0." #: www/help/0.php:7 msgid "Generating a New Key Pair and CSR for IIS 5.0" -msgstr "" +msgstr "Gerando um novo par de chaves e CSR para IIS 5.0" #: includes/account_stuff.php:142 msgid "Go Home" @@ -867,15 +867,15 @@ msgstr "Boa pergunta" #: www/stats.php:102 msgid "Growth by year" -msgstr "" +msgstr "Crescimento por ano" #: www/stats.php:66 msgid "Growth in the last 12 months" -msgstr "" +msgstr "Crescimento nos últimos 12 meses" #: www/help/0.php:1 msgid "Help!" -msgstr "Ajuda" +msgstr "Ajuda!" #: www/account/19.php:54 www/account/6.php:52 msgid "Hit the 'Install your Certificate' button below to install the certificate into MS IE 5.x and above." @@ -895,31 +895,31 @@ msgstr "Página Principal" #: www/help/2.php:8 msgid "How do I create my own digital signature?!" -msgstr "" +msgstr "Como criar minha Assinatura Digital?!" #: www/help/0.php:8 msgid "How do I generate a private key and CSR using OpenSSL?" -msgstr "" +msgstr "Como gerar chave privada e CSR usando OpenSSL?" #: www/help/0.php:10 msgid "How do I get a Server certificate from CAcert?" -msgstr "" +msgstr "Como obter um certificado de servidor da CAcert?" #: www/help/0.php:9 msgid "How do I get a secured by CAcert emblem on my site?" -msgstr "" +msgstr "Como eu consigo um emblema 'Protegido pela CAcert' no meu site?" #: www/help/0.php:11 msgid "How does CAcert Protect it's root private key?" -msgstr "" +msgstr "Como a CAcert protege sua chave-privada raiz?" #: www/help/2.php:4 www/help/2.php:21 www/help/2.php:24 msgid "How it prepares us to protect our freedom" -msgstr "" +msgstr "Como ela nos prepara para proteger nossa liberdade" #: www/account/39.php:50 www/index/10.php:50 msgid "How to update, correct, or delete your information" -msgstr "" +msgstr "Como atualizar, corrigir ou excluir suas informações" #: www/index/51.php:27 msgid "How?" @@ -939,7 +939,7 @@ msgstr "Eu acredito que a atestação de identidade que estou fazend #: www/help/2.php:9 www/help/2.php:41 msgid "I can't wait to start sending encrypted emails!" -msgstr "" +msgstr "Mal posso esperar para começar a mandar emails encriptados!" #: includes/account.php:884 msgid "I couldn't match any emails against your organisational account." @@ -960,7 +960,7 @@ msgstr "Eu li e entendi as Regras para Notários e estou fazendo esta nota #: www/account/10.php:18 www/account/20.php:18 www/account/3.php:18 msgid "I hereby represent that I am fully authorized by the owner of the information contained in the CSR sent to CAcert Inc. to apply for an Digital Certificate for secure and authenticated electronic transactions. I understand that a digital certificate serves to identify the Subscriber for the purposes of electronic communication and that the management of the private keys associated with such certificates is the responsibility of the subscriber's technical staff and/or contractors." -msgstr "" +msgstr "Declaro que sou totalmente autorizado pelo proprietário dos dados contidos no CSR enviado à CAcert Inc. para requisitar Certificado Digital para comunicações eletrônicas seguras e autenticadas. Eu entendo que um certificado digital serve para identificar o assinante para fins de comunicação eletrônica e que o gerenciamento das chaves privadas associadas a tais certificados é de responsabilidade da equipe técnica ou contratados do assinante." #: www/wot/8.php:26 msgid "I want to be listed" @@ -972,7 +972,7 @@ msgstr "" #: www/account/43.php:62 msgid "I'm sorry, the user you were looking for seems to have disappeared! Bad things are a foot!" -msgstr "" +msgstr "Desculpe, o usuário que você procura parece ter desaparecido! Coisas ruins são um pé!" #: www/wot.php:42 msgid "I'm sorry, there was no email matching what you entered in the system. Please double check your information." @@ -980,39 +980,39 @@ msgstr "Desculpe-nos, mas não há email que confere com o que voc&e #: www/account/38.php:17 www/index/13.php:17 msgid "If I'd like to donate to CAcert Inc., how can I do it?" -msgstr "" +msgstr "Se eu quisesse doar à CAcert Inc., como faria?" #: www/account/10.php:22 www/account/20.php:22 msgid "If the Subscriber's name and/or domain name registration change the subscriber will immediately inform CAcert Inc. who shall revoke the digital certificate. When the Digital Certificate expires or is revoked the company will permanently remove the certificate from the server on which it is installed and will not use it for any purpose thereafter. The person responsible for key management and security is fully authorized to install and utilize the certificate to represent this organization's electronic presence." -msgstr "" +msgstr "Se o nome do assinante e/ou o registro do nome de domínio mude, o assinante deverá informar imediatamente a CAcert Inc., que revogará o certificado. Quando o Certificado Digital expira ou é revogado, a organização removerá permanentemente o certificado do servidor em que estava instalado e não o utilizará para qualquer fim no futuro. A pessoa responsável pelo gerenciamento de chave e segurança é autorizada a instalar e utilizar o certificado para representar a presença eletrônica desta organização." #: www/account/3.php:22 msgid "If the Subscriber's name and/or domain name registration change the subscriber will immediately inform CAcert Inc. who shall revoke the digital certificate. When the Digital Certificate expires or is revoked the company will permanently remove the certificate from the server on which it is installed andwill not use it for any purpose thereafter. The person responsible for key management and security is fully authorized to install and utilize the certificate to represent this organization's electronic presence." -msgstr "" +msgstr "Se o nome do assinante e/ou o registro do nome de domínio mude, o assinante deverá informar imediatamente a CAcert Inc., que revogará o certificado. Quando o Certificado Digital expira ou é revogado, a organização removerá permanentemente o certificado do servidor em que estava instalado e não o utilizará para qualquer fim no futuro. A pessoa responsável pelo gerenciamento de chave e segurança é autorizada a instalar e utilizar o certificado para representar a presença eletrônica desta organização." #: www/help/7.php:3 msgid "If the root store detects a bad request it assumes the webserver is compromised and shuts itself down." -msgstr "" +msgstr "Se o armazenador da chave raiz detectar um pedido incorreto, ele assume que o servidor web foi comprometido e se desliga." #: www/help/7.php:4 msgid "If the root store doesn't receive a 'ping' reply over the serial link within a determined amount of time it assumes the webserver is compromised or the root store itself has been stolen and shuts itself down." -msgstr "" +msgstr "Se o armazenador da chave raiz não receber uma resposta ao "ping" efetuado na linha serial dentro de um período determinado, assume-se que o servidor web foi comprometido ou que o servidor root foi roubado e se desliga." #: www/account/39.php:47 www/index/10.php:47 msgid "If we change our Privacy Policy, we will post those changes on www.CAcert.org. If we decide to use personally identifiable information in a manner different from that stated at the time it was collected, we will notify users via email. Users will be able to opt out of any new use of their personal information." -msgstr "" +msgstr "Se mudarmos nossa Política de Privacidade, nós publicaremos as mudanças em www.CAcert.org. Se decidirmos usar informações de identificação pessoais em uma maneira diferente da afirmada no momento da coleta, notificaremos os usuários via email. Usuários terão a possibilidade de se excluir de qualquer novo uso de suas informações pessoais." #: www/wot/7.php:140 msgid "If you are happy with this location, click 'Make my location here' to update your location details." -msgstr "" +msgstr "Se estiver satisfeito com esta localização, clique 'Tornar minha localização aqui' para atualizar seus dados de localização." #: www/account/40.php:41 www/index/11.php:41 msgid "If you have questions, comments or otherwise and information you're sending to us contains sensitive details, you should use the contact form below. Due to the large amounts of support emails we receive, sending general questions via this contact form will generally take longer then using the support mailing list. Also sending queries in anything but english could cause delays in supporting you as we'd need to find a translator to help." -msgstr "" +msgstr "Se você tiver questões, comentários ou outros assuntos e se as informações que você está nos enviando contem detalhes sensíveis, você deve utilizar o formulário de contato abaixo. Devido à grande quantidade de emails de suporte que recebemos, enviar questões gerais de suporte enviadas por este formulário geralmente levarão mais tempo para ser respondidas em comparação à lista de suporte. Também, enviar mensagens em quaisquer línguas exceto inglês pode ocasionar demora no suporte, pois precisaríamos encontrar um tradutor." #: www/account/39.php:55 www/index/10.php:55 msgid "If you need to contact us in writing, address your mail to:" -msgstr "" +msgstr "Se necessitar nos contactar por escrito, endereçe sua correspondência a:" #: scripts/removedead.php:57 msgid "If you needed more time or any other extenuating circumstances you should contact us immediately so this situation can be dealt with immediately." @@ -1020,15 +1020,15 @@ msgstr "" #: www/account/0.php:18 msgid "If you would like to view news items or change languages you can click the logout or go home links. Go home doesn't log you out of the system, just returns you to the front of the website. Logout logs you out of the system." -msgstr "" +msgstr "Se desejar ver as notícias ou mudar de língua, você pode clicar nos links "Encerrar sessão" ou "Página Principal". "Página Principal" não encerra a sessão, apenas retorna à página inicial do site. "Encerrar sessão" termina sua sessão no sistema." #: www/account/37.php:25 www/index/12.php:25 msgid "If you're extremely serious about encryption, you can join CAcert's Assurance Programme and Web of Trust. This allows you to have your identity verified to obtain added benefits, including longer length certificates and the ability to include your name on email certificates." -msgstr "" +msgstr "Se você realmente gosta de criptografia, você pode participar do Programa de Certificação e Rede de Confiança da CAcert. Isto permite que você tenha sua identidade verificada para obter mais benefícios, incluindo certificados com prazos mais longos e a habilidade de incluir seu nome em certificados de email." #: www/wot/3.php:32 msgid "If, and only if, the two match completely - you may award trust points up to the maximum points you are able to allocate;" -msgstr "Se, e somente se, todas as informações conferirem - você pode alocar pontos de confiança ate um máximo de pontos que você tem permissão de alocar;" +msgstr "Se, e somente se, todas as informações conferirem, você pode alocar pontos de confiança ate um máximo de pontos que você tem permissão de alocar;" #: www/help/7.php:1 msgid "In light of a request on the bugzilla list for more information about how our root certificate is protected I've decided to do a write up here and see if there is anything more people suggest could be done, or a better way of handling things altogether." @@ -1040,7 +1040,7 @@ msgstr "" #: www/help/3.php:57 msgid "In the 'IIS Certificate Wizard' you should find a 'Pending Certificate Request'." -msgstr "" +msgstr "No 'Assistente de Certificados do IIS' você deve encontrar uma 'Requisição de Certificado Pendente'." #: www/account/0.php:20 msgid "In this section you will be able to edit your personal information (if you haven't been assured), update your pass phrase, and lost pass phrase questions. You will also be able to set your location for the Web of Trust, it also effects the email announcement settings which among other things can be set to notify you if you're within 200km of a planned assurance event. You'll also be able to set additional contact information when you become fully trusted, so others can contact you to meet up outside official events." @@ -1053,7 +1053,7 @@ msgstr "Incluir" #: www/index/0.php:23 msgid "Inclusion into mainstream browsers!" -msgstr "" +msgstr "Inclusão nos browsers mais utilizados!" #: www/index.php:195 msgid "Incorrect email address and/or Pass Phrase." @@ -1110,7 +1110,7 @@ msgstr "Aparentemente, '%s' já foi revogado. Ignorando esta aç&ati #: www/index/0.php:17 msgid "It's been a long time coming, but the wait was worthwhile, finally you are able to get security at the right price... Free!" -msgstr "" +msgstr "Foi uma longa espera, mas valeu a pena. Finalmente você pode obter segurança pelo preço justo... Gratis!" #: www/index/1.php:107 msgid "It's possible to get notifications of up and coming events and even just general announcements, untick any notifications you don't wish to receive. For country, regional and radius notifications to work you must choose your location once you've verified your account and logged in." @@ -1203,7 +1203,7 @@ msgstr "Perguntas para Frase-Senha Perdida" #: www/index/1.php:84 msgid "Lost Pass Phrase Questions - Please enter five questions and your reponses to be used for security verifcation." -msgstr "" +msgstr "Questões para Chave-Senha perdida. Por favor entre com cinco perguntas e suas respostas para serem utilizadas em verificação de segurança." #: includes/general_stuff.php:59 www/account/43.php:106 www/account/43.php:110 #: www/account/43.php:114 www/account/43.php:118 www/account/43.php:122 @@ -1420,11 +1420,11 @@ msgstr "Nenhum domínio cadastrado atualmente." #: www/account/49.php:51 #, php-format msgid "No domains found matching %s" -msgstr "" +msgstr "Nenhum domínio encontrado que confere com %s" #: www/gpg.php:131 msgid "No emails found on your key" -msgstr "" +msgstr "Nenhum email encontrado em sua chave" #: www/account/15.php:24 www/account/19.php:24 www/account/23.php:24 #: www/account/6.php:22 @@ -1433,20 +1433,20 @@ msgstr "Certificado não vinculado à sua conta." #: includes/account.php:1731 msgid "No such user found." -msgstr "" +msgstr "Usuário não encontrado." #: www/account/43.php:51 #, php-format msgid "No users found matching %s" -msgstr "" +msgstr "Nenhum usuário encontrado que confere com %s" #: www/index/0.php:114 msgid "None, the sky is the limit for CAcert." -msgstr "" +msgstr "Nenhum, o céu é o limite para a CAcert." #: www/index/0.php:115 msgid "None; $10 USD per year membership fee." -msgstr "" +msgstr "Nenhum; taxa de associação de USD 10 por ano." #: includes/general_stuff.php:57 msgid "Normal Login" @@ -1464,7 +1464,7 @@ msgstr "Email inválido. Impossível continuar." #: www/help/2.php:10 www/help/2.php:44 msgid "Notes for the strangely curious" -msgstr "" +msgstr "Notas para os estranhamente curiosos." #: www/account/39.php:45 www/index/10.php:45 msgid "Notification of changes" @@ -1523,15 +1523,15 @@ msgstr "" #: www/wot/6.php:74 msgid "Only fill this in if you assured the person on a different day" -msgstr "" +msgstr "Apenas preencha caso você certificou a pessoa em um dia diferente" #: www/account/43.php:39 www/account/49.php:39 msgid "Only the first 100 rows are displayed." -msgstr "" +msgstr "Apenas as primeiras 100 linhas são mostradas." #: www/wot/6.php:61 msgid "Only tick the next box if the Assurance was face to face." -msgstr "" +msgstr "Apenas marque a próxima caixa se a certificação se deu pessoalmente, cara-a-cara." #: www/help/3.php:8 msgid "Open Directory Security folder" @@ -1882,7 +1882,7 @@ msgstr "Certificado de Servidor" #: www/index/0.php:80 msgid "Server certificates (un-assured)" -msgstr "Certificado de Servidor" +msgstr "Certificados de Servidor (não verificados)" #: www/wot.php:247 msgid "Shortly you and the person you were assuring will receive an email confirmation. There is no action on your behalf required to complete this." @@ -2792,7 +2792,7 @@ msgstr "" #: www/wot.php:49 msgid "A reminder notice has been sent." -msgstr "Sua mensagem foi enviada." +msgstr "Um lembrete foi enviado." #: includes/account_stuff.php:214 www/disputes/0.php:19 msgid "Abuses" @@ -2804,7 +2804,7 @@ msgstr "" #: www/wot/10.php:19 msgid "Assurer Ranking" -msgstr "Notários" +msgstr "Ranking de Notários" #: www/index/16.php:24 www/index/3.php:24 msgid "CAcert's GPG Key" @@ -2820,7 +2820,7 @@ msgstr "" #: www/account/52.php:48 msgid "Comment" -msgstr "Comentários" +msgstr "Comentário" #: includes/account.php:478 includes/account.php:491 includes/account.php:592 #: includes/account.php:1238 includes/account.php:1251 @@ -2830,7 +2830,7 @@ msgstr "" #: www/account/52.php:42 msgid "Current Points" -msgstr "Pontos de Verificação" +msgstr "Pontos Atuais" #: www/disputes/6.php:16 #, php-format @@ -2852,11 +2852,11 @@ msgstr "" #: www/disputes/2.php:20 msgid "Dispute Domain" -msgstr "Procurar um Domínio" +msgstr "Disputar Domínio" #: www/disputes.php:286 www/disputes.php:420 msgid "Dispute Probe" -msgstr "Sonda de Email" +msgstr "Sonda de Disputa" #: www/disputes/0.php:17 msgid "Disputes" @@ -2877,11 +2877,11 @@ msgstr "" #: www/disputes.php:377 www/disputes.php:422 www/disputes/2.php:15 #: www/disputes/6.php:15 www/disputes/6.php:20 msgid "Domain Dispute" -msgstr "Dominios" +msgstr "Disputa de Domínio" #: www/disputes.php:399 msgid "Domain Dispute!" -msgstr "Dominios" +msgstr "Disputa de Domínio!" #: www/disputes.php:428 msgid "Domain and Email Disputes" @@ -2902,7 +2902,7 @@ msgstr "" #: www/disputes.php:268 www/disputes.php:288 www/disputes/1.php:15 #: www/disputes/4.php:15 www/disputes/4.php:20 msgid "Email Dispute" -msgstr "Enviar Email ao Notário" +msgstr "Disputa de Email" #: www/disputes/1.php:27 www/disputes/2.php:28 msgid "File Dispute" @@ -2914,7 +2914,7 @@ msgstr "" #: www/index/16.php:23 www/index/3.php:23 msgid "GPG Key" -msgstr "Chaves GPG" +msgstr "Chave GPG" #: www/account/40.php:20 www/index/11.php:20 msgid "General questions about CAcert should be sent to the general support list, please send all emails in ENGLISH only, this list has many more volunteers then those directly involved with the running of the website, everyone on the mailing list understands english, even if this isn't their native language this will increase your chance at a competent reply. While it's best if you sign up to the mailing list to get replied to, you don't have to, but please make sure you note this in your email, otherwise it might seem like you didn't get a reply to your question." @@ -2959,7 +2959,7 @@ msgstr "" #: www/disputes.php:91 www/disputes.php:115 www/disputes.php:182 #: www/disputes.php:206 msgid "Invalid request. Can't continue." -msgstr "Email inválido. Impossível continuar." +msgstr "Pedido inválido. Impossível continuar." #: includes/tverify_stuff.php:39 msgid "Main Website" @@ -2967,7 +2967,7 @@ msgstr "" #: includes/account_stuff.php:214 msgid "More Information" -msgstr "Informações de 'Howto'" +msgstr "Mais Informações" #: www/account/52.php:37 msgid "Name on file" @@ -2979,7 +2979,7 @@ msgstr "" #: www/disputes.php:300 msgid "Not a valid Domain. Can't continue." -msgstr "Email inválido. Impossível continuar." +msgstr "Domínio inválido. Impossível continuar." #: www/account/52.php:40 msgid "Notary URL" @@ -2987,11 +2987,11 @@ msgstr "" #: includes/account_stuff.php:198 msgid "Organisation Assurance" -msgstr "Nome da Organização" +msgstr "Certificação de Organização" #: www/wot/11.php:19 msgid "Organisational Assurance" -msgstr "Nome da Organização" +msgstr "Certificação Organizacional" #: www/wot/11.php:22 msgid "Orgnisation Title" @@ -3011,11 +3011,11 @@ msgstr "" #: www/account/52.php:43 msgid "Potential Points" -msgstr "Total de Pontos" +msgstr "Pontos potenciais" #: www/account/52.php:38 msgid "Primary email address" -msgstr "Endereco de Email" +msgstr "Endereco de Email primário" #: www/index/7.php:20 msgid "Put a lot of effort convincing people in Germany to signup and be assured, he started work on a new RFC complient CPS, spent countless hours helping with tech support, and so much more" @@ -3035,7 +3035,7 @@ msgstr "" #: www/account/52.php:36 msgid "Request Details" -msgstr "Meus Detalhes" +msgstr "Detalhes do Pedido" #: www/index/0.php:75 msgid "Same as above plus get 100 assurance points by meeting with multiple assurers from the CAcert Web of Trust, who verify your identity using your government issued photo identity documents." @@ -3048,7 +3048,7 @@ msgstr "" #: www/disputes.php:310 #, php-format msgid "The domain '%s' already exists in the dispute system. Can't continue." -msgstr "O endereço de email '%s' já está no sistema. Impossível continuar." +msgstr "O domínio '%s' já existe no sistema de disputa. Impossível continuar." #: www/disputes.php:320 #, php-format @@ -3063,12 +3063,12 @@ msgstr "" #: www/disputes.php:400 #, php-format msgid "The domain '%s' isn't in the system. Can't continue." -msgstr "O endereço de email '%s' já está no sistema. Impossível continuar." +msgstr "O endereço de email '%s' não está no sistema. Impossível continuar." #: www/disputes.php:236 #, php-format msgid "The email address '%s' already exists in the dispute system. Can't continue." -msgstr "O endereço de email '%s' já está no sistema. Impossível continuar." +msgstr "O endereço de email '%s' já existe no sistema de disputa. Impossível continuar." #: www/disputes.php:247 #, php-format @@ -3082,7 +3082,7 @@ msgstr "" #: includes/account.php:2056 msgid "The following comments were made by reviewers" -msgstr "As contas seguintes foram removidas:" +msgstr "Os comentários seguintes foram feitos pelos revisores:" #: www/account/11.php:38 msgid "The following hostnames were rejected because the system couldn't link them to your account, if they are valid please verify the domains against your account." @@ -3094,7 +3094,7 @@ msgstr "" #: www/wot/2.php:28 msgid "The only other way to receive assurance points is to have had your identity checked by a third party CA, whose policies are suitably set to not let identity fraud run rampant. Please contact us if you would like more details about this." -msgstr "A única outra maneira de receber pontos para se tornar Notário é ter sua identidade verificada por uma terceira Autoridade de Certificados (CA), cujas políticas sejam bem elaboradas a fim de identificar e impedir fraudes. Por favor, nos contacte se você necessita de mais informações sobre isto." +msgstr "A única outra maneira de receber pontos para se tornar Notário é ter sua identidade verificada por uma terceira Autoridade de Certificados (CA), cujas políticas sejam bem elaboradas a fim de identificar e impedir fraudes. Por favor, nos contacte se desejar mais informações a respeito." #: www/wot/2.php:17 msgid "There are several ways to become a CAcert Assurer, the most common of which is face to face meetings with existing assurers, who check your ID documents (you need to show 2 government issued photo ID where possible otherwise you won't be allocated as many points!)." @@ -3118,7 +3118,7 @@ msgstr "" #: www/account/43.php:101 msgid "Tverify Account" -msgstr "Minha Conta" +msgstr "Conta Tverify" #: www/account/11.php:48 msgid "Unable to continue as no valid commonNames or subjectAltNames were present on your certificate request." @@ -3138,7 +3138,7 @@ msgstr "" #: www/disputes/4.php:32 www/disputes/5.php:29 www/disputes/6.php:32 msgid "Update Dispute" -msgstr "Atualizar" +msgstr "Atualizar Disputa" #: www/wot/2.php:26 msgid "Upon receiving your documents you will be notified, and points will be added to your account." @@ -3146,7 +3146,7 @@ msgstr "Você será notificado do recebimento dos seus documentos, e #: www/account/12.php:18 www/account/5.php:18 msgid "View all certificates" -msgstr "Certificados Válidos" +msgstr "Ver todos certificados" #: www/disputes/1.php:20 msgid "Which Email?" @@ -3162,7 +3162,7 @@ msgstr "" #: www/disputes.php:257 www/disputes.php:329 msgid "You aren't allowed to dispute your own email addresses. Can't continue." -msgstr "Email inválido. Impossível continuar." +msgstr "Você não pode disputar seu próprio endereço de email. Impossível continuar." #: www/wot/2.php:19 msgid "You can also become a CAcert Assurer by seeking out a public notary, justice of the peace, accountant, lawyer or bank manager. You will need to download and print out a copy of the TTP.pdf and fill in your sections. You will need to produce a photo copy of your ID, which the person assuring you will inspect against the originals. Once they are satisfied the documents appear to be genuine they need to sign the back of the photo copies, and fill in their sections of the TTP document. Once you have had your ID verified by 2 different people, pop the copies + forms in an envelope and post them to:" @@ -3174,7 +3174,7 @@ msgstr "" #: includes/account.php:2010 msgid "You have already voted on this request." -msgstr "Você não tem acesso à esta área." +msgstr "Você já votou neste pedido." #: www/disputes.php:416 #, php-format @@ -3229,4 +3229,4 @@ msgstr "" #: includes/account.php:2089 msgid "Your vote has been accepted." -msgstr "Sua mensagem foi enviada." +msgstr "Seu voto foi aceito." diff --git a/locale/ro.po b/locale/ro.po index e3c8814..a0984fc 100644 --- a/locale/ro.po +++ b/locale/ro.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:23:15+0000\n" +"PO-Revision-Date: 2005-05-21 02:04:12+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/ru.po b/locale/ru.po index 503453d..4c325c9 100644 --- a/locale/ru.po +++ b/locale/ru.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:23:23+0000\n" +"PO-Revision-Date: 2005-05-21 02:04:16+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/sv.po b/locale/sv.po index 5f68f0d..52542fc 100644 --- a/locale/sv.po +++ b/locale/sv.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:23:30+0000\n" +"PO-Revision-Date: 2005-05-21 02:04:22+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/tr.po b/locale/tr.po index 3219c14..9ee9968 100644 --- a/locale/tr.po +++ b/locale/tr.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:23:42+0000\n" +"PO-Revision-Date: 2005-05-21 02:04:28+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/locale/zh.po b/locale/zh.po index 00a5e0a..10c3a9f 100644 --- a/locale/zh.po +++ b/locale/zh.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-09 08:25:26+0000\n" -"PO-Revision-Date: 2005-05-16 07:23:52+0000\n" +"PO-Revision-Date: 2005-05-21 02:04:35+0000\n" "Last-Translator: Someone \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/pages/account/10.php b/pages/account/10.php index 49db13e..937c402 100644 --- a/pages/account/10.php +++ b/pages/account/10.php @@ -23,8 +23,13 @@

*** ***

-

+= 50) { ?> +
+
+

+ +


"> diff --git a/pages/account/16.php b/pages/account/16.php index 8de6506..c342ca3 100644 --- a/pages/account/16.php +++ b/pages/account/16.php @@ -35,6 +35,13 @@ : + + +
+
+ \n", wordwrap(_("Please note: The class 3 root certificate needs to be imported into your email program as well as the class 1 root certificate so your email program can build a full trust path chain. Until we are included in browsers this might not be a desirable option for most people"), 60))?> + + "> "> diff --git a/pages/account/18.php b/pages/account/18.php index 990d610..e15d9c7 100644 --- a/pages/account/18.php +++ b/pages/account/18.php @@ -15,7 +15,7 @@ - + @@ -34,7 +34,10 @@ where `memid`='".$_SESSION['profile']['id']."' and `org`.`orgid`=`orgemailcerts`.`orgid` "; if($_GET['viewall'] != 1) + { + $query .= "AND `revoked`=0 AND `renewed`=0 "; $query .= "HAVING `timeleft` > 0 AND `revoked`=0 "; + } $query .= "ORDER BY `modified` desc"; $res = mysql_query($query); if(mysql_num_rows($res) <= 0) diff --git a/pages/account/20.php b/pages/account/20.php index 30dcb94..932905f 100644 --- a/pages/account/20.php +++ b/pages/account/20.php @@ -21,8 +21,11 @@

-

+
+
+

+


"> diff --git a/pages/account/22.php b/pages/account/22.php index 886bbe3..cdf46c7 100644 --- a/pages/account/22.php +++ b/pages/account/22.php @@ -15,7 +15,7 @@
-
- + @@ -33,7 +33,10 @@ from `orgdomaincerts`,`org` where `org`.`memid`='".$_SESSION['profile']['id']."' and `orgdomaincerts`.`orgid`=`org`.`orgid` "; if($_GET['viewall'] != 1) - $query .= "HAVING `timeleft` > 0 AND `revoked`=0 "; + { + $query .= "AND `revoked`=0 AND `renewed`=0 "; + $query .= "HAVING `timeleft` > 0 "; + } $query .= "ORDER BY `orgdomaincerts`.`modified` desc"; //echo $query."
\n"; $res = mysql_query($query); diff --git a/pages/account/3.php b/pages/account/3.php index b7e0890..0fe8664 100644 --- a/pages/account/3.php +++ b/pages/account/3.php @@ -1,5 +1,5 @@ + Copyright (C) 2004-2005 by Duane Groth This file is part of CAcert. @@ -31,22 +31,29 @@ - - + + = 50) { - $fname = $_SESSION[profile][fname]; - $mname = $_SESSION[profile][mname]; - $lname = $_SESSION[profile][lname]; - $suffix = $_SESSION[profile][suffix]; + $fname = $_SESSION['profile']['fname']; + $mname = $_SESSION['profile']['mname']; + $lname = $_SESSION['profile']['lname']; + $suffix = $_SESSION['profile']['suffix']; ?> + + + - - - - - - + + + + + + + + + + diff --git a/www/wot.php b/www/wot.php index 09bbfc6..1d7050a 100644 --- a/www/wot.php +++ b/www/wot.php @@ -43,7 +43,7 @@ $body .= "Best regards"."\n"; $body .= "CAcert Support Team"; - sendmail($_POST['email'], "[CAcert.org] Reminder Notice", $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Website"); + sendmail($_POST['email'], "[CAcert.org] Reminder Notice", $body, "support@cacert.org", "", "", "CAcert Website"); $_SESSION['_config']['remindersent'] = 1; $_SESSION['_config']['error'] = _("A reminder notice has been sent."); @@ -264,7 +264,7 @@ $body .= _("Best regards")."\n"; $body .= _("CAcert Support Team"); - sendmail($_SESSION['_config']['notarise']['email'], "[CAcert.org] "._("You've been Assured."), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Website"); + sendmail($_SESSION['_config']['notarise']['email'], "[CAcert.org] "._("You've been Assured."), $body, "support@cacert.org", "", "", "CAcert Website"); putenv("LANG=".$_SESSION['_config']['language']); setlocale(LC_ALL, $_SESSION['_config']['language']); @@ -280,13 +280,13 @@ $body .= _("Best regards")."\n"; $body .= _("CAcert Support Team"); - sendmail($_SESSION['profile']['email'], "[CAcert.org] "._("You've Assured Another Member."), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($_SESSION['profile']['email'], "[CAcert.org] "._("You've Assured Another Member."), $body, "support@cacert.org", "", "", "CAcert Support"); if($_SESSION['profile']['board'] == 1 && intval($_POST['expire']) > 0) { $body = sprintf("%s %s (%s) has issued a temporary increase to 200 points for %s %s (%s) for %s days. This action was sponsored by %s %s (%s).", $_SESSION['profile']['fname'], $_SESSION['profile']['lname'], $_SESSION['profile']['email'], $_SESSION['_config']['notarise']['fname'], $_SESSION['_config']['notarise']['lname'], $_SESSION['_config']['notarise']['email'], intval($_POST['expire']), $sponsor['fname'], $sponsor['lname'], $sponsor['email'])."\n\n"; - sendmail("cacert-board@lists.cacert.org", "[CAcert.org] Temporary Increase Issued.", $body, "website@cacert.org", "returns@cacert.org", "", "CAcert Website"); + sendmail("cacert-board@lists.cacert.org", "[CAcert.org] Temporary Increase Issued.", $body, "website@cacert.org", "", "", "CAcert Website"); } showheader(_("My CAcert.org Account!")); @@ -319,7 +319,7 @@ $body = $_POST['message']; $subject = $_POST['subject']; sendmail($_SESSION['_config']['user']['email'], "[CAcert.org] ".$_POST['subject'], $_POST['message'], - $_SESSION['profile']['email'], "returns@cacert.org", "", $_SESSION['profile']['fname']." ".$_SESSION['profile']['lname']); + $_SESSION['profile']['email'], "", "", $_SESSION['profile']['fname']." ".$_SESSION['profile']['lname']); showheader(_("My CAcert.org Account!")); echo "

"._("Your email has been sent to ").$_SESSION['_config']['user']['fname'].".

"; echo "

[ Go Back ]

\n";
-
+
+
+ \n", wordwrap(_("Please note: The class 3 root certificate needs to be imported into your email program as well as the class 1 root certificate so your email program can build a full trust path chain. Until we are included in browsers this might not be a desirable option for most people"), 125))?> +

diff --git a/pages/account/39.php b/pages/account/39.php index 2b4fd3d..4306eb6 100644 --- a/pages/account/39.php +++ b/pages/account/39.php @@ -55,7 +55,7 @@

CAcert Inc.
-P.O. Box 75
+P.O. Box 81
Banksia NSW 2216
Australia

diff --git a/pages/account/40.php b/pages/account/40.php index 758e4fa..391cb0a 100644 --- a/pages/account/40.php +++ b/pages/account/40.php @@ -53,6 +53,6 @@


CAcert Inc.
-P.O. Box 75
+P.O. Box 81
Banksia NSW 2216
Australia

diff --git a/pages/index/10.php b/pages/index/10.php index 2b4fd3d..4306eb6 100644 --- a/pages/index/10.php +++ b/pages/index/10.php @@ -55,7 +55,7 @@

CAcert Inc.
-P.O. Box 75
+P.O. Box 81
Banksia NSW 2216
Australia

diff --git a/pages/index/11.php b/pages/index/11.php index 758e4fa..391cb0a 100644 --- a/pages/index/11.php +++ b/pages/index/11.php @@ -53,6 +53,6 @@


CAcert Inc.
-P.O. Box 75
+P.O. Box 81
Banksia NSW 2216
Australia

diff --git a/pages/index/7.php b/pages/index/7.php index eb012a6..c60ead6 100644 --- a/pages/index/7.php +++ b/pages/index/7.php @@ -22,5 +22,5 @@
  • * Adam Butler -
  • * Philipp Gühring -
  • * Evaldo Gardenali -
  • -
  • * Ben Pollinger -
  • +
  • * Ben Pollinger -
  • diff --git a/pages/wot/2.php b/pages/wot/2.php index 62f7ffc..ea1847b 100644 --- a/pages/wot/2.php +++ b/pages/wot/2.php @@ -19,7 +19,7 @@

    CAcert Inc.
    -P.O. Box 75
    +P.O. Box 81
    Banksia NSW 2216
    Australia

    diff --git a/pages/wot/4.php b/pages/wot/4.php index d05ca1e..80024fc 100644 --- a/pages/wot/4.php +++ b/pages/wot/4.php @@ -19,6 +19,6 @@

    CAcert Inc.
    -P.O. Box 75
    +P.O. Box 81
    Banksia NSW 2216
    Australia

    diff --git a/scripts/clientcerts.php b/scripts/clientcerts.php index e50a273..8fbf217 100755 --- a/scripts/clientcerts.php +++ b/scripts/clientcerts.php @@ -70,7 +70,7 @@ $body .= sprintf(_("You can collect your certificate for %s by going to the following location:")."\n\n", $row[CN]); $body .= "https://www.cacert.org/account.php?id=6&cert=$row[id]\n\n"; $body .= _("Best regards")."\n"._("CAcert.org Support!"); - sendmail($user[email], "[CAcert.org] "._("Client Certificate"), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($user[email], "[CAcert.org] "._("Client Certificate"), $body, "support@cacert.org", "", "", "CAcert Support"); } else { $query = "delete from `emailcerts` where `id`='".$row['id']."'"; mysql_query($query); @@ -126,7 +126,7 @@ $body .= sprintf(_("You can collect your certificate for %s by going to the following location:")."\n\n", $row[CN]); $body .= "https://www.cacert.org/account.php?id=6&cert=$row[id]\n\n"; $body .= _("Best regards")."\n"._("CAcert.org Support!"); - sendmail($user[email], "[CAcert.org] "._("Client Certificate"), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($user[email], "[CAcert.org] "._("Client Certificate"), $body, "support@cacert.org", "", "", "CAcert Support"); } else { $query = "delete from `emailcerts` where `id`='".$row['id']."'"; mysql_query($query); @@ -154,7 +154,7 @@ $body = _("Hi")." $user[fname],\n\n"; $body .= sprintf(_("Your certificate for %s has been revoked, as per request.")."\n\n", $row[CN]); $body .= _("Best regards")."\n"._("CAcert.org Support!"); - sendmail($user[email], "[CAcert.org] ".sprintf(_("Certificate for %s has been revoked"), $row['CN']), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($user[email], "[CAcert.org] ".sprintf(_("Certificate for %s has been revoked"), $row['CN']), $body, "support@cacert.org", "", "", "CAcert Support"); } $query = "select * from `orgemailcerts` where `crt_name`='' and `keytype`='NS'"; @@ -265,6 +265,6 @@ $body = _("Hi")." $user[fname],\n\n"; $body .= sprintf(_("Your certificate for %s has been revoked, as per request.")."\n\n", $row[CN]); $body .= _("Best regards")."\n"._("CAcert.org Support!"); - sendmail($user[email], "[CAcert.org] ".sprintf(_("Certificate for %s has been revoked"), $row['CN']), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($user[email], "[CAcert.org] ".sprintf(_("Certificate for %s has been revoked"), $row['CN']), $body, "support@cacert.org", "", "", "CAcert Support"); } ?> diff --git a/scripts/gpgcerts.php b/scripts/gpgcerts.php index c2ce0a6..43537ec 100755 --- a/scripts/gpgcerts.php +++ b/scripts/gpgcerts.php @@ -56,7 +56,7 @@ $body .= "pub 1024D/65D0FD58 2003-07-11 CA Cert Signing Authority (Root CA) \n"; $body .= "Key fingerprint = A31D 4F81 EF4E BD07 B456 FA04 D2BB 0D01 65D0 FD58\n\n"; $body .= _("Best regards")."\n"._("CAcert.org Support!")."\n\n"; - sendmail($user[email], "[CAcert.org] Your GPG/PGP Key", $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($user[email], "[CAcert.org] Your GPG/PGP Key", $body, "support@cacert.org", "", "", "CAcert Support"); } else { $query = "delete from `gpg` where `id`='".$row['id']."'"; mysql_query($query); diff --git a/scripts/removedead.php b/scripts/removedead.php index 4e3ed59..9d5ce3f 100755 --- a/scripts/removedead.php +++ b/scripts/removedead.php @@ -52,7 +52,7 @@ $data = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='$row[to]'")); $body = sprintf("%s %s (%s) had a temporary increase, but this has just expired and they have been reduced to 150 points.", $data['fname'], $data['lname'], $data['email'])."\n\n"; - sendmail("cacert-board@lists.cacert.org", "[CAcert.org] Temporary Increase Expired.", $body, "website@cacert.org", "returns@cacert.org", "", "CAcert Website"); + sendmail("cacert-board@lists.cacert.org", "[CAcert.org] Temporary Increase Expired.", $body, "website@cacert.org", "", "", "CAcert Website"); if($data['language'] != "") { @@ -67,7 +67,7 @@ $body .= _("Best regards")."\n"; $body .= _("CAcert Support Team"); - sendmail($data['email'], "[CAcert.org] "._("Temporary points increase has expired."), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Website"); + sendmail($data['email'], "[CAcert.org] "._("Temporary points increase has expired."), $body, "support@cacert.org", "", "", "CAcert Website"); mysql_query($query); } diff --git a/scripts/servercerts.php b/scripts/servercerts.php index aaa8f86..3e73a6f 100755 --- a/scripts/servercerts.php +++ b/scripts/servercerts.php @@ -56,7 +56,7 @@ fputs($fp, "basicConstraints = critical, CA:FALSE\n"); fputs($fp, "extendedKeyUsage = clientAuth, serverAuth, nsSGC, msSGC\n"); fputs($fp, "keyUsage = digitalSignature, keyEncipherment\n"); - fputs($fp, "authorityInfoAccess = OCSP;URI:http://ocsp.cacert.org:2560\n"); + fputs($fp, "authorityInfoAccess = OCSP;URI:http://ocsp.cacert.org\n"); $bits = explode("/", $row['subject']); foreach($bits as $val) { @@ -108,7 +108,7 @@ $body = _("Hi")." ".$user['fname'].",\n\n"; $body .= sprintf(_("Below you will find your certificate for %s.")."\n\n", $row['CN']); $body .= _("Best regards")."\n"._("CAcert.org Support!")."\n\n".$cert; - sendmail($user['email'], "[CAcert.org] "._("Server Certificate"), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($user['email'], "[CAcert.org] "._("Server Certificate"), $body, "support@cacert.org", "", "", "CAcert Support"); } else { $query = "delete from `domaincerts` where `id`='".$row['id']."'"; mysql_query($query); @@ -137,7 +137,7 @@ $body = _("Hi")." ".$user['fname'].",\n\n"; $body .= sprintf(_("Your certificate for %s has been revoked, as per request.")."\n\n", $row['CN']); $body .= _("Best regards")."\n"._("CAcert.org Support!"); - sendmail($user['email'], "[CAcert.org] ".sprintf(_("Certificate for %s has been revoked"), $row['CN']), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($user['email'], "[CAcert.org] ".sprintf(_("Certificate for %s has been revoked"), $row['CN']), $body, "support@cacert.org", "", "", "CAcert Support"); } $query = "select * from `orgdomaincerts` where `crt_name`=''"; @@ -153,7 +153,7 @@ fputs($fp, "basicConstraints = critical, CA:FALSE\n"); fputs($fp, "extendedKeyUsage = clientAuth, serverAuth, nsSGC, msSGC\n"); fputs($fp, "keyUsage = digitalSignature, keyEncipherment\n"); - fputs($fp, "authorityInfoAccess = OCSP;URI:http://ocsp.cacert.org:2560\n"); + fputs($fp, "authorityInfoAccess = OCSP;URI:http://ocsp.cacert.org\n"); $bits = explode("/", $row['subject']); foreach($bits as $val) { diff --git a/www/account.php b/www/account.php index 78fe180..daadf18 100644 --- a/www/account.php +++ b/www/account.php @@ -1,5 +1,5 @@ + Copyright (C) 2004-2005 by Duane Groth This file is part of CAcert. @@ -23,7 +23,7 @@ } else if($oldid == 40 && $process != "" && $_POST['support'] != "yes") { $message = "From: $who\nEmail: $email\nSubject: $subject\n\nMessage:\n".$message; - sendmail("support@cacert.org", "[CAcert.org] ".$subject, $message, $email, "returns@cacert.org"); + sendmail("support@cacert.org", "[CAcert.org] ".$subject, $message, $email, $email, "", "CAcert Website"); showheader(_("Welcome to CAcert.org")); echo _("Your message has been sent."); showfooter(); @@ -31,7 +31,7 @@ } else if($oldid == 40 && $process != "" && $_POST['support'] == "yes") { $message = "From: $who\nEmail: $email\nSubject: $subject\n\nMessage:\n".$message; - sendmail("cacert-support@lists.cacert.org, $email", "[website form email]: ".$subject, $message, "website-form@cacert.org", $email); + sendmail("cacert-support@lists.cacert.org, $email", "[website form email]: ".$subject, $message, "website-form@cacert.org", "cacert-support@lists.cacert.org, $email", "", "CAcert Website"); showheader(_("Welcome to CAcert.org")); echo _("Your message has been sent to the general support list."); diff --git a/www/cps.php b/www/cps.php index daeb54a..defffb6 100644 --- a/www/cps.php +++ b/www/cps.php @@ -439,7 +439,7 @@
  • Home Page: CAcert Inc: The Free Community Digital Certificate Authority
  • Physical address:
    CAcert Inc.
    -PO Box 75
    +PO Box 81
    Banksia NSW 2216
    Australia
  • diff --git a/www/disputes.php b/www/disputes.php index 8ce99c9..1dc8d91 100644 --- a/www/disputes.php +++ b/www/disputes.php @@ -283,7 +283,7 @@ $body .= "https://".$_SESSION['_config']['normalhostname']."/disputes.php?type=email&emailid=$emailid&hash=$hash\n\n"; $body .= _("Best regards")."\n"._("CAcert.org Support!"); - sendmail($email, "[CAcert.org] "._("Dispute Probe"), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($email, "[CAcert.org] "._("Dispute Probe"), $body, "support@cacert.org", "", "", "CAcert Support"); showheader(_("Email Dispute")); printf(_("The email address '%s' has been entered into the dispute system, the email address will now be sent an email which will give the recipent the option of accepting or rejecting the request, if after 2 days we haven't received a valid response for or against we will discard the request."), $email); @@ -417,7 +417,7 @@ $body .= "https://".$_SESSION['_config']['normalhostname']."/disputes.php?type=domain&domainid=$domainid&hash=$hash\n\n"; $body .= _("Best regards")."\n"._("CAcert.org Support!"); - sendmail($authaddy, "[CAcert.org] "._("Dispute Probe"), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($authaddy, "[CAcert.org] "._("Dispute Probe"), $body, "support@cacert.org", "", "", "CAcert Support"); showheader(_("Domain Dispute")); printf(_("The domain '%s' has been entered into the dispute system, the email address you choose will now be sent an email which will give the recipent the option of accepting or rejecting the request, if after 2 days we haven't received a valid response for or against we will discard the request."), $domain); diff --git a/www/index.php b/www/index.php index a989ed6..613061e 100644 --- a/www/index.php +++ b/www/index.php @@ -44,45 +44,45 @@ $tanswers++; $_SESSION['lostpw']['A1'] = trim(mysql_escape_string(stripslashes($A1))); - if(strtolower($_SESSION['lostpw']['A1']) == strtolower($_SESSION['lostpw']['user']['A1'])) + if(stripslashes(strtolower($_SESSION['lostpw']['A1'])) == strtolower($_SESSION['lostpw']['user']['A1'])) $answers++; - $body .= "System: ".$_SESSION['lostpw']['user']['A1']."\nEntered: ".$_SESSION['lostpw']['A1']."\n"; + $body .= "System: ".$_SESSION['lostpw']['user']['A1']."\nEntered: ".stripslashes($_SESSION['lostpw']['A1'])."\n"; } if($Q2) { $tanswers++; $_SESSION['lostpw']['A2'] = trim(mysql_escape_string(stripslashes($A2))); - if(strtolower($_SESSION['lostpw']['A2']) == strtolower($_SESSION['lostpw']['user']['A2'])) + if(stripslashes(strtolower($_SESSION['lostpw']['A2'])) == strtolower($_SESSION['lostpw']['user']['A2'])) $answers++; - $body .= "System: ".$_SESSION['lostpw']['user']['A2']."\nEntered: ".$_SESSION['lostpw']['A2']."\n"; + $body .= "System: ".$_SESSION['lostpw']['user']['A2']."\nEntered: ".stripslashes($_SESSION['lostpw']['A2'])."\n"; } if($Q3) { $tanswers++; $_SESSION['lostpw']['A3'] = trim(mysql_escape_string(stripslashes($A3))); - if(strtolower($_SESSION['lostpw']['A3']) == strtolower($_SESSION['lostpw']['user']['A3'])) + if(stripslashes(strtolower($_SESSION['lostpw']['A3'])) == strtolower($_SESSION['lostpw']['user']['A3'])) $answers++; - $body .= "System: ".$_SESSION['lostpw']['user']['A3']."\nEntered: ".$_SESSION['lostpw']['A3']."\n"; + $body .= "System: ".$_SESSION['lostpw']['user']['A3']."\nEntered: ".stripslashes($_SESSION['lostpw']['A3'])."\n"; } if($Q4) { $tanswers++; $_SESSION['lostpw']['A4'] = trim(mysql_escape_string(stripslashes($A4))); - if(strtolower($_SESSION['lostpw']['A4']) == strtolower($_SESSION['lostpw']['user']['A4'])) + if(stripslashes(strtolower($_SESSION['lostpw']['A4'])) == strtolower($_SESSION['lostpw']['user']['A4'])) $answers++; - $body .= "System: ".$_SESSION['lostpw']['user']['A4']."\nEntered: ".$_SESSION['lostpw']['A4']."\n"; + $body .= "System: ".$_SESSION['lostpw']['user']['A4']."\nEntered: ".stripslashes($_SESSION['lostpw']['A4'])."\n"; } if($Q5) { $tanswers++; $_SESSION['lostpw']['A5'] = trim(mysql_escape_string(stripslashes($A5))); - if(strtolower($_SESSION['lostpw']['A5']) == strtolower($_SESSION['lostpw']['user']['A5'])) + if(stripslashes(strtolower($_SESSION['lostpw']['A5'])) == strtolower($_SESSION['lostpw']['user']['A5'])) $answers++; - $body .= "System: ".$_SESSION['lostpw']['user']['A5']."\nEntered: ".$_SESSION['lostpw']['A5']."\n"; + $body .= "System: ".$_SESSION['lostpw']['user']['A5']."\nEntered: ".stripslashes($_SESSION['lostpw']['A5'])."\n"; } $_SESSION['lostpw']['pw1'] = trim(mysql_escape_string(stripslashes($newpass1))); @@ -98,7 +98,7 @@ "---------------------------------------------------------------------\n".$body. "---------------------------------------------------------------------\n"; sendmail("support@cacert.org", "[CAcert.org] Requested Pass Phrase Change", $body, - $_SESSION['lostpw']['user']['email'], "returns@cacert.org", "", $_SESSION['lostpw']['user']['fname']); + $_SESSION['lostpw']['user']['email'], "", "", $_SESSION['lostpw']['user']['fname']); $_SESSION['_config']['errmsg'] = _("You failed to get all answers correct, system admins have been notified."); } else if($_SESSION['lostpw']['pw1'] != $_SESSION['lostpw']['pw2'] || $_SESSION['lostpw']['pw1'] == "") { $_SESSION['_config']['errmsg'] = _("New Pass Phrases specified don't match or were blank."); @@ -336,7 +336,7 @@ $body .= "http://".$_SESSION['_config']['normalhostname']."/verify.php?type=email&emailid=$emailid&hash=$hash\n\n"; $body .= _("Best regards")."\n"._("CAcert.org Support!"); - sendmail($_SESSION['signup']['email'], "[CAcert.org] "._("Mail Probe"), $body, "support@cacert.org", "returns@cacert.org", "", "CAcert Support"); + sendmail($_SESSION['signup']['email'], "[CAcert.org] "._("Mail Probe"), $body, "support@cacert.org", "", "", "CAcert Support"); } } @@ -359,7 +359,7 @@ { $message = "From: $who\nEmail: $email\nSubject: $subject\n\nMessage:\n".$message; - sendmail("support@cacert.org", "[CAcert.org] ".$subject, $message, $email, "returns@cacert.org", "", "CAcert Support"); + sendmail("support@cacert.org", "[CAcert.org] ".$subject, $message, $email, "", "", "CAcert Support"); showheader(_("Welcome to CAcert.org")); echo _("Your message has been sent."); showfooter(); @@ -370,7 +370,7 @@ { $message = "From: $who\nEmail: $email\nSubject: $subject\n\nMessage:\n".$message; - sendmail("cacert-support@lists.cacert.org, $email", "[website form email]: ".$subject, $message, "website-form@cacert.org", "$email", "", "CAcert-Website"); + sendmail("cacert-support@lists.cacert.org, $email", "[website form email]: ".$subject, $message, "website-form@cacert.org", "cacert-support@lists.cacert.org, $email", "", "CAcert-Website"); showheader(_("Welcome to CAcert.org")); echo _("Your message has been sent to the general support list."); showfooter(); diff --git a/www/stats.php b/www/stats.php index 463ba31..5501bf5 100644 --- a/www/stats.php +++ b/www/stats.php @@ -43,17 +43,21 @@
    :
    :
    :
    :: 0 and sum(`points`) < 50")))?>
    := 50 and sum(`points`) < 100")))?>
    :
    :