updates + added api

This commit is contained in:
root 2005-11-08 10:06:04 +00:00
parent 13a851559a
commit 40a0cc9ebd
43 changed files with 3715 additions and 2256 deletions

View file

@ -169,7 +169,7 @@
} else {
$oldid = 4;
$_POST['keytype'] = "MS";
$csr = $_POST['optionalCSR'];
$csr = trim($_POST['optionalCSR']);
}
}
@ -491,8 +491,8 @@
fputs($fp, $CSR);
fclose($fp);
$CSR = $_SESSION['_config']['tmpfname'];
$_SESSION['_config']['subject'] = trim(`/usr/bin/openssl req -text -noout -in "$CSR"|grep Subject:`);
$bits = explode(",", trim(`/usr/bin/openssl req -text -noout -in "$CSR"|grep -A1 'X509v3 Subject Alternative Name:'|grep DNS:`));
$_SESSION['_config']['subject'] = trim(`/usr/bin/openssl req -text -noout -in "$CSR"|tr -d "\\0"|grep "Subject:"`);
$bits = explode(",", trim(`/usr/bin/openssl req -text -noout -in "$CSR"|tr -d "\\0"|grep -A1 'X509v3 Subject Alternative Name:'|grep DNS:`));
foreach($bits as $val)
{
$_SESSION['_config']['subject'] .= "/subjectAltName=".trim($val);
@ -633,8 +633,8 @@
$newid = mysql_insert_id();
$newfile = $_SESSION['_config']['filepath']."/csr/server-$newid.csr";
copy($row['csr_name'], $newfile);
$_SESSION['_config']['subject'] = trim(`/usr/bin/openssl req -text -noout -in "$newfile"|grep Subject:`);
$bits = explode(",", trim(`/usr/bin/openssl req -text -noout -in "$newfile"|grep -A1 'X509v3 Subject Alternative Name:'|grep DNS:`));
$_SESSION['_config']['subject'] = trim(`/usr/bin/openssl req -text -noout -in "$newfile"|tr -d "\\0"|grep "Subject:"`);
$bits = explode(",", trim(`/usr/bin/openssl req -text -noout -in "$newfile"|tr -d "\\0"|grep -A1 'X509v3 Subject Alternative Name:'|grep DNS:`));
foreach($bits as $val)
{
$_SESSION['_config']['subject'] .= "/subjectAltName=".trim($val);
@ -1302,8 +1302,8 @@
fputs($fp, $CSR);
fclose($fp);
$CSR = $_SESSION['_config']['tmpfname'];
$_SESSION['_config']['subject'] = trim(`/usr/bin/openssl req -text -noout -in "$CSR"|grep Subject:`);
$bits = explode(",", trim(`/usr/bin/openssl req -text -noout -in "$CSR"|grep -A1 'X509v3 Subject Alternative Name:'|grep DNS:`));
$_SESSION['_config']['subject'] = trim(`/usr/bin/openssl req -text -noout -in "$CSR"|tr -d "\\0"|grep "Subject:"`);
$bits = explode(",", trim(`/usr/bin/openssl req -text -noout -in "$CSR"|tr -d "\\0"|grep -A1 'X509v3 Subject Alternative Name:'|grep DNS:`));
foreach($bits as $val)
{
$_SESSION['_config']['subject'] .= "/subjectAltName=".trim($val);
@ -1945,8 +1945,8 @@
{
$CSR = trim($CSR);
$_SESSION['_config']['CSR'] = $CSR;
$_SESSION['_config']['subject'] = trim(`echo "$CSR"|/usr/bin/openssl req -text -noout|grep Subject:`);
$bits = explode(",", trim(`echo "$CSR"|/usr/bin/openssl req -text -noout|grep -A1 'X509v3 Subject Alternative Name:'|grep DNS:`));
$_SESSION['_config']['subject'] = trim(`echo "$CSR"|/usr/bin/openssl req -text -noout|tr -d "\\0"|grep "Subject:"`);
$bits = explode(",", trim(`echo "$CSR"|/usr/bin/openssl req -text -noout|tr -d "\\0"|grep -A1 'X509v3 Subject Alternative Name:'|grep DNS:`));
foreach($bits as $val)
{
$_SESSION['_config']['subject'] .= "/subjectAltName=".trim($val);
@ -1970,8 +1970,8 @@
if($process != "" && $oldid == 46)
{
$CSR = $_SESSION['_config']['CSR'];
$_SESSION['_config']['subject'] = trim(`echo "$CSR"|/usr/bin/openssl req -text -noout|grep Subject:`);
$bits = explode(",", trim(`echo "$CSR"|/usr/bin/openssl req -text -noout|grep -A1 'X509v3 Subject Alternative Name:'|grep DNS:`));
$_SESSION['_config']['subject'] = trim(`echo "$CSR"|/usr/bin/openssl req -text -noout|tr -d "\\0"|grep "Subject:"`);
$bits = explode(",", trim(`echo "$CSR"|/usr/bin/openssl req -text -noout|tr -d "\\0"|grep -A1 'X509v3 Subject Alternative Name:'|grep DNS:`));
foreach($bits as $val)
{
$_SESSION['_config']['subject'] .= "/subjectAltName=".trim($val);
@ -2132,7 +2132,7 @@
mysql_query($query);
$rc = mysql_num_rows(mysql_query("select * from `tverify-vote` where `tverify`='$uid' and `vote`='1'"));
if($rc >= 4)
if($rc >= 8)
{
mysql_query("update `tverify` set `modified`=NOW() where `id`='$uid'");
$tverify = mysql_fetch_assoc(mysql_query("select * from `tverify` where `id`='$uid'"));

View file

@ -64,6 +64,7 @@
"he_IL" => "עברית",
"hr_HR" => "Hrvatski",
"hu_HU" => "Magyar",
"is_IS" => "Íslenska",
"it_IT" => "Italiano",
"ja_JP" => "日本語",
"ka_GE" => "Georgian",
@ -114,7 +115,6 @@
}
}
}
if(strlen($_SESSION['_config']['language']) != 5)
{
$lang = $_SESSION['_config']['language'];
@ -142,7 +142,7 @@
}
putenv("LANG=".$_SESSION['_config']['language']);
setlocale(LC_ALL, $_SESSION['_config']['language'].".utf-8");
setlocale(LC_ALL, $_SESSION['_config']['language']);
$domain = 'messages';
bindtextdomain("$domain", $_SESSION['_config']['filepath']."/locale");
textdomain("$domain");

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -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-07-22 15:42:40+0000\n"
"PO-Revision-Date: 2005-10-31 00:59:12+0000\n"
"Last-Translator: Someone <someone@someisp.com>\n"
"Language-Team: <de@li.org>\n"
"MIME-Version: 1.0\n"
@ -1124,15 +1124,15 @@ msgstr "Ugyldig f&oslash;dselsdagsdato"
#: www/wot/6.php:78
msgid "Issuing a temporary increase will automatically boost their points to 200 points for a nomindated amount of days, after which the person will be reduced to 150 points regardless of the amount of points they had previously. Regardless of method chosen above it will be recorded in the system as an Administrative Increase and there is a maximum amount of 45 days that points can be issued for."
msgstr ""
msgstr "Udstedelse af midlertidig points forh&oslash;jelse vil h&aelig;ve deres point til 200 , hvorefter personen vil blive reduceret til 150 points, uanset antallet af points personen havde tidligere. Uanset hvilken metode der bliver valgt ovenfor vil det blive registreret som en administrativ forh&oslash;jelse i loggen. Der kan maksimalt tildeles forh&oslash;jede points i 45 dage."
#: www/wot/3.php:17
msgid "It is essential that CAcert Assurers understand and follow the rules below to ensure that applicants for assurance are suitably identified, which, in turn, maintains trust in the system."
msgstr ""
msgstr "Det er vigtigt at CAcert forsikringsagenterne forst&aring;r og f&oslash;lger nedenst&aring;ende regler, for at sikre at ans&oslash;gere bliver forsvarligt identificeret. Dette er sikkerheden for tilliden i systemet."
#: www/wot/3.php:36
msgid "It is imperative that you maintain the confidentiality and privacy of the applicant, and never disclose the information obtained without the applicant's consent."
msgstr ""
msgstr "Det er underforst&aring;et at du behandler oplysningerne om ans&oslash;geren fortroligt og ikke videregivere disse uden ans&oslash;gerens samtykke."
#: includes/account.php:589 includes/account.php:700 includes/account.php:1048
#: includes/account.php:1098 includes/account.php:1259
@ -1147,7 +1147,7 @@ msgstr "Det har v&aelig;ret l&aelig;nge under vejs, men ventetiden har v&aelig;r
#: 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."
msgstr ""
msgstr "Det er muligt at modtage meddelelser om kommende arrangementer eller generelle annonceringer. Frav&aelig;lg de typer meddelelser du ikk e&oslash;nsker at modtager. For at nationale, regions og omr&aring;de meddelelser kan fungere, skal du oplyse din lokation n&aring;r din konto er bekr&aelig;ftet og du er logget ind i systemet."
#: includes/general_stuff.php:53
msgid "Join"
@ -1163,7 +1163,7 @@ msgstr "N&oslash;gle styrke:"
#: www/help/3.php:4
msgid "Key generation process"
msgstr ""
msgstr "N&oslash;gle oprettelses forl&oslash;b"
#: www/account/17.php:131 www/account/4.php:131
msgid "Keysize:"
@ -1184,7 +1184,7 @@ msgstr "Seneste nyt"
#: www/wot/3.php:41
msgid "Liability"
msgstr ""
msgstr "Ansvarlighed"
#: www/index/0.php:54 www/index/0.php:64 www/index/0.php:74 www/index/0.php:84
#: www/index/0.php:94 www/index/0.php:104 www/index/0.php:114
@ -1195,11 +1195,11 @@ msgstr "Begr&aelig;nsninger"
#: www/wot/1.php:74 www/wot/1.php:87 www/wot/1.php:102 www/wot/7.php:26
#: www/wot/7.php:35 www/wot/7.php:46 www/wot/7.php:58
msgid "Listed"
msgstr ""
msgstr "Listet"
#: www/help/4.php:11
msgid "Locality Name (eg, city) [Sydney]:"
msgstr ""
msgstr "Omr&aring;denavn (f.eks. by) [Sydney]:"
#: www/account/11.php:30 www/account/21.php:33 www/account/43.php:196
#: www/account/43.php:231 www/wot/10.php:25 www/wot/10.php:58 www/wot/6.php:69
@ -1232,7 +1232,7 @@ msgstr "Glemt kodeord sp&oslash;rgsm&aring;l"
#: 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 "Sp&oslash;rgsm&aring;l til glemt kodes&aelig;tning. Indtast 5 sp&oslash;rgsm&aring;l og de tilh&oslash;rende svar, til brug for sikkerhedsbekr&aelig;ftigelse."
#: 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
@ -1243,7 +1243,7 @@ msgstr "Glemt kodeord"
#: www/index.php:318
msgid "Mail Probe"
msgstr "Post censor"
msgstr "E-post test"
#: www/account/2.php:49
msgid "Make Default"
@ -1255,15 +1255,15 @@ msgstr "G&oslash;r dette til min lokation"
#: www/index/51.php:21
msgid "Many are just the users of the system who by just making use of the project contribute to the wider community by word-of-mouth."
msgstr ""
msgstr "Mange af disse er brugerne af systemet, som ved at de bruger dette projekt, bidrager til f&aelig;llesskabet ved omtale af projektet til andre."
#: www/index/51.php:24
msgid "Many people are currently dissatisfied with the commercial offerings. Many people wish only to connect or share with people they know, or simply secure their webmail from people potentially sniffing their traffic. Why subscribe to a service that is not structured to handle this, and furthermore charges a king's ransom for the privilege?"
msgstr ""
msgstr "Mange er i &oslash;jeblikket utilfredse med de kommercielle tilbud. Mange &oslash;nsker kun at communikere med personer de kender, eller &oslash;nske at sikre deres webmail imod at andre ser den. f.eks ved at sniffe deres netv&aelig;rkstrafik. Hvorfor abonnere p&aring; services som ikke er indrettet til at h&aring;ndtere dette og ydermere betale skyh&oslash;je priser for denne sikkerhed."
#: www/index/7.php:17
msgid "Many people to thank, if you've had a large input with the CAcert project with code, documentation, translations, or assurances and would like recognition let me know."
msgstr ""
msgstr "Der er mange personer at takke, hvis du har bidraget med en st&oslash;rre andel til CAcert projektet, med kode, dokumentation, overs&aelig;ttelse og forsikringer og &oslash;nsker at blive n&aelig;vnt - s&aring; lad mig det vide."
#: www/account/32.php:25 www/account/33.php:35
msgid "Master Account"
@ -1275,12 +1275,12 @@ msgstr "maksimum points"
#: www/wot/9.php:56
msgid "Message"
msgstr ""
msgstr "Besked"
#: www/account/43.php:197 www/account/43.php:232 www/wot/10.php:26
#: www/wot/10.php:59 www/wot/6.php:52
msgid "Method"
msgstr ""
msgstr "Metode"
#: www/help/2.php:58
msgid "Microsoft Root Certificate Program"
@ -1304,7 +1304,7 @@ msgstr "Blandet"
#: www/help/2.php:26
msgid "Most people would object if they found that all their postal letters are being opened, read and possibly recorded by the Government before being passed on to the intended recipient, resealed as if nothing had happened. And yet this is what happens every day with your emails (in the UK). There are some who have objected to this intrusion of privacy, but their voices are small and fall on deaf ears. However the most effective way to combat this intrusion is to seal the envelope shut in a miniature bank vault, i.e. encrypt your email. If all emails were encrypted, it would be very hard for Government, or other organisations/individual crackers, to monitor the general public. They would only realistically have enough resources to monitor those they had reason to suspect. Why? Because encryption can be broken, but it takes a lot of computing power and there wouldn't be enough to monitor the whole population of any given country."
msgstr ""
msgstr "Mange vil protestere hvis de opdager at deres breve bliver &aring;bnet, l&aelig;st og muligvist registreret af staten, inden de sendes til den oprindelige modtager som om intet var hendt. Det er hvad sker hver dag med din mail (i England). Der er nogen der har protesteret imod denne indblanden i privatlivets fred, men deres stemmer er sm&aring; og lyder for d&oslash;ve &oslash;ren. Den mest effektive vej til at bek&aelig;mpe denne indblanden er at forsegle konvulutten i en mini-bankboks - f.eks. ved at kryptere din post. Hvis alt post er krypteret vil det v&aelig;re meget sv&aelig;rt for regeringen, andre organisationer eller individuelle crackere at aflytte almindelige mennesker. De vil realistisk kun have nok ressourcer til at aflytte de personer der har grund til at mist&aelig;nke. Hvorfor s&aring; det? Fordi kryptering kan kn&aelig;kkes, men det tager meget komputerkraft og der er ikke v&aelig;re nok computerkraft til at overv&aring;ge hele befolkningen i alle lande."
#: includes/general_stuff.php:56 www/account/0.php:15
msgid "My Account"
@ -1312,7 +1312,7 @@ msgstr "Min konto"
#: includes/account_stuff.php:146 www/account/36.php:18
msgid "My Alert Settings"
msgstr ""
msgstr "Mine notifikations indstillinger"
#: includes/account.php:24 includes/account.php:35 includes/account.php:53
#: includes/account.php:76 includes/account.php:85 includes/account.php:119
@ -1350,7 +1350,7 @@ msgstr "Mine detajler"
#: www/account/41.php:18
msgid "My Language Settings"
msgstr ""
msgstr "Mine sprog indstillinger"
#: includes/account_stuff.php:146 www/wot/8.php:19
msgid "My Listing"
@ -1362,7 +1362,7 @@ msgstr "min lokation"
#: www/account/41.php:21
msgid "My prefered language"
msgstr ""
msgstr "Mit foretrukne sprog"
#: www/account/2.php:41
msgid "N/A"
@ -1428,11 +1428,11 @@ msgstr "N&aelig;ste"
#: www/help/4.php:17
msgid "Next step is that you submit the contents of server.csr to the CAcert website, it should look *EXACTLY* like the following example otherwise the server may reject your request because it appears to be invalid."
msgstr ""
msgstr "N&aelig;ste trin er at du sender indholdet af server.csr filen til CAcert websiden. Det skal se ud PR&AElig;CIST som eksemplet herunder, ellers kan serveren afvise din foresp&oslash;rgsel, fordi det ser ud til at v&aelig;re forkert."
#: www/account/50.php:29
msgid "No"
msgstr ""
msgstr "Nej"
#: www/account/3.php:52
msgid "No Name"
@ -1445,11 +1445,11 @@ msgstr "Ingen dom&aelig;ner er pt. listet."
#: www/account/49.php:51
#, php-format
msgid "No domains found matching %s"
msgstr ""
msgstr "Der blev ikke fundet domner som passer med %s"
#: www/gpg.php:131
msgid "No emails found on your key"
msgstr ""
msgstr "Der blev ikke fundet nogen email adresser i din n&oslash;gle"
#: www/account/15.php:24 www/account/19.php:24 www/account/23.php:24
#: www/account/6.php:22
@ -1458,20 +1458,20 @@ msgstr "Der er intet s&aring;dan certifikat tilknyttet din konto."
#: includes/account.php:1731
msgid "No such user found."
msgstr ""
msgstr "Brugeren blev ikke fundet."
#: www/account/43.php:51
#, php-format
msgid "No users found matching %s"
msgstr ""
msgstr "Ingen brugere svarer til %s"
#: www/index/0.php:114
msgid "None, the sky is the limit for CAcert."
msgstr ""
msgstr "Ingen - der er h&oslash;jt til himlen i CAcert."
#: www/index/0.php:115
msgid "None; $10 USD per year membership fee."
msgstr ""
msgstr "Ingen; $10 USD &aring;rligt for medlemsskab."
#: includes/general_stuff.php:57
msgid "Normal Login"
@ -1489,7 +1489,7 @@ msgstr "Ikke gyldig epost adresse. Kan ikke forts&aelig;tte."
#: www/help/2.php:10 www/help/2.php:44
msgid "Notes for the strangely curious"
msgstr ""
msgstr "Noter for den specielt nysgerrige"
#: www/account/39.php:45 www/index/10.php:45
msgid "Notification of changes"
@ -1516,7 +1516,7 @@ msgstr "Tilbagekalder nu f&oslash;lgende certifikater:"
#: www/wot/6.php:81
msgid "Number of days"
msgstr ""
msgstr "Antal dage"
#: includes/general_stuff.php:70
msgid "OCSP Details"
@ -1524,7 +1524,7 @@ msgstr "OCSP detaljer"
#: www/help/2.php:30
msgid "Of the biggest reasons why most people haven't started doing this, apart from being slightly technical, the reason is financial. You need your own certificate to digitally sign your emails. And the Certificate Authorities charge money to provide you with your own certificate. Need I say more. Dosh = no thanks I'd rather walk home. But organisations are emerging to provide the common fool in the street with a free alternative. However, given the obvious lack of funding and the emphasis on money to get enrolled, these organisations do not yet have the money to get themselves established as trusted Certificate Authorities. Thus it is currently down to trust. The decision of the individual to trust an unknown Certificate Authority. However once you have put your trust in a Certificate Authority you can implicitly trust the digital signatures generated using their certificates. In other words, if you trust (and accept the certificate of) the Certificate Authority that I use, you can automatically trust my digital signature. Trust me!"
msgstr ""
msgstr "En af de st&oslash;rste &aring;rsager til at folk endnu ikke er started med at bruge dette, bortset fra at det er lidt teknisk, er af financiel karakter. Du beh&oslash;ver dit eget certifikat for digitalt at underskrive dine emails. Certifikat myndigheden kr&aelig;ver penge for at give dig et s&aring;dant. Beh&oslash;ver jeg at sige mere...? Der er dog ved at v&aelig;re organisationer der tilbyder gratis certifikater. Men den &aring;benlyse mangel p&aring; financiering af projekteterne og behovet for penge til at disse organisationer kan etablere sikre certifikats myndigheder ikke er d&aelig;kket. Det hele afh&aelig;nge at tilliden, og at og en beslutning hos alle brugere om at stole p&aring; en ukendt certifikat myndighed. N&aring;r man f&oslash;rst har valgt at stole p&aring; en certifikat myndighed kan du herefter stole p&aring; de certifikater som denne myndighed udsteder. Med andre ord: Hvis du stoler p&aring;, og accpterer de certifikater som den certifikats myndighed jeg bruger udsteder, s&aring; kan du ogs&aring; stole p&aring; min digitale signatur. Tro mig!"
#: www/account/14.php:21
msgid "Old Pass Phrase"
@ -1532,15 +1532,15 @@ msgstr "Gammelt kodeord"
#: www/account/10.php:16 www/account/20.php:16 www/account/3.php:16
msgid "Once you decide to subscribe for an SSL Server Certificate you will need to complete this agreement. Please read it carefully. Your Certificate Request can only be processed with your acceptance and understanding of this agreement."
msgstr ""
msgstr "N&aring;r du har besluttet dig til at bestille et SSL server certifikat skal du udfylde denne aftale. L&aelig;s den grundigt igennem. Din certifikats ans&oslash;gning (CSR) kan kun behandles hvis du accepterer og forst&aring;r denne aftale."
#: www/account/0.php:26
msgid "Once you have verified your company you will see these menu options. They allow you to issue as many certificates as you like without proving individual email accounts as you like, further more you are able to get your company details on the certificate."
msgstr ""
msgstr "N&aring;r du har bekr&aelig;ftiget dit firma, vil du se disse muligheder i menuen. Der kan du udstede s&aring; mange certifikater du &oslash;nsker uden at bekr&aelig;fte de enkelte email addresser p&aring; dom&aelig;net. Yderligere er det muligt at f&aring; dine firmadetaljer indeholdt i certifikatet."
#: www/help/4.php:28
msgid "Once you've submitted it the system will process your request and send an email back to you containing your server certificate."
msgstr ""
msgstr "N&aring;r du har indsendt det, vil systemet behandle din foresp&oslash;rgsel og sende en email retur indeholdende dit servercertifikat."
#: www/help/2.php:45
msgid "One assumes that if a site has an SSL certificate (that's what enables secure communication, for exchanging personal details, credit card numbers, etc. and gives the 'lock' icon in the browser) that they have obtained that certificate from a reliable source (a Certificate Authority), which has the appropriate stringent credentials for issuing something so vital to the security of the Internet, and the security of your communications. You have probably never even asked yourself the question of who decided to trust these Certificate Authorities, because your browser comes with their (root) certificates pre-installed, so any web site that you come across that has an SSL certificate signed by one of them, is automatically accepted (by your browser) as trustworthy."
@ -1548,19 +1548,19 @@ msgstr ""
#: www/wot/6.php:74
msgid "Only fill this in if you assured the person on a different day"
msgstr ""
msgstr "Udfyld kun dette felt hvis du forsikrede personen tidligere end i dag."
#: www/account/43.php:39 www/account/49.php:39
msgid "Only the first 100 rows are displayed."
msgstr ""
msgstr "kun de f&oslash;rste 100 linier vises."
#: www/wot/6.php:61
msgid "Only tick the next box if the Assurance was face to face."
msgstr ""
msgstr "Marker kun denne box hvis forsikringen skete ved at du fysisk m&oslash;dtes med ans&oslash;geren."
#: www/help/3.php:8
msgid "Open Directory Security folder"
msgstr ""
msgstr "&Aring;bent katalog sikkerheds folder"
#: includes/account_stuff.php:176
msgid "Org Admin"
@ -1601,15 +1601,15 @@ msgstr "Organisationer"
#: www/help/4.php:12
msgid "Organization Name (eg, company) [XYZ Corp]:"
msgstr ""
msgstr "Organisations navn (f.eks. firma navn) [XYZ Corp]:"
#: www/help/4.php:13
msgid "Organizational Unit Name (eg, section) [Server Administration]:."
msgstr ""
msgstr "Organisations enhedsnavn (f.eks. afdeling) [Server administration]"
#: www/account/40.php:36 www/index/11.php:36
msgid "Other Mailing Lists"
msgstr ""
msgstr "Andre maillister"
#: www/index/16.php:16 www/index/3.php:16
msgid "PKI Key"
@ -1626,7 +1626,7 @@ msgstr ""
#: www/wot/6.php:28
msgid "PLEASE NOTE: You have already assured this person before! If this is unintentional please DO NOT CONTINUE with this assurance."
msgstr ""
msgstr "OBS: Du har allerede forsikret denne person tidligere! Hvis denne gentagelse er en FEJL!, s&aring; LAD V&AElig;RE MED AT FORTS&AElig;TTE med denne forsikring."
#: www/index/1.php:73 www/index/4.php:30
msgid "Pass Phrase"
@ -1668,7 +1668,7 @@ msgstr ""
#: www/account/3.php:65
msgid "Please Note: By ticking this box you will automatically have your name included in any certificates."
msgstr ""
msgstr "OBS: Ved at v&aelig;lge denne boks vil du automatisk f&aring; dit navn inkluderet i certifikatet, uanset hvad du v&aelig;lger ang. dette ovenover."
#: www/account/2.php:56 www/account/9.php:56
msgid "Please Note: You can not set an unverified account as a default account, and you can not remove a default account. To remove the default account you must set another verified account as the default."
@ -1681,12 +1681,12 @@ msgstr ""
#: www/wot.php:233
#, php-format
msgid "Please Note: this is a temporary increase for %s days only. After that time their points will be reduced to 150 points."
msgstr ""
msgstr "OBS: Dette er en midlertidig forh&oslash;jelse i %s dage. Herefter vil dine points blive reduceret til 150 points."
#: www/wot.php:220
#, php-format
msgid "Please Note: this is a temporary increase for %s days only. After that time your points will be reduced to 150 points."
msgstr ""
msgstr "OBS: Dette er en midlertidig forh&oslash;jelse i %s dage. Herefte vil dine points blive reduceret til 150 points."
#: www/account/8.php:19
msgid "Please choose an authority email address"
@ -1744,7 +1744,7 @@ msgstr "Unders&oslash;ger"
#: www/wot/3.php:27
msgid "Processing"
msgstr ""
msgstr "Behandler"
#: www/help/8.php:1
msgid "Question: I'm a software developer for linux and I want to use CAcert/openssl to distribute my packages with detached signatures, is this possible and why would I do this over PGP/GPG detached signatures?"
@ -1752,11 +1752,11 @@ msgstr ""
#: www/help/2.php:11 www/help/2.php:54
msgid "References"
msgstr ""
msgstr "Referencer"
#: www/account/36.php:24 www/index/1.php:113
msgid "Regional Announcements"
msgstr ""
msgstr "Regionale meddelelser"
#: includes/account.php:623 includes/account.php:732 includes/account.php:1131
#: includes/account.php:1349
@ -1823,11 +1823,11 @@ msgstr ""
#: www/index/0.php:63
msgid "Same as above plus you can include your full name in the certificates."
msgstr ""
msgstr "Samme som ovenfor og yderligere kan du inkludere dit fulde navn i certifikaterne."
#: www/index/0.php:94
msgid "Same as above, except certificates expire in 24 months."
msgstr ""
msgstr "Samme som ovenfor, men certifikater udl&oslash;ber efter 24 m&aring;neder."
#: www/index/0.php:95
msgid "Same as above, plus get 50 assurance points by meeting with assurer(s) from the CAcert Web of Trust, who verify your identity using your government issued photo identity documents."
@ -1839,7 +1839,7 @@ msgstr ""
#: www/index/0.php:93
msgid "Same as above."
msgstr ""
msgstr "Samme som ovenst&aring;ende."
#: www/help/3.php:46
msgid "Saving the certificate"
@ -1851,15 +1851,15 @@ msgstr "Gemme certifikatet"
#: www/help/3.php:56 www/help/3.php:59 www/help/3.php:62 www/help/3.php:65
#: www/help/3.php:68
msgid "Screenshot of IIS 5.0"
msgstr ""
msgstr "Sk&aelig;rmbillede af IIS 5.0"
#: www/wot/7.php:127
msgid "Search"
msgstr ""
msgstr "S&oslash;g"
#: www/wot/7.php:120
msgid "Search this region"
msgstr ""
msgstr "S&oslash;g i denne region"
#: www/account/43.php:163
msgid "Secondary Emails"
@ -1867,7 +1867,7 @@ msgstr "Alternativ epost adresse"
#: www/index/8.php:4
msgid "Secretary"
msgstr ""
msgstr "Sekret&aelig;r"
#: 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..."
@ -1875,7 +1875,7 @@ msgstr ""
#: www/help/3.php:18
msgid "Select 'Bit length'. We advise a key length of 1024 bits."
msgstr ""
msgstr "V&aelig;lg bitl&aelig;ngde. Vi anbefaler en n&oslash;glel&aelig;ngde p&aring; 1024 bits."
#: www/help/3.php:11
msgid "Select 'Create a new certificate'"
@ -1883,7 +1883,7 @@ msgstr "V&aelig;lg: 'Lav nyt certifikat'"
#: www/help/3.php:55
msgid "Select 'Server Certificate' at the bottom of the tab in the 'Secure communications' section."
msgstr ""
msgstr "V&aelig;lg &quot;Server Certificate&quot; i bunden af fanebladet &quot;Secure communications section&quot;"
#: www/account/43.php:28 www/account/49.php:28
msgid "Select Specific Account Details"
@ -1895,11 +1895,11 @@ msgstr ""
#: www/help/3.php:61
msgid "Select the .cer file and click 'Next'."
msgstr ""
msgstr "V&aelig;lg .cer filen og tryk p&aring; &quot;N&aelig;ste&quot;."
#: www/help/3.php:54
msgid "Select the Directory Security tab"
msgstr ""
msgstr "V&aelig;lg &quot;Directory Security&quot; fanebladet"
#: www/account/40.php:30 www/account/40.php:48 www/index/11.php:30
#: www/index/11.php:48 www/wot/9.php:60
@ -1924,7 +1924,7 @@ msgstr ""
#: www/account/40.php:51 www/index/11.php:51
msgid "Snail Mail"
msgstr ""
msgstr "Almindelig post"
#: 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!)"
@ -1932,11 +1932,11 @@ msgstr ""
#: www/index/51.php:33
msgid "So what can I do to help the cause?"
msgstr ""
msgstr "Hvad kan jeg selv g&oslash;re?"
#: www/help/2.php:52
msgid "So, dammit, what's the point of all this then?"
msgstr ""
msgstr "Hvad er pointen med alt dette s&aring;?"
#: www/account/39.php:39 www/index/10.php:39
msgid "Some of our advertisers use a third-party ad server to display ads. These ads may contain cookies. The ad server receives these cookies, and we don't have access to them."
@ -1944,15 +1944,15 @@ msgstr "Nogle af vores annonc&oslash;re bruger en tredjeparts reklame server til
#: www/wot/9.php:19 www/wot/9.php:29
msgid "Sorry, I was unable to locate that user."
msgstr ""
msgstr "Desv&aelig;rre, jeg kunne ikke finde denne bruger."
#: www/wot/6.php:85
msgid "Sponsoring Member"
msgstr ""
msgstr "sponsor medlem"
#: www/help/4.php:10
msgid "State or Province Name (full name) [NSW]:"
msgstr ""
msgstr "Stats eller provins navn (fuldt navn) [NSW]:"
#: www/account/11.php:31 www/account/21.php:34 www/account/24.php:33
#: www/account/27.php:36
@ -1985,7 +1985,7 @@ msgstr "Suffix"
#: includes/account_stuff.php:190
msgid "System Admin"
msgstr ""
msgstr "System administratoren"
#: www/help/6.php:7
msgid "System will send you an email with a link in it, you just open the link in a webbrowser."
@ -2557,9 +2557,9 @@ msgstr "Du tastede forkert kodeord."
msgid "You failed to enter a location of your meeting."
msgstr ""
#: www/index.php:90
msgid "You failed to get all answers correct, system admins have been notified."
msgstr "Du mislykkedes i at svare korrekt p&aring; alle sp&oslash;rgsm&aring;lene, system administratorerne har f&aring;et besked."
#: www/index.php:97
msgid "You failed to get all answers correct or you didn't configure enough lost password questions for your account. System admins have been notified."
msgstr "Du fejlede i at svare korrekt p&aring; alle sp&oslash;rgsm&aring;lene, eller ogs&aring; har du ikke oprettet nok sp&oslash;rgsm&aring;l til genoprettelse af glemt kodeord for din CAcert konto. System administratorerne har f&aring;et tilsendt besked om dette."
#: www/gpg.php:24
msgid "You failed to paste a valid GPG/PGP key."
@ -3545,3 +3545,28 @@ msgstr "L&aelig;s mere"
#: www/index/0.php:40
msgid "More News Items"
msgstr "Flere nyheder"
#: www/index/6.php:92
msgid "You do not have enough/any lost password questions set. You will not be able to continue to reset your password via this method."
msgstr ""
#: includes/general.php:618
msgid "Failed to make a connection to the mail server"
msgstr ""
#: includes/account.php:904 www/index.php:204 www/index.php:254
msgid "For your own security you must enter 5 lost password questions and answers."
msgstr ""
#: www/wot.php:169
msgid "Race condition discovered, user altered details during assurance procedure. PLEASE MAKE SURE THE NEW DETAILS BELOW MATCH THE ID DOCUMENTS."
msgstr ""
#: www/wot.php:53
msgid "Reminder Notice"
msgstr ""
#: www/wot.php:49
#, php-format
msgid "This is a short reminder that you filled out forms to become trusted with CAcert.org, and %s has attempted to issue you points. Please create your account at %s as soon as possible and then notify %s so that the points can be issued."
msgstr ""

View file

@ -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-07-24 13:57:21+0000\n"
"PO-Revision-Date: 2005-10-31 00:58:44+0000\n"
"Last-Translator: Someone <someone@someisp.com>\n"
"Language-Team: <de@li.org>\n"
"MIME-Version: 1.0\n"
@ -315,7 +315,7 @@ msgstr "Bei Bedarf kann CAcert die Anzahl der Punkte &auml;ndern, die von einer
#: www/help/6.php:11
msgid "CAcert then sends you an email with a signed copy of your certificate. Hopefully the rest should be pretty straight forward."
msgstr "CAcert sendet Ihnen eine E-Mail mit einer signierten Kopie Ihres Zertifikats. Der Rest sollte dann eigentlich klar sein."
msgstr "CAcert sendet Ihnen eine E-Mail mit einer signierten Kopie Ihres Zertifikats. Sollte es dann noch Fragen geben, wenden Sie sich bitte an den CAcert Support."
#: www/account/37.php:19 www/index/12.php:19
#, php-format

View file

@ -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-07-01 06:50:03+0000\n"
"PO-Revision-Date: 2005-09-16 11:43:16+0000\n"
"Last-Translator: Someone <someone@someisp.com>\n"
"Language-Team: <de@li.org>\n"
"MIME-Version: 1.0\n"
@ -65,7 +65,7 @@ msgstr "Un Notario CAcert que autorize a una persona sin seguir estas l&iacute;n
#: www/wot/4.php:17
msgid "A trusted 3rd party is simply someone in your country that is responsible for witnessing signatures and ID documents. This role is covered by many different titles such as public notary, justice of the peace and so on. Other people are allowed to be authoritative in this area as well, such as bank managers, accountants and lawyers."
msgstr "Un tercero de confianza es alguien de su pa&#1059;&shy;s que es responsable de autorizar firmas y documentos de identificaci&#1059;&#1043;n. Este papel es cubierto por muchos t&#1059;&shy;tulos diferentes como notarios p&#1059;&#1050;blicos, jueces de paz, etc. Otros cargos como gerentes bancarios, contadores, y abogados pueden autorizar documentos igualmente."
msgstr "Un tercero de confianza es alguien de su pa&iacute;&shy;s que es responsable de autorizar firmas y documentos de identificaci&oacute;n. Este papel es cubierto por muchos t&iacute;tulos diferentes como notarios p&uacute;blicos, jueces de paz, etc. Otros cargos como gerentes bancarios, contadores, y abogados pueden autorizar documentos igualmente."
#: www/account/38.php:21 www/index/13.php:21
msgid "ANY amount will be appreciated - the more funding CAcert receives, the sooner it can achieve the goals of the community."
@ -150,7 +150,7 @@ msgstr "Y est&aacute;n cometiendo errores"
#: www/help/3.php:70
msgid "And you're done!"
msgstr "Y esta terminado!"
msgstr "Y est&aacute; terminado!"
#: www/account/16.php:39
msgid "Another Email"
@ -241,7 +241,7 @@ msgstr "Antes de contactarse con nosotros, asegurese de leer la informaci&oacute
#: www/account/0.php:24
msgid "Before you can start issuing certificates for your website, irc server, smtp server, pop3, imap etc you will need to add domains to your account under the domain menu. You can also remove domains from here as well. Once you've added a domain you are free then to go into the Server Certificate section and start pasting CSR into the website and have the website return you a valid certificate for up to 2 years if you have 50 trust points, or 6 months for no trust points."
msgstr "Antes de poder emitir certificados para sus servidores web, irc, smtp, pop3, imap, etc., necesita a&ntilde;adir dominios a su cuenta desde el men&uacute; Dominios. Tambi&#1059;&#1033;n puede eliminar dominios. Una vez haya agregado un dominio ya puede ir al men&#1059;&#1050; Certificados de Servidor y pegar su CSR para que el sistema le devuelva su certificado por un periodo de hasta dos a&#1059;&#1041;os (si tiene 50 puntos de confianza) o seis meses (si no tiene puntos)."
msgstr "Antes de poder emitir certificados para sus servidores web, irc, smtp, pop3, imap, etc., necesita a&ntilde;adir dominios a su cuenta desde el men&uacute; Dominios. Tambi&eacute;n puede eliminar dominios. Una vez haya agregado un dominio ya puede ir al men&uacute; Certificados de Servidor y pegar su CSR para que el sistema le devuelva su certificado por un periodo de hasta dos a&ntilde;os (si tiene 50 puntos de confianza) o seis meses (si no tiene puntos)."
#: includes/account.php:47 includes/account.php:387
msgid "Below is the link you need to open to verify your email address. Once your address is verified you will be able to start issuing certificates till your hearts' content!"
@ -275,7 +275,7 @@ msgstr "Pero quiz&aacute;s, la raz&oacute;n mas importante para la firma digital
#: www/help/2.php:7 www/help/2.php:35
msgid "But, er, is this really proof of your email identity?"
msgstr "Pero, hm, es esto una prueba real de su identidad de correo?"
msgstr "Pero, &iquest;es esto una prueba real de su identidad de correo?"
#: www/help/2.php:48
msgid "But, with all this money, and all this responsibility, they must be taking a lot of care to ensure the Certificate Authorities do their jobs well, and keep doing their jobs well, right? Well right?!"
@ -295,7 +295,7 @@ msgstr "Los servicios de certificaci&oacute;n p&uacute;blica de CAcert Inc. est&
#: www/index/51.php:25
msgid "CAcert Inc., as a community-based project, is not driven by profits - it is driven by the community's desire for privacy and security."
msgstr "CAcert Inc., es un proyecto comunitario, no es administrado pensando en ganacias - es llevado por el deseo de la comunidad de tener privacidad y seguridad"
msgstr "CAcert Inc., es un proyecto comunitario, sin animo de lucro - es llevado por el deseo de la comunidad de tener privacidad y seguridad"
#: www/wot.php:223 www/wot.php:235 scripts/removedead.php:60
msgid "CAcert Support Team"
@ -340,7 +340,7 @@ msgstr "CAcert es una Entidad Certificadora administrada por la comunidad, que e
#: 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!"
msgstr "CAcert.org ha sido dise&#1059;&#1041;ada por y para la comunidad. En lugar de dar todo el trabajo a una autoridad central, y elevar los costos de los certificados, la idea fue implicar a la comunidad a trav&#1059;&#1033;s de este sitio web para mantener la confianza de forma dispersa y automatizada!"
msgstr "CAcert.org ha sido dise&ntilde;ada por y para la comunidad. En lugar de dar todo el trabajo a una autoridad central, y elevar los costos de los certificados, la idea fue implicar a la comunidad a trav&eacute;s de este sitio web para mantener la confianza de forma dispersa y automatizada!"
#: includes/general_stuff.php:68
msgid "CRL"
@ -477,7 +477,7 @@ msgstr "Estad&iacute;sticas CAcert"
#: www/wot/3.php:23
msgid "Compare and verify that the copy of the identification sighted is a true and correct copy;"
msgstr "Verifique y compare que la identificaci&#1059;&#1043;n que se exhibe es verdadera y que la copia es correcta y veraz:"
msgstr "Verifique y compare que la identificaci&oacute;n que se exhibe es verdadera y que la copia es correcta y veraz:"
#: www/wot/3.php:31
msgid "Compare the online information to the information recorded on the paper form;"
@ -522,7 +522,7 @@ msgstr "Cookies"
#: www/help/2.php:38
msgid "Cool man! How do I create my own digital signature?!"
msgstr "Cool man! Como creo mi propia firma digital?"
msgstr "Cool man! &iquest;Como creo mi propia firma digital?"
#: www/help/3.php:47
msgid "Copy the contents of the email including the"
@ -561,7 +561,7 @@ msgstr "Cr&eacute;ditos"
#: www/help/7.php:2
msgid "Currently there is 2 main servers, one for webserver, one for root store, with the root store only connected to the webserver via serial cable, with a daemon running as non-root processes on each end of the serial listening/sending requests/info."
msgstr "Actualmente hay 2 servidores, una para las p&aacute;ginas web, y uno para el dep&oacute;sito ra&iacute;z. El servidor ra&iacute;z esta conectado al servidor web a trav&eacute;s de un cable serial, con un demonio corriendo como usuario no priviligiado en cada puerta, escuchando y enviando la informaci&oacute;n."
msgstr "Actualmente hay 2 servidores, una para las p&aacute;ginas web, y uno para el dep&oacute;sito ra&iacute;z. El servidor ra&iacute;z esta conectado al servidor web a trav&eacute;s de un cable serie, con un demonio corriendo como usuario no priviligiado en cada puerta, escuchando y enviando la informaci&oacute;n."
#: www/stats.php:73 www/stats.php:109 www/ttp.php:95 www/ttp.php:142
#: www/account/43.php:200 www/account/43.php:235 www/wot/10.php:43
@ -624,7 +624,7 @@ msgstr "Firmar digitalmente c&oacute;digo, aplicaciones de web, instaladores, et
#: www/wot/8.php:22
msgid "Directory Listing"
msgstr "Directorio"
msgstr "Listado del directorio"
#: www/help/2.php:61
msgid "Disclaimer : These are the author's opinions, but they should not be considered 'truth' without personal verification. The author may have made mistakes and any mistakes will be willingly rectified by contacting the administrator of elucido.net, contact details available from the normal domain registration information services (e.g. whois.net).&amp;nbsp; No recommendation to install a Certificate Authority's root certificate is either intended nor implied."
@ -710,7 +710,7 @@ msgstr "Los correos no son seguros. En realidad son MUY poco seguros!"
#: www/index/0.php:83
msgid "Enable encrypted data transfer for users accessing your web, email, or other SSL enabled service on your server; wildcard certificates are allowed."
msgstr "Haga posible la transmisi&oacute;n de datos encriptada para los usuarios accesando su web, correo, o cualquier otro servicio con SSL; se pueden emitir certificados m&uacute;ltiples (wildcard)."
msgstr ""
#: www/help/3.php:58
msgid "Ensure 'Process the pending request and install the certificate' is selected and click on 'Next'."
@ -722,7 +722,7 @@ msgstr "Asegurese que est&aacute; procesando el certificado correcto"
#: www/help/3.php:17
msgid "Enter a certificate name and select Certificate strength"
msgstr "Entre el nombre del certificado y su Strength"
msgstr ""
#: 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."
@ -773,11 +773,11 @@ msgstr "Cuotas"
#: www/error404.php:19
msgid "File not found!"
msgstr "Fichero no encontrado!"
msgstr "&iexcl;Fichero no 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 "Finalmente se le consultar&aacute; por informaci&oacute;n acerca del atributo 'extra', simplemente presione Enter/Return a ambas preguntas."
msgstr ""
#: includes/account_stuff.php:191
msgid "Find Domain"
@ -797,7 +797,7 @@ msgstr "Encontrar un Notario"
#: www/help/3.php:41
msgid "Finish up and exit IIS Certificate Wizard"
msgstr "Finalizar y dejar el Wizard para certificados de IIS"
msgstr "Finalizar y dejar el asistente para certificados de IIS"
#: www/account/13.php:27 www/account/13.php:75 www/account/43.php:78
#: www/index/1.php:22
@ -930,7 +930,7 @@ msgstr "P&aacute;gina Principal"
#: www/help/2.php:8
msgid "How do I create my own digital signature?!"
msgstr "Como creo mi propia firma digital?!"
msgstr "&iquest;Como creo mi propia firma digital?"
#: www/help/0.php:8
msgid "How do I generate a private key and CSR using OpenSSL?"
@ -954,7 +954,7 @@ msgstr "C&oacute;mo actualizar, corregir o eliminar su informaci&oacute;n"
#: www/index/51.php:27
msgid "How?"
msgstr "Como?"
msgstr "&iquest;Como?"
#: includes/general_stuff.php:64
msgid "Howto Information"
@ -970,7 +970,7 @@ msgstr "Yo creo que la comprobaci&oacute;n de identidad que estoy haciendo es co
#: www/help/2.php:9 www/help/2.php:41
msgid "I can't wait to start sending encrypted emails!"
msgstr "No puedo esperar para enviar correos encriptados!"
msgstr "&iexcl;No puedo esperar para enviar correos encriptados!"
#: includes/account.php:884
msgid "I couldn't match any emails against your organisational account."
@ -1003,7 +1003,7 @@ msgstr "Responder&eacute; el porqu&eacute; primero, porque eso es razonablemente
#: 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 "Lo siento. El usuario que usted est&aacute; buscando parece haber desaparecido!"
msgstr ""
#: www/wot.php:42
msgid "I'm sorry, there was no email matching what you entered in the system. Please double check your information."
@ -1059,7 +1059,7 @@ msgstr "Si usted es extremadamente interesado en encriptaci&oacute;n, puede unir
#: 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 "Si, y s&#1059;&#1043;lo si los dos coinciden completamente, puede conceder puntos de confianza hasta el m&#1059;&#1025;ximo de puntos que tiene permitido;"
msgstr "Si, y s&oacute;lo si los dos coinciden completamente, puede conceder puntos de confianza hasta el m&aacute;ximo de puntos que tiene permitido;"
#: 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."
@ -1088,7 +1088,7 @@ msgstr "&iexcl;Inclusi&oacute;n en los principales navegadores!"
#: www/index.php:195
msgid "Incorrect email address and/or Pass Phrase."
msgstr "E-Mail o Contrase&ntilde;a incorrectos."
msgstr "E-Mail y/o contrase&ntilde;a incorrectos."
#: www/account/19.php:60 www/account/6.php:58
msgid "Install Your Certificate"
@ -1126,7 +1126,7 @@ msgstr "Autorizando un incremento temporal, aumentar&aacute; automaticamente su
#: www/wot/3.php:17
msgid "It is essential that CAcert Assurers understand and follow the rules below to ensure that applicants for assurance are suitably identified, which, in turn, maintains trust in the system."
msgstr "Es esencial que los Notarios de CAcert entiendan y sigan las siguientes normas para que las personas solicitando ser autorizadas sean identificados adecuadamente y, as&#1059;&shy;, mantener la confianza del sistema."
msgstr "Es esencial que los Notarios de CAcert entiendan y sigan las siguientes normas para que las personas solicitando ser autorizadas sean identificados adecuadamente y, as&iacute;, mantener la confianza del sistema."
#: www/wot/3.php:36
msgid "It is imperative that you maintain the confidentiality and privacy of the applicant, and never disclose the information obtained without the applicant's consent."
@ -1257,7 +1257,7 @@ msgstr "Muchos son solo los usuarios que, al usar el sistema, contribuyen a su d
#: www/index/51.php:24
msgid "Many people are currently dissatisfied with the commercial offerings. Many people wish only to connect or share with people they know, or simply secure their webmail from people potentially sniffing their traffic. Why subscribe to a service that is not structured to handle this, and furthermore charges a king's ransom for the privilege?"
msgstr "Mucha gente no est&aacute; satisfecha con las ofertas comerciales. Mucha gente solo desea conectarse con gente que conocen, o simplemente hacer su comunicaci&oacute;n al webmail mas segura, obviando a los posibles escuchas en la red. Para que subscribirse a un servicio que no est&aacute; estructurado para esto, y que adem&aacute;s cobra como si fuese la recompensa del rey por sus servicios?"
msgstr "Mucha gente no est&aacute; satisfecha con las ofertas comerciales. Mucha gente solo desea conectarse con gente que conocen, o simplemente hacer su comunicaci&oacute;n al webmail mas segura, obviando a los posibles escuchas en la red. &iquest;Por que subscribirse a un servicio que no est&aacute; estructurado para esto, y que adem&aacute;s cobra como si fuese la recompensa del rey por sus servicios?"
#: www/index/7.php:17
msgid "Many people to thank, if you've had a large input with the CAcert project with code, documentation, translations, or assurances and would like recognition let me know."
@ -1681,7 +1681,7 @@ msgstr "Nota: Solo necesita entrar la parte principal de su dominio, por ej. exa
#: www/wot.php:233
#, php-format
msgid "Please Note: this is a temporary increase for %s days only. After that time their points will be reduced to 150 points."
msgstr "Nota: Este es un incremento temporal por %s d&iacute;as. Despues de este plazo sus puntos ser&aacute;n reducidos a 150."
msgstr "Nota: Este es un incremento temporal solo por %s d&iacute;as. Despues de este plazo sus puntos ser&aacute;n reducidos a 150."
#: www/wot.php:220
#, php-format
@ -1878,7 +1878,7 @@ msgstr ""
#: www/help/3.php:18
msgid "Select 'Bit length'. We advise a key length of 1024 bits."
msgstr "Selecione 'N&uacute;mero de bits'. Le recomendamos utilizar un largo de 1024 bits"
msgstr "Selecione 'N&uacute;mero de bits'. Le recomendamos utilizar una longitud de la clave de 1024 bits"
#: www/help/3.php:11
msgid "Select 'Create a new certificate'"
@ -1927,7 +1927,7 @@ msgstr "En breve usted y la persona que est&aacute; autorizando recibir&aacute;n
#: www/account/40.php:51 www/index/11.php:51
msgid "Snail Mail"
msgstr "Correo tortuga (correo normal)"
msgstr ""
#: 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!)"
@ -2172,7 +2172,7 @@ msgstr "Como protege CAcert su clave privada ra&iacute;z?"
#: www/index/19.php:15
msgid "Information"
msgstr "Informaci&oacute;n de Contacto"
msgstr "Informaci&oacute;n"
#: www/help/2.php:42
msgid "There's nothing to it. I mean literally, you can already start sending your emails encrypted. Assuming of course you have your own digital signature certificate (e.g. as per above), and the person you want to send an encrypted email to also has a digital signature certificate, and has recently sent you a digitally signed email with it. If all these conditions hold, you just have to change the settings in your email software to send the email encrypted and hey presto! Your email software (probably Outlook I guess) should suss out the rest."
@ -2261,7 +2261,7 @@ msgstr "Terceros de Confianza"
#: www/help/2.php:60
msgid "U.K. e-mail snooping bill passed"
msgstr "La ley de fisgoneo de correos pasada en el Reino Unido"
msgstr ""
#: www/help/2.php:21
msgid "UK Government has done this since the year 2000"
@ -2563,9 +2563,9 @@ msgstr "La Contrase&ntilde;a indicada no es correcta."
msgid "You failed to enter a location of your meeting."
msgstr "No ha indicado un lugar para la reuni&oacute;n."
#: www/index.php:90
msgid "You failed to get all answers correct, system admins have been notified."
msgstr "No ha contestado correctamente a todas las preguntas. Se ha notificado a los administradores del sistema."
#: www/index.php:97
msgid "You failed to get all answers correct or you didn't configure enough lost password questions for your account. System admins have been notified."
msgstr "No ha contestado correctamente a todas las preguntas o no configuro suficientes preguntas para recobrar su clave perdidad. Se ha notificado a los administradores del sistema."
#: www/gpg.php:24
msgid "You failed to paste a valid GPG/PGP key."
@ -2814,7 +2814,7 @@ msgstr "Primero necesita mod-ssl y apache (esto va mas all&aacute; del marco de
#: www/help/0.php:26 www/help/9.php:26
msgid "How can I do a single sign on similar to CAcert using client certificates?"
msgstr "&#1058;&#1055;C&#1059;&#1043;mo puedo programar el uso de firmas &#1059;&#1050;nicas, similar a lo que hace CAcert, utilizando certificados del cliente?"
msgstr "&iquest;C&oacute;mo puedo programar el uso de firmas &uacute;nicas, similar a lo que hace CAcert, utilizando certificados del cliente?"
#: www/index/1.php:17
msgid "In light of the number of people having issues with making up a password we have the following suggestions:"
@ -2822,7 +2822,7 @@ msgstr "En vista del n&uacute;mero de personas que tienen problemas para inventa
#: www/index/17.php:142
msgid "Install a Root Certificate using Internet Explorer and the CEnroll ActiveX control. This avoids the Microsoft Certificate Installation wizard and all of its complexity and extra screens for users. This however will ONLY work for Microsoft Internet Explorer."
msgstr "Instalar un certificado ra&iacute;z usando Internet Explorer y el control ActiveX Cenroll. Esto evita el &quot;Mago&quot; de Instalaci&oacute;n de Certificados de Microsoft, y toda la complejidad y ventanas extras para el usuario. Sin embargo esto SOLO funciona para el Explorador de Internet de Microsoft."
msgstr "Instalar un certificado ra&iacute;z usando Internet Explorer y el control ActiveX CEnroll. Esto evita el asistente de Instalaci&oacute;n de Certificados de Microsoft, y toda la complejidad y ventanas extras para el usuario. Sin embargo esto SOLO funciona para el Explorador de Internet de Microsoft."
#: includes/general_stuff.php:111
msgid "Mission Statement"
@ -3032,19 +3032,19 @@ msgstr "El esta constantemente ayudando en la lista de soporte, contribuyendo co
#: www/account/52.php:49
msgid "I agree with this Application"
msgstr "Estoy de acuerdo con esta solicitud"
msgstr ""
#: www/account/52.php:50
msgid "I don't agree with this Application"
msgstr "No estoy de acuerdo con esta solicitud"
msgstr ""
#: 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 "Si usted quiere disputar quien tiene control de una direcci&#1059;&#1043;n de correo, o dominio, seleccione 'Disputar E-Mail' o 'Disputar Dominio' en la parte derecha de la p&#1059;&#1025;gina."
msgstr "Si usted quiere disputar quien tiene control de una direcci&oacute;n de correo, o dominio, seleccione 'Disputar E-Mail' o 'Disputar Dominio' en la parte derecha de la p&aacute;gina."
#: 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 usted quiere reportar un abuso de nuestros certificados que va contra nuestras pol&#1059;&shy;ticas, por favor seleccione 'Abuso' en el men&#1059;&#1050; de la derecha."
msgstr "Si usted quiere reportar un abuso de nuestros certificados que va contra nuestras pol&iacute;ticas, por favor seleccione 'Abuso' en el men&uacute; de la derecha."
#: www/disputes/2.php:16
msgid "If your dispute is successful the domain will be removed from the current account and any certificates will be revoked."
@ -3052,7 +3052,7 @@ msgstr "Si su disputa es exitosa, el dominio ser&aacute; removido de la cuenta a
#: www/disputes/1.php:16
msgid "If your dispute is successful 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 "Si su disputa es exitosa, la direcci&#1059;&#1043;n de correo ser&#1059;&#1025; removida del sistema. Necesitar&#1059;&#1025; a&#1059;&#1041;adirla a su cuenta de la manera normal. La direcci&#1059;&#1043;n de correo ser&#1059;&#1025; removida de la cuenta actual y todos los certificados revocados."
msgstr "Si su disputa es exitosa, la direcci&oacute;n de correo ser&aacute; removida del sistema. Necesitar&aacute; a&ntilde;adirla a su cuenta de la manera normal. La direcci&oacute;n de correo ser&aacute; removida de la cuenta actual y todos los certificados revocados."
#: www/disputes.php:91 www/disputes.php:115 www/disputes.php:182
#: www/disputes.php:206
@ -3255,7 +3255,7 @@ msgstr "Ver todos los certificados"
#: www/disputes/1.php:20
msgid "Which Email?"
msgstr "Que direcci&oacute;n de correo?"
msgstr "&iquest;Que direcci&oacute;n de correo?"
#: 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."
@ -3364,7 +3364,7 @@ msgstr "Firma del solicitante"
#: www/cap.php:39
msgid "As the assurer, you are required to keep the signed document on file for 7 years. Should Cacert Inc. have any concerns about a meeting taking place, Cacert Inc. can request proof, in the form of this signed document, to ensure the process is being followed correctly. After 7 years if you wish to dispose of this form it's preferred that you shred and burn it. You do not need to retain copies of ID at all."
msgstr "Como Notario, usted est&aacute; obligado a conservar los documentos firmados por 7 a&ntilde;os. Si CAcert tuviese dudas acerca de que el encuentro personal se haya realizado, CAcert Inc. puede solicitar las pruebas, que son esos documentos firmados, y as&uacute; aegurarse que se ha seguido el procedimiento. Despu&eacute;s de 7 a&ntilde;os, si desea deshacerse de estos documentos, la mejor manera es picandolos y quemandolos. No necesita mantener copias de la(s) identificaci&oacute;n(es)."
msgstr "Como Notario, usted est&aacute; obligado a conservar los documentos firmados por 7 a&ntilde;os. Si CAcert tuviese dudas acerca de que el encuentro personal se haya realizado, CAcert Inc. puede solicitar las pruebas, que son esos documentos firmados, y as&iacute; aegurarse que se ha seguido el procedimiento. Despu&eacute;s de 7 a&ntilde;os, si desea deshacerse de estos documentos, la mejor manera es picandolos y quemandolos. No necesita mantener copias de la(s) identificaci&oacute;n(es)."
#: www/cap.php:103 www/cap.php:107
msgid "Assurer's Name"
@ -3417,7 +3417,7 @@ msgstr "Para el Notario: El Programa de Certificaci&oacute;n de CAcert (CAP) ti
#: www/cap.php:46
msgid "Applicant's Statement"
msgstr "Declaraci&#1059;&#1043;n del solicitante"
msgstr "Declaraci&oacute;n del solicitante"
#: www/cap.php:26 www/ttp.php:35
msgid "CAcert's Root Certificate fingerprints"
@ -3425,7 +3425,7 @@ msgstr "Huella digit&aacute;l de certificado ra&iacute;z CAcert's"
#: www/ttp.php:109
msgid "Applicant Information"
msgstr "Informaci&#1059;&#1043;n del Solicitante"
msgstr "Informaci&oacute;n del Solicitante"
#: www/ttp.php:84
msgid "Bar Association, CPA Number or Bank Name and Branch, JP/Notary Number"
@ -3506,7 +3506,7 @@ msgstr "Usted a verificado que el Nombre Completo, la Fecha de Nacimiento, y el
#: www/ttp.php:52
msgid "You have viewed two of the Applicant's photo identity documents and you are convinced of their authenticity, and are convinced that the photos indeed depict the Applicant (allowed documents are government-issued documents with photos such as driver's license, passport, or others that are normally accepted as legal identification in your country; expired documents are allowed)."
msgstr "Usted ha visto dos de los documentos de la identidad de la foto de la persona y est&#1072;&#1027;&#1072;&#129; convencido de su autenticidad, as&#1072;&#1027;&#1058;&shy; como de que las fotos son del aspirante (solo son permitidos documentos con fotos emitidos por el estado, como licencia de conductor, pasaporte, u otros que se acepten normalmente como identificaci&#1072;&#1027;&#1072;&#147;n legal en su pa&#1072;&#1027;&#1058;&shy;s; se permiten los documentos expirados)."
msgstr "Usted ha visto dos de los documentos de la identidad de la foto de la persona y est&aacute; convencido de su autenticidad, as&iacute; como de que las fotos son del aspirante (solo son permitidos documentos con fotos emitidos por el estado, como licencia de conductor, pasaporte, u otros que se acepten normalmente como identificaci&oacute;n legal en su pa&iacute;s; se permiten los documentos expirados)."
#: www/ttp.php:86
msgid "as applicable"
@ -3522,7 +3522,7 @@ msgstr "ERROR"
#: www/wot/10.php:105
msgid "Go Back"
msgstr "Ir atr&#1059;&#1025;s"
msgstr "Ir atr&aacute;s"
#: includes/general.php:23
msgid "Administrative Increase"
@ -3534,7 +3534,7 @@ msgstr "Revista CT - Alemania"
#: includes/general.php:23
msgid "Face to Face Meeting"
msgstr "Reuni&#1059;&#1043;n persona a persona"
msgstr "Reuni&oacute;n persona a persona"
#: includes/general.php:23
msgid "Thawte Points Transfer"
@ -3550,4 +3550,29 @@ msgstr "Historia Completa"
#: www/index/0.php:40
msgid "More News Items"
msgstr "M&#1059;&#1025;s Noticias"
msgstr "M&aacute;s Noticias"
#: www/index/6.php:92
msgid "You do not have enough/any lost password questions set. You will not be able to continue to reset your password via this method."
msgstr "Usted no tiene suficientes (o ninguna) preguntas para el caso de perder su clave. Usted no podr&aacute; reajustar su contrase&ntilde;a por este m&eacute;todo."
#: includes/general.php:618
msgid "Failed to make a connection to the mail server"
msgstr "No pudo conectar al servidor de correos"
#: includes/account.php:904 www/index.php:204 www/index.php:254
msgid "For your own security you must enter 5 lost password questions and answers."
msgstr "Por su propia seguridad, usted debe entrar 5 preguntas (y sus respuestas) para recuperar la contrase&ntilde;a en caso de p&eacute;rdida."
#: www/wot.php:169
msgid "Race condition discovered, user altered details during assurance procedure. PLEASE MAKE SURE THE NEW DETAILS BELOW MATCH THE ID DOCUMENTS."
msgstr "Se ha descubierto una modificaci&oacute;n de los datos del usuario durante el procesos de aseguramiento. POR FAVOR ASEGUREsE QUE LOS NUEVOS DETALLES (MAS ABAJO) ESTAN DE ACUERDO CON LOS DOCUMENTOS DE IDENTIFICACI&Oacute;N."
#: www/wot.php:53
msgid "Reminder Notice"
msgstr "Recordatorio"
#: www/wot.php:49
#, php-format
msgid "This is a short reminder that you filled out forms to become trusted with CAcert.org, and %s has attempted to issue you points. Please create your account at %s as soon as possible and then notify %s so that the points can be issued."
msgstr "&Eacute;ste es un recordatorio de que usted complet&oacute; formas para certificarse con CAcert.org, y %s ha procurado asignarle puntos. Por favor cree su cuenta en %s cuanto antes y despu&eacute;s notifique a %s para poder asignarle los puntos."

File diff suppressed because it is too large Load diff

View file

@ -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-06-14 12:48:37+0000\n"
"PO-Revision-Date: 2005-09-16 11:43:06+0000\n"
"Last-Translator: Someone <someone@someisp.com>\n"
"Language-Team: <de@li.org>\n"
"MIME-Version: 1.0\n"
@ -61,7 +61,7 @@ msgstr "...ensuite cliquez sur 'Suivant'."
#: 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."
msgstr "Un accr&eacute;diteur de CAcert qui certifie en pleine connaissance de cause ou en pouvant raisonnablement le soupsonner ou le savoir, une demande qui va &agrave; l'encontre de cette politique, peut &ecirc;tre tenu responsable."
msgstr "Un accr&eacute;diteur de CAcert qui certifie, en pleine connaissance de cause ou en pouvant raisonnablement le soup&ccedil;onner ou le savoir, une demande qui va &agrave; l'encontre de cette politique peut &ecirc;tre tenu responsable."
#: www/wot/4.php:17
msgid "A trusted 3rd party is simply someone in your country that is responsible for witnessing signatures and ID documents. This role is covered by many different titles such as public notary, justice of the peace and so on. Other people are allowed to be authoritative in this area as well, such as bank managers, accountants and lawyers."
@ -73,15 +73,15 @@ msgstr "N'IMPORTE quelle somme sera appr&eacute;ci&eacute;e - plus CAcert re&cce
#: includes/account_stuff.php:182
msgid "About"
msgstr "A propos"
msgstr "&Agrave; propos"
#: www/account/37.php:15 www/index/12.php:15
msgid "About CAcert.org"
msgstr "A propos de CACert.org"
msgstr "&Agrave; propos de CACert.org"
#: includes/account_stuff.php:209 includes/general_stuff.php:108
msgid "About Us"
msgstr "A notre sujet"
msgstr "&Agrave; notre sujet"
#: includes/account_stuff.php:150 includes/account_stuff.php:158
#: www/account/1.php:26 www/account/16.php:21 www/account/26.php:21
@ -96,7 +96,7 @@ msgstr "Ajouter un Domaine"
#: www/account/1.php:18
msgid "Add Email"
msgstr "Ajout d'adresse email"
msgstr "Ajouter une adresse email"
#: www/account/16.php:22 www/account/2.php:24 www/account/3.php:31
#: www/account/9.php:23
@ -138,7 +138,7 @@ msgstr "Adresses de courrier &eacute;lectronique alternatives v&eacute;rifi&eacu
#: www/help/7.php:9
msgid "Alternatively as things progress we can add more layers of security with say 4 webservers talking to 2 intermediate servers, talking to the root store, and acting in a token ring fashion, anything happening out of sequence, and the server directly upstream shuts itself down, which if that were in place and there were multiple paths, any down time in this fashion would fall over to the servers not compromised, anyways just some food for thought."
msgstr "Alternativement, lors de la poursuite du projet, nous pourrons ajouter des couches de s&eacute;curit&eacute; suppl&eacute;mentaires avec des serveurs Web (disons 4) communiquant avec 2 serveurs interm&eacute;diaires qui s'&eacute;changent des donn&eacute;es avec le magasin de certificat racine, et avec un fonctionnement bas&eacute; sur l'&eacute;change de jetons, si quelque chose se produit en dehors de l'ordre d&eacute;termin&eacute; alors le serveur racine s'arr&ecirc;te directement en amont. Mais si cela est mis en place, il y aura des chemins multiples entre les souscripteurs et le serveur de certificat racine, aussi dans cette configuration n'importe quelle panne ferait tomber aussi les serveurs non compromis, ce qui nous laisse mati&egrave;re &agrave; r&eacute;flexion pour l'avenir."
msgstr "Alternativement, lors de la poursuite du projet, nous pourrons ajouter des couches de s&eacute;curit&eacute; suppl&eacute;mentaires avec des serveurs Web, disons quatre, communiquant avec deux serveurs interm&eacute;diaires qui s'&eacute;changent des donn&eacute;es avec le magasin de certificat racine, et avec un fonctionnement bas&eacute; sur l'&eacute;change de jetons. Si quelque chose se produit en dehors de l'ordre d&eacute;termin&eacute; alors le serveur racine s'arr&ecirc;te directement en amont. Mais si cela est mis en place, il y aura des chemins multiples entre les souscripteurs et le serveur de certificat racine. Aussi, dans cette configuration, n'importe quelle panne ferait tomber aussi les serveurs non compromis, ce qui nous laisse mati&egrave;re &agrave; r&eacute;flexion pour l'avenir."
#: www/account/40.php:52 www/index/11.php:52
msgid "Alternatively you can get in contact with us via the following methods:"
@ -158,11 +158,11 @@ msgstr "Autre email"
#: includes/account.php:404
msgid "Any valid certificates will be revoked as well"
msgstr "Tout certificat valide sera r&eacute;voqu&eacute; aussi"
msgstr "Tout certificat valide sera &eacute;galement r&eacute;voqu&eacute;"
#: www/help/7.php:5
msgid "Apart from the boot stuff, all data resides on an encrypted partition on the root store server and only manual intervention in the boot up process by entering the password will start it again."
msgstr "A part le boot d'initialisation, toutes les donn&eacute;es r&eacute;sident sur une partition racine chiffr&eacute;e sur le serveur et seule une intervention manuelle durant le processus de boot en entrant le mot de passe le relancera de nouveau."
msgstr "&Agrave; part les donn&eacute;es d'initialisation, toutes les donn&eacute;es r&eacute;sident sur une partition racine chiffr&eacute;e sur le serveur et seule une intervention manuelle durant le processus de boot en entrant le mot de passe le relancera de nouveau."
#: www/index/17.php:61
msgid "Can't start the CEnroll control:"
@ -271,7 +271,7 @@ msgstr "Passer en revue le r&eacute;pertoire o&ugrave; vous avez sauvegard&eacut
#: www/help/2.php:25
msgid "But perhaps, fundamentally, the most important reason for digital signing is awareness and privacy. It creates awareness of the (lack of) security of the Internet, and the tools that we can arm ourselves with to ensure our personal security. And in sensitising people to digital signatures, we become aware of the possibility of privacy and encryption."
msgstr "Mais, la raison majeure pour utiliser la signature digitale est la prise de conscience du besoin de proteger son identite et la confidentialite des informations. Nous devons avoir conscience du manque de s&eacute;curit&eacute; de l'Internet et nous armer pour assurer notre s&eacute;curit&eacute; personnelle avec les outils disponibles aujourd'hui. En d&eacute;mocratisant la signature digitale, nous donnons la possibilit&eacute; de se familiariser avec la s&eacute;curit&eacute; &eacute;lectronique et la cryptographie."
msgstr "Mais, la raison majeure pour utiliser la signature digitale est la prise de conscience du besoin de prot&eacute;ger son identit&eacute; et la confidentialit&eacute; des informations. Nous devons avoir conscience du manque de s&eacute;curit&eacute; de l'Internet et nous armer pour assurer notre s&eacute;curit&eacute; personnelle avec les outils disponibles aujourd'hui. En d&eacute;mocratisant la signature digitale, nous donnons la possibilit&eacute; de se familiariser avec la s&eacute;curit&eacute; &eacute;lectronique et la cryptographie."
#: www/help/2.php:7 www/help/2.php:35
msgid "But, er, is this really proof of your email identity?"
@ -279,7 +279,7 @@ msgstr "Mais, quelle est la preuve de l'identit&eacute; de votre email ?"
#: www/help/2.php:48
msgid "But, with all this money, and all this responsibility, they must be taking a lot of care to ensure the Certificate Authorities do their jobs well, and keep doing their jobs well, right? Well right?!"
msgstr "Mais, avec tout cet argent et tous ces responsabilit&eacute;s, ils doivent faire tr&egrave;s attention pour s'assurer que les Autorit&eacute;s de Certification font bien leur travail et continuent de le faire correctement, d'accord ? Bien d'accord ?"
msgstr "Mais, avec tout cet argent et tous ces responsabilit&eacute;s, il est certain qu'ils font tr&egrave;s attention de s'assurer que les Autorit&eacute;s de Certification font bien leur travail et continuent de le faire correctement, d'accord ? Bien d'accord ?"
#: www/account/10.php:15 www/account/20.php:15 www/account/3.php:15
msgid "CAcert Certficate Acceptable Use Policy"
@ -826,7 +826,7 @@ msgstr "Plusieurs conseils pouvant vous &ecirc;tre utiles suivent."
#: 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."
msgstr "Pour des administrateurs d&eacute;sirant prot&eacute;ger les services qu'ils offrent, nous fournissons les certificats pour leur serveur ou leur domaine dont la d&eacute;livrance est presque imm&eacute;diate. Non seulement vous pouvez employer ces derniers pour prot&eacute;ger des sites Web, mais &eacute;galement les services POP3, de SMTP et IMAP, pour ne siter qu'eux. A la diff&eacute;rence d'autres Autorit&eacute; de Certification, nous ne limitons pas la taille des clefs des certificats ou l'utilisation de certificat pour un domaine complet. Tout le monde a droit &agrave; la s&eacute;curit&eacute; et &agrave; la protection de leur vie priv&eacute;e, pas seulement ceux qui g&egrave;rent les sites de commerce &eacute;lectronique."
msgstr "Pour des administrateurs d&eacute;sirant prot&eacute;ger les services qu'ils offrent, nous fournissons les certificats pour leur serveur ou leur domaine dont la d&eacute;livrance est presque imm&eacute;diate. Non seulement vous pouvez employer ces derniers pour prot&eacute;ger des sites Web, mais &eacute;galement les services POP3, SMTP et IMAP, pour ne citer qu'eux. &Agrave; la diff&eacute;rence d'autres Autorit&eacute;s de Certification, nous ne limitons pas la taille des clefs des certificats ou l'utilisation de certificat pour un domaine complet. Tout le monde a droit &agrave; la s&eacute;curit&eacute; et &agrave; la protection de leur vie priv&eacute;e, pas seulement ceux qui g&egrave;rent les sites de commerce &eacute;lectronique."
#: www/help/3.php:71
msgid "For more information, refer to your server documentation or visit"
@ -838,7 +838,7 @@ msgstr "Si vous voulez vous jeter &agrave; l'eau en s&eacute;curit&eacute;, nous
#: 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."
msgstr "Pendant des annees nous avons tous ete contraints de payer pour la securite, ce qui ne doit pas et ne devrait pas couter les yeux de la tete."
msgstr "Pendant des ann&eacute;es, nous avons tous &eacute;t&eacute; contraints de payer pour la s&eacute;curit&eacute;, ce qui ne doit pas et ne devrait pas co&ucirc;ter les yeux de la t&ecirc;te."
#: www/account/12.php:78 www/account/18.php:84 www/account/22.php:80
#: www/account/5.php:84
@ -2555,9 +2555,9 @@ msgstr "Vous n'avez pas saisie correctement votre mot de passe actuel."
msgid "You failed to enter a location of your meeting."
msgstr "Vous avez &eacute;chou&eacute; dans la saisie de la position g&eacute;ographique de votre rencontre."
#: www/index.php:90
msgid "You failed to get all answers correct, system admins have been notified."
msgstr "Vous avez &eacute;chou&eacute; &agrave; rentrer tous les r&eacute;ponses correctes, les administrateurs syst&egrave;mes en sont notifi&eacute;s."
#: www/index.php:97
msgid "You failed to get all answers correct or you didn't configure enough lost password questions for your account. System admins have been notified."
msgstr "Vous n'avez pas fourni les bonnes r&eacute;ponses, les administrateurs du syst&egrave;me sont notifi&eacute;s."
#: www/gpg.php:24
msgid "You failed to paste a valid GPG/PGP key."
@ -3543,3 +3543,28 @@ msgstr "Histoire compl&egrave;te"
#: www/index/0.php:40
msgid "More News Items"
msgstr "Plus de nouvelles"
#: www/index/6.php:92
msgid "You do not have enough/any lost password questions set. You will not be able to continue to reset your password via this method."
msgstr "Vous n'avez pas fourni suffisamment de paires question/r&eacute;ponse pour vous aider en cas de perte de votre mot de passe. Vous perdez la possibilit&eacute; de remettre &agrave; z&eacute;ro votre mot de passe par l'interm&eacute;diaire de cette m&eacute;thode."
#: includes/general.php:618
msgid "Failed to make a connection to the mail server"
msgstr "Echec lors de la connexion au serveur de mail"
#: includes/account.php:904 www/index.php:204 www/index.php:254
msgid "For your own security you must enter 5 lost password questions and answers."
msgstr "Pour votre propre s&eacute;curit&eacute;, vous devez fournir 5 questions/r&eacute;ponses en cas de perte de votre mot de passe."
#: www/wot.php:169
msgid "Race condition discovered, user altered details during assurance procedure. PLEASE MAKE SURE THE NEW DETAILS BELOW MATCH THE ID DOCUMENTS."
msgstr "D&eacute;tection d'une erreur, les d&eacute;tails de utilisateur ont chang&eacute; pendant la proc&eacute;dure d'accr&eacute;ditation. VEUILLEZ VOUS ASSURER QUE LES NOUVEAUX D&Eacute;TAILS CI-DESSOUS CORRESPONDENT AUX DOCUMENTS D'IDENTIFICATION."
#: www/wot.php:53
msgid "Reminder Notice"
msgstr "Notification d'un Rappel"
#: www/wot.php:49
#, php-format
msgid "This is a short reminder that you filled out forms to become trusted with CAcert.org, and %s has attempted to issue you points. Please create your account at %s as soon as possible and then notify %s so that the points can be issued."
msgstr "Ceci est un simple rappel que vous avez rempli des formulaires pour &ecirc;tre accr&eacute;dit&eacute; par CAcert.org, et que %s a essay&eacute; de vous attribuer des points. Veuillez cr&eacute;er votre compte &agrave; %s d&egrave;s que possible et informez alors %s de sorte que les points puissent vous &ecirc;tre attribu&eacute;s."

View file

@ -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-07-23 23:38:11+0000\n"
"PO-Revision-Date: 2005-08-08 21:28:37+0000\n"
"Last-Translator: Someone <someone@someisp.com>\n"
"Language-Team: <de@li.org>\n"
"MIME-Version: 1.0\n"
@ -1942,7 +1942,7 @@ msgstr "N&eacute;h&aacute;ny hirdet&otilde;nk k&uuml;ls&otilde; rekl&aacute;m sz
#: www/wot/9.php:19 www/wot/9.php:29
msgid "Sorry, I was unable to locate that user."
msgstr "Sajn&aacute;lom, nem talal&aacute;lom ezt a felhaszn&aacute;l&oacute;t."
msgstr "Sajn&aacute;lom, nem tal&aacute;lom ezt a felhaszn&aacute;l&oacute;t."
#: www/wot/6.php:85
msgid "Sponsoring Member"

File diff suppressed because it is too large Load diff

View file

@ -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-07-13 23:03:52+0000\n"
"PO-Revision-Date: 2005-09-16 11:40:14+0000\n"
"Last-Translator: Someone <someone@someisp.com>\n"
"Language-Team: <de@li.org>\n"
"MIME-Version: 1.0\n"
@ -1007,7 +1007,7 @@ msgstr "&#27531;&#24565;&#12394;&#12364;&#12425;&#12289;&#12354;&#12394;&#12383;
#: www/wot.php:42
msgid "I'm sorry, there was no email matching what you entered in the system. Please double check your information."
msgstr "&#27531;&#24565;&#12394;&#12364;&#12425;&#12289;&#12471;&#12473;&#12486;&#12512;&#12395;&#20837;&#21147;&#12375;&#12383;&#12450;&#12489;&#12524;&#12473;&#12395;&#12510;&#12483;&#12481;&#12377;&#12427;&#12513;&#12540;&#12523;&#12450;&#12489;&#12524;&#12473;&#12399;&#12354;&#12426;&#12414;&#12379;&#12435;&#12391;&#12375;&#12383;&#12290;&#12354;&#12394;&#12383;&#12398;&#24773;&#22577;&#12434;&#20877;&#30906;&#35469;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;"
msgstr "&#27531;&#24565;&#12394;&#12364;&#12425;&#12289;&#20837;&#21147;&#12375;&#12383;&#12450;&#12489;&#12524;&#12473;&#12395;&#12510;&#12483;&#12481;&#12377;&#12427;&#12513;&#12540;&#12523;&#12450;&#12489;&#12524;&#12473;&#12399;&#12471;&#12473;&#12486;&#12512;&#12395;&#12354;&#12426;&#12414;&#12379;&#12435;&#12391;&#12375;&#12383;&#12290;&#12354;&#12394;&#12383;&#12398;&#24773;&#22577;&#12434;&#20877;&#30906;&#35469;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;"
#: 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?"
@ -1618,7 +1618,7 @@ msgstr "PKI &#37749;"
#: www/account/10.php:28 www/account/16.php:40 www/account/20.php:25
#: www/account/3.php:52
msgid "Sign by class 1 root certificate"
msgstr ""
msgstr "&#12463;&#12521;&#12473;1&#12523;&#12540;&#12488;&#35388;&#26126;&#26360;&#12395;&#12424;&#12427;&#32626;&#21517;"
#: www/account/40.php:18 www/index/11.php:18
msgid "PLEASE NOTE: Due to the large amounts of support questions, incorrectly directed emails may be ignored, this is a volunteer effort and directing general questions to the right place will help everyone, including yourself as you will get a speedier reply."
@ -1656,7 +1656,7 @@ msgstr ""
#: www/account/19.php:99 www/account/6.php:97
msgid "Personal Certificate Installed."
msgstr ""
msgstr "&#20491;&#20154;&#35388;&#26126;&#26360;&#12364;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12373;&#12428;&#12414;&#12375;&#12383;&#12290;"
#: www/account/39.php:24 www/index/10.php:24
msgid "Personal information"
@ -1664,7 +1664,7 @@ msgstr "&#20491;&#20154;&#24773;&#22577;"
#: www/account/10.php:24
msgid "Please Note. All information on your certificate will be removed except the CommonName field, this is because it's an automated service and cannot automatically verify other details on your certificates are valid or not. If you are a valid organisation and would like more details to appear on certificates, you will need to have at least 50 assurance points and you need to send us a copy of your document of incorporation. Then we can add those details to your certificates. Contact us for more information on our organisational services."
msgstr ""
msgstr "&#27880;&#24847;: &#12354;&#12394;&#12383;&#12398;&#35388;&#26126;&#26360;&#20013;&#12398;CommonName&#12501;&#12451;&#12540;&#12523;&#12489;&#20197;&#22806;&#12398;&#24773;&#22577;&#12399;&#12377;&#12409;&#12390;&#21066;&#38500;&#12373;&#12428;&#12414;&#12377;&#12290;&#12381;&#12428;&#12399;&#12289;&#12371;&#12428;&#12364;&#33258;&#21205;&#12469;&#12540;&#12499;&#12473;&#12391;&#12354;&#12426;&#33258;&#21205;&#30340;&#12395;&#12399;&#20182;&#12398;&#37096;&#20998;&#12398;&#26377;&#21177;&#24615;&#12434;&#30906;&#35469;&#12391;&#12365;&#12394;&#12356;&#12383;&#12417;&#12391;&#12377;&#12290;&#12418;&#12375;&#12354;&#12394;&#12383;&#12364;&#26377;&#21177;&#12394;&#32068;&#32340;&#12391;&#12354;&#12426;&#12289;&#35388;&#26126;&#26360;&#12395;&#12418;&#12387;&#12392;&#35443;&#32048;&#12394;&#24773;&#22577;&#12434;&#21152;&#12360;&#12383;&#12356;&#22580;&#21512;&#12399;&#12289;&#23569;&#12394;&#12367;&#12392;&#12418;50&#20445;&#35388;&#12509;&#12452;&#12531;&#12488;&#12434;&#12418;&#12385;&#12289;&#12354;&#12394;&#12383;&#12398;&#32068;&#32340;&#12398;&#25991;&#26360;&#12434;&#12431;&#12383;&#12375;&#12383;&#12385;&#12395;&#36865;&#20184;&#12377;&#12427;&#24517;&#35201;&#12364;&#12354;&#12426;&#12414;&#12377;&#12290;&#12381;&#12358;&#12377;&#12428;&#12400;&#12431;&#12383;&#12375;&#12383;&#12385;&#12399;&#12381;&#12428;&#12425;&#12398;&#35443;&#32048;&#24773;&#22577;&#12434;&#35388;&#26126;&#26360;&#12395;&#21152;&#12360;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;&#32068;&#32340;&#12469;&#12540;&#12499;&#12473;&#12395;&#12388;&#12356;&#12390;&#12373;&#12425;&#12395;&#30693;&#12426;&#12383;&#12356;&#22580;&#21512;&#12399;&#12289;&#12431;&#12383;&#12375;&#12383;&#12385;&#12395;&#36899;&#32097;&#12375;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;"
#: www/account/3.php:65
msgid "Please Note: By ticking this box you will automatically have your name included in any certificates."
@ -2021,7 +2021,7 @@ msgstr "&#12371;&#12398;&#29366;&#27841;&#12399;&#22793;&#12431;&#12387;&#12390;
#: www/account/17.php:89 www/account/4.php:89
msgid "The 1024-bit key generation failed. Would you like to try 512 instead?"
msgstr ""
msgstr "1024&#12499;&#12483;&#12488;&#12398;&#37749;&#12398;&#29983;&#25104;&#12395;&#22833;&#25943;&#12375;&#12414;&#12375;&#12383;&#12290;&#20195;&#12431;&#12426;&#12395;512&#12499;&#12483;&#12488;&#12398;&#37749;&#12434;&#29983;&#25104;&#12375;&#12414;&#12377;&#12363;?"
#: www/help/3.php:31
msgid "The Common Name is the fully qualified host and Domain Name or website address that you will be securing. Both 'www.CAcert.org' and 'secure.CAcert.com' are valid Common Names. IP addresses are usually not used."
@ -2061,7 +2061,7 @@ msgstr "&#20182;&#12398;&#26032;&#12375;&#12356;CAcert&#12398;&#12518;&#12540;&#
#: includes/account.php:363
msgid "The address you submitted isn't a valid authority address for the domain."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12364;&#22564;&#20986;&#12375;&#12383;&#12450;&#12489;&#12524;&#12473;&#12399;&#12381;&#12398;&#12489;&#12513;&#12452;&#12531;&#12395;&#38306;&#12375;&#12390;&#27177;&#23041;&#12398;&#12354;&#12427;&#12450;&#12489;&#12524;&#12473;&#12391;&#12399;&#12354;&#12426;&#12414;&#12379;&#12435;&#12290;"
#: www/index/8.php:1
#, php-format
@ -2177,17 +2177,17 @@ msgstr "&#26397;&#39151;&#21069;&#12391;&#12377;&#12290;&#12388;&#12414;&#12426;
#: www/index.php:272
msgid "This email address is currently valid in the system."
msgstr ""
msgstr "&#29694;&#22312;&#12371;&#12398;&#12513;&#12540;&#12523;&#12450;&#12489;&#12524;&#12473;&#12399;&#12471;&#12473;&#12486;&#12512;&#20869;&#12391;&#26377;&#21177;&#12391;&#12377;&#12290;"
#: www/wot/6.php:36
#, php-format
msgid "This person already has %s assurance points."
msgstr ""
msgstr "&#12371;&#12398;&#20154;&#29289;&#12399;&#26082;&#12395;%s&#20445;&#35388;&#12509;&#12452;&#12531;&#12488;&#25152;&#26377;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;"
#: www/wot/6.php:32
#, php-format
msgid "This person already has %s assurance points. Any points you give this person may be rounded down, or they may not even get any points. If you have less then 150 points you will still receive 2 points for assuring them."
msgstr ""
msgstr "&#12371;&#12398;&#20154;&#29289;&#12399;&#26082;&#12395;%s&#20445;&#35388;&#12509;&#12452;&#12531;&#12488;&#25152;&#26377;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;&#12354;&#12394;&#12383;&#12364;&#12371;&#12398;&#20154;&#12395;&#19982;&#12360;&#12427;&#12509;&#12452;&#12531;&#12488;&#12399;&#20999;&#12426;&#19979;&#12370;&#12425;&#12428;&#12427;&#12363;&#12289;1&#12509;&#12452;&#12531;&#12488;&#12418;&#19982;&#12360;&#12425;&#12428;&#12394;&#12356;&#12363;&#12418;&#12375;&#12428;&#12414;&#12379;&#12435;&#12290;&#12391;&#12377;&#12364;&#12289;&#12418;&#12375;&#12354;&#12394;&#12383;&#12398;&#25345;&#12387;&#12390;&#12356;&#12427;&#12509;&#12452;&#12531;&#12488;&#12364;150&#26410;&#28288;&#12394;&#12425;&#12289;&#24444;&#12425;&#12434;&#20445;&#35388;&#12377;&#12427;&#12371;&#12392;&#12391;2&#12509;&#12452;&#12531;&#12488;&#24471;&#12414;&#12377;&#12290;"
#: www/account/39.php:18 www/index/10.php:18
msgid "This policy discloses what information we gather about you when you visit any of our Web site. It describes how we use that information and how you can control it."
@ -2359,7 +2359,7 @@ msgstr "&#35686;&#21578;! &#12354;&#12394;&#12383;&#12399;&#12463;&#12521;&#1245
#: includes/account.php:1609
#, php-format
msgid "Wasn't able to match '%s' against any user in the system"
msgstr ""
msgstr "'%s' &#12399;&#12471;&#12473;&#12486;&#12512;&#20013;&#12398;&#12393;&#12398;&#12518;&#12540;&#12470;&#12392;&#12418;&#12510;&#12483;&#12481;&#12373;&#12379;&#12425;&#12428;&#12414;&#12379;&#12435;&#12391;&#12375;&#12383;&#12290; "
#: www/account/39.php:34 www/index/10.php:34
msgid "We analyse visitors' use of our sites by tracking information such as page views, traffic flow, search terms, and click through. We use this information to improve our sites. We also share this anonymous traffic and demographic information in aggregate form with advertisers and other business partners. We do not share any information with advertisers that can identify an individual user."
@ -2386,7 +2386,7 @@ msgstr "&#35469;&#35388;&#23616;&#12398;&#12383;&#12417;&#12398;WebTrust"
#: www/index.php:353 www/index.php:362 www/logos.php:3 www/news.php:20
#: www/stats.php:3
msgid "Welcome to CAcert.org"
msgstr ""
msgstr "CAcert.org&#12408;&#12424;&#12358;&#12371;&#12381;"
#: www/account/0.php:16
msgid "Welcome to your account section of the website. Below is a description of the different sections and what they're for."
@ -2402,7 +2402,7 @@ msgstr "&#12381;&#12428;&#12399;&#20309;&#12395;&#20351;&#12358;&#12398;?"
#: www/index/51.php:30
msgid "When and Where?"
msgstr "&#12356;&#12388;&#12393;&#12371;&#12391;?"
msgstr "&#12356;&#12388;&#12289;&#12393;&#12371;&#12391;?"
#: www/help/3.php:67
msgid "When you have read this information, click 'Finish'."
@ -2471,11 +2471,11 @@ msgstr "&#35388;&#26126;&#26360;&#12434;&#12452;&#12531;&#12473;&#12488;&#12540;
#: www/wot.php:54
msgid "You are never allowed to Assure yourself!"
msgstr ""
msgstr "&#33258;&#20998;&#33258;&#36523;&#12434;&#20445;&#35388;&#12377;&#12427;&#12371;&#12392;&#12399;&#12369;&#12387;&#12375;&#12390;&#12391;&#12365;&#12414;&#12379;&#12435;!"
#: www/wot.php:68
msgid "You are only allowed to Assure someone once!"
msgstr ""
msgstr "&#35504;&#12363;&#12434;&#20445;&#35388;&#12377;&#12427;&#12371;&#12392;&#12399;1&#22238;&#12375;&#12363;&#12391;&#12365;&#12414;&#12379;&#12435;!"
#: www/help/2.php:45
msgid "You are putting your trust in people you don't know!"
@ -2483,17 +2483,17 @@ msgstr "&#12354;&#12394;&#12383;&#12398;&#30693;&#12425;&#12394;&#12356;&#20154;
#: scripts/removedead.php:56
msgid "You are receiving this email because you had a temporary increase to 200 points. This has since expired and you have been reduced to 150 points."
msgstr ""
msgstr "&#19968;&#26178;&#30340;&#12395;200&#12509;&#12452;&#12531;&#12488;&#12395;&#22679;&#21152;&#12375;&#12383;&#12398;&#12391;&#12289;&#12371;&#12398;&#12513;&#12540;&#12523;&#12364;&#36865;&#20449;&#12373;&#12428;&#12414;&#12375;&#12383;&#12290;&#12371;&#12428;&#12399;&#26399;&#38480;&#12434;&#12377;&#12366;&#12427;&#12392;150&#12509;&#12452;&#12531;&#12488;&#12395;&#28187;&#12376;&#12425;&#12428;&#12414;&#12377;&#12290;"
#: www/wot.php:230
#, php-format
msgid "You are receiving this email because you have assured %s %s (%s)."
msgstr ""
msgstr "%s %s (%s) &#12434;&#20445;&#35388;&#12375;&#12414;&#12375;&#12383;&#12398;&#12391;&#12289;&#12371;&#12398;&#12513;&#12540;&#12523;&#12364;&#36865;&#20449;&#12373;&#12428;&#12414;&#12375;&#12383;&#12290;"
#: www/wot.php:206
#, php-format
msgid "You are receiving this email because you have been assured by %s %s (%s)."
msgstr ""
msgstr "%s %s (%s) &#12395;&#12424;&#12387;&#12390;&#20445;&#35388;&#12373;&#12428;&#12414;&#12375;&#12383;&#12398;&#12391;&#12289;&#12371;&#12398;&#12513;&#12540;&#12523;&#12364;&#36865;&#20449;&#12373;&#12428;&#12414;&#12375;&#12383;&#12290;"
#: includes/general_stuff.php:112 includes/tverify_stuff.php:78
msgid "Further Information"
@ -2543,7 +2543,7 @@ msgstr "&#12371;&#12385;&#12425;&#12395;&#12399;&#12450;&#12463;&#12475;&#12473;
#: www/wot.php:23
msgid "You don't have access to view these pages."
msgstr ""
msgstr "&#12371;&#12428;&#12425;&#12398;&#12506;&#12540;&#12472;&#12434;&#35211;&#12427;&#27177;&#38480;&#12364;&#12354;&#12426;&#12414;&#12379;&#12435;&#12290;"
#: www/wot.php:92 www/wot.php:99
msgid "You failed to check all boxes to validate your adherence to the rules and policies of CAcert"
@ -2551,19 +2551,19 @@ msgstr "CAcert&#12398;&#35215;&#21063;&#12392;&#12509;&#12522;&#12471;&#12540;&#
#: includes/account.php:842
msgid "You failed to correctly enter your current Pass Phrase."
msgstr ""
msgstr "&#29694;&#22312;&#12398;&#12497;&#12473;&#12501;&#12524;&#12540;&#12474;&#12364;&#27491;&#12375;&#12367;&#20837;&#21147;&#12373;&#12428;&#12414;&#12379;&#12435;&#12391;&#12375;&#12383;&#12290;"
#: www/wot.php:109
msgid "You failed to enter a location of your meeting."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12398;&#38754;&#20250;&#22580;&#25152;&#12364;&#20837;&#21147;&#12373;&#12428;&#12414;&#12379;&#12435;&#12391;&#12375;&#12383;&#12290;"
#: www/index.php:90
msgid "You failed to get all answers correct, system admins have been notified."
msgstr "&#36074;&#21839;&#12377;&#12409;&#12390;&#12395;&#27491;&#12375;&#12367;&#31572;&#12360;&#12425;&#12428;&#12414;&#12379;&#12435;&#12391;&#12375;&#12383;&#12290;&#12471;&#12473;&#12486;&#12512;&#31649;&#29702;&#32773;&#12395;&#36890;&#30693;&#12373;&#12428;&#12414;&#12375;&#12383;&#12290;"
#: www/index.php:97
msgid "You failed to get all answers correct or you didn't configure enough lost password questions for your account. System admins have been notified."
msgstr ""
#: www/gpg.php:24
msgid "You failed to paste a valid GPG/PGP key."
msgstr ""
msgstr "&#26377;&#21177;&#12394;GPG/PGP&#37749;&#12364;&#12506;&#12540;&#12473;&#12488;&#12373;&#12428;&#12414;&#12379;&#12435;&#12391;&#12375;&#12383;&#12290;"
#: www/index/0.php:113
msgid "You get a vote in how CAcert (a non-profit association incorporated in Australia) is run; be eligible for positions on the CAcert board."
@ -2592,7 +2592,7 @@ msgstr "&#12354;&#12394;&#12383;&#12399;&#12289;whois&#12524;&#12467;&#12540;&#1
#: www/account/17.php:17 www/account/19.php:57 www/account/4.php:17
#: www/account/6.php:55
msgid "You must enable ActiveX for this to work."
msgstr ""
msgstr "&#12371;&#12428;&#12364;&#21205;&#20316;&#12377;&#12427;&#12424;&#12358;&#12395;&#12377;&#12427;&#12395;&#12399;ActiveX&#12434;&#26377;&#21177;&#12395;&#12375;&#12394;&#12369;&#12428;&#12400;&#12394;&#12426;&#12414;&#12379;&#12435;&#12290;"
#: www/wot/3.php:21
msgid "You must meet the applicant in person;"
@ -2604,11 +2604,11 @@ msgstr "&#25919;&#24220;&#30330;&#34892;&#12398;&#20889;&#30495;&#20184;&#12365;
#: www/wot.php:216
msgid "You now have over 100 points and can start assuring others."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12399;&#29694;&#22312;100&#12509;&#12452;&#12531;&#12488;&#20197;&#19978;&#25152;&#26377;&#12375;&#12390;&#12362;&#12426;&#12289;&#20182;&#12398;&#20154;&#12398;&#20445;&#35388;&#12434;&#22987;&#12417;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;"
#: www/wot.php:211
msgid "You now have over 50 points, and can now have your name added to client certificates, and issue server certificates for up to 2 years."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12399;&#29694;&#22312;50&#12509;&#12452;&#12531;&#12488;&#20197;&#19978;&#25152;&#26377;&#12375;&#12289;&#12463;&#12521;&#12452;&#12450;&#12531;&#12488;&#35388;&#26126;&#26360;&#12395;&#12354;&#12394;&#12383;&#12398;&#21517;&#21069;&#12434;&#21152;&#12360;&#12383;&#12426;&#12289;2&#24180;&#38291;&#26377;&#21177;&#12398;&#12469;&#12540;&#12496;&#35388;&#26126;&#26360;&#12434;&#30330;&#34892;&#12377;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;&#12290;"
#: www/help/2.php:15
msgid "You see this all the time on the Internet - every time you go to a secure page on a web site, for example to enter personal details, or to make a purchase, every day you browse web sites that have been digitally signed by a Certificate Authority that is accepted as having the authority to sign it. This is all invisible to the user, except that you may be aware that you are entering a secure zone (e.g. SSL and HTTPS)."
@ -2628,12 +2628,12 @@ msgstr "&#26082;&#12395;150&#12509;&#12452;&#12531;&#12488;&#20197;&#19978;&#123
#: includes/account.php:1676
msgid "You tried to use an invalid language."
msgstr ""
msgstr "&#28961;&#21177;&#12394;&#35328;&#35486;&#12434;&#20351;&#29992;&#12375;&#12424;&#12358;&#12392;&#12375;&#12414;&#12375;&#12383;&#12290;"
#: www/wot.php:207
#, php-format
msgid "You were issued %s points and you now have %s points in total."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12395;%s&#12509;&#12452;&#12531;&#12488;&#12364;&#30330;&#34892;&#12373;&#12428;&#12289;&#29694;&#22312;&#12354;&#12394;&#12383;&#12399;&#21512;&#35336;%s&#12509;&#12452;&#12531;&#12488;&#25152;&#26377;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;"
#: www/index/0.php:105
msgid "You will need to be issued 100 points by meeting with existing assurers from the CAcert Web of Trust, who verify your identity using your government issued photo identity documents; OR if it is too difficult to meet up with existing assurers in your area, meet with two Trusted Third Party assurers (notary public, justice of the peace, lawyer, bank manager, accountant) to do the verifying."
@ -2657,15 +2657,15 @@ msgstr "&#12371;&#12371;&#12391;&#35388;&#26126;&#26360;&#12398;&#35201;&#27714;
#: www/wot.php:237
msgid "You've Assured Another Member."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12399;&#20182;&#12398;&#12513;&#12531;&#12496;&#12540;&#12434;&#20445;&#35388;&#12375;&#12414;&#12375;&#12383;&#12290;"
#: www/verify.php:77
msgid "You've attempted to verify the same domain a fourth time with an invalid hash, subsequantly this request has been deleted in the system"
msgstr ""
msgstr "&#21516;&#12376;&#12489;&#12513;&#12452;&#12531;&#12398;&#30906;&#35469;&#12434;&#28961;&#21177;&#12394;&#12495;&#12483;&#12471;&#12517;&#12434;&#20351;&#12387;&#12390;4&#22238;&#32154;&#12369;&#12390;&#35430;&#12415;&#12414;&#12375;&#12383;&#12290;&#12381;&#12398;&#12383;&#12417;&#12289;&#12371;&#12398;&#35201;&#27714;&#12399;&#12471;&#12473;&#12486;&#12512;&#12363;&#12425;&#21066;&#38500;&#12373;&#12428;&#12414;&#12375;&#12383;&#12290;"
#: www/wot.php:225
msgid "You've been Assured."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12399;&#20445;&#35388;&#12373;&#12428;&#12414;&#12375;&#12383;&#12290;"
#: www/account/43.php:190 www/wot/10.php:19
msgid "Your Assurance Points"
@ -2702,7 +2702,7 @@ msgstr "&#12354;&#12394;&#12383;&#12398;&#12502;&#12521;&#12454;&#12470;&#12399;
#: includes/account.php:1064 includes/account.php:1227
#: includes/account.php:1279 includes/account.php:1802 www/gpg.php:165
msgid "Your certificate request has failed to be processed correctly, please try submitting it again."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12398;&#35388;&#26126;&#26360;&#35201;&#27714;&#12399;&#27491;&#12375;&#12367;&#20966;&#29702;&#12391;&#12365;&#12414;&#12379;&#12435;&#12391;&#12375;&#12383;&#12290;&#20877;&#24230;&#25552;&#20986;&#12375;&#12390;&#12415;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;"
#: www/help/3.php:34
msgid "Your country, state and city."
@ -2739,7 +2739,7 @@ msgstr "&#35328;&#35486;&#35373;&#23450;&#12364;&#26356;&#26032;&#12373;&#12428;
#: www/account.php:37 www/index.php:354
msgid "Your message has been sent to the general support list."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12398;&#12513;&#12483;&#12475;&#12540;&#12472;&#12399;&#19968;&#33324;&#12469;&#12509;&#12540;&#12488;&#12522;&#12473;&#12488;&#12395;&#36865;&#12425;&#12428;&#12414;&#12375;&#12383;&#12290;"
#: www/account.php:28 www/index.php:343
msgid "Your message has been sent."
@ -2779,7 +2779,7 @@ msgstr "&#12375;&#12390;&#12354;&#12394;&#12383;&#12398;&#35388;&#26126;&#26360;
#: www/help/4.php:7
msgid "writing new private key to 'private.key'"
msgstr "writing new private key to 'private.key'"
msgstr "&#26032;&#12375;&#12356;&#31192;&#23494;&#37749;&#12434; 'private.key' &#12395;&#26360;&#12365;&#36796;&#12435;&#12391;&#12356;&#12414;&#12377;"
#: www/analyse.php:25
msgid "Analyse"
@ -2854,17 +2854,17 @@ msgstr "&#12487;&#12472;&#12479;&#12523;&#35388;&#26126;&#26360;&#12434;&#28961;
#: www/wot.php:240
#, php-format
msgid "You issued %s points and they now have %s points in total."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12399;%s&#12509;&#12452;&#12531;&#12488;&#12434;&#30330;&#34892;&#12375;&#12289;&#29694;&#22312;&#24444;&#12425;&#12399;&#21512;&#35336;&#12391;%s&#12509;&#12452;&#12531;&#12488;&#25152;&#26377;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;"
#: www/wot.php:238
#, php-format
msgid "You issued %s points however the system has rounded this down to %s and they now have %s points in total."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12399;%s&#12509;&#12452;&#12531;&#12488;&#12434;&#30330;&#34892;&#12375;&#12414;&#12375;&#12383;&#12364;&#12289;&#12471;&#12473;&#12486;&#12512;&#12399;&#12371;&#12428;&#12434;%s&#12395;&#20999;&#12426;&#19979;&#12370;&#12289;&#29694;&#22312;&#24444;&#12425;&#12399;&#21512;&#35336;&#12391;%s&#12509;&#12452;&#12531;&#12488;&#25152;&#26377;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;"
#: www/wot.php:211
#, php-format
msgid "You were issued %s points however the system has rounded this down to %s and you now have %s points in total."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12395;%s&#12509;&#12452;&#12531;&#12488;&#12364;&#30330;&#34892;&#12373;&#12428;&#12414;&#12375;&#12383;&#12364;&#12289;&#12471;&#12473;&#12486;&#12512;&#12399;&#12371;&#12428;&#12434;%s&#12395;&#20999;&#12426;&#19979;&#12370;&#12289;&#29694;&#22312;&#12354;&#12394;&#12383;&#12399;&#21512;&#35336;&#12391;%s&#12509;&#12452;&#12531;&#12488;&#25152;&#26377;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;"
#: www/wot.php:49
msgid "A reminder notice has been sent."
@ -2973,7 +2973,7 @@ msgstr "&#12497;&#12473;&#12527;&#12540;&#12489;&#12434;&#24536;&#12428;&#12383;
#: 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 "&#19982;&#12360;&#12425;&#12428;&#12383;&#12513;&#12540;&#12523;&#12450;&#12489;&#12524;&#12473;&#12364;&#28961;&#21177;&#12363;&#12289;&#12354;&#12394;&#12383;&#12398;&#12469;&#12540;&#12496;&#12408;&#12398;&#25509;&#32154;&#35430;&#39443;&#12364;&#12391;&#12365;&#12394;&#12363;&#12387;&#12383;&#12363;&#12289;&#12354;&#12427;&#12356;&#12399;&#12513;&#12540;&#12523;&#12450;&#12489;&#12524;&#12473;&#12364;&#28961;&#21177;&#12391;&#12354;&#12427;&#12392;&#12469;&#12540;&#12496;&#12364;&#25298;&#21542;&#12375;&#12414;&#12375;&#12383;&#12290;"
#: 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
@ -3123,7 +3123,7 @@ msgstr "&#32027;&#20105;&#12434;&#25298;&#21542;"
#: www/account/11.php:40
msgid "Rejected"
msgstr ""
msgstr "&#25298;&#21542;"
#: www/disputes/4.php:29 www/disputes/6.php:29
msgid "Report Dispute as Abuse"
@ -3185,7 +3185,7 @@ msgstr "&#20197;&#19979;&#12398;&#12467;&#12513;&#12531;&#12488;&#12399;&#12524;
#: 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 "&#27425;&#12398;&#12507;&#12473;&#12488;&#21517;&#12399;&#12289;&#12471;&#12473;&#12486;&#12512;&#12364;&#12354;&#12394;&#12383;&#12398;&#12450;&#12459;&#12454;&#12531;&#12488;&#12392;&#32080;&#12403;&#12388;&#12369;&#12425;&#12428;&#12394;&#12363;&#12387;&#12383;&#12383;&#12417;&#12289;&#25298;&#21542;&#12373;&#12428;&#12414;&#12375;&#12383;&#12290;&#12418;&#12375;&#12371;&#12428;&#12425;&#12364;&#26377;&#21177;&#12391;&#12354;&#12427;&#22580;&#21512;&#12399;&#12289;&#12354;&#12394;&#12383;&#12398;&#12450;&#12459;&#12454;&#12531;&#12488;&#12395;&#23550;&#12375;&#12390;&#12489;&#12513;&#12452;&#12531;&#12398;&#30906;&#35469;&#12434;&#34892;&#12387;&#12390;&#12367;&#12384;&#12373;&#12356;&#12290;"
#: www/index/7.php:18
msgid "The list of names are in no sense of order"
@ -3213,7 +3213,7 @@ msgstr "&#12371;&#12428;&#12399;&#12371;&#12398;&#12450;&#12459;&#12454;&#12531;
#: 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 "&#12354;&#12394;&#12383;&#12398;&#22320;&#21306;&#12395;&#12356;&#12427;&#20182;&#12398;&#20154;&#12364;&#12354;&#12394;&#12383;&#12434;&#12415;&#12388;&#12369;&#12420;&#12377;&#12367;&#12377;&#12427;&#12395;&#12399;&#12289;&#12354;&#12394;&#12383;&#12434;&#20445;&#35388;&#20154;&#12522;&#12473;&#12488;&#12395;&#21152;&#12360;&#12390;&#12289;&#12354;&#12394;&#12383;&#12364;&#20303;&#12435;&#12391;&#12356;&#12427;&#12363;&#20685;&#12356;&#12390;&#12356;&#12427;&#29289;&#29702;&#30340;&#12394;&#22580;&#25152;&#12434;&#35352;&#36617;&#12375;&#12390;&#12362;&#12367;&#12392;&#26377;&#29992;&#12391;&#12377;&#65288;&#12371;&#12428;&#12399;&#20219;&#24847;&#12391;&#12377;&#65289;&#12290;&#20197;&#19979;&#12395;&#34892;&#12367;&#12371;&#12392;&#12395;&#12424;&#12426;&#12289;&#12354;&#12394;&#12383;&#12398;&#12450;&#12459;&#12454;&#12531;&#12488;&#12434;&#20445;&#35388;&#20154;&#12522;&#12473;&#12488;&#12395;&#20837;&#12428;&#12289;&#34920;&#31034;&#12377;&#12427;&#12467;&#12513;&#12531;&#12488;&#12434;&#21152;&#12360;&#12427;&#12371;&#12392;&#12364;&#12391;&#12365;&#12414;&#12377;:"
#: www/account/43.php:101
msgid "Tverify Account"
@ -3233,7 +3233,7 @@ msgstr ""
#: 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 "&#12354;&#12356;&#12395;&#12367;&#12289;&#12354;&#12394;&#12383;&#12398;&#12509;&#12452;&#12531;&#12488;&#22679;&#35201;&#27714;&#12399;&#25298;&#21542;&#12373;&#12428;&#12414;&#12375;&#12383;&#12290;&#20197;&#19979;&#12399;&#12354;&#12394;&#12383;&#12398;&#35201;&#27714;&#12434;&#12524;&#12499;&#12517;&#12540;&#12375;&#12383;&#20154;&#12293;&#12363;&#12425;&#12398;&#12289;&#12394;&#12380;&#24444;&#12425;&#12364;&#12354;&#12394;&#12383;&#12398;&#30003;&#35531;&#12434;&#25298;&#21542;&#12375;&#12383;&#12363;&#12395;&#12388;&#12356;&#12390;&#12398;&#12467;&#12513;&#12531;&#12488;&#12391;&#12377;&#12290;"
#: www/disputes/4.php:32 www/disputes/5.php:29 www/disputes/6.php:32
msgid "Update Dispute"
@ -3269,11 +3269,11 @@ msgstr "&#12414;&#12383;&#12289;&#20844;&#35388;&#20154;&#12289;&#27835;&#23433;
#: www/wot.php:257
msgid "You can list your location by going to:"
msgstr ""
msgstr "&#20197;&#19979;&#12395;&#34892;&#12367;&#12392;&#12354;&#12394;&#12383;&#12398;&#25152;&#22312;&#22320;&#12434;&#19968;&#35239;&#34920;&#31034;&#12391;&#12365;&#12414;&#12377;:"
#: includes/account.php:2010
msgid "You have already voted on this request."
msgstr ""
msgstr "&#12354;&#12394;&#12383;&#12399;&#12371;&#12398;&#35201;&#27714;&#12395;&#26082;&#12395;&#25237;&#31080;&#12375;&#12390;&#12356;&#12414;&#12377;&#12290;"
#: www/disputes.php:416
#, php-format
@ -3308,23 +3308,23 @@ msgstr "&#12354;&#12427;&#12450;&#12459;&#12454;&#12531;&#12488;&#12398;&#20027;
#: 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 ""
msgstr "&#21516;&#12376;&#12513;&#12540;&#12523;&#12450;&#12489;&#12524;&#12473;&#12398;&#30906;&#35469;&#12434;&#28961;&#21177;&#12394;&#12495;&#12483;&#12471;&#12517;&#12434;&#20351;&#12387;&#12390;4&#22238;&#32154;&#12369;&#12390;&#35430;&#12415;&#12414;&#12375;&#12383;&#12290;&#12381;&#12398;&#12383;&#12417;&#12289;&#12371;&#12398;&#35201;&#27714;&#12399;&#12471;&#12473;&#12486;&#12512;&#12363;&#12425;&#21066;&#38500;&#12373;&#12428;&#12414;&#12375;&#12383;&#12290;"
#: 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 "&#32027;&#20105;&#20013;&#12398;&#12489;&#12513;&#12452;&#12531;&#12398;&#21463;&#29702;&#12414;&#12383;&#12399;&#25298;&#21542;&#12398;&#35430;&#12415;&#12399;&#12289;&#12495;&#12483;&#12471;&#12517;&#25991;&#23383;&#21015;&#12364;&#12489;&#12513;&#12452;&#12531;ID&#12392;&#12510;&#12483;&#12481;&#12375;&#12394;&#12363;&#12387;&#12383;&#12383;&#12417;&#12289;&#28961;&#21177;&#12391;&#12377;&#12290;"
#: 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 "&#32027;&#20105;&#20013;&#12398;&#12489;&#12513;&#12452;&#12531;&#12398;&#21463;&#29702;&#12414;&#12383;&#12399;&#25298;&#21542;&#12398;&#35430;&#12415;&#12399;&#12289;&#12495;&#12483;&#12471;&#12517;&#25991;&#23383;&#21015;&#12364;&#12489;&#12513;&#12452;&#12531;ID&#12392;&#12510;&#12483;&#12481;&#12375;&#12394;&#12363;&#12387;&#12383;&#12383;&#12417;&#12289;&#28961;&#21177;&#12391;&#12377;&#12290;&#12381;&#12398;&#12383;&#12417;&#12289;&#12371;&#12398;&#35430;&#12415;&#12399;&#35352;&#37682;&#12373;&#12428;&#12289;&#35201;&#27714;&#12399;&#12471;&#12473;&#12486;&#12512;&#12363;&#12425;&#28040;&#21435;&#12373;&#12428;&#12414;&#12377;&#12290;"
#: 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 "&#32027;&#20105;&#20013;&#12398;&#12513;&#12540;&#12523;&#12450;&#12489;&#12524;&#12473;&#12398;&#21463;&#29702;&#12414;&#12383;&#12399;&#25298;&#21542;&#12398;&#35430;&#12415;&#12399;&#12289;&#12495;&#12483;&#12471;&#12517;&#25991;&#23383;&#21015;&#12364;&#12513;&#12540;&#12523;&#12450;&#12489;&#12524;&#12473;ID&#12392;&#12510;&#12483;&#12481;&#12375;&#12394;&#12363;&#12387;&#12383;&#12383;&#12417;&#12289;&#28961;&#21177;&#12391;&#12377;&#12290;"
#: 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 "&#32027;&#20105;&#20013;&#12398;&#12513;&#12540;&#12523;&#12450;&#12489;&#12524;&#12473;&#12398;&#21463;&#29702;&#12414;&#12383;&#12399;&#25298;&#21542;&#12398;&#35430;&#12415;&#12399;&#12289;&#12495;&#12483;&#12471;&#12517;&#25991;&#23383;&#21015;&#12364;&#12513;&#12540;&#12523;&#12450;&#12489;&#12524;&#12473;ID&#12392;&#12510;&#12483;&#12481;&#12375;&#12394;&#12363;&#12387;&#12383;&#12383;&#12417;&#12289;&#28961;&#21177;&#12391;&#12377;&#12290;&#12381;&#12398;&#12383;&#12417;&#12289;&#12371;&#12398;&#35430;&#12415;&#12399;&#35352;&#37682;&#12373;&#12428;&#12289;&#35201;&#27714;&#12399;&#12471;&#12473;&#12486;&#12512;&#12363;&#12425;&#28040;&#21435;&#12373;&#12428;&#12414;&#12377;&#12290;"
#: includes/account.php:2089
msgid "Your vote has been accepted."
@ -3336,11 +3336,11 @@ msgstr ""
#: www/index/17.php:65
msgid "Problems were detected with the CAcert root certificate download error:"
msgstr ""
msgstr "CAcert&#12523;&#12540;&#12488;&#35388;&#26126;&#26360;&#12398;&#12480;&#12454;&#12531;&#12525;&#12540;&#12489;&#12456;&#12521;&#12540;&#12398;&#21839;&#38988;&#12364;&#26908;&#20986;&#12373;&#12428;&#12414;&#12375;&#12383;:"
#: www/index/17.php:67
msgid "The CAcert root certificate was successfully installed"
msgstr ""
msgstr "CAcert&#12523;&#12540;&#12488;&#35388;&#26126;&#26360;&#12364;&#27491;&#12375;&#12367;&#12452;&#12531;&#12473;&#12488;&#12540;&#12523;&#12373;&#12428;&#12414;&#12375;&#12383;&#12290;"
#: www/wot/6.php:70
#, php-format
@ -3415,7 +3415,7 @@ msgstr "&#30003;&#35531;&#32773;&#22768;&#26126;"
#: www/cap.php:26 www/ttp.php:35
msgid "CAcert's Root Certificate fingerprints"
msgstr ""
msgstr "CAcert&#12523;&#12540;&#12488;&#35388;&#26126;&#26360;&#12398;&#25351;&#32011;"
#: www/ttp.php:109
msgid "Applicant Information"
@ -3500,7 +3500,7 @@ msgstr "&#12354;&#12394;&#12383;&#12399;&#12289;&#26412;&#21517;&#12289;&#29983;
#: www/ttp.php:52
msgid "You have viewed two of the Applicant's photo identity documents and you are convinced of their authenticity, and are convinced that the photos indeed depict the Applicant (allowed documents are government-issued documents with photos such as driver's license, passport, or others that are normally accepted as legal identification in your country; expired documents are allowed)."
msgstr "&#12354;&#12394;&#12383;&#12399;&#30003;&#35531;&#32773;&#12398;&#20889;&#30495;&#20184;&#12365;&#36523;&#20998;&#35388;&#26126;&#26360;2&#31278;&#12434;&#35211;&#12390;&#12289;&#12381;&#12398;&#30495;&#27491;&#24615;&#12434;&#30906;&#20449;&#12375;&#12289;&#20889;&#30495;&#12364;&#30003;&#35531;&#32773;&#12398;&#12418;&#12398;&#12391;&#12354;&#12427;&#12371;&#12392;&#12434;&#30906;&#20449;&#12375;&#12390;&#12356;&#12414;&#12377; (&#35377;&#23481;&#12373;&#12428;&#12427;&#36523;&#20998;&#35388;&#26126;&#26360;&#12399;&#12289;&#25919;&#24220;&#12364;&#30330;&#34892;&#12375;&#12383;&#20889;&#30495;&#20184;&#12365;&#12398;&#12418;&#12398;&#12391;&#12289;&#36939;&#36578;&#20813;&#35377;&#35388;&#12420;&#12497;&#12473;&#12509;&#12540;&#12488;&#12289;&#12354;&#12427;&#12356;&#12399;&#12354;&#12394;&#12383;&#12398;&#22269;&#12391;&#36890;&#24120;&#35469;&#12417;&#12425;&#12428;&#12390;&#12356;&#12427;&#20182;&#12398;&#27861;&#30340;&#36523;&#20998;&#35388;&#26126;&#26360;&#12391;&#12377;&#12290;&#26377;&#21177;&#26399;&#38480;&#12398;&#20999;&#12428;&#12383;&#36523;&#20998;&#35388;&#26126;&#26360;&#12418;&#35377;&#23481;&#12373;&#12428;&#12414;&#12377;)&#12290;"
msgstr "&#12354;&#12394;&#12383;&#12399;&#30003;&#35531;&#32773;&#12398;&#20889;&#30495;&#20184;&#12365;&#36523;&#20998;&#35388;&#26126;&#26360;&#12434;2&#31278;&#39006;&#30446;&#35222;&#12375;&#12390;&#12289;&#12381;&#12398;&#30495;&#27491;&#24615;&#12434;&#30906;&#20449;&#12375;&#12289;&#20889;&#30495;&#12364;&#30003;&#35531;&#32773;&#12398;&#12418;&#12398;&#12391;&#12354;&#12427;&#12371;&#12392;&#12434;&#30906;&#20449;&#12375;&#12390;&#12356;&#12414;&#12377; (&#35377;&#23481;&#12373;&#12428;&#12427;&#36523;&#20998;&#35388;&#26126;&#26360;&#12399;&#12289;&#25919;&#24220;&#12364;&#30330;&#34892;&#12375;&#12383;&#20889;&#30495;&#20184;&#12365;&#12398;&#12418;&#12398;&#12391;&#12289;&#36939;&#36578;&#20813;&#35377;&#35388;&#12420;&#12497;&#12473;&#12509;&#12540;&#12488;&#12289;&#12354;&#12427;&#12356;&#12399;&#12354;&#12394;&#12383;&#12398;&#22269;&#12391;&#36890;&#24120;&#35469;&#12417;&#12425;&#12428;&#12390;&#12356;&#12427;&#20182;&#12398;&#27861;&#30340;&#36523;&#20998;&#35388;&#26126;&#26360;&#12391;&#12377;&#12290;&#26377;&#21177;&#26399;&#38480;&#12398;&#20999;&#12428;&#12383;&#36523;&#20998;&#35388;&#26126;&#26360;&#12418;&#35377;&#23481;&#12373;&#12428;&#12414;&#12377;)&#12290;"
#: www/ttp.php:86
msgid "as applicable"
@ -3545,3 +3545,28 @@ msgstr "&#35352;&#20107;&#20840;&#20307;&#12434;&#35501;&#12416;"
#: www/index/0.php:40
msgid "More News Items"
msgstr "&#12491;&#12517;&#12540;&#12473;&#38917;&#30446;&#12434;&#12418;&#12387;&#12392;&#35211;&#12427;"
#: www/index/6.php:92
msgid "You do not have enough/any lost password questions set. You will not be able to continue to reset your password via this method."
msgstr ""
#: includes/general.php:618
msgid "Failed to make a connection to the mail server"
msgstr ""
#: includes/account.php:904 www/index.php:204 www/index.php:254
msgid "For your own security you must enter 5 lost password questions and answers."
msgstr ""
#: www/wot.php:169
msgid "Race condition discovered, user altered details during assurance procedure. PLEASE MAKE SURE THE NEW DETAILS BELOW MATCH THE ID DOCUMENTS."
msgstr ""
#: www/wot.php:53
msgid "Reminder Notice"
msgstr ""
#: www/wot.php:49
#, php-format
msgid "This is a short reminder that you filled out forms to become trusted with CAcert.org, and %s has attempted to issue you points. Please create your account at %s as soon as possible and then notify %s so that the points can be issued."
msgstr ""

View file

@ -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-07-23 23:37:57+0000\n"
"PO-Revision-Date: 2005-08-08 21:29:01+0000\n"
"Last-Translator: Someone <someone@someisp.com>\n"
"Language-Team: <de@li.org>\n"
"MIME-Version: 1.0\n"

View file

@ -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-07-04 07:24:53+0000\n"
"PO-Revision-Date: 2005-10-31 00:56:42+0000\n"
"Last-Translator: Someone <someone@someisp.com>\n"
"Language-Team: <de@li.org>\n"
"MIME-Version: 1.0\n"
@ -2488,7 +2488,9 @@ msgstr ""
#: www/wot.php:230
#, php-format
msgid "You are receiving this email because you have assured %s %s (%s)."
msgstr "Otrzymujesz ten Email poniewaz zosta&#322;e&#347; uwierzytelniony %s %s (%s)."
msgstr ""
"Otrzymujesz ten Email poniewaz zosta&#322;e&#347; uwierzytelniony:&#13;"
"%s %s (%s)."
#: www/wot.php:206
#, php-format
@ -2557,8 +2559,8 @@ msgstr ""
msgid "You failed to enter a location of your meeting."
msgstr ""
#: www/index.php:90
msgid "You failed to get all answers correct, system admins have been notified."
#: www/index.php:97
msgid "You failed to get all answers correct or you didn't configure enough lost password questions for your account. System admins have been notified."
msgstr ""
#: www/gpg.php:24
@ -2657,7 +2659,7 @@ msgstr ""
#: www/wot.php:237
msgid "You've Assured Another Member."
msgstr ""
msgstr "Uwierzytelni&#322;e&#347; kolejnego uczestnika."
#: www/verify.php:77
msgid "You've attempted to verify the same domain a fourth time with an invalid hash, subsequantly this request has been deleted in the system"
@ -3354,7 +3356,7 @@ msgstr ""
#: www/cap.php:83
msgid "Applicant's signature"
msgstr ""
msgstr "Podpis Kandydata"
#: www/cap.php:39
msgid "As the assurer, you are required to keep the signed document on file for 7 years. Should Cacert Inc. have any concerns about a meeting taking place, Cacert Inc. can request proof, in the form of this signed document, to ensure the process is being followed correctly. After 7 years if you wish to dispose of this form it's preferred that you shred and burn it. You do not need to retain copies of ID at all."
@ -3362,7 +3364,7 @@ msgstr ""
#: www/cap.php:103 www/cap.php:107
msgid "Assurer's Name"
msgstr ""
msgstr "Imi&#281; i Nazwisko Kontrolera"
#: www/cap.php:111
msgid "Assurer's signature"
@ -3370,11 +3372,11 @@ msgstr "Podpis Kontrolera"
#: www/cap.php:12
msgid "CAcert Assurance Programme"
msgstr ""
msgstr "Program Uwierzytelniania CAcert"
#: www/cap.php:85 www/cap.php:113
msgid "Date (YYYY-MM-DD)"
msgstr ""
msgstr "Data (RRRR-MM-DD)"
#: www/cap.php:81
msgid "I hereby confirm that the information stated above is both true and correct, and request the CAcert Assurer (identified below) to witness my identity in the CAcert Assurance Programme."
@ -3382,27 +3384,27 @@ msgstr ""
#: www/cap.php:15 www/ttp.php:24
msgid "Identity Verification Form"
msgstr ""
msgstr "Formularz Weryfikacji To&#380;samo&#347;ci"
#: www/cap.php:129
msgid "Location of Face-to-face Meeting"
msgstr ""
msgstr "Miejsce Spotkanie Twarz&#261; w Twarz"
#: www/cap.php:133
msgid "Maximum Points"
msgstr ""
msgstr "Maksimum Punkt&oacute;w"
#: www/cap.php:51 www/ttp.php:75
msgid "Names"
msgstr ""
msgstr "Imi&#281; i Nazwisko"
#: www/cap.php:123
msgid "Photo ID Shown: (ID types, not numbers. eg Drivers license, Passport)"
msgstr ""
msgstr "Okazane Dokumenty To&#380;samo&#347;ci ze zdj&#281;ciem: (typy dokument&oacute;w, nie ich numery! np. Paszport, Prawo Jazdy)"
#: www/cap.php:131
msgid "Points Allocated"
msgstr ""
msgstr "Przyznane Punkty"
#: www/cap.php:37
#, php-format
@ -3411,7 +3413,7 @@ msgstr ""
#: www/cap.php:46
msgid "Applicant's Statement"
msgstr ""
msgstr "O&#347;wiadczenie Kandydata"
#: www/cap.php:26 www/ttp.php:35
msgid "CAcert's Root Certificate fingerprints"
@ -3508,7 +3510,7 @@ msgstr ""
#: www/cap.php:102
msgid "CAcert Assurer"
msgstr ""
msgstr "Kontroler CAcert"
#: www/wot/5.php:15
msgid "ERROR"
@ -3545,3 +3547,28 @@ msgstr "Czytaj wi&#281;cej..."
#: www/index/0.php:40
msgid "More News Items"
msgstr "Wi&#281;cej wiadomo&#347;ci..."
#: www/index/6.php:92
msgid "You do not have enough/any lost password questions set. You will not be able to continue to reset your password via this method."
msgstr ""
#: includes/general.php:618
msgid "Failed to make a connection to the mail server"
msgstr ""
#: includes/account.php:904 www/index.php:204 www/index.php:254
msgid "For your own security you must enter 5 lost password questions and answers."
msgstr ""
#: www/wot.php:169
msgid "Race condition discovered, user altered details during assurance procedure. PLEASE MAKE SURE THE NEW DETAILS BELOW MATCH THE ID DOCUMENTS."
msgstr ""
#: www/wot.php:53
msgid "Reminder Notice"
msgstr ""
#: www/wot.php:49
#, php-format
msgid "This is a short reminder that you filled out forms to become trusted with CAcert.org, and %s has attempted to issue you points. Please create your account at %s as soon as possible and then notify %s so that the points can be issued."
msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -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-07-22 15:42:26+0000\n"
"PO-Revision-Date: 2005-09-16 11:39:54+0000\n"
"Last-Translator: Someone <someone@someisp.com>\n"
"Language-Team: <de@li.org>\n"
"MIME-Version: 1.0\n"
@ -146,7 +146,7 @@ msgstr "Voc&ecirc; tamb&eacute;m pode entrar em contato conosco de qualquer uma
#: www/help/2.php:49
msgid "And they are making mistakes"
msgstr "E eles esto cometendo erros."
msgstr "E eles est&atilde;o cometendo erros."
#: www/help/3.php:70
msgid "And you're done!"
@ -205,7 +205,7 @@ msgstr "Certifica&ccedil;&atilde;o Efetuada"
#: includes/account_stuff.php:182 www/wot/5.php:19
msgid "Assure Someone"
msgstr "Certificar alguem"
msgstr "Certificar algu&eacute;m"
#: www/index/0.php:60
msgid "Assured client certificates"
@ -241,7 +241,7 @@ msgstr "Antes de entrar em contato conosco, leia as informa&ccedil;&otilde;es co
#: www/account/0.php:24
msgid "Before you can start issuing certificates for your website, irc server, smtp server, pop3, imap etc you will need to add domains to your account under the domain menu. You can also remove domains from here as well. Once you've added a domain you are free then to go into the Server Certificate section and start pasting CSR into the website and have the website return you a valid certificate for up to 2 years if you have 50 trust points, or 6 months for no trust points."
msgstr "Antes de vc iniciar a emiss&atilde;o de certificados para seu website, servidor irc, servidor smtp, pop3, imap etc, voc&ecirc; precisa adicionar os dominios em sua conta no menu &quot;Dom&iacute;nios&quot;. Voc&ecirc; pode ainda, remover dominios atrav&eacute;s desse menu. Uma vez adicionado o dominio, voc&ecirc; &eacute; livre para ent&atilde;o ir a se&ccedil;&atilde;o Certificado de Servidor e come&ccedil;ar a colar a CSR no website, e o website retorna para voc&ecirc; um certificado valido por 2 anos se voc&ecirc; tiver 50 pontos de confian&ccedil;&atilde;o, ou 6 meses caso voc&ecirc; n&atilde;o tenha nenhum ponto de confian&ccedil;a."
msgstr "Antes de voc&ecirc; iniciar a emiss&atilde;o de certificados para seu website, servidor irc, servidor smtp, pop3, imap etc, voc&ecirc; precisa adicionar os dominios em sua conta no menu &quot;Dom&iacute;nios&quot;. Voc&ecirc; pode ainda, remover dominios atrav&eacute;s desse menu. Uma vez adicionado o dominio, voc&ecirc; &eacute; livre para ent&atilde;o ir a se&ccedil;&atilde;o Certificado de Servidor e come&ccedil;ar a colar a CSR no website, e o website retorna para voc&ecirc; um certificado valido por 2 anos se voc&ecirc; tiver 50 pontos de confian&ccedil;&atilde;o, ou 6 meses caso voc&ecirc; n&atilde;o tenha nenhum ponto de confian&ccedil;a."
#: includes/account.php:47 includes/account.php:387
msgid "Below is the link you need to open to verify your email address. Once your address is verified you will be able to start issuing certificates till your hearts' content!"
@ -826,7 +826,7 @@ msgstr "A seguir, v&aacute;rias dicas que podem ser &uacute;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."
msgstr ""
msgstr "Para os administradores que querem protegem os servi&ccedil;os que oferecem, n&oacute;s fornecemos os certificados de servidores e de dominio para voc&ecirc; usar quase imediatamente. Voc&ecirc;, n&atilde;o somente poder&aacute; voc&ecirc; usar estes certificados para proteger o seu Web site, mas as conex&otilde;es tamb&eacute;m de POP3, de smtp e de IMAP, para listar algumas das utiliza&ccedil;&atilde;o. Ao contr&aacute;rio de outras autoridades de certificac&atilde;o, n&oacute;s n&atilde;o limitamos o uso dos certificados. Todos devem ter a direito &agrave; seguran&ccedil;a e proteger sua privacidade, n&atilde;o apenas aqueles possuem sites de e-commerce."
#: www/help/3.php:71
msgid "For more information, refer to your server documentation or visit"
@ -1003,7 +1003,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 "Desculpe, o usu&aacute;rio que voc&ecirc; procura parece ter desaparecido! Coisas ruins s&atilde;o um p&eacute;!"
msgstr "Desculpe, o usu&aacute;rio que voc&ecirc; procura parece ter desaparecido!"
#: www/wot.php:42
msgid "I'm sorry, there was no email matching what you entered in the system. Please double check your information."
@ -1260,7 +1260,7 @@ msgstr "Muitos s&atilde;o apenas usu&aacute;rios do sistema que apenas por utili
#: www/index/51.php:24
msgid "Many people are currently dissatisfied with the commercial offerings. Many people wish only to connect or share with people they know, or simply secure their webmail from people potentially sniffing their traffic. Why subscribe to a service that is not structured to handle this, and furthermore charges a king's ransom for the privilege?"
msgstr ""
msgstr "Muitas pessoas est&atilde;o descontentes com as ofertas comerciais. Muitas pessoas desejam apenas conectar somente com pessoas que conhecem, ou simplesmente querem seu webmail livre de sniffing durante o seu tr&aacute;fego. Por que subscrever em um servi&ccedil;o que n&atilde;o seja estruturado para isto, e que al&eacute;m disso carregue um rei na barriga?"
#: www/index/7.php:17
msgid "Many people to thank, if you've had a large input with the CAcert project with code, documentation, translations, or assurances and would like recognition let me know."
@ -2086,7 +2086,7 @@ msgstr "O dom&iacute;nio '%s' j&aacute; est&aacute; no sistema e &eacute; v&aacu
#: www/account/0.php:22
msgid "The email account section is for adding/updating/removing email accounts which can be used to issue client certificates against. The client certificate section steps you through generating a certificate signing request for one or more emails you've registered in the email account section."
msgstr ""
msgstr "A se&ccedil;&atilde;o de Contas de Email &eacute; para adicionar/alterar/remover, as contas de e-mails que podem ser usados para emitir certificados. Utilize a se&ccedil;&atilde;o Certificados de Cliente para voc&ecirc; gerar o certificado para um ou mais email que voc&ecirc; registou na se&ccedil;&atilde;o do Contas de Email."
#: includes/account.php:54
#, php-format
@ -2117,7 +2117,7 @@ msgstr ""
#: www/help/2.php:62
#, php-format
msgid "The page has been reproduced on %s with explicit permission from %sthe author%s with the information being copyrighted to the author (name with held by request)"
msgstr ""
msgstr "A p&aacute;gina foi reproduzida em %s com permiss&atilde;o expl&iacute;cita de %sthe author%s com a informa&ccedil;&atilde;o de copyright do autor."
#: includes/account.php:1735
#, php-format
@ -2208,7 +2208,7 @@ msgstr "Para"
#: www/help/5.php:1
msgid "To be completed"
msgstr ""
msgstr "Para ser terminado"
#: www/wot/2.php:15
msgid "To become an Assurer"
@ -2432,7 +2432,7 @@ msgstr "Por que assinar digitalmente seus pr&oacute;prios emails?! (estranho...)
#: www/help/2.php:6 www/help/2.php:32
msgid "Why is the digital signature described as 'not valid/not trusted'?"
msgstr ""
msgstr "Por que a assinatura digital &eacute; descrita como 'n&atilde;o valido/n&atilde;o confiado'?"
#: www/help/2.php:5 www/help/2.php:29
msgid "Why isn't it being adopted by everyone?"
@ -2539,7 +2539,7 @@ msgstr "Voc&ecirc; n&atilde;o tem acesso ao email selecionado, ou voc&ecirc; ain
#: www/wot.php:133
msgid "You didn't list a valid sponsor for this action."
msgstr ""
msgstr "Voc&ecirc; n&atilde;o alistou um patrocinador v&aacute;lido para esta a&ccedil;&atilde;o."
#: includes/account.php:1362 includes/account.php:1566
#: includes/account.php:1686
@ -2562,9 +2562,9 @@ msgstr "Voc&ecirc; n&atilde;o digitou sua Frase-Senha atual corretamente."
msgid "You failed to enter a location of your meeting."
msgstr "Voc&ecirc; falhou ao entrar com o local do seu encontro."
#: www/index.php:90
msgid "You failed to get all answers correct, system admins have been notified."
msgstr "Voc&ecirc; falhou ao responder todas as perguntas corretamente, administradores foram notificados."
#: www/index.php:97
msgid "You failed to get all answers correct or you didn't configure enough lost password questions for your account. System admins have been notified."
msgstr "Voc&ecirc; falhou ao responder todas as perguntas corretamente ou n&atilde;o configurou perguntas sobre senhas perdidas suficientes. Os administradores do sistema foram notificados."
#: www/gpg.php:24
msgid "You failed to paste a valid GPG/PGP key."
@ -2580,7 +2580,7 @@ msgstr "Voc&ecirc; criou agora um par chaves publica/privada. A chave privada &e
#: www/wot.php:146
msgid "You listed an invalid sponsor for this action."
msgstr ""
msgstr "Voc&ecirc; alistou um patrocinador inv&aacute;lido para esta a&ccedil;&atilde;o."
#: www/wot/3.php:39
msgid "You may charge a fee for your expenses if the applicant has been advised of the amount prior to the meeting."
@ -2633,7 +2633,7 @@ msgstr "Voc&ecirc; tentou dar aumento tempor&aacute;rio de pontos a algu&eacute;
#: includes/account.php:1676
msgid "You tried to use an invalid language."
msgstr ""
msgstr "Voc&ecirc; tentou usar uma l&iacute;ngua inv&aacute;lida."
#: www/wot.php:207
#, php-format
@ -2925,7 +2925,7 @@ msgstr "Atualmente o email '%s' est&aacute; em disputa, um email foi enviado a v
#: 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 "Atualmente n&oacute;s emitimos somente certificados para dom&iacute;nios Punycode, com isto temos um nivel mais elevado da seguran&ccedil;a."
#: www/gpg/0.php:15
msgid "Paste your GPG key below..."
@ -3031,11 +3031,11 @@ msgstr ""
#: www/account/52.php:49
msgid "I agree with this Application"
msgstr ""
msgstr "Eu concordo com esta aplica&ccedil;&atilde;o"
#: www/account/52.php:50
msgid "I don't agree with this Application"
msgstr ""
msgstr "Eu n&atilde;o concordo com esta aplica&ccedil;&atilde;o"
#: 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."
@ -3096,7 +3096,7 @@ msgstr "Nome da Organiza&ccedil;&atilde;o"
#: www/index/16.php:28 www/index/3.php:28
msgid "PKI finger/thumb print signed by the CAcert GPG Key"
msgstr ""
msgstr "A c&oacute;pia de PKI finger/thumb assinado pela chave GPG CAcert"
#: www/account/52.php:41
msgid "Photo ID URL"
@ -3120,7 +3120,7 @@ msgstr "Assinatura Digital (uma guia para pessoas normais)"
#: www/wot/1.php:133
msgid "Email Me"
msgstr "Contacto"
msgstr "Contato"
#: www/disputes/4.php:23 www/disputes/6.php:23
msgid "Reject Dispute"
@ -3403,7 +3403,7 @@ msgstr "Nomes"
#: www/cap.php:123
msgid "Photo ID Shown: (ID types, not numbers. eg Drivers license, Passport)"
msgstr ""
msgstr "Documento com Foto: (do Tipo, n&atilde;o os n&uacute;meros. por exemplo Carteira de Motorista, RG, Passaporte)"
#: www/cap.php:131
msgid "Points Allocated"
@ -3436,7 +3436,7 @@ msgstr "Email (se aplic&aacute;vel)"
#: www/ttp.php:136
msgid "First ID Number (driver's license, passport etc)"
msgstr ""
msgstr "Primeiro n&uacute;mero do ID (RG, Carteira de Motorista, Passaporte, etc.)"
#: www/ttp.php:112
msgid "Full Name (as shown on ID)"
@ -3453,7 +3453,7 @@ msgstr "Justi&ccedil;a de paz, cartor&aacute;rio, advogado, contador, ou gerente
#: www/ttp.php:119
msgid "Main email (so we can find you)"
msgstr ""
msgstr "Email principal (assim n&oacute;s podemos o encontrar)"
#: www/ttp.php:89
msgid "Office Phone"
@ -3481,7 +3481,7 @@ msgstr "Profiss&atilde;o (circunde um)"
#: www/ttp.php:138
msgid "Second ID Number (driver's license, passport etc)"
msgstr ""
msgstr "Segundo n&uacute;mero de ID (RG, Carteira de Motorista, Passaporte, etc.)"
#: www/ttp.php:93 www/ttp.php:140
msgid "Signature"
@ -3497,7 +3497,7 @@ msgstr ""
#: www/ttp.php:21
msgid "Trusted Third Party"
msgstr ""
msgstr "Terceiro Confiado"
#: www/ttp.php:54
msgid "You have verified that the Full Name, Date of Birth, and ID Numbers on the identity documents matches those filled in the Applicant section below and in the photocopies provided."
@ -3549,4 +3549,29 @@ msgstr "Hist&oacute;ria Completa"
#: www/index/0.php:40
msgid "More News Items"
msgstr "Mais Artigos De Not&iacute;cia"
#: www/index/6.php:92
msgid "You do not have enough/any lost password questions set. You will not be able to continue to reset your password via this method."
msgstr ""
#: includes/general.php:618
msgid "Failed to make a connection to the mail server"
msgstr "Falha ao conectar ao servidor de e-mail"
#: includes/account.php:904 www/index.php:204 www/index.php:254
msgid "For your own security you must enter 5 lost password questions and answers."
msgstr ""
#: www/wot.php:169
msgid "Race condition discovered, user altered details during assurance procedure. PLEASE MAKE SURE THE NEW DETAILS BELOW MATCH THE ID DOCUMENTS."
msgstr ""
#: www/wot.php:53
msgid "Reminder Notice"
msgstr "Observa&ccedil;&atilde;o Do Lembrete"
#: www/wot.php:49
#, php-format
msgid "This is a short reminder that you filled out forms to become trusted with CAcert.org, and %s has attempted to issue you points. Please create your account at %s as soon as possible and then notify %s so that the points can be issued."
msgstr ""

View file

@ -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-06-14 05:06:23+0000\n"
"PO-Revision-Date: 2005-10-31 00:51:00+0000\n"
"Last-Translator: Someone <someone@someisp.com>\n"
"Language-Team: <de@li.org>\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 ""
msgstr "&#1055;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1086; %s &#1089;&#1090;&#1088;&#1086;&#1082;."
#: www/account/43.php:71
#, php-format
@ -61,7 +61,7 @@ msgstr "...&#1079;&#1072;&#1090;&#1077;&#1084; &#1085;&#1072;&#1078;&#1084;&#108
#: 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."
msgstr ""
msgstr "&#1047;&#1072;&#1074;&#1077;&#1088;&#1080;&#1090;&#1077;&#1083;&#1100; CAcert, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1087;&#1088;&#1077;&#1076;&#1091;&#1084;&#1099;&#1096;&#1083;&#1077;&#1085;&#1085;&#1086; &#1080;&#1083;&#1080; &#1086;&#1089;&#1086;&#1079;&#1085;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1091;&#1076;&#1086;&#1089;&#1090;&#1086;&#1074;&#1077;&#1088;&#1103;&#1077;&#1090; &#1079;&#1072;&#1103;&#1074;&#1080;&#1090;&#1077;&#1083;&#1103; &#1074; &#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1086;&#1088;&#1077;&#1095;&#1080;&#1077; &#1087;&#1091;&#1085;&#1082;&#1090;&#1072;&#1084; &#1076;&#1072;&#1085;&#1085;&#1086;&#1081; &#1087;&#1086;&#1083;&#1080;&#1090;&#1080;&#1082;&#1080;, &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1087;&#1088;&#1080;&#1079;&#1085;&#1072;&#1085; &#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1099;&#1084;."
#: www/wot/4.php:17
msgid "A trusted 3rd party is simply someone in your country that is responsible for witnessing signatures and ID documents. This role is covered by many different titles such as public notary, justice of the peace and so on. Other people are allowed to be authoritative in this area as well, such as bank managers, accountants and lawyers."
@ -69,7 +69,7 @@ msgstr "&#1044;&#1086;&#1074;&#1077;&#1088;&#1077;&#1085;&#1085;&#1086;&#1077; &
#: www/account/38.php:21 www/index/13.php:21
msgid "ANY amount will be appreciated - the more funding CAcert receives, the sooner it can achieve the goals of the community."
msgstr "&#1052;&#1099; &#1073;&#1083;&#1072;&#1075;&#1086;&#1076;&#1072;&#1088;&#1085;&#1099; &#1079;&#1072; &#1051;&#1070;&#1041;&#1059;&#1070; &#1089;&#1091;&#1084;&#1084;&#1091;. &#1063;&#1077;&#1084; &#1073;&#1086;&#1083;&#1100;&#1096;&#1072;&#1103; &#1092;&#1080;&#1085;&#1072;&#1085;&#1089;&#1086;&#1074;&#1072;&#1103; &#1087;&#1086;&#1076;&#1076;&#1077;&#1088;&#1078;&#1082;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090; &#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1072; CAcert, &#1090;&#1077;&#1084; &#1089;&#1082;&#1086;&#1088;&#1077;&#1077; &#1086;&#1085;&#1072; &#1089;&#1084;&#1086;&#1078;&#1077;&#1090; &#1076;&#1086;&#1089;&#1090;&#1080;&#1095;&#1100; &#1094;&#1077;&#1083;&#1077;&#1081;, &#1087;&#1086;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1085;&#1099;&#1093; &#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1089;&#1090;&#1074;&#1086;&#1084; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;."
msgstr "&#1052;&#1099; &#1073;&#1083;&#1072;&#1075;&#1086;&#1076;&#1072;&#1088;&#1085;&#1099; &#1079;&#1072; &#1051;&#1070;&#1041;&#1059;&#1070; &#1089;&#1091;&#1084;&#1084;&#1091;. &#1063;&#1077;&#1084; &#1073;&#1086;&#1083;&#1100;&#1096;&#1072;&#1103; &#1092;&#1080;&#1085;&#1072;&#1085;&#1089;&#1086;&#1074;&#1072;&#1103; &#1087;&#1086;&#1076;&#1076;&#1077;&#1088;&#1078;&#1082;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090; &#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1072; CAcert, &#1090;&#1077;&#1084; &#1089;&#1082;&#1086;&#1088;&#1077;&#1077; &#1084;&#1099; &#1089;&#1084;&#1086;&#1078;&#1077;&#1084; &#1076;&#1086;&#1089;&#1090;&#1080;&#1095;&#1100; &#1094;&#1077;&#1083;&#1077;&#1081;, &#1087;&#1086;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1085;&#1099;&#1093; &#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1089;&#1090;&#1074;&#1086;&#1084; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;."
#: includes/account_stuff.php:182
msgid "About"
@ -96,7 +96,7 @@ msgstr "&#1044;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1076;&#1086;&
#: www/account/1.php:18
msgid "Add Email"
msgstr "&#1044;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1072;&#1076;&#1088;&#1077;&#1089; email"
msgstr "&#1044;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; email"
#: www/account/16.php:22 www/account/2.php:24 www/account/3.php:31
#: www/account/9.php:23
@ -122,7 +122,7 @@ msgstr "&#1055;&#1086;&#1083;&#1091;&#1095;&#1080;&#1074; &#1089;&#1086;&#1086;&
#: www/account/39.php:32 www/index/10.php:32
msgid "Aggregated tracking information"
msgstr ""
msgstr "&#1053;&#1072;&#1082;&#1086;&#1087;&#1083;&#1077;&#1085;&#1085;&#1072;&#1103; &#1080;&#1085;&#1092;&#1086;&#1088;&#1084;&#1072;&#1094;&#1080;&#1103; &#1089;&#1083;&#1077;&#1078;&#1077;&#1085;&#1080;&#1103;"
#: www/account/36.php:21 www/index/1.php:110
msgid "Alert me if"
@ -197,7 +197,7 @@ msgstr "&#1055;&#1091;&#1085;&#1082;&#1090;&#1099; &#1076;&#1086;&#1074;&#1077;&
#: www/account/43.php:225 www/wot/10.php:52
msgid "Assurance Points You Issued"
msgstr ""
msgstr "&#1042;&#1099;&#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1073;&#1072;&#1083;&#1083;&#1099; &#1076;&#1086;&#1074;&#1077;&#1088;&#1077;&#1085;&#1085;&#1086;&#1089;&#1090;&#1080;"
#: www/stats.php:51
msgid "Assurances Made"
@ -237,7 +237,7 @@ msgstr "&#1050;&#1072;&#1082; &#1089;&#1090;&#1072;&#1090;&#1100; &#1047;&#1072;
#: www/account/40.php:19 www/index/11.php:19
msgid "Before contacting us, be sure to read over the inforation on our official and unofficial HowTo and FAQ pages."
msgstr ""
msgstr "&#1055;&#1077;&#1088;&#1077;&#1076; &#1090;&#1077;&#1084; &#1082;&#1072;&#1082; &#1089;&#1074;&#1103;&#1079;&#1072;&#1090;&#1100;&#1089;&#1103; &#1089; &#1085;&#1072;&#1084;&#1080;, &#1086;&#1073;&#1103;&#1079;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1087;&#1088;&#1086;&#1095;&#1080;&#1090;&#1072;&#1081;&#1090;&#1077; &#1080;&#1085;&#1092;&#1086;&#1088;&#1084;&#1072;&#1094;&#1080;&#1102; &#1088;&#1072;&#1089;&#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1085;&#1091;&#1102; &#1085;&#1072; &#1085;&#1072;&#1096;&#1080;&#1093; &#1086;&#1092;&#1080;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1099;&#1093; &#1080; &#1085;&#1077;&#1086;&#1092;&#1080;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1099;&#1093; &#1056;&#1091;&#1082;&#1086;&#1074;&#1086;&#1076;&#1089;&#1090;&#1074;&#1077; &#1087;&#1086; &#1055;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1102; &#1080; &#1054;&#1090;&#1074;&#1077;&#1090;&#1072;&#1093; &#1085;&#1072; &#1063;&#1072;&#1095;&#1090;&#1086; &#1047;&#1072;&#1076;&#1072;&#1074;&#1072;&#1077;&#1084;&#1099;&#1077; &#1042;&#1086;&#1087;&#1088;&#1086;&#1089;&#1099;."
#: www/account/0.php:24
msgid "Before you can start issuing certificates for your website, irc server, smtp server, pop3, imap etc you will need to add domains to your account under the domain menu. You can also remove domains from here as well. Once you've added a domain you are free then to go into the Server Certificate section and start pasting CSR into the website and have the website return you a valid certificate for up to 2 years if you have 50 trust points, or 6 months for no trust points."
@ -249,7 +249,7 @@ msgstr ""
#: www/account/15.php:32 www/account/23.php:32
msgid "Below is your Server Certificate"
msgstr ""
msgstr "&#1053;&#1080;&#1078;&#1077; &#1042;&#1072;&#1096; &#1057;&#1077;&#1088;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090; &#1057;&#1077;&#1088;&#1074;&#1077;&#1088;&#1072;"
#: 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
@ -263,11 +263,11 @@ msgstr "&#1057; &#1085;&#1072;&#1080;&#1083;&#1091;&#1095;&#1096;&#1080;&#1084;&
#: www/index/8.php:6 www/index/8.php:7 www/index/8.php:8
msgid "Board Member"
msgstr ""
msgstr "&#1063;&#1083;&#1077;&#1085;&#1072; &#1057;&#1086;&#1074;&#1077;&#1090;&#1072; &#1055;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103;"
#: www/help/3.php:60
msgid "Browse to the location you saved the .cer file to in step 1"
msgstr ""
msgstr "&#1055;&#1086;&#1081;&#1090;&#1080; &#1085;&#1072; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1091; &#1075;&#1076;&#1077; &#1074; 1-&#1086;&#1084; &#1096;&#1072;&#1075;&#1077; &#1042;&#1099; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1083;&#1080; &quot;.cer&quot; &#1092;&#1072;&#1081;&#1083;."
#: www/help/2.php:25
msgid "But perhaps, fundamentally, the most important reason for digital signing is awareness and privacy. It creates awareness of the (lack of) security of the Internet, and the tools that we can arm ourselves with to ensure our personal security. And in sensitising people to digital signatures, we become aware of the possibility of privacy and encryption."
@ -275,7 +275,7 @@ msgstr ""
#: www/help/2.php:7 www/help/2.php:35
msgid "But, er, is this really proof of your email identity?"
msgstr ""
msgstr "&#1053;&#1086;, &#1091;&#1074;&#1099;, &#1088;&#1072;&#1079;&#1074;&#1077; &#1101;&#1090;&#1086; &#1085;&#1072; &#1089;&#1072;&#1084;&#1086;&#1084; &#1076;&#1077;&#1083;&#1077; &#1076;&#1086;&#1082;&#1072;&#1079;&#1072;&#1090;&#1077;&#1083;&#1100;&#1089;&#1090;&#1074;&#1086; &#1076;&#1086;&#1089;&#1090;&#1086;&#1074;&#1077;&#1088;&#1085;&#1086;&#1089;&#1090;&#1080; &#1042;&#1072;&#1096;&#1077;&#1081; &#1077;&#1083;&#1077;&#1082;&#1090;&#1086;&#1085;&#1085;&#1086;&#1081; &#1087;&#1086;&#1095;&#1090;&#1099;?"
#: www/help/2.php:48
msgid "But, with all this money, and all this responsibility, they must be taking a lot of care to ensure the Certificate Authorities do their jobs well, and keep doing their jobs well, right? Well right?!"
@ -283,7 +283,7 @@ msgstr ""
#: www/account/10.php:15 www/account/20.php:15 www/account/3.php:15
msgid "CAcert Certficate Acceptable Use Policy"
msgstr ""
msgstr "&#1055;&#1088;&#1072;&#1074;&#1080;&#1083;&#1072; &#1076;&#1086;&#1087;&#1091;&#1089;&#1090;&#1080;&#1084;&#1086;&#1075;&#1086; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1057;&#1077;&#1088;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1086;&#1074; CACert."
#: www/account/38.php:19 www/index/13.php:19
msgid "CAcert Inc. is a non-profit association which is legally able to accept donations. CAcert adheres to strict guidelines about how this money can to be used. If you'd like to make a donation, you can do so via"
@ -315,7 +315,7 @@ msgstr ""
#: www/help/6.php:11
msgid "CAcert then sends you an email with a signed copy of your certificate. Hopefully the rest should be pretty straight forward."
msgstr ""
msgstr "CAcert &#1087;&#1086;&#1089;&#1083;&#1077; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1086;&#1089;&#1099;&#1083;&#1072;&#1077;&#1090; &#1042;&#1072;&#1084; &#1101;&#1083;&#1077;&#1082;&#1090;&#1088;&#1086;&#1085;&#1085;&#1086;&#1077; &#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1085;&#1080;&#1077;, &#1087;&#1086;&#1076;&#1087;&#1080;&#1089;&#1072;&#1085;&#1085;&#1086;&#1077; &#1082;&#1086;&#1087;&#1080;&#1077;&#1081; &#1042;&#1072;&#1096;&#1077;&#1075;&#1086; &#1089;&#1077;&#1088;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1072;. &#1053;&#1072;&#1076;&#1077;&#1077;&#1084;&#1089;&#1103;, &#1095;&#1090;&#1086; &#1086;&#1089;&#1090;&#1072;&#1083;&#1100;&#1085;&#1086;&#1077; &#1073;&#1091;&#1076;&#1077;&#1090; &#1085;&#1077; &#1090;&#1088;&#1091;&#1076;&#1085;&#1086;."
#: www/account/37.php:19 www/index/12.php:19
#, php-format
@ -344,7 +344,7 @@ msgstr ""
#: includes/general_stuff.php:68
msgid "CRL"
msgstr ""
msgstr "&#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1080;&#1079;&#1098;&#1103;&#1090;&#1099;&#1093; &#1089;&#1077;&#1088;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1086;&#1074; (CRL)"
#: includes/account.php:1464 includes/account.php:1515 www/account/30.php:34
#: www/account/31.php:30 www/account/34.php:34
@ -369,7 +369,7 @@ msgstr "&#1054;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077; &#1091;&#1089;&
#: includes/general_stuff.php:65
msgid "CAcert Logos"
msgstr ""
msgstr "&#1051;&#1086;&#1075;&#1086;&#1090;&#1080;&#1087;&#1099; CAcert"
#: includes/account.php:669 includes/account.php:1066
#, php-format
@ -388,7 +388,7 @@ msgstr "&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1090;&#1100; &
#: www/stats.php:31
msgid "Certificates Issued"
msgstr ""
msgstr "&#1042;&#1099;&#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1057;&#1077;&#1088;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1099;"
#: www/index/0.php:64
msgid "Certificates expires in 12 months."
@ -417,7 +417,7 @@ msgstr "&#1048;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1087;&#1072;&
#: www/help/3.php:36
msgid "Choose a filename to save the request to"
msgstr ""
msgstr "&#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; &#1076;&#1083;&#1103; &#1092;&#1072;&#1081;&#1083;&#1072; &#1074; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1084; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1079;&#1072;&#1087;&#1088;&#1086;&#1089;"
#: includes/account.php:671 includes/account.php:1068
#: includes/account.php:1445 includes/account.php:1492
@ -427,7 +427,7 @@ msgstr "&#1053;&#1072;&#1078;&#1072;&#1090;&#1100; &#1079;&#1076;&#1077;&#1089;&
#: www/account/40.php:21 www/index/11.php:21
msgid "Click here to go to the Support List"
msgstr ""
msgstr "&#1065;&#1105;&#1083;&#1082;&#1085;&#1080;&#1090;&#1077; &#1079;&#1076;&#1077;&#1089;&#1100; &#1076;&#1083;&#1103; &#1090;&#1086;&#1075;&#1086;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1087;&#1086;&#1081;&#1090;&#1080; &#1085;&#1072; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1091; &#1089;&#1086; &#1057;&#1087;&#1080;&#1089;&#1082;&#1086;&#1084; &#1055;&#1086;&#1076;&#1076;&#1077;&#1088;&#1078;&#1082;&#1080;"
#: www/account/40.php:38 www/index/11.php:38
msgid "Click here to view all lists available"
@ -443,7 +443,7 @@ msgstr "&#1050;&#1083;&#1080;&#1077;&#1085;&#1090;&#1089;&#1082;&#1080;&#1077; &
#: www/account/3.php:63
msgid "Code Signing"
msgstr ""
msgstr "&#1057;&#1077;&#1088;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1099; &#1076;&#1083;&#1103; &#1087;&#1086;&#1076;&#1087;&#1080;&#1089;&#1080; &#1082;&#1086;&#1076;&#1072;"
#: www/index/0.php:70
msgid "Code signing certificates"
@ -473,11 +473,11 @@ msgstr "&#1053;&#1086;&#1074;&#1086;&#1089;&#1090;&#1080; CAcert"
#: includes/general_stuff.php:66
msgid "CAcert Statistics"
msgstr ""
msgstr "&#1057;&#1090;&#1072;&#1090;&#1080;&#1089;&#1090;&#1080;&#1082;&#1072; CAcert"
#: www/wot/3.php:23
msgid "Compare and verify that the copy of the identification sighted is a true and correct copy;"
msgstr ""
msgstr "&#1057;&#1088;&#1072;&#1074;&#1085;&#1080;&#1090;&#1077; &#1080; &#1087;&#1086;&#1076;&#1090;&#1074;&#1077;&#1088;&#1076;&#1080;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1087;&#1088;&#1077;&#1076;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1085;&#1086;&#1077; &#1091;&#1076;&#1086;&#1089;&#1090;&#1086;&#1074;&#1077;&#1088;&#1077;&#1085;&#1080;&#1077; &#1083;&#1080;&#1095;&#1085;&#1086;&#1089;&#1090;&#1080; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1085;&#1072;&#1089;&#1090;&#1086;&#1103;&#1097;&#1077;&#1081; &#1080; &#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;&#1081; &#1082;&#1086;&#1087;&#1080;&#1077;&#1081;;"
#: www/wot/3.php:31
msgid "Compare the online information to the information recorded on the paper form;"
@ -593,7 +593,7 @@ msgstr "&#1059;&#1076;&#1072;&#1083;&#1080;&#1090;&#1100;"
#: www/account/43.php:102 www/account/43.php:103
msgid "Delete Account"
msgstr ""
msgstr "&#1059;&#1076;&#1072;&#1083;&#1080;&#1090;&#1100; &#1091;&#1095;&#1077;&#1090;&#1085;&#1091;&#1102; &#1079;&#1072;&#1087;&#1080;&#1089;&#1100;"
#: www/account/34.php:28
#, php-format
@ -781,7 +781,7 @@ msgstr ""
#: includes/account_stuff.php:191
msgid "Find Domain"
msgstr ""
msgstr "&#1053;&#1072;&#1081;&#1090;&#1080; &#1076;&#1086;&#1084;&#1077;&#1085;"
#: includes/account_stuff.php:191 www/account/42.php:19
msgid "Find User"
@ -789,7 +789,7 @@ msgstr "&#1053;&#1072;&#1081;&#1090;&#1080; &#1055;&#1086;&#1083;&#1100;&#1079;&
#: www/account/48.php:19
msgid "Find User by Domain"
msgstr ""
msgstr "&#1053;&#1072;&#1081;&#1090;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1087;&#1086; &#1076;&#1086;&#1084;&#1077;&#1085;&#1091;"
#: includes/account_stuff.php:182
msgid "Find an Assurer"
@ -855,7 +855,7 @@ msgstr "&#1050;&#1083;&#1102;&#1095;&#1080; GPG/PGP"
#: www/account/36.php:22 www/index/1.php:111
msgid "General Announcements"
msgstr ""
msgstr "&#1054;&#1073;&#1098;&#1103;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1087;&#1086; &#1086;&#1073;&#1097;&#1080;&#1084; &#1074;&#1086;&#1087;&#1088;&#1086;&#1089;&#1072;&#1084;"
#: www/account/40.php:17 www/index/11.php:17
msgid "General Questions"
@ -1443,7 +1443,7 @@ msgstr ""
#: www/account/49.php:51
#, php-format
msgid "No domains found matching %s"
msgstr ""
msgstr "&#1053;&#1077; &#1085;&#1072;&#1081;&#1076;&#1077;&#1085;&#1086; &#1076;&#1086;&#1084;&#1077;&#1085;&#1086;&#1074;, &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1080;&#1093; (%s)"
#: www/gpg.php:131
msgid "No emails found on your key"
@ -2167,7 +2167,7 @@ msgstr ""
#: www/index/19.php:15
msgid "Information"
msgstr ""
msgstr "&#1057;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1103;"
#: www/help/2.php:42
msgid "There's nothing to it. I mean literally, you can already start sending your emails encrypted. Assuming of course you have your own digital signature certificate (e.g. as per above), and the person you want to send an encrypted email to also has a digital signature certificate, and has recently sent you a digitally signed email with it. If all these conditions hold, you just have to change the settings in your email software to send the email encrypted and hey presto! Your email software (probably Outlook I guess) should suss out the rest."
@ -2233,7 +2233,7 @@ msgstr "&#1054;&#1073;&#1097;&#1077;&#1077; &#1082;&#1086;&#1083;&#1080;&#1095;&
#: www/wot/10.php:79
msgid "Total Points Issued"
msgstr ""
msgstr "&#1042;&#1089;&#1077;&#1075;&#1086; &#1073;&#1072;&#1083;&#1083;&#1086;&#1074; &#1074;&#1099;&#1076;&#1072;&#1085;&#1086;"
#: www/account/24.php:29 www/account/27.php:32
msgid "Town/Suburb"
@ -2495,7 +2495,7 @@ msgstr ""
#: includes/general_stuff.php:112 includes/tverify_stuff.php:78
msgid "Further Information"
msgstr ""
msgstr "&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1072;&#1103; &#1080;&#1085;&#1092;&#1086;&#1088;&#1084;&#1072;&#1094;&#1080;&#1103;"
#: www/index/7.php:26
msgid "Has been involved in translating this website into Portuguese"
@ -2512,7 +2512,7 @@ msgstr ""
#: includes/general_stuff.php:74
msgid "CAcert Board"
msgstr ""
msgstr "&#1057;&#1086;&#1074;&#1077;&#1090; CAcert"
#: www/account/40.php:22 www/index/11.php:22
msgid "You can alternatively use the form below, however joining the list is the prefered option to support your queries"
@ -2555,8 +2555,8 @@ msgstr ""
msgid "You failed to enter a location of your meeting."
msgstr ""
#: www/index.php:90
msgid "You failed to get all answers correct, system admins have been notified."
#: www/index.php:97
msgid "You failed to get all answers correct or you didn't configure enough lost password questions for your account. System admins have been notified."
msgstr ""
#: www/gpg.php:24
@ -2790,7 +2790,7 @@ msgstr ""
#: www/src-lic.php:20
msgid "CAcert Source License"
msgstr ""
msgstr "&#1051;&#1080;&#1094;&#1077;&#1085;&#1079;&#1080;&#1103; &#1085;&#1072; &#1080;&#1089;&#1093;&#1086;&#1076;&#1085;&#1099;&#1081; &#1082;&#1086;&#1076; CAcert"
#: www/index/7.php:25
msgid "Did a substantial amount of work on the previous website design, and has been floating about on the mailing lists often giving invaluble insight into what we should be doing better."
@ -2847,7 +2847,7 @@ msgstr ""
#: includes/account_stuff.php:153 includes/general_stuff.php:48
#: includes/tverify_stuff.php:34
msgid "Free digital certificates!"
msgstr ""
msgstr "&#1041;&#1077;&#1089;&#1087;&#1083;&#1072;&#1090;&#1085;&#1099;&#1077; &#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1099;&#1077; &#1089;&#1077;&#1088;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1099;!"
#: www/wot.php:240
#, php-format
@ -2866,7 +2866,7 @@ msgstr ""
#: www/wot.php:49
msgid "A reminder notice has been sent."
msgstr ""
msgstr "&#1055;&#1086;&#1074;&#1090;&#1086;&#1088;&#1085;&#1086;&#1077; &#1091;&#1074;&#1077;&#1076;&#1086;&#1084;&#1083;&#1077;&#1085;&#1080;&#1077; &#1086;&#1090;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1086;."
#: includes/account_stuff.php:214 www/disputes/0.php:19
msgid "Abuses"
@ -2878,15 +2878,15 @@ msgstr ""
#: www/wot/10.php:19
msgid "Assurer Ranking"
msgstr ""
msgstr "&#1056;&#1072;&#1085;&#1075; &#1079;&#1072;&#1074;&#1077;&#1088;&#1080;&#1090;&#1077;&#1083;&#1103;"
#: www/index/16.php:24 www/index/3.php:24
msgid "CAcert's GPG Key"
msgstr ""
msgstr "GPG-&#1082;&#1083;&#1102;&#1095; CAcert"
#: www/account/52.php:39
msgid "Certificate Subject"
msgstr ""
msgstr "&#1057;&#1091;&#1073;&#1098;&#1077;&#1082;&#1090; &#1089;&#1077;&#1088;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1072;"
#: 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"
@ -2894,7 +2894,7 @@ msgstr ""
#: www/account/52.php:48
msgid "Comment"
msgstr ""
msgstr "&#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1072;&#1088;&#1080;&#1081;"
#: includes/account.php:478 includes/account.php:491 includes/account.php:592
#: includes/account.php:1238 includes/account.php:1251
@ -2904,7 +2904,7 @@ msgstr ""
#: www/account/52.php:42
msgid "Current Points"
msgstr ""
msgstr "&#1058;&#1077;&#1082;&#1091;&#1097;&#1080;&#1077; &#1073;&#1072;&#1083;&#1083;&#1099;"
#: www/disputes/6.php:16
#, php-format
@ -2930,7 +2930,7 @@ msgstr ""
#: www/disputes/2.php:20
msgid "Dispute Domain"
msgstr ""
msgstr "&#1057;&#1087;&#1086;&#1088;&#1085;&#1099;&#1081; &#1076;&#1086;&#1084;&#1077;&#1085;"
#: www/disputes.php:286 www/disputes.php:420
msgid "Dispute Probe"
@ -2955,11 +2955,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 ""
msgstr "&#1054;&#1089;&#1087;&#1086;&#1088;&#1080;&#1090;&#1100; &#1076;&#1086;&#1084;&#1077;&#1085;"
#: www/disputes.php:399
msgid "Domain Dispute!"
msgstr ""
msgstr "&#1054;&#1089;&#1087;&#1086;&#1088;&#1080;&#1090;&#1100; &#1076;&#1086;&#1084;&#1077;&#1085;!"
#: www/disputes.php:428
msgid "Domain and Email Disputes"
@ -2980,7 +2980,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 ""
msgstr "&#1054;&#1089;&#1087;&#1086;&#1088;&#1080;&#1090;&#1100; email"
#: www/disputes/1.php:27 www/disputes/2.php:28
msgid "File Dispute"
@ -2992,7 +2992,7 @@ msgstr ""
#: www/index/16.php:23 www/index/3.php:23
msgid "GPG Key"
msgstr ""
msgstr "GPG-&#1082;&#1083;&#1102;&#1095;"
#: 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."
@ -3012,11 +3012,11 @@ msgstr ""
#: www/help/0.php:24
msgid "How do I get a server certificate from CAcert?"
msgstr ""
msgstr "&#1050;&#1072;&#1082; &#1084;&#1085;&#1077; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1074; CAcert &#1089;&#1077;&#1088;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090; &#1089;&#1077;&#1088;&#1074;&#1077;&#1088;&#1072;?"
#: includes/account_stuff.php:162
msgid "My Points"
msgstr ""
msgstr "&#1052;&#1086;&#1080; &#1073;&#1072;&#1083;&#1083;&#1099;"
#: 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!"
@ -3049,7 +3049,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 ""
msgstr "&#1053;&#1077;&#1074;&#1077;&#1088;&#1085;&#1099;&#1081; &#1079;&#1072;&#1087;&#1088;&#1086;&#1089;. &#1053;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1080;&#1090;&#1100;."
#: includes/tverify_stuff.php:39
msgid "Main Website"
@ -3057,7 +3057,7 @@ msgstr ""
#: includes/account_stuff.php:214
msgid "More Information"
msgstr ""
msgstr "&#1044;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1089;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1103;"
#: www/account/52.php:37
msgid "Name on file"
@ -3069,7 +3069,7 @@ msgstr ""
#: www/disputes.php:300
msgid "Not a valid Domain. Can't continue."
msgstr ""
msgstr "&#1053;&#1077;&#1082;&#1086;&#1088;&#1088;&#1077;&#1082;&#1090;&#1085;&#1099;&#1081; &#1076;&#1086;&#1084;&#1077;&#1085;. &#1053;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1080;&#1090;&#1100;."
#: www/account/52.php:40
msgid "Notary URL"
@ -3077,15 +3077,15 @@ msgstr ""
#: includes/account_stuff.php:198
msgid "Organisation Assurance"
msgstr ""
msgstr "&#1047;&#1072;&#1074;&#1077;&#1088;&#1077;&#1085;&#1080;&#1077; &#1086;&#1088;&#1075;&#1072;&#1085;&#1080;&#1079;&#1072;&#1094;&#1080;&#1080;"
#: www/wot/11.php:19
msgid "Organisational Assurance"
msgstr ""
msgstr "&#1054;&#1088;&#1075;&#1072;&#1085;&#1080;&#1079;&#1072;&#1094;&#1080;&#1086;&#1085;&#1085;&#1086;&#1077; &#1079;&#1072;&#1074;&#1077;&#1088;&#1077;&#1085;&#1080;&#1077;"
#: www/wot/11.php:22
msgid "Organisation Title"
msgstr ""
msgstr "&#1053;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077; &#1086;&#1088;&#1075;&#1072;&#1085;&#1080;&#1079;&#1072;&#1094;&#1080;&#1080;"
#: www/index/16.php:28 www/index/3.php:28
msgid "PKI finger/thumb print signed by the CAcert GPG Key"
@ -3101,19 +3101,19 @@ msgstr ""
#: www/account/52.php:43
msgid "Potential Points"
msgstr ""
msgstr "&#1055;&#1086;&#1090;&#1077;&#1085;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1099;&#1077; &#1073;&#1072;&#1083;&#1083;&#1099;"
#: www/account/52.php:38
msgid "Primary email address"
msgstr ""
msgstr "&#1043;&#1083;&#1072;&#1074;&#1085;&#1099;&#1081; email"
#: www/help/0.php:20
msgid "Digital signing (a guide for normal people)"
msgstr ""
msgstr "&#1062;&#1080;&#1092;&#1088;&#1086;&#1074;&#1086;&#1077; &#1079;&#1072;&#1074;&#1077;&#1088;&#1077;&#1085;&#1080;&#1077; (&#1088;&#1091;&#1082;&#1086;&#1074;&#1086;&#1076;&#1089;&#1090;&#1074;&#1086; &#1076;&#1083;&#1103; &#1086;&#1073;&#1099;&#1095;&#1085;&#1099;&#1093; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1077;&#1081;)"
#: www/wot/1.php:133
msgid "Email Me"
msgstr ""
msgstr "&#1053;&#1072;&#1087;&#1080;&#1089;&#1072;&#1090;&#1100; &#1084;&#1085;&#1077;"
#: www/disputes/4.php:23 www/disputes/6.php:23
msgid "Reject Dispute"
@ -3129,11 +3129,14 @@ msgstr ""
#: www/account/52.php:36
msgid "Request Details"
msgstr ""
msgstr "&#1044;&#1077;&#1090;&#1072;&#1083;&#1080; &#1079;&#1072;&#1087;&#1088;&#1086;&#1089;&#1072;"
#: 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 ""
"&#1058;&#1086; &#1078;&#1077;, &#1095;&#1090;&#1086; &#1080; &#1074;&#1099;&#1096;&#1077;, &#1080;, &#1087;&#1083;&#1102;&#1089; &#1082; &#1090;&#1086;&#1084;&#1091;, &#1042;&#1099; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1077; 100 &#1073;&#1072;&#1083;&#1083;&#1086;&#1074; &#1076;&#1086;&#1074;&#1077;&#1088;&#1080;&#1103;, &#1074;&#1089;&#1090;&#1088;&#1077;&#1090;&#1080;&#1074;&#1096;&#1080;&#1089;&#1100; &#1089; &#1085;&#1077;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1080;&#1084;&#1080; &#1079;&#1072;&#1074;&#1077;&#1088;&#1080;&#1090;&#1077;&#1083;&#1103;&#1084;&#1080; &#1080;&#1079; &#1057;&#1077;&#1090;&#1080; &#1076;&#1086;&#1074;&#1077;&#1088;&#1080;&#1103; CAcert, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1103;&#1090; &#1042;&#1072;&#1096;&#1091; &#1083;&#1080;&#1095;&#1085;&#1086;&#1089;&#1090;&#1100; &#1085;&#1072; &#1086;&#1089;&#1085;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; &#1075;&#1086;&#1089;&#1091;&#1076;&#1072;&#1088;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086; &#1086;&#1073;&#1088;&#1072;&#1079;&#1094;&#1072; &#1089; &#1092;&#1086;&#1090;&#1086;&#1075;&#1088;&#1072;&#1092;&#1080;&#1077;&#1081;.&#13;"
"&#13;"
""
#: www/wot/5.php:20
msgid "Send reminder notice"
@ -3146,11 +3149,11 @@ msgstr ""
#: www/gpg/3.php:28
msgid "Below is your PGP/GPG Certificate"
msgstr ""
msgstr "&#1042;&#1072;&#1096; &#1089;&#1077;&#1088;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090; PGP/GPG &#1087;&#1088;&#1080;&#1074;&#1077;&#1076;&#1077;&#1085; &#1085;&#1080;&#1078;&#1077;."
#: www/help/0.php:19
msgid "Certificate retrieval proposal"
msgstr ""
msgstr "&#1055;&#1088;&#1080;&#1075;&#1083;&#1072;&#1096;&#1077;&#1085;&#1080;&#1077; &#1082; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1077; &#1089;&#1077;&#1088;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1072;"
#: www/disputes.php:423
#, php-format
@ -3215,7 +3218,7 @@ msgstr ""
#: www/account/43.php:101
msgid "Tverify Account"
msgstr ""
msgstr "&#1055;&#1088;&#1086;&#1074;&#1077;&#1088;&#1080;&#1090;&#1100; &#1091;&#1095;&#1077;&#1090;&#1085;&#1091;&#1102; &#1079;&#1072;&#1087;&#1080;&#1089;&#1100;"
#: www/account/11.php:48
msgid "Unable to continue as no valid commonNames or subjectAltNames were present on your certificate request."
@ -3239,11 +3242,11 @@ msgstr ""
#: www/wot/2.php:26
msgid "Upon receiving your documents you will be notified, and points will be added to your account."
msgstr ""
msgstr "&#1052;&#1099; &#1089;&#1086;&#1086;&#1073;&#1097;&#1080;&#1084; &#1042;&#1072;&#1084; &#1086; &#1087;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1080;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; &#1080; &#1076;&#1086;&#1073;&#1072;&#1074;&#1080;&#1084; &#1042;&#1072;&#1084; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1091;&#1102;&#1097;&#1077;&#1077; &#1082;&#1086;&#1083;&#1080;&#1095;&#1077;&#1089;&#1090;&#1074;&#1086; &#1073;&#1072;&#1083;&#1083;&#1086;&#1074;."
#: www/account/12.php:18 www/account/5.php:18
msgid "View all certificates"
msgstr ""
msgstr "&#1055;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1077;&#1090;&#1100; &#1089;&#1077;&#1088;&#1090;&#1080;&#1092;&#1080;&#1082;&#1072;&#1090;&#1099;"
#: www/disputes/1.php:20
msgid "Which Email?"
@ -3271,7 +3274,7 @@ msgstr ""
#: includes/account.php:2010
msgid "You have already voted on this request."
msgstr ""
msgstr "&#1042;&#1099; &#1091;&#1078;&#1077; &#1086;&#1090;&#1074;&#1077;&#1095;&#1072;&#1083;&#1080; &#1085;&#1072; &#1076;&#1072;&#1085;&#1085;&#1099;&#1081; &#1079;&#1072;&#1087;&#1088;&#1086;&#1089;."
#: www/disputes.php:416
#, php-format
@ -3326,7 +3329,7 @@ msgstr ""
#: includes/account.php:2089
msgid "Your vote has been accepted."
msgstr ""
msgstr "&#1042;&#1072;&#1096; &#1086;&#1090;&#1074;&#1077;&#1090; &#1087;&#1088;&#1080;&#1085;&#1103;&#1090;."
#: www/index/17.php:3
msgid "Install CAcert Root using CEnroll Active-X component and PKCS-7"
@ -3543,3 +3546,28 @@ msgstr ""
#: www/index/0.php:40
msgid "More News Items"
msgstr ""
#: www/index/6.php:92
msgid "You do not have enough/any lost password questions set. You will not be able to continue to reset your password via this method."
msgstr ""
#: includes/general.php:618
msgid "Failed to make a connection to the mail server"
msgstr ""
#: includes/account.php:904 www/index.php:204 www/index.php:254
msgid "For your own security you must enter 5 lost password questions and answers."
msgstr ""
#: www/wot.php:169
msgid "Race condition discovered, user altered details during assurance procedure. PLEASE MAKE SURE THE NEW DETAILS BELOW MATCH THE ID DOCUMENTS."
msgstr ""
#: www/wot.php:53
msgid "Reminder Notice"
msgstr ""
#: www/wot.php:49
#, php-format
msgid "This is a short reminder that you filled out forms to become trusted with CAcert.org, and %s has attempted to issue you points. Please create your account at %s as soon as possible and then notify %s so that the points can be issued."
msgstr ""

View file

@ -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-27 01:18:52+0000\n"
"PO-Revision-Date: 2005-10-31 00:50:15+0000\n"
"Last-Translator: Someone <someone@someisp.com>\n"
"Language-Team: <de@li.org>\n"
"MIME-Version: 1.0\n"
@ -65,7 +65,7 @@ msgstr ""
#: www/wot/4.php:17
msgid "A trusted 3rd party is simply someone in your country that is responsible for witnessing signatures and ID documents. This role is covered by many different titles such as public notary, justice of the peace and so on. Other people are allowed to be authoritative in this area as well, such as bank managers, accountants and lawyers."
msgstr "En p&Atilde;&yen;litlig tredje-part &Atilde;&curren;r helt enkelt n&Atilde;&yen;gon i ditt land som &Atilde;&curren;r ansvarig f&Atilde;&para;r att bevittna signaturer och identifikationshandlingar. Bland dessa kan n&Atilde;&curren;mnas notarius publicus, fredsdomare osv. Andra personer som ocks&Atilde;&yen; kan anv&Atilde;&curren;ndas f&Atilde;&para;r detta &Atilde;&curren;r bankdirekt&Atilde;&para;rer, revisorer och advokater."
msgstr ""
#: www/account/38.php:21 www/index/13.php:21
msgid "ANY amount will be appreciated - the more funding CAcert receives, the sooner it can achieve the goals of the community."
@ -116,7 +116,7 @@ msgstr "Administrat&Atilde;&para;rer"
msgid "After the meeting, visit the CAcert Web site's make an Assurance page and:"
msgstr ""
#: www/help/3.php:44
#: www/help/3.php:44
msgid "After your certificate has been emailed to you, follow this process to install the certificate."
msgstr ""
@ -130,7 +130,7 @@ msgstr "Meddela mig om"
#: www/index.php:332
msgid "All fields are mandatory."
msgstr "Alla f&Atilde;&curren;lt &Atilde;&curren;r obligatoriska."
msgstr "Alla f&amp;auml;lt &amp;auml;r obligatoriska."
#: www/account/43.php:157
msgid "Alternate Verified Email Addresses"
@ -148,7 +148,7 @@ msgstr "Alternativt kan du kontakta oss p&Atilde;&yen; f&Atilde;&para;ljande s&A
msgid "And they are making mistakes"
msgstr ""
#: www/help/3.php:70
#: www/help/3.php:70
msgid "And you're done!"
msgstr ""
@ -164,7 +164,7 @@ msgstr "Alla giltiga certifikat kommer ocks&Atilde;&yen; att &Atilde;&yen;terkal
msgid "Apart from the boot stuff, all data resides on an encrypted partition on the root store server and only manual intervention in the boot up process by entering the password will start it again."
msgstr ""
#: www/index/17.php:61
#: www/index/17.php:61
msgid "Can't start the CEnroll control:"
msgstr ""
@ -265,7 +265,7 @@ msgstr "V&Atilde;&curren;nliga h&Atilde;&curren;lsningar"
msgid "Board Member"
msgstr ""
#: www/help/3.php:60
#: www/help/3.php:60
msgid "Browse to the location you saved the .cer file to in step 1"
msgstr ""
@ -363,7 +363,7 @@ msgstr "Certifikatinstallationen &Atilde;&curren;r klar!"
msgid "Certificate Installation Error"
msgstr "Fel vid certifikatinstallation"
#: www/help/3.php:43
#: www/help/3.php:43
msgid "Certificate Installation process for IIS 5.0"
msgstr ""
@ -415,7 +415,7 @@ msgstr "&Atilde;&#132;ndra hemlig fras"
msgid "Change Password"
msgstr "&Atilde;&#132;ndra l&Atilde;&para;senord"
#: www/help/3.php:36
#: www/help/3.php:36
msgid "Choose a filename to save the request to"
msgstr ""
@ -487,7 +487,7 @@ msgstr "J&Atilde;&curren;mf&Atilde;&para;r online-informationen med informatione
msgid "Complete the assurance form if the applicant has not already done so. Ensure that all information matches."
msgstr ""
#: www/help/3.php:39
#: www/help/3.php:39
msgid "Confirm your request details"
msgstr ""
@ -524,7 +524,7 @@ msgstr "Cookies"
msgid "Cool man! How do I create my own digital signature?!"
msgstr ""
#: www/help/3.php:47
#: www/help/3.php:47
msgid "Copy the contents of the email including the"
msgstr ""
@ -563,13 +563,15 @@ msgstr "Tillk&Atilde;&curren;nnagivanden"
msgid "Currently there is 2 main servers, one for webserver, one for root store, with the root store only connected to the webserver via serial cable, with a daemon running as non-root processes on each end of the serial listening/sending requests/info."
msgstr ""
#: www/stats.php:69 www/stats.php:105 www/account/43.php:193
#: www/account/43.php:228 www/wot/10.php:22 www/wot/10.php:55 www/wot/6.php:73
#: www/stats.php:73 www/stats.php:109 www/ttp.php:95 www/ttp.php:142
#: www/account/43.php:200 www/account/43.php:235 www/wot/10.php:43
#: www/wot/10.php:76 www/wot/6.php:91
msgid "Date"
msgstr "Datum"
#: 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
#: www/cap.php:62 www/ttp.php:126 www/account/13.php:46 www/account/13.php:94
#: www/account/43.php:93 www/account/52.php:44 www/index/1.php:47
#: www/index/5.php:25 www/wot/6.php:65
msgid "Date of Birth"
msgstr "F&Atilde;&para;delsedatum"
@ -683,8 +685,10 @@ msgstr "Epostkonton"
msgid "Email Accounts and Client Certificates"
msgstr "Emailkonton och klientcertifikat"
#: www/account/1.php:22 www/account/11.php:33 www/account/5.php:23
#: www/index/1.php:69 www/index/4.php:26 www/index/5.php:21 www/help/4.php:15
#: www/cap.php:72 www/account/1.php:22 www/account/11.php:34
#: www/account/5.php:23 www/index/1.php:75 www/index/4.php:26
#: www/index/5.php:21 www/gpg/2.php:21 www/disputes/1.php:23 www/help/4.php:29
msgid "Email Address"
msgstr "Emailadress"
@ -708,19 +712,19 @@ msgstr ""
msgid "Enable encrypted data transfer for users accessing your web, email, or other SSL enabled service on your server; wildcard certificates are allowed."
msgstr ""
#: www/help/3.php:58
#: www/help/3.php:58
msgid "Ensure 'Process the pending request and install the certificate' is selected and click on 'Next'."
msgstr ""
#: www/help/3.php:63
#: www/help/3.php:63
msgid "Ensure that you are processing the correct certificate"
msgstr ""
#: www/help/3.php:17
#: www/help/3.php:17
msgid "Enter a certificate name and select Certificate strength"
msgstr ""
#: www/help/3.php:26
#: 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 ""
@ -728,15 +732,15 @@ msgstr ""
msgid "Enter the applicant's email address;"
msgstr "Ange den s&Atilde;&para;kandes emailadress;"
#: www/help/3.php:33
#: www/help/3.php:33
msgid "Enter the geographical details"
msgstr ""
#: www/help/3.php:30
#: www/help/3.php:30
msgid "Enter your Common Name"
msgstr ""
#: www/help/3.php:25
#: www/help/3.php:25
msgid "Enter your Organisation Information"
msgstr ""
@ -791,7 +795,7 @@ msgstr ""
msgid "Find an Assurer"
msgstr ""
#: www/help/3.php:41
#: www/help/3.php:41
msgid "Finish up and exit IIS Certificate Wizard"
msgstr ""
@ -824,7 +828,7 @@ msgstr ""
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."
msgstr ""
#: www/help/3.php:71
#: www/help/3.php:71
msgid "For more information, refer to your server documentation or visit"
msgstr ""
@ -875,7 +879,7 @@ msgstr ""
msgid "Generating a 1024 bit RSA private key"
msgstr ""
#: www/help/3.php:1
#: 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 ""
@ -1061,11 +1065,11 @@ msgstr "Bara n&Atilde;&curren;r - och bara n&Atilde;&curren;r - de tv&Atilde;&ye
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."
msgstr ""
#: www/help/3.php:9
#: www/help/3.php:9
msgid "In the 'Directory Security' folder click on the 'Server Certificate' button in the 'Secure communications' section. If you have not used this option before the 'Edit' button will not be active."
msgstr ""
#: www/help/3.php:57
#: www/help/3.php:57
msgid "In the 'IIS Certificate Wizard' you should find a 'Pending Certificate Request'."
msgstr ""
@ -1090,7 +1094,7 @@ msgstr "Felaktig emailadress eller l&Atilde;&para;senordsfras."
msgid "Install Your Certificate"
msgstr "Installera ditt certifikat"
#: www/help/3.php:51
#: www/help/3.php:51
msgid "Installation steps"
msgstr ""
@ -1137,7 +1141,7 @@ msgstr "Det verkar som om '%s' redan har annullerats. Jag hoppar &Atilde;&para;v
#: 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 "Det har tagit l&Atilde;&yen;ng tid, men det har varit v&Atilde;&curren;rt v&Atilde;&curren;ntan, f&Atilde;&para;r nu kan du &Atilde;&curren;ntligen f&Atilde;&yen; s&Atilde;&curren;kerhet till r&Atilde;&curren;tt pris... Gratis!"
msgstr "Det har tagit l&amp;aring;ng tid, men det har varit v&Atilde;&curren;rt v&Atilde;&curren;ntan, f&Atilde;&para;r nu kan du &Atilde;&curren;ntligen f&Atilde;&yen; s&Atilde;&curren;kerhet till r&Atilde;&curren;tt pris... 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."
@ -1155,7 +1159,7 @@ msgstr "Anslut dig till CAcert.org"
msgid "Key Strength:"
msgstr "Nyckell&Atilde;&curren;ngd:"
#: www/help/3.php:4
#: www/help/3.php:4
msgid "Key generation process"
msgstr ""
@ -1233,7 +1237,7 @@ msgstr "Fr&Atilde;&yen;gor f&Atilde;&para;r f&Atilde;&para;rlorad hemlig fras -
#: www/account/43.php:126 www/account/43.php:130 www/account/43.php:134
#: www/account/43.php:138 www/account/43.php:142
msgid "Lost Password"
msgstr "F&Atilde;&para;rlorat l&Atilde;&para;senord"
msgstr "F&amp;ouml;rlorat l&amp;ouml;senord"
#: www/index.php:318
msgid "Mail Probe"
@ -1280,7 +1284,7 @@ msgstr "Metod"
msgid "Microsoft Root Certificate Program"
msgstr ""
#: www/help/3.php:71
#: www/help/3.php:71
msgid "Microsoft Support Online"
msgstr ""
@ -1489,7 +1493,7 @@ msgstr ""
msgid "Notification of changes"
msgstr "&Atilde;&#132;ndringsmeddelande"
#: www/help/3.php:12
#: www/help/3.php:12
msgid "Now 'Create a new certificate'."
msgstr ""
@ -1552,7 +1556,7 @@ msgstr ""
msgid "Only tick the next box if the Assurance was face to face."
msgstr ""
#: www/help/3.php:8
#: www/help/3.php:8
msgid "Open Directory Security folder"
msgstr ""
@ -1715,7 +1719,7 @@ msgstr ""
msgid "Postal Address:"
msgstr "Postadress:"
#: www/help/3.php:14
#: www/help/3.php:14
msgid "Prepare the request"
msgstr ""
@ -1776,7 +1780,7 @@ msgstr "F&Atilde;&para;rnyar"
msgid "Repeat"
msgstr "Upprepa"
#: www/help/3.php:52
#: www/help/3.php:52
msgid "Return to the 'Internet Information Services' screen in 'Administrative Tools' under 'Control Panel'. Right click on 'Default Web Site' and select 'Properties'."
msgstr ""
@ -1835,15 +1839,15 @@ msgstr ""
msgid "Same as above."
msgstr ""
#: www/help/3.php:46
#: www/help/3.php:46
msgid "Saving the certificate"
msgstr ""
#: www/help/3.php:6 www/help/3.php:7 www/help/3.php:10 www/help/3.php:13
#: www/help/3.php:16 www/help/3.php:19 www/help/3.php:29 www/help/3.php:32
#: www/help/3.php:35 www/help/3.php:38 www/help/3.php:50 www/help/3.php:53
#: www/help/3.php:56 www/help/3.php:59 www/help/3.php:62 www/help/3.php:65
#: www/help/3.php:68
#: www/help/3.php:6 www/help/3.php:7 www/help/3.php:10 www/help/3.php:13
#: www/help/3.php:16 www/help/3.php:19 www/help/3.php:29 www/help/3.php:32
#: www/help/3.php:35 www/help/3.php:38 www/help/3.php:50 www/help/3.php:53
#: www/help/3.php:56 www/help/3.php:59 www/help/3.php:62 www/help/3.php:65
#: www/help/3.php:68
msgid "Screenshot of IIS 5.0"
msgstr ""
@ -1867,15 +1871,15 @@ msgstr ""
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..."
msgstr ""
#: www/help/3.php:18
#: www/help/3.php:18
msgid "Select 'Bit length'. We advise a key length of 1024 bits."
msgstr ""
#: www/help/3.php:11
#: www/help/3.php:11
msgid "Select 'Create a new certificate'"
msgstr ""
#: www/help/3.php:55
#: www/help/3.php:55
msgid "Select 'Server Certificate' at the bottom of the tab in the 'Secure communications' section."
msgstr ""
@ -1883,15 +1887,15 @@ msgstr ""
msgid "Select Specific Account Details"
msgstr ""
#: www/help/3.php:37
#: www/help/3.php:37
msgid "Select an easy to locate folder. You'll have to open this file up with Notepad. The CSR must be copied and pasted into our online form. Once the CSR has been submitted, you won't need this CSR any more as IIS won't reuse old CSR to generate new certificates."
msgstr ""
#: www/help/3.php:61
#: www/help/3.php:61
msgid "Select the .cer file and click 'Next'."
msgstr ""
#: www/help/3.php:54
#: www/help/3.php:54
msgid "Select the Directory Security tab"
msgstr ""
@ -1989,7 +1993,7 @@ msgstr ""
msgid "TTP Form"
msgstr "TTP-formul&Atilde;&curren;r"
#: www/wot/6.php:81
#: includes/general.php:24 www/wot/6.php:99
msgid "Temporary Increase"
msgstr ""
@ -2017,8 +2021,8 @@ msgstr ""
msgid "The 1024-bit key generation failed. Would you like to try 512 instead?"
msgstr "Generering av 1024-bitarsnyckel har misslyckats. Vill du pr&Atilde;&para;va med 512 bitar ist&Atilde;&curren;llet?"
#: www/help/3.php:31
msgid "The Common Name is the fully qualified host and Domain Name or website address that you will be securing. Both 'www.cacert.org' and 'secure.cacert.com' are valid Common Names. IP addresses are usually not used."
#: www/help/3.php:31
msgid "The Common Name is the fully qualified host and Domain Name or website address that you will be securing. Both 'www.CAcert.org' and 'secure.CAcert.com' are valid Common Names. IP addresses are usually not used."
msgstr ""
#: www/verify.php:46
@ -2029,7 +2033,7 @@ msgstr "ID:t eller hash:et har redan blivit verifierat, eller s&Atilde;&yen; h&A
msgid "The ID or Hash has already been verified, the domain no longer exists in the system, or something weird happened."
msgstr "Antingen har identiteten eller hash:et har redan blivit verifierade eller s&Atilde;&yen; finns inte dom&Atilde;&curren;nen l&Atilde;&curren;ngre i systemet. Ett fel uppstod."
#: www/help/3.php:28
#: www/help/3.php:28
msgid "The Organisational Unit field is the 'free' field. It is often the department or Server name for reference."
msgstr ""
@ -2211,7 +2215,7 @@ msgstr ""
msgid "To fully understand, read the section directly above. I am using a free Certificate Authority to provide me with the ability to digitally sign my emails. As a result, this Certificate Authority is not (yet) recognised by your email software as it is a new organisation that is not yet fully established, although it is probably being included in the Mozilla browser. If you choose to, you can go the their site at CAcert.org to install the root certificate. You may be told that the certificate is untrusted - that is normal and I suggest that you continue installation regardless. Be aware that this implies your acceptance that you trust their secure distribution and storing of digital signatures, such as mine. (You already do this all the time). The CAcert.org root certificate will then automatically provide the safe validation of my digital signature, which I have entrusted to them. Or you can simply decide that you've wasted your time reading this and do nothing (humbug!). Shame on you! :-)"
msgstr ""
#: www/help/3.php:2
#: www/help/3.php:2
msgid "To generate a public and private key pair and CSR for a Microsoft IIS 5 Server:"
msgstr ""
@ -2243,7 +2247,7 @@ msgstr "&Atilde;&#150;vers&Atilde;&curren;ttningar"
msgid "Treasurer"
msgstr ""
#: includes/account_stuff.php:182 www/wot/4.php:15
#: includes/account_stuff.php:205 includes/general.php:23 www/wot/4.php:15
msgid "Trusted Third Parties"
msgstr "P&Atilde;&yen;litlig tredje-part"
@ -2259,7 +2263,7 @@ msgstr ""
msgid "Unable to match your details with any user accounts on file"
msgstr "Kunde inte matcha dina detaljer med n&Atilde;&yen;got anv&Atilde;&curren;ndarkonto i systemet"
#: www/help/3.php:5
#: www/help/3.php:5
msgid "Under 'Administrative Tools', open the 'Internet Services Manager'. Then open up the properties window for the website you wish to request the certificate for. Right-clicking on the particular website will open up its properties."
msgstr ""
@ -2398,7 +2402,7 @@ msgstr ""
msgid "When and Where?"
msgstr ""
#: www/help/3.php:67
#: www/help/3.php:67
msgid "When you have read this information, click 'Finish'."
msgstr ""
@ -2447,7 +2451,7 @@ msgstr ""
msgid "WoT Form"
msgstr "WoT-formul&Atilde;&curren;r"
#: www/wot/6.php:48
#: www/cap.php:64 www/ttp.php:128 www/wot/6.php:66
msgid "YYYY-MM-DD"
msgstr "&Atilde;&#133;&Atilde;&#133;&Atilde;&#133;&Atilde;&#133;-MM-DD"
@ -2501,6 +2505,11 @@ msgstr ""
msgid "Has put a lot of time and effort into promoting and assuring people in Brazil and South America, and for helping to translate this site into Portuguese"
msgstr ""
#: www/wot/6.php:44
#, php-format
msgid "Please check the following details match against what you witnessed when you met %s in person. You MUST NOT proceed unless you are sure the details are correct. Gross negligence may cause you to be liable."
msgstr ""
#: includes/general_stuff.php:74
msgid "CAcert Board"
msgstr ""
@ -2546,9 +2555,9 @@ msgstr "Den hemliga frasen du angav &Atilde;&curren;r felaktig."
msgid "You failed to enter a location of your meeting."
msgstr ""
#: www/index.php:90
msgid "You failed to get all answers correct, system admins have been notified."
msgstr "Du svarade inte r&Atilde;&curren;tt p&Atilde;&yen; alla fr&Atilde;&yen;gorna, systemadministrat&Atilde;&para;rerna har informerats."
#: www/index.php:97
msgid "You failed to get all answers correct or you didn't configure enough lost password questions for your account. System admins have been notified."
msgstr ""
#: www/gpg.php:24
msgid "You failed to paste a valid GPG/PGP key."
@ -2558,7 +2567,7 @@ msgstr ""
msgid "You get a vote in how CAcert (a non-profit association incorporated in Australia) is run; be eligible for positions on the CAcert board."
msgstr ""
#: www/help/3.php:21
#: www/help/3.php:21
msgid "You have now created a public/private key pair. The private key is stored locally on your machine. The public portion is sent to CAcert in the form of a CSR."
msgstr ""
@ -2628,11 +2637,11 @@ msgstr ""
msgid "You will need to be issued 100 points by meeting with existing assurers from the CAcert Web of Trust, who verify your identity using your government issued photo identity documents; OR if it is too difficult to meet up with existing assurers in your area, meet with two Trusted Third Party assurers (notary public, justice of the peace, lawyer, bank manager, accountant) to do the verifying."
msgstr ""
#: www/help/3.php:23
#: www/help/3.php:23
msgid "You will now create a CSR. This information will be displayed on your certificate, and identifies the owner of the key to users. The CSR is only used to request the certificate. The following characters must be excluded from your CSR fields, or your certificate may not work:"
msgstr ""
#: www/help/3.php:66
#: www/help/3.php:66
msgid "You will see a confirmation screen."
msgstr ""
@ -2640,7 +2649,7 @@ msgstr ""
msgid "You will then be asked to enter information about your company into the certificate. Below is a valid example:"
msgstr ""
#: www/help/3.php:15
#: www/help/3.php:15
msgid "You'll prepare the request now, but you can only submit the request via the online request forms. We do not accept CSRs via email."
msgstr ""
@ -2693,7 +2702,7 @@ msgstr ""
msgid "Your certificate request has failed to be processed correctly, please try submitting it again."
msgstr "Din certifikatf&Atilde;&para;rfr&Atilde;&yen;gan kunde inte processas ordentligt. V&Atilde;&curren;nligen l&Atilde;&curren;gg in den igen."
#: www/help/3.php:34
#: www/help/3.php:34
msgid "Your country, state and city."
msgstr ""
@ -2734,7 +2743,7 @@ msgstr ""
msgid "Your message has been sent."
msgstr "Ditt meddelande &Atilde;&curren;r skickat."
#: www/help/3.php:48
#: www/help/3.php:48
msgid "and"
msgstr ""
@ -2747,7 +2756,7 @@ msgstr "DD/MM/&Atilde;&#133;&Atilde;&#133;&Atilde;&#133;&Atilde;&#133;"
msgid "here"
msgstr ""
#: www/help/3.php:49
#: www/help/3.php:49
msgid "lines. Do not copy any extra line feeds or carriage returns at the beginning or end of the certificate. Save the certificate into a text editor like Notepad. Save the certificate with an extension of .cer and a meaningful name like certificate.cer"
msgstr ""
@ -2803,7 +2812,7 @@ msgstr ""
msgid "In light of the number of people having issues with making up a password we have the following suggestions:"
msgstr ""
#: www/index/17.php:142
#: www/index/17.php:142
msgid "Install a Root Certificate using Internet Explorer and the CEnroll ActiveX control. This avoids the Microsoft Certificate Installation wizard and all of its complexity and extra screens for users. This however will ONLY work for Microsoft Internet Explorer."
msgstr ""
@ -3074,8 +3083,8 @@ msgstr ""
msgid "Organisational Assurance"
msgstr ""
#: www/wot/11.php:22
msgid "Orgnisation Title"
#: www/wot/11.php:22
msgid "Organisation Title"
msgstr ""
#: www/index/16.php:28 www/index/3.php:28
@ -3319,14 +3328,243 @@ msgstr ""
msgid "Your vote has been accepted."
msgstr ""
#: www/index/17.php:3
msgid "Install CACert Root using CEnroll Active-X component and PKCS-7"
#: www/index/17.php:3
msgid "Install CAcert Root using CEnroll Active-X component and PKCS-7"
msgstr ""
#: www/index/17.php:65
msgid "Problems were detected with the CACert root certificate download error:"
#: www/index/17.php:65
msgid "Problems were detected with the CAcert root certificate download error:"
msgstr ""
#: www/index/17.php:67
msgid "The CACert root certificate was successfully installed"
#: www/index/17.php:67
msgid "The CAcert root certificate was successfully installed"
msgstr ""
#: www/wot/6.php:70
#, php-format
msgid "I certify that %s %s %s has appeared in person"
msgstr ""
#: www/logos.php:7
#, php-format
msgid "Feel free to copy, use, change, ... the following logos. I created them using the %s site logo and some gimp magic. Send comments or suggestions to %s. Licence: Whatever. I don't care."
msgstr ""
#: www/cap.php:83
msgid "Applicant's signature"
msgstr ""
#: www/cap.php:39
msgid "As the assurer, you are required to keep the signed document on file for 7 years. Should Cacert Inc. have any concerns about a meeting taking place, Cacert Inc. can request proof, in the form of this signed document, to ensure the process is being followed correctly. After 7 years if you wish to dispose of this form it's preferred that you shred and burn it. You do not need to retain copies of ID at all."
msgstr ""
#: www/cap.php:103 www/cap.php:107
msgid "Assurer's Name"
msgstr ""
#: www/cap.php:111
msgid "Assurer's signature"
msgstr ""
#: www/cap.php:12
msgid "CAcert Assurance Programme"
msgstr ""
#: www/cap.php:85 www/cap.php:113
msgid "Date (YYYY-MM-DD)"
msgstr ""
#: www/cap.php:81
msgid "I hereby confirm that the information stated above is both true and correct, and request the CAcert Assurer (identified below) to witness my identity in the CAcert Assurance Programme."
msgstr ""
#: www/cap.php:15 www/ttp.php:24
msgid "Identity Verification Form"
msgstr ""
#: www/cap.php:129
msgid "Location of Face-to-face Meeting"
msgstr ""
#: www/cap.php:133
msgid "Maximum Points"
msgstr ""
#: www/cap.php:51 www/ttp.php:75
msgid "Names"
msgstr ""
#: www/cap.php:123
msgid "Photo ID Shown: (ID types, not numbers. eg Drivers license, Passport)"
msgstr ""
#: www/cap.php:131
msgid "Points Allocated"
msgstr ""
#: www/cap.php:37
#, php-format
msgid "To the Assurer: The CAcert Assurance Programme (CAP) aims to verify the identities of Internet users through face-to-face witnessing of government issued identity documents. The Applicant asks you to verify to CAcert.org that you have met them and verified their identity against one or more original, trusted, government photo identity documents. If you have ANY doubts or concerns about the Applicant's identity, DO NOT COMPLETE OR SIGN this form. For more information about the CAcert Assurance Programme, including detailed guides for CAcert Assurers, please visit: %s"
msgstr ""
#: www/cap.php:46
msgid "Applicant's Statement"
msgstr ""
#: www/cap.php:26 www/ttp.php:35
msgid "CAcert's Root Certificate fingerprints"
msgstr ""
#: www/ttp.php:109
msgid "Applicant Information"
msgstr ""
#: www/ttp.php:84
msgid "Bar Association, CPA Number or Bank Name and Branch, JP/Notary Number"
msgstr ""
#: www/ttp.php:91
msgid "Email (if applicable)"
msgstr ""
#: www/ttp.php:136
msgid "First ID Number (driver's license, passport etc)"
msgstr ""
#: www/ttp.php:112
msgid "Full Name (as shown on ID)"
msgstr ""
#: www/ttp.php:56
#, php-format
msgid "If you have ANY doubts or concerns about the identity of the Applicant then please DO NOT COMPLETE AND SIGN this form. For more information about the Web of Trust, including detailed guides for Trusted Third Parties, please see: %s"
msgstr ""
#: www/ttp.php:82
msgid "Justice of the Peace, Public Notary, Lawyer, Accountant, or Bank Manager"
msgstr ""
#: www/ttp.php:119
msgid "Main email (so we can find you)"
msgstr ""
#: www/ttp.php:89
msgid "Office Phone"
msgstr ""
#: www/ttp.php:77
msgid "Office Street Address"
msgstr ""
#: www/ttp.php:58
msgid "PLEASE NOTE: You must get 2 fully completed TTP forms before sending anything to CAcert. Failure to do so will only cause your application to be delayed until all forms have been received by CAcert!"
msgstr ""
#: www/ttp.php:72
msgid "Person Verifying Applicant's Identity"
msgstr ""
#: www/ttp.php:50
msgid "Please complete and sign this form, and sign the photocopies of the IDs, to acknowledge that"
msgstr ""
#: www/ttp.php:80
msgid "Profession (Please circle one)"
msgstr ""
#: www/ttp.php:138
msgid "Second ID Number (driver's license, passport etc)"
msgstr ""
#: www/ttp.php:93 www/ttp.php:140
msgid "Signature"
msgstr ""
#: www/ttp.php:48
msgid "The Applicant asks you to certify to CAcert that you have met with the Applicant and verified the Full Name, Date of Birth, and ID Numbers of the Applicant against two separate original trusted photo-identity documents. Once the documents have been verified against the originals and signed, the applicant must attach the copies to the signed forms and return them to CAcert Inc."
msgstr ""
#: www/ttp.php:46
msgid "The CAcert Trusted Third Party (TTP) Programme is designed to assure Internet user identities through personal verification of government issued identity documents."
msgstr ""
#: www/ttp.php:21
msgid "Trusted Third Party"
msgstr ""
#: www/ttp.php:54
msgid "You have verified that the Full Name, Date of Birth, and ID Numbers on the identity documents matches those filled in the Applicant section below and in the photocopies provided."
msgstr ""
#: www/ttp.php:52
msgid "You have viewed two of the Applicant's photo identity documents and you are convinced of their authenticity, and are convinced that the photos indeed depict the Applicant (allowed documents are government-issued documents with photos such as driver's license, passport, or others that are normally accepted as legal identification in your country; expired documents are allowed)."
msgstr ""
#: www/ttp.php:86
msgid "as applicable"
msgstr ""
#: www/cap.php:102
msgid "CAcert Assurer"
msgstr ""
#: www/wot/5.php:15
msgid "ERROR"
msgstr ""
#: www/wot/10.php:105
msgid "Go Back"
msgstr ""
#: includes/general.php:23
msgid "Administrative Increase"
msgstr ""
#: includes/general.php:24
msgid "CT Magazine - Germany"
msgstr ""
#: includes/general.php:23
msgid "Face to Face Meeting"
msgstr ""
#: includes/general.php:23
msgid "Thawte Points Transfer"
msgstr ""
#: includes/general.php:24
msgid "Unknown"
msgstr ""
#: www/index/0.php:37
msgid "Full Story"
msgstr ""
#: www/index/0.php:40
msgid "More News Items"
msgstr ""
#: www/index/6.php:92
msgid "You do not have enough/any lost password questions set. You will not be able to continue to reset your password via this method."
msgstr ""
#: includes/general.php:618
msgid "Failed to make a connection to the mail server"
msgstr ""
#: includes/account.php:904 www/index.php:204 www/index.php:254
msgid "For your own security you must enter 5 lost password questions and answers."
msgstr ""
#: www/wot.php:169
msgid "Race condition discovered, user altered details during assurance procedure. PLEASE MAKE SURE THE NEW DETAILS BELOW MATCH THE ID DOCUMENTS."
msgstr ""
#: www/wot.php:53
msgid "Reminder Notice"
msgstr ""
#: www/wot.php:49
#, php-format
msgid "This is a short reminder that you filled out forms to become trusted with CAcert.org, and %s has attempted to issue you points. Please create your account at %s as soon as possible and then notify %s so that the points can be issued."
msgstr ""

View file

@ -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-06-02 13:37:03+0000\n"
"PO-Revision-Date: 2005-09-16 11:39:01+0000\n"
"Last-Translator: Someone <someone@someisp.com>\n"
"Language-Team: <de@li.org>\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 ""
msgstr "%s pahinang pinakita."
#: www/account/43.php:71
#, php-format
@ -116,7 +116,7 @@ msgstr ""
msgid "After the meeting, visit the CAcert Web site's make an Assurance page and:"
msgstr ""
#: www/help/3.php:44
#: www/help/3.php:44
msgid "After your certificate has been emailed to you, follow this process to install the certificate."
msgstr ""
@ -148,7 +148,7 @@ msgstr ""
msgid "And they are making mistakes"
msgstr ""
#: www/help/3.php:70
#: www/help/3.php:70
msgid "And you're done!"
msgstr ""
@ -164,7 +164,7 @@ msgstr ""
msgid "Apart from the boot stuff, all data resides on an encrypted partition on the root store server and only manual intervention in the boot up process by entering the password will start it again."
msgstr ""
#: www/index/17.php:61
#: www/index/17.php:61
msgid "Can't start the CEnroll control:"
msgstr ""
@ -265,7 +265,7 @@ msgstr ""
msgid "Board Member"
msgstr ""
#: www/help/3.php:60
#: www/help/3.php:60
msgid "Browse to the location you saved the .cer file to in step 1"
msgstr ""
@ -363,7 +363,7 @@ msgstr ""
msgid "Certificate Installation Error"
msgstr ""
#: www/help/3.php:43
#: www/help/3.php:43
msgid "Certificate Installation process for IIS 5.0"
msgstr ""
@ -415,7 +415,7 @@ msgstr ""
msgid "Change Password"
msgstr ""
#: www/help/3.php:36
#: www/help/3.php:36
msgid "Choose a filename to save the request to"
msgstr ""
@ -487,7 +487,7 @@ msgstr ""
msgid "Complete the assurance form if the applicant has not already done so. Ensure that all information matches."
msgstr ""
#: www/help/3.php:39
#: www/help/3.php:39
msgid "Confirm your request details"
msgstr ""
@ -524,7 +524,7 @@ msgstr ""
msgid "Cool man! How do I create my own digital signature?!"
msgstr ""
#: www/help/3.php:47
#: www/help/3.php:47
msgid "Copy the contents of the email including the"
msgstr ""
@ -563,13 +563,15 @@ msgstr ""
msgid "Currently there is 2 main servers, one for webserver, one for root store, with the root store only connected to the webserver via serial cable, with a daemon running as non-root processes on each end of the serial listening/sending requests/info."
msgstr ""
#: www/stats.php:69 www/stats.php:105 www/account/43.php:193
#: www/account/43.php:228 www/wot/10.php:22 www/wot/10.php:55 www/wot/6.php:73
#: www/stats.php:73 www/stats.php:109 www/ttp.php:95 www/ttp.php:142
#: www/account/43.php:200 www/account/43.php:235 www/wot/10.php:43
#: www/wot/10.php:76 www/wot/6.php:91
msgid "Date"
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
#: www/cap.php:62 www/ttp.php:126 www/account/13.php:46 www/account/13.php:94
#: www/account/43.php:93 www/account/52.php:44 www/index/1.php:47
#: www/index/5.php:25 www/wot/6.php:65
msgid "Date of Birth"
msgstr ""
@ -683,8 +685,10 @@ msgstr ""
msgid "Email Accounts and Client Certificates"
msgstr ""
#: www/account/1.php:22 www/account/11.php:33 www/account/5.php:23
#: www/index/1.php:69 www/index/4.php:26 www/index/5.php:21 www/help/4.php:15
#: www/cap.php:72 www/account/1.php:22 www/account/11.php:34
#: www/account/5.php:23 www/index/1.php:75 www/index/4.php:26
#: www/index/5.php:21 www/gpg/2.php:21 www/disputes/1.php:23 www/help/4.php:29
msgid "Email Address"
msgstr ""
@ -708,19 +712,19 @@ msgstr ""
msgid "Enable encrypted data transfer for users accessing your web, email, or other SSL enabled service on your server; wildcard certificates are allowed."
msgstr ""
#: www/help/3.php:58
#: www/help/3.php:58
msgid "Ensure 'Process the pending request and install the certificate' is selected and click on 'Next'."
msgstr ""
#: www/help/3.php:63
#: www/help/3.php:63
msgid "Ensure that you are processing the correct certificate"
msgstr ""
#: www/help/3.php:17
#: www/help/3.php:17
msgid "Enter a certificate name and select Certificate strength"
msgstr ""
#: www/help/3.php:26
#: 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 ""
@ -728,15 +732,15 @@ msgstr ""
msgid "Enter the applicant's email address;"
msgstr ""
#: www/help/3.php:33
#: www/help/3.php:33
msgid "Enter the geographical details"
msgstr ""
#: www/help/3.php:30
#: www/help/3.php:30
msgid "Enter your Common Name"
msgstr ""
#: www/help/3.php:25
#: www/help/3.php:25
msgid "Enter your Organisation Information"
msgstr ""
@ -791,7 +795,7 @@ msgstr ""
msgid "Find an Assurer"
msgstr ""
#: www/help/3.php:41
#: www/help/3.php:41
msgid "Finish up and exit IIS Certificate Wizard"
msgstr ""
@ -824,7 +828,7 @@ msgstr ""
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."
msgstr ""
#: www/help/3.php:71
#: www/help/3.php:71
msgid "For more information, refer to your server documentation or visit"
msgstr ""
@ -875,7 +879,7 @@ msgstr ""
msgid "Generating a 1024 bit RSA private key"
msgstr ""
#: www/help/3.php:1
#: 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 ""
@ -1061,11 +1065,11 @@ msgstr ""
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."
msgstr ""
#: www/help/3.php:9
#: www/help/3.php:9
msgid "In the 'Directory Security' folder click on the 'Server Certificate' button in the 'Secure communications' section. If you have not used this option before the 'Edit' button will not be active."
msgstr ""
#: www/help/3.php:57
#: www/help/3.php:57
msgid "In the 'IIS Certificate Wizard' you should find a 'Pending Certificate Request'."
msgstr ""
@ -1090,7 +1094,7 @@ msgstr ""
msgid "Install Your Certificate"
msgstr ""
#: www/help/3.php:51
#: www/help/3.php:51
msgid "Installation steps"
msgstr ""
@ -1155,7 +1159,7 @@ msgstr ""
msgid "Key Strength:"
msgstr ""
#: www/help/3.php:4
#: www/help/3.php:4
msgid "Key generation process"
msgstr ""
@ -1280,7 +1284,7 @@ msgstr ""
msgid "Microsoft Root Certificate Program"
msgstr ""
#: www/help/3.php:71
#: www/help/3.php:71
msgid "Microsoft Support Online"
msgstr ""
@ -1489,7 +1493,7 @@ msgstr ""
msgid "Notification of changes"
msgstr ""
#: www/help/3.php:12
#: www/help/3.php:12
msgid "Now 'Create a new certificate'."
msgstr ""
@ -1552,7 +1556,7 @@ msgstr ""
msgid "Only tick the next box if the Assurance was face to face."
msgstr ""
#: www/help/3.php:8
#: www/help/3.php:8
msgid "Open Directory Security folder"
msgstr ""
@ -1715,7 +1719,7 @@ msgstr ""
msgid "Postal Address:"
msgstr ""
#: www/help/3.php:14
#: www/help/3.php:14
msgid "Prepare the request"
msgstr ""
@ -1776,7 +1780,7 @@ msgstr ""
msgid "Repeat"
msgstr ""
#: www/help/3.php:52
#: www/help/3.php:52
msgid "Return to the 'Internet Information Services' screen in 'Administrative Tools' under 'Control Panel'. Right click on 'Default Web Site' and select 'Properties'."
msgstr ""
@ -1835,15 +1839,15 @@ msgstr ""
msgid "Same as above."
msgstr ""
#: www/help/3.php:46
#: www/help/3.php:46
msgid "Saving the certificate"
msgstr ""
#: www/help/3.php:6 www/help/3.php:7 www/help/3.php:10 www/help/3.php:13
#: www/help/3.php:16 www/help/3.php:19 www/help/3.php:29 www/help/3.php:32
#: www/help/3.php:35 www/help/3.php:38 www/help/3.php:50 www/help/3.php:53
#: www/help/3.php:56 www/help/3.php:59 www/help/3.php:62 www/help/3.php:65
#: www/help/3.php:68
#: www/help/3.php:6 www/help/3.php:7 www/help/3.php:10 www/help/3.php:13
#: www/help/3.php:16 www/help/3.php:19 www/help/3.php:29 www/help/3.php:32
#: www/help/3.php:35 www/help/3.php:38 www/help/3.php:50 www/help/3.php:53
#: www/help/3.php:56 www/help/3.php:59 www/help/3.php:62 www/help/3.php:65
#: www/help/3.php:68
msgid "Screenshot of IIS 5.0"
msgstr ""
@ -1867,15 +1871,15 @@ msgstr ""
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..."
msgstr ""
#: www/help/3.php:18
#: www/help/3.php:18
msgid "Select 'Bit length'. We advise a key length of 1024 bits."
msgstr ""
#: www/help/3.php:11
#: www/help/3.php:11
msgid "Select 'Create a new certificate'"
msgstr ""
#: www/help/3.php:55
#: www/help/3.php:55
msgid "Select 'Server Certificate' at the bottom of the tab in the 'Secure communications' section."
msgstr ""
@ -1883,15 +1887,15 @@ msgstr ""
msgid "Select Specific Account Details"
msgstr ""
#: www/help/3.php:37
#: www/help/3.php:37
msgid "Select an easy to locate folder. You'll have to open this file up with Notepad. The CSR must be copied and pasted into our online form. Once the CSR has been submitted, you won't need this CSR any more as IIS won't reuse old CSR to generate new certificates."
msgstr ""
#: www/help/3.php:61
#: www/help/3.php:61
msgid "Select the .cer file and click 'Next'."
msgstr ""
#: www/help/3.php:54
#: www/help/3.php:54
msgid "Select the Directory Security tab"
msgstr ""
@ -1989,7 +1993,7 @@ msgstr ""
msgid "TTP Form"
msgstr ""
#: www/wot/6.php:81
#: includes/general.php:24 www/wot/6.php:99
msgid "Temporary Increase"
msgstr ""
@ -2017,8 +2021,8 @@ msgstr ""
msgid "The 1024-bit key generation failed. Would you like to try 512 instead?"
msgstr ""
#: www/help/3.php:31
msgid "The Common Name is the fully qualified host and Domain Name or website address that you will be securing. Both 'www.cacert.org' and 'secure.cacert.com' are valid Common Names. IP addresses are usually not used."
#: www/help/3.php:31
msgid "The Common Name is the fully qualified host and Domain Name or website address that you will be securing. Both 'www.CAcert.org' and 'secure.CAcert.com' are valid Common Names. IP addresses are usually not used."
msgstr ""
#: www/verify.php:46
@ -2029,7 +2033,7 @@ msgstr ""
msgid "The ID or Hash has already been verified, the domain no longer exists in the system, or something weird happened."
msgstr ""
#: www/help/3.php:28
#: www/help/3.php:28
msgid "The Organisational Unit field is the 'free' field. It is often the department or Server name for reference."
msgstr ""
@ -2211,7 +2215,7 @@ msgstr ""
msgid "To fully understand, read the section directly above. I am using a free Certificate Authority to provide me with the ability to digitally sign my emails. As a result, this Certificate Authority is not (yet) recognised by your email software as it is a new organisation that is not yet fully established, although it is probably being included in the Mozilla browser. If you choose to, you can go the their site at CAcert.org to install the root certificate. You may be told that the certificate is untrusted - that is normal and I suggest that you continue installation regardless. Be aware that this implies your acceptance that you trust their secure distribution and storing of digital signatures, such as mine. (You already do this all the time). The CAcert.org root certificate will then automatically provide the safe validation of my digital signature, which I have entrusted to them. Or you can simply decide that you've wasted your time reading this and do nothing (humbug!). Shame on you! :-)"
msgstr ""
#: www/help/3.php:2
#: www/help/3.php:2
msgid "To generate a public and private key pair and CSR for a Microsoft IIS 5 Server:"
msgstr ""
@ -2243,7 +2247,7 @@ msgstr ""
msgid "Treasurer"
msgstr ""
#: includes/account_stuff.php:182 www/wot/4.php:15
#: includes/account_stuff.php:205 includes/general.php:23 www/wot/4.php:15
msgid "Trusted Third Parties"
msgstr ""
@ -2259,7 +2263,7 @@ msgstr ""
msgid "Unable to match your details with any user accounts on file"
msgstr ""
#: www/help/3.php:5
#: www/help/3.php:5
msgid "Under 'Administrative Tools', open the 'Internet Services Manager'. Then open up the properties window for the website you wish to request the certificate for. Right-clicking on the particular website will open up its properties."
msgstr ""
@ -2398,7 +2402,7 @@ msgstr ""
msgid "When and Where?"
msgstr ""
#: www/help/3.php:67
#: www/help/3.php:67
msgid "When you have read this information, click 'Finish'."
msgstr ""
@ -2447,7 +2451,7 @@ msgstr ""
msgid "WoT Form"
msgstr ""
#: www/wot/6.php:48
#: www/cap.php:64 www/ttp.php:128 www/wot/6.php:66
msgid "YYYY-MM-DD"
msgstr ""
@ -2551,8 +2555,8 @@ msgstr ""
msgid "You failed to enter a location of your meeting."
msgstr ""
#: www/index.php:90
msgid "You failed to get all answers correct, system admins have been notified."
#: www/index.php:97
msgid "You failed to get all answers correct or you didn't configure enough lost password questions for your account. System admins have been notified."
msgstr ""
#: www/gpg.php:24
@ -2563,7 +2567,7 @@ msgstr ""
msgid "You get a vote in how CAcert (a non-profit association incorporated in Australia) is run; be eligible for positions on the CAcert board."
msgstr ""
#: www/help/3.php:21
#: www/help/3.php:21
msgid "You have now created a public/private key pair. The private key is stored locally on your machine. The public portion is sent to CAcert in the form of a CSR."
msgstr ""
@ -2633,11 +2637,11 @@ msgstr ""
msgid "You will need to be issued 100 points by meeting with existing assurers from the CAcert Web of Trust, who verify your identity using your government issued photo identity documents; OR if it is too difficult to meet up with existing assurers in your area, meet with two Trusted Third Party assurers (notary public, justice of the peace, lawyer, bank manager, accountant) to do the verifying."
msgstr ""
#: www/help/3.php:23
#: www/help/3.php:23
msgid "You will now create a CSR. This information will be displayed on your certificate, and identifies the owner of the key to users. The CSR is only used to request the certificate. The following characters must be excluded from your CSR fields, or your certificate may not work:"
msgstr ""
#: www/help/3.php:66
#: www/help/3.php:66
msgid "You will see a confirmation screen."
msgstr ""
@ -2645,7 +2649,7 @@ msgstr ""
msgid "You will then be asked to enter information about your company into the certificate. Below is a valid example:"
msgstr ""
#: www/help/3.php:15
#: www/help/3.php:15
msgid "You'll prepare the request now, but you can only submit the request via the online request forms. We do not accept CSRs via email."
msgstr ""
@ -2698,7 +2702,7 @@ msgstr ""
msgid "Your certificate request has failed to be processed correctly, please try submitting it again."
msgstr ""
#: www/help/3.php:34
#: www/help/3.php:34
msgid "Your country, state and city."
msgstr ""
@ -2739,7 +2743,7 @@ msgstr ""
msgid "Your message has been sent."
msgstr ""
#: www/help/3.php:48
#: www/help/3.php:48
msgid "and"
msgstr ""
@ -2752,7 +2756,7 @@ msgstr ""
msgid "here"
msgstr ""
#: www/help/3.php:49
#: www/help/3.php:49
msgid "lines. Do not copy any extra line feeds or carriage returns at the beginning or end of the certificate. Save the certificate into a text editor like Notepad. Save the certificate with an extension of .cer and a meaningful name like certificate.cer"
msgstr ""
@ -2808,7 +2812,7 @@ msgstr ""
msgid "In light of the number of people having issues with making up a password we have the following suggestions:"
msgstr ""
#: www/index/17.php:142
#: www/index/17.php:142
msgid "Install a Root Certificate using Internet Explorer and the CEnroll ActiveX control. This avoids the Microsoft Certificate Installation wizard and all of its complexity and extra screens for users. This however will ONLY work for Microsoft Internet Explorer."
msgstr ""
@ -3324,19 +3328,243 @@ msgstr ""
msgid "Your vote has been accepted."
msgstr ""
#: www/index/17.php:3
msgid "Install CACert Root using CEnroll Active-X component and PKCS-7"
#: www/index/17.php:3
msgid "Install CAcert Root using CEnroll Active-X component and PKCS-7"
msgstr ""
#: www/index/17.php:65
msgid "Problems were detected with the CACert root certificate download error:"
#: www/index/17.php:65
msgid "Problems were detected with the CAcert root certificate download error:"
msgstr ""
#: www/index/17.php:67
msgid "The CACert root certificate was successfully installed"
#: www/index/17.php:67
msgid "The CAcert root certificate was successfully installed"
msgstr ""
#: www/wot/6.php:70
#, php-format
msgid "I certify that %s %s %s has appeared in person"
msgstr ""
#: www/logos.php:7
#, php-format
msgid "Feel free to copy, use, change, ... the following logos. I created them using the %s site logo and some gimp magic. Send comments or suggestions to %s. Licence: Whatever. I don't care."
msgstr ""
#: www/cap.php:83
msgid "Applicant's signature"
msgstr ""
#: www/cap.php:39
msgid "As the assurer, you are required to keep the signed document on file for 7 years. Should Cacert Inc. have any concerns about a meeting taking place, Cacert Inc. can request proof, in the form of this signed document, to ensure the process is being followed correctly. After 7 years if you wish to dispose of this form it's preferred that you shred and burn it. You do not need to retain copies of ID at all."
msgstr ""
#: www/cap.php:103 www/cap.php:107
msgid "Assurer's Name"
msgstr ""
#: www/cap.php:111
msgid "Assurer's signature"
msgstr ""
#: www/cap.php:12
msgid "CAcert Assurance Programme"
msgstr ""
#: www/cap.php:85 www/cap.php:113
msgid "Date (YYYY-MM-DD)"
msgstr ""
#: www/cap.php:81
msgid "I hereby confirm that the information stated above is both true and correct, and request the CAcert Assurer (identified below) to witness my identity in the CAcert Assurance Programme."
msgstr ""
#: www/cap.php:15 www/ttp.php:24
msgid "Identity Verification Form"
msgstr ""
#: www/cap.php:129
msgid "Location of Face-to-face Meeting"
msgstr ""
#: www/cap.php:133
msgid "Maximum Points"
msgstr ""
#: www/cap.php:51 www/ttp.php:75
msgid "Names"
msgstr ""
#: www/cap.php:123
msgid "Photo ID Shown: (ID types, not numbers. eg Drivers license, Passport)"
msgstr ""
#: www/cap.php:131
msgid "Points Allocated"
msgstr ""
#: www/cap.php:37
#, php-format
msgid "To the Assurer: The CAcert Assurance Programme (CAP) aims to verify the identities of Internet users through face-to-face witnessing of government issued identity documents. The Applicant asks you to verify to CAcert.org that you have met them and verified their identity against one or more original, trusted, government photo identity documents. If you have ANY doubts or concerns about the Applicant's identity, DO NOT COMPLETE OR SIGN this form. For more information about the CAcert Assurance Programme, including detailed guides for CAcert Assurers, please visit: %s"
msgstr ""
#: www/cap.php:46
msgid "Applicant's Statement"
msgstr ""
#: www/cap.php:26 www/ttp.php:35
msgid "CAcert's Root Certificate fingerprints"
msgstr ""
#: www/ttp.php:109
msgid "Applicant Information"
msgstr ""
#: www/ttp.php:84
msgid "Bar Association, CPA Number or Bank Name and Branch, JP/Notary Number"
msgstr ""
#: www/ttp.php:91
msgid "Email (if applicable)"
msgstr ""
#: www/ttp.php:136
msgid "First ID Number (driver's license, passport etc)"
msgstr ""
#: www/ttp.php:112
msgid "Full Name (as shown on ID)"
msgstr ""
#: www/ttp.php:56
#, php-format
msgid "If you have ANY doubts or concerns about the identity of the Applicant then please DO NOT COMPLETE AND SIGN this form. For more information about the Web of Trust, including detailed guides for Trusted Third Parties, please see: %s"
msgstr ""
#: www/ttp.php:82
msgid "Justice of the Peace, Public Notary, Lawyer, Accountant, or Bank Manager"
msgstr ""
#: www/ttp.php:119
msgid "Main email (so we can find you)"
msgstr ""
#: www/ttp.php:89
msgid "Office Phone"
msgstr ""
#: www/ttp.php:77
msgid "Office Street Address"
msgstr ""
#: www/ttp.php:58
msgid "PLEASE NOTE: You must get 2 fully completed TTP forms before sending anything to CAcert. Failure to do so will only cause your application to be delayed until all forms have been received by CAcert!"
msgstr ""
#: www/ttp.php:72
msgid "Person Verifying Applicant's Identity"
msgstr ""
#: www/ttp.php:50
msgid "Please complete and sign this form, and sign the photocopies of the IDs, to acknowledge that"
msgstr ""
#: www/ttp.php:80
msgid "Profession (Please circle one)"
msgstr ""
#: www/ttp.php:138
msgid "Second ID Number (driver's license, passport etc)"
msgstr ""
#: www/ttp.php:93 www/ttp.php:140
msgid "Signature"
msgstr ""
#: www/ttp.php:48
msgid "The Applicant asks you to certify to CAcert that you have met with the Applicant and verified the Full Name, Date of Birth, and ID Numbers of the Applicant against two separate original trusted photo-identity documents. Once the documents have been verified against the originals and signed, the applicant must attach the copies to the signed forms and return them to CAcert Inc."
msgstr ""
#: www/ttp.php:46
msgid "The CAcert Trusted Third Party (TTP) Programme is designed to assure Internet user identities through personal verification of government issued identity documents."
msgstr ""
#: www/ttp.php:21
msgid "Trusted Third Party"
msgstr ""
#: www/ttp.php:54
msgid "You have verified that the Full Name, Date of Birth, and ID Numbers on the identity documents matches those filled in the Applicant section below and in the photocopies provided."
msgstr ""
#: www/ttp.php:52
msgid "You have viewed two of the Applicant's photo identity documents and you are convinced of their authenticity, and are convinced that the photos indeed depict the Applicant (allowed documents are government-issued documents with photos such as driver's license, passport, or others that are normally accepted as legal identification in your country; expired documents are allowed)."
msgstr ""
#: www/ttp.php:86
msgid "as applicable"
msgstr ""
#: www/cap.php:102
msgid "CAcert Assurer"
msgstr ""
#: www/wot/5.php:15
msgid "ERROR"
msgstr ""
#: www/wot/10.php:105
msgid "Go Back"
msgstr ""
#: includes/general.php:23
msgid "Administrative Increase"
msgstr ""
#: includes/general.php:24
msgid "CT Magazine - Germany"
msgstr ""
#: includes/general.php:23
msgid "Face to Face Meeting"
msgstr ""
#: includes/general.php:23
msgid "Thawte Points Transfer"
msgstr ""
#: includes/general.php:24
msgid "Unknown"
msgstr ""
#: www/index/0.php:37
msgid "Full Story"
msgstr ""
#: www/index/0.php:40
msgid "More News Items"
msgstr ""
#: www/index/6.php:92
msgid "You do not have enough/any lost password questions set. You will not be able to continue to reset your password via this method."
msgstr ""
#: includes/general.php:618
msgid "Failed to make a connection to the mail server"
msgstr ""
#: includes/account.php:904 www/index.php:204 www/index.php:254
msgid "For your own security you must enter 5 lost password questions and answers."
msgstr ""
#: www/wot.php:169
msgid "Race condition discovered, user altered details during assurance procedure. PLEASE MAKE SURE THE NEW DETAILS BELOW MATCH THE ID DOCUMENTS."
msgstr ""
#: www/wot.php:53
msgid "Reminder Notice"
msgstr ""
#: www/wot.php:49
#, php-format
msgid "This is a short reminder that you filled out forms to become trusted with CAcert.org, and %s has attempted to issue you points. Please create your account at %s as soon as possible and then notify %s so that the points can be issued."
msgstr ""

View file

@ -64,7 +64,7 @@
echo "<option value='$i'";
if($_SESSION['signup']['month'] == $i)
echo " selected";
echo ">".ucwords(recode("utf-8..html", strftime("%B", mktime(0,0,0,$i,1,date("Y")))))."</option>\n";
echo ">".ucwords(recode("utf-8..html", strftime("%B", mktime(0,0,0,$i,1,date("Y")))))." ($i)</option>\n";
}
?>
</select>

View file

@ -13,12 +13,18 @@
PARTICULAR PURPOSE. See the License for more details.
*/ ?>
<p>
<?=_("PKI Key")?><br>
Class 1 <?=_("PKI Key")?><br>
<a href="index.php?id=17"><?=_("Click here if you want to import the root certificate into Microsoft Internet Explorer")?></a><br>
<a href="certs/root.crt"><?=_("Root Certificate (PEM Format)")?></a><br>
<a href="certs/root.der"><?=_("Root Certificate (DER Format)")?></a>
</p>
<p>
Class 3 <?=_("PKI Key")?><br>
<a href="certs/class3.crt"><?=_("Root Certificate (PEM Format)")?></a><br>
<a href="certs/class3.der"><?=_("Root Certificate (DER Format)")?></a>
</p>
<p>
<?=_("GPG Key")?><br>
<a href="certs/cacert.asc"><?=_("CAcert's GPG Key")?></a><br>

View file

@ -49,6 +49,40 @@ Sub InstallCert
"zk6q5PYvCdxTby78dOs6Y5nCpqyJvKeyRKANihDjbPIky/qbn3BHLt4Ui9SyIAmW" & _
"omTxJBzcoTWcFbLUvFUufQb1nA5V9FrWk9p2rSVzTMVD"
credentials2 = "MIIGCDCCA/CgAwIBAgIBATANBgkqhkiG9w0BAQQFADB5MRAwDgYDVQQKEwdSb290" & _
"IENBMR4wHAYDVQQLExVodHRwOi8vd3d3LmNhY2VydC5vcmcxIjAgBgNVBAMTGUNB" & _
"IENlcnQgU2lnbmluZyBBdXRob3JpdHkxITAfBgkqhkiG9w0BCQEWEnN1cHBvcnRA" & _
"Y2FjZXJ0Lm9yZzAeFw0wNTEwMTQwNzM2NTVaFw0zMzAzMjgwNzM2NTVaMFQxFDAS" & _
"BgNVBAoTC0NBY2VydCBJbmMuMR4wHAYDVQQLExVodHRwOi8vd3d3LkNBY2VydC5v" & _
"cmcxHDAaBgNVBAMTE0NBY2VydCBDbGFzcyAzIFJvb3QwggIiMA0GCSqGSIb3DQEB" & _
"AQUAA4ICDwAwggIKAoICAQCrSTURSHzSJn5TlM9Dqd0o10Iqi/OHeBlYfA+e2ol9" & _
"4fvrcpANdKGWZKufoCSZc9riVXbHF3v1BKxGuMO+f2SNEGwk82GcwPKQ+lHm9WkB" & _
"Y8MPVuJKQs/iRIwlKKjFeQl9RrmK8+nzNCkIReQcn8uUBByBqBSzmGXEQ+xOgo0J" & _
"0b2qW42S0OzekMV/CsLj6+YxWl50PpczWejDAz1gM7/30W9HxM3uYoNSbi4ImqTZ" & _
"FRiRpoWSR7CuSOtttyHshRpocjWr//AQXcD0lKdq1TuSfkyQBX6TwSyLpI5idBVx" & _
"bgtxA+qvFTia1NIFcm+M+SvrWnIl+TlG43IbPgTDZCciECqKT1inA62+tC4T7V2q" & _
"SNfVfdQqe1z6RgRQ5MwOQluM7dvyz/yWk+DbETZUYjQ4jwxgmzuXVjit89Jbi6Bb" & _
"6k6WuHzX1aCGcEDTkSm3ojyt9Yy7zxqSiuQ0e8DYbF/pCsLDpyCaWt8sXVJcukfV" & _
"m+8kKHA4IC/VfynAskEDaJLM4JzMl0tF7zoQCqtwOpiVcK01seqFK6QcgCExqa5g" & _
"eoAmSAC4AcCTY1UikTxW56/bOiXzjzFU6iaLgVn5odFTEcV7nQP2dBHgbbEsPyyG" & _
"kZlxmqZ3izRg0RS0LKydr4wQ05/EavhvE/xzWfdmQnQeiuP43NJvmJzLR5iVQAX7" & _
"6QIDAQABo4G/MIG8MA8GA1UdEwEB/wQFMAMBAf8wXQYIKwYBBQUHAQEEUTBPMCMG" & _
"CCsGAQUFBzABhhdodHRwOi8vb2NzcC5DQWNlcnQub3JnLzAoBggrBgEFBQcwAoYc" & _
"aHR0cDovL3d3dy5DQWNlcnQub3JnL2NhLmNydDBKBgNVHSAEQzBBMD8GCCsGAQQB" & _
"gZBKMDMwMQYIKwYBBQUHAgEWJWh0dHA6Ly93d3cuQ0FjZXJ0Lm9yZy9pbmRleC5w" & _
"aHA/aWQ9MTAwDQYJKoZIhvcNAQEEBQADggIBAH8IiKHaGlBJ2on7oQhy84r3HsQ6" & _
"tHlbIDCxRd7CXdNlafHCXVRUPIVfuXtCkcKZ/RtRm6tGpaEQU55tiKxzbiwzpvD0" & _
"nuB1wT6IRanhZkP+VlrRekF490DaSjrxC1uluxYG5sLnk7mFTZdPsR44Q4Dvmw2M" & _
"77inYACHV30eRBzLI++bPJmdr7UpHEV5FpZNJ23xHGzDwlVks7wU4vOkHx4y/CcV" & _
"Bc/dLq4+gmF78CEQGPZE6lM5+dzQmiDgxrvgu1pPxJnIB721vaLbLmINQjRBvP+L" & _
"ivVRIqqIMADisNS8vmW61QNXeZvo3MhN+FDtkaVSKKKs+zZYPumUK5FQhxvWXtaM" & _
"zPcPEAxSTtAWYeXlCmy/F8dyRlecmPVsYGN6b165Ti/Iubm7aoW8mA3t+T6XhDSU" & _
"rgCvoeXnkm5OvfPi2RSLXNLrAWygF6UtEOucekq9ve7O/e0iQKtwOIj1CodqwqsF" & _
"YMlIBdpTwd5Ed2qz8zw87YC8pjhKKSRf/lk7myV6VmMAZLldpGJ9VzZPrYPvH5JT" & _
"oI53V93lYRE9IwCQTDz6o2CTBKOvNfYOao9PSmCnhQVsRqGP9Md246FZV/dxssRu" & _
"FFxtbUFm3xuTsdQAw+7Lzzw9IYCpX2Nl/N3gX6T0K/CFcUHUZyX7GrGXrtaZghNB" & _
"0m6lG5kngOcLqagA"
On Error Resume Next
Dim Enroll
@ -64,7 +98,12 @@ Sub InstallCert
If err.Number <> 0 then
location = "index.php?id=18&message=<?=urlencode(_("Problems were detected with the CAcert root certificate download error:"))?> " & Hex(err)
Else
location = "index.php?id=18&message=<?=urlencode(_("The CAcert root certificate was successfully installed"))?>"
Call Enroll.InstallPKCS7(credentials2)
If err.Number <> 0 then
location = "index.php?id=18&message=<?=urlencode(_("Problems were detected with the CAcert root certificate download error:"))?> " & Hex(err)
Else
location = "index.php?id=18&message=<?=urlencode(_("The CAcert root certificate was successfully installed"))?>"
End if
End if
End If

View file

@ -13,5 +13,5 @@
PARTICULAR PURPOSE. See the License for more details.
*/ ?>
<p>
<?=$_GET['message']?>
<?=strip_tags($_GET['message'])?>
</p>

View file

@ -13,12 +13,18 @@
PARTICULAR PURPOSE. See the License for more details.
*/ ?>
<p>
<?=_("PKI Key")?><br>
Class 1 <?=_("PKI Key")?><br>
<a href="index.php?id=17"><?=_("Click here if you want to import the root certificate into Microsoft Internet Explorer")?></a><br>
<a href="certs/root.crt"><?=_("Root Certificate (PEM Format)")?></a><br>
<a href="certs/root.der"><?=_("Root Certificate (DER Format)")?></a>
</p>
<p>
Class 3 <?=_("PKI Key")?><br>
<a href="certs/class3.crt"><?=_("Root Certificate (PEM Format)")?></a><br>
<a href="certs/class3.der"><?=_("Root Certificate (DER Format)")?></a>
</p>
<p>
<?=_("GPG Key")?><br>
<a href="certs/cacert.asc"><?=_("CAcert's GPG Key")?></a><br>

View file

@ -1,9 +1,9 @@
<p><b><? printf(_("The current %s board, and roles."), "CAcert Inc."); ?></b></p>
<p>Duane Groth - <?=_("President")?><br>
Mark Lipscombe - <?=_("Vice President")?><br>
Wren Hunt - <?=_("Secretary")?><br>
Chris Martin - <?=_("Treasurer")?><br>
Nathan Reilly - <?=_("Board Member")?><br>
Tina Kubota - <?=_("Secretary")?><br>
N/A - <?=_("Treasurer")?><br>
Ryan Verner - <?=_("Board Member")?><br>
Matthew Asham - <?=_("Board Member")?><br>
Calum Morrell - <?=_("Board Member")?></p>

View file

@ -27,7 +27,7 @@
{
$loc = mysql_fetch_assoc(mysql_query("select * from `locations` where `id`='".$_GET['locid']."'"));
$display = "<ul class='top'>\n<li>\n".
"<a href='wot.php?id=1&locid=".$_GET['locid']."'>$loc[long] ("._("Listed").": $total4)</a>\n".
"<a href='wot.php?id=1&locid=".$_GET['locid']."'>$loc[name] ("._("Listed").": $total4)</a>\n".
$display;
$_GET['regid'] = $loc['regid'];
}
@ -40,7 +40,7 @@
$reg = mysql_fetch_assoc(mysql_query("select * from `regions` where `id`='".$_GET['regid']."'"));
$display = "<ul class='top'>\n<li>\n".
"<a href='wot.php?id=1&regid=".$_GET['regid']."'>$reg[long] ("._("Listed").": $total3)</a>\n".
"<a href='wot.php?id=1&regid=".$_GET['regid']."'>$reg[name] ("._("Listed").": $total3)</a>\n".
$display;
$_GET['ccid'] = $reg['ccid'];
}
@ -53,7 +53,7 @@
$cnt = mysql_fetch_assoc(mysql_query("select * from `countries` where `id`='".$_GET['ccid']."'"));
$display = "<ul class='top'>\n<li>\n".
"<a href='wot.php?id=1&ccid=".$_GET['ccid']."'>$cnt[long] ("._("Listed").": $total2)</a>\n".
"<a href='wot.php?id=1&ccid=".$_GET['ccid']."'>$cnt[name] ("._("Listed").": $total2)</a>\n".
$display;
}
@ -63,24 +63,24 @@
if(intval($_GET['ccid']) <= 0)
{
echo "<ul>\n";
$res = mysql_query("select distinct `ccid`,`countries`.`long` from `users`,`notary`,`countries` where `listme`='1' and `ccid` > 0 and
$res = mysql_query("select distinct `ccid`,`countries`.`name` from `users`,`notary`,`countries` where `listme`='1' and `ccid` > 0 and
`users`.`id`=`notary`.`to` and `ccid`=`countries`.`id` group by `notary`.`to` HAVING SUM(`points`) >= 100
order by `countries`.`long`");
order by `countries`.`name`");
while($row = mysql_fetch_assoc($res))
{
$query = "select sum(`users`.`id`) as `listed` from `users`,`notary`
where `listme`='1' and `ccid` = '$row[ccid]' and `users`.`id`=`notary`.`to`
group by `notary`.`to` HAVING SUM(`points`) >= 100";
$listed = mysql_num_rows(mysql_query($query));
echo "<li><a href='wot.php?id=1&ccid=$row[ccid]'>$row[long] ("._("Listed").": $listed)</a></li>\n";
echo "<li><a href='wot.php?id=1&ccid=$row[ccid]'>$row[name] ("._("Listed").": $listed)</a></li>\n";
}
echo "</ul>\n</li>\n</ul>\n<br>\n";
} elseif(intval($_GET['ccid']) > 0 && intval($_GET['regid']) <= 0 && intval($_GET['locid']) <= 0) {
echo "<ul>\n";
$query = "select distinct `regid`,`regions`.`long` from `users`,`notary`,`regions` where `listme`='1' and `users`.`id`=`notary`.`to` and
$query = "select distinct `regid`,`regions`.`name` from `users`,`notary`,`regions` where `listme`='1' and `users`.`id`=`notary`.`to` and
`regid`=`regions`.`id` and `users`.`ccid`='".$_GET['ccid']."' group by `notary`.`to`
HAVING SUM(`points`) >= 100 order by `regions`.`long`";
HAVING SUM(`points`) >= 100 order by `regions`.`name`";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
{
@ -88,7 +88,7 @@
where `listme`='1' and `regid` = '$row[regid]' and `users`.`id`=`notary`.`to`
group by `notary`.`to` HAVING SUM(`points`) >= 100";
$listed = mysql_num_rows(mysql_query($query));
echo "<li><a href='wot.php?id=1&regid=$row[regid]'>$row[long] ("._("Listed").": $listed)</a></li>\n";
echo "<li><a href='wot.php?id=1&regid=$row[regid]'>$row[name] ("._("Listed").": $listed)</a></li>\n";
}
echo "</ul>\n</li>\n</ul>\n</li>\n</ul>\n<br>\n";
} elseif(intval($_GET['regid']) > 0 && intval($_GET['locid']) <= 0) {
@ -103,14 +103,14 @@
`locid`='".$row['locid']."' and `locid`!=0 and `users`.`id`=`notary`.`to`
group by `notary`.`to` HAVING SUM(`points`) >= 100"));
if($listed > 0)
echo "<li><a href='wot.php?id=1&locid=$loc[id]'>$loc[long] ("._("Listed").": $listed)</a></li>\n";
echo "<li><a href='wot.php?id=1&locid=$loc[id]'>$loc[name] ("._("Listed").": $listed)</a></li>\n";
}
echo "</ul>\n</li>\n</ul>\n</li>\n</ul>\n<br>\n";
} elseif(intval($_GET['locid']) > 0){
echo "</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<br>\n";
}
$query = "select * from `users`,`notary` where `listme`='1' and
$query = "select *, `users`.`id` as `id` from `users`,`notary` where `listme`='1' and
`ccid`='".intval($_GET['ccid'])."' and `regid`='".intval($_GET['regid'])."' and
`locid`='".intval($_GET['locid'])."' and `users`.`id`=`notary`.`to`
group by `notary`.`to` HAVING SUM(`points`) >= 100 order by `points` desc";
@ -127,7 +127,7 @@
</tr>
<? while($row = mysql_fetch_assoc($list)) { ?>
<tr>
<td class="DataTD" width="100"><nobr><?=$row['fname']?></nobr></td>
<td class="DataTD" width="100"><nobr><?=$row['fname']?> <?=substr($row['lname'], 0, 1)?></nobr></td>
<td class="DataTD"><?=maxpoints($row['id'])?></td>
<td class="DataTD"><?=$row['contactinfo']?></td>
<td class="DataTD"><a href="wot.php?id=9&userid=<?=$row['id']?>"><?=_("Email Me")?></a></td>

View file

@ -87,10 +87,15 @@
{
$fromuser = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='".$row['to']."'"));
$points += $row['points'];
$name = trim($fromuser['fname']." ".$fromuser['lname']);
if($name == "")
$name = _("Deleted before Verification");
else
$name = "<a href='wot.php?id=9&userid=".$row['to']."'>$name</a>";
?>
<tr>
<td class="DataTD"><?=$row['date']?></td>
<td class="DataTD"><a href="wot.php?id=9&userid=<?=$row['to']?>"><?=$fromuser['fname']." ".$fromuser['lname']?></td>
<td class="DataTD"><?=$name?></td>
<td class="DataTD"><?=$row['points']?></td>
<td class="DataTD"><?=$row['location']?></td>
<td class="DataTD"><?=_(sprintf("%s", $row['method']))?></td>

View file

@ -32,7 +32,7 @@ if($_GET['action'] != "update")
`users`.`id`=`notary`.`to` group by `notary`.`to` HAVING SUM(`points`) >= 100"));
$loc = mysql_fetch_assoc(mysql_query("select * from `locations` where `id`='".$_GET['locid']."'"));
$display = "<ul class='top'>\n<li>\n".
"<a href='wot.php?id=7&locid=".$_GET['locid']."'>$loc[long] ("._("Listed").": $total4)</a>\n".
"<a href='wot.php?id=7&locid=".$_GET['locid']."'>$loc[name] ("._("Listed").": $total4)</a>\n".
$display;
$_GET['regid'] = $loc['regid'];
}
@ -43,7 +43,7 @@ if($_GET['action'] != "update")
`users`.`id`=`notary`.`to` group by `notary`.`to` HAVING SUM(`points`) >= 100"));
$reg = mysql_fetch_assoc(mysql_query("select * from `regions` where `id`='".$_GET['regid']."'"));
$display = "<ul class='top'>\n<li>\n".
"<a href='wot.php?id=7&regid=".$_GET['regid']."'>$reg[long] ("._("Listed").": $total3)</a>\n".
"<a href='wot.php?id=7&regid=".$_GET['regid']."'>$reg[name] ("._("Listed").": $total3)</a>\n".
$display;
$_GET['ccid'] = $reg['ccid'];
}
@ -55,7 +55,7 @@ if($_GET['action'] != "update")
group by `notary`.`to` HAVING SUM(`points`) >= 100"));
$cnt = mysql_fetch_assoc(mysql_query("select * from `countries` where `id`='".$_GET['ccid']."'"));
$display = "<ul class='top'>\n<li>\n".
"<a href='wot.php?id=7&ccid=".$_GET['ccid']."'>$cnt[long] ("._("Listed").": $total2)</a>\n".
"<a href='wot.php?id=7&ccid=".$_GET['ccid']."'>$cnt[name] ("._("Listed").": $total2)</a>\n".
$display;
}
@ -65,31 +65,31 @@ if($_GET['action'] != "update")
if(intval($_GET['ccid']) <= 0)
{
echo "<ul>\n";
$query = "select * from `countries` order by `long`";
$query = "select * from `countries` order by `name`";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
echo "<li><a href='wot.php?id=7&ccid=$row[id]'>$row[long]</a></li>\n";
echo "<li><a href='wot.php?id=7&ccid=$row[id]'>$row[name]</a></li>\n";
echo "</ul>\n</li>\n</ul></div>\n<br>\n";
} elseif(intval($_GET['regid']) <= 0) {
echo "<ul>\n";
$query = "select * from `regions` where `ccid`='".$_GET['ccid']."' order by `long`";
$query = "select * from `regions` where `ccid`='".$_GET['ccid']."' order by `name`";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
echo "<li><a href='wot.php?id=7&regid=$row[id]'>$row[long]</a></li>\n";
echo "<li><a href='wot.php?id=7&regid=$row[id]'>$row[name]</a></li>\n";
echo "</ul>\n</li>\n</ul>\n</li>\n</ul></div>\n<br>\n";
} elseif(intval($_GET['locid']) <= 0) {
echo "<ul>\n";
if($town != "")
{
$query = "select * from `locations` where `regid`='".$_GET['regid']."' and `long` < '$town'";
$query = "select * from `locations` where `regid`='".$_GET['regid']."' and `name` < '$town'";
$start = mysql_num_rows(mysql_query($query));
}
$query = "select * from `locations` where `regid`='".$_GET['regid']."' order by `long` limit $start, $limit";
$query = "select * from `locations` where `regid`='".$_GET['regid']."' order by `name` limit $start, $limit";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
echo "<li><a href='wot.php?id=7&locid=$row[id]'>$row[long]</a></li>\n";
echo "<li><a href='wot.php?id=7&locid=$row[id]'>$row[name]</a></li>\n";
echo "</ul>\n</li>\n</ul>\n</li>\n</ul></div>\n<br>\n";
$rc = mysql_num_rows(mysql_query("select * from `locations` where `regid`='".$_GET['regid']."'"));

View file

@ -40,7 +40,7 @@
</tr>
<tr>
<td class="DataTD"><?=_("To")?>:</td>
<td class="DataTD" align="left"><?=$user['fname']?></td>
<td class="DataTD" align="left"><?=$user['fname']?> <?=substr($user['lname'], 0, 1)?></td>
</tr>
<? if($userlang != "") { ?>
<tr>

View file

@ -14,6 +14,14 @@
PARTICULAR PURPOSE. See the License for more details.
*/
do
{
$ps = trim(`ps auxww|grep clientcerts.php|grep -v grep|wc -l`);
$ps += trim(`ps auxww|grep servercerts.php|grep -v grep|wc -l`);
if($ps > 1)
usleep(rand(90000, 100000));
} while($ps > 1);
$monarr = array("Jan" => 1, "Feb" => 2, "Mar" => 3, "Apr" => 4, "May" => 5, "Jun" => 6,
"Jul" => 7, "Aug" => 8, "Sep" => 9, "Oct" => 10, "Nov" => 11, "Dec" => 12);
@ -28,8 +36,14 @@
$opensslcnf = "/etc/ssl/openssl-client.cnf";
else
$opensslcnf = "/etc/ssl/openssl-client-codesign.cnf";
if($row['codesign'] == 0 && $row['rootcert'] == 2)
$opensslcnf = "/etc/ssl/class3-client.cnf";
else if($row['codesign'] != 0 && $row['rootcert'] == 2)
$opensslcnf = "/etc/ssl/class3-client-codesign.cnf";
$days = 365;
echo "echo \"/usr/bin/openssl ca -config $opensslcnf -spkac $row[csr_name] -out $row[crt_name].der -days $days -key test -batch\"\n";
//echo "echo \"/usr/bin/openssl ca -config $opensslcnf -spkac $row[csr_name] -out $row[crt_name].der -days $days -key test -batch\"\n";
$do = `echo "/usr/bin/openssl ca -config $opensslcnf -spkac $row[csr_name] -out $row[crt_name].der -days $days -key test -batch" > /tmp/test`;
$do = `/usr/bin/openssl ca -config $opensslcnf -spkac $row[csr_name] -out $row[crt_name].der -days $days -key test -batch > /dev/null 2>&1`;
$do = `/usr/bin/openssl x509 -inform DER -in $row[crt_name].der -outform PEM -out $row[crt_name] -text > /dev/null 2>&1`;
@ -87,6 +101,12 @@ echo "echo \"/usr/bin/openssl ca -config $opensslcnf -spkac $row[csr_name] -out
$opensslcnf = "/etc/ssl/openssl-client.cnf";
else
$opensslcnf = "/etc/ssl/openssl-client-codesign.cnf";
if($row['codesign'] == 0 && $row['rootcert'] == 2)
$opensslcnf = "/etc/ssl/class3-client.cnf";
else if($row['codesign'] != 0 && $row['rootcert'] == 2)
$opensslcnf = "/etc/ssl/class3-client-codesign.cnf";
$days = 365;
echo "/usr/bin/openssl ca -config $opensslcnf -in $row[csr_name] -out $row[crt_name] -days $days -key test -batch -subj '$row[subject]'\n";
$do = `/usr/bin/openssl ca -config $opensslcnf -in $row[csr_name] -out $row[crt_name] -days $days -key test -batch -subj '$row[subject]' > /dev/null 2>&1`;
@ -139,9 +159,18 @@ echo "/usr/bin/openssl ca -config $opensslcnf -in $row[csr_name] -out $row[crt_n
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
{
$do = `/usr/bin/openssl ca -config /etc/ssl/openssl-client.cnf -key test -batch -revoke $row[crt_name] > /dev/null 2>&1`;
$do = `/usr/bin/openssl ca -config /etc/ssl/openssl-client.cnf -key test -batch -gencrl -crldays 7 -crlexts crl_ext -out /tmp/cacert-revoke.crl > /dev/null 2>&1`;
$do = `/usr/bin/openssl crl -in /tmp/cacert-revoke.crl -outform DER -out /www/www/revoke.crl > /dev/null 2>&1`;
if($row['rootcert'] == 2)
{
$opensslcnf = "/etc/ssl/class3-client.cnf";
$revokecrl = "/www/www/class3-revoke.crl";
} else {
$opensslcnf = "/etc/ssl/openssl-client.cnf";
$revokecrl = "/www/www/revoke.crl";
}
$do = `/usr/bin/openssl ca -config $opensslcnf -key test -batch -revoke $row[crt_name] > /dev/null 2>&1`;
$do = `/usr/bin/openssl ca -config $opensslcnf -key test -batch -gencrl -crldays 7 -crlexts crl_ext -out /tmp/cacert-revoke.crl > /dev/null 2>&1`;
$do = `/usr/bin/openssl crl -in /tmp/cacert-revoke.crl -outform DER -out $revokecrl > /dev/null 2>&1`;
$user = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='$row[memid]'"));
if($user['language'] != "")
{
@ -170,6 +199,11 @@ echo "/usr/bin/openssl ca -config $opensslcnf -in $row[csr_name] -out $row[crt_n
$opensslcnf = "/etc/ssl/openssl-client.cnf";
else
$opensslcnf = "/etc/ssl/openssl-client-codesign.cnf";
if($row['codesign'] == 0 && $row['rootcert'] == 2)
$opensslcnf = "/etc/ssl/class3-client.cnf";
else if($row['codesign'] != 0 && $row['rootcert'] == 2)
$opensslcnf = "/etc/ssl/class3-client-codesign.cnf";
$days = 365;
// echo "/usr/bin/openssl ca -config $opensslcnf -spkac $row[csr_name] -out $row[crt_name].der -days $days -key test -batch\n";
// echo "/usr/bin/openssl x509 -inform DER -in $row[crt_name].der -outform PEM -out $row[crt_name] -text\n";die;
@ -214,6 +248,12 @@ echo "/usr/bin/openssl ca -config $opensslcnf -in $row[csr_name] -out $row[crt_n
$opensslcnf = "/etc/ssl/openssl-client.cnf";
else
$opensslcnf = "/etc/ssl/openssl-client-codesign.cnf";
if($row['codesign'] == 0 && $row['rootcert'] == 2)
$opensslcnf = "/etc/ssl/class3-client.cnf";
else if($row['codesign'] != 0 && $row['rootcert'] == 2)
$opensslcnf = "/etc/ssl/class3-client-codesign.cnf";
$days = 365;
$do = `/usr/bin/openssl ca -config $opensslcnf -in $row[csr_name] -out $row[crt_name] -days $days -key test -batch -subj '$row[subject]' > /dev/null 2>&1`;
if(filesize($row[crt_name]) > 0)
@ -250,9 +290,18 @@ echo "/usr/bin/openssl ca -config $opensslcnf -in $row[csr_name] -out $row[crt_n
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
{
$do = `/usr/bin/openssl ca -config /etc/ssl/openssl-client.cnf -key test -batch -revoke $row[crt_name] > /dev/null 2>&1`;
$do = `/usr/bin/openssl ca -config /etc/ssl/openssl-client.cnf -key test -batch -gencrl -crldays 7 -crlexts crl_ext -out /tmp/cacert-revoke.crl > /dev/null 2>&1`;
$do = `/usr/bin/openssl crl -in /tmp/cacert-revoke.crl -outform DER -out /www/www/revoke.crl > /dev/null 2>&1`;
if($row['rootcert'] == 2)
{
$opensslcnf = "/etc/ssl/class3-client.cnf";
$revokecrl = "/www/www/class3-revoke.crl";
} else {
$opensslcnf = "/etc/ssl/openssl-client.cnf";
$revokecrl = "/www/www/revoke.crl";
}
$do = `/usr/bin/openssl ca -config $opensslcnf -key test -batch -revoke $row[crt_name] > /dev/null 2>&1`;
$do = `/usr/bin/openssl ca -config $opensslcnf -key test -batch -gencrl -crldays 7 -crlexts crl_ext -out /tmp/cacert-revoke.crl > /dev/null 2>&1`;
$do = `/usr/bin/openssl crl -in /tmp/cacert-revoke.crl -outform DER -out $revokecrl > /dev/null 2>&1`;
$user = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='$row[memid]'"));
if($user['language'] != "")
{

View file

@ -14,6 +14,14 @@
PARTICULAR PURPOSE. See the License for more details.
*/
do
{
$ps = trim(`ps auxww|grep clientcerts.php|grep -v grep|wc -l`);
$ps += trim(`ps auxww|grep servercerts.php|grep -v grep|wc -l`);
if($ps > 1)
usleep(rand(90000, 100000));
} while($ps > 1);
$monarr = array("Jan" => 1, "Feb" => 2, "Mar" => 3, "Apr" => 4, "May" => 5, "Jun" => 6,
"Jul" => 7, "Aug" => 8, "Sep" => 9, "Oct" => 10, "Nov" => 11, "Dec" => 12);
@ -74,9 +82,15 @@
fputs($fp, "subjectAltName = $SAN\n");
fclose($fp);
$newsubject = str_replace("//", "/", $newsubject);
//echo "/usr/bin/openssl ca -config /etc/ssl/openssl-server.cnf -in $row[csr_name] -out $row[crt_name] -days $days -key test -batch -subj '$newsubject' -extfile '$tmpname'\n"; die;
$do = `/usr/bin/openssl ca -config /etc/ssl/openssl-server.cnf -in $row[csr_name] -out $row[crt_name] -days $days -key test -batch -subj '$newsubject' -extfile '$tmpname' 2>&1`;
unlink($tmpname);
if($row['rootcert'] == 2)
$opensslcnf = "/etc/ssl/class3-server.cnf";
else
$opensslcnf = "/etc/ssl/openssl-server.cnf";
$do = `echo "/usr/bin/openssl ca -config $opensslcnf -in $row[csr_name] -out $row[crt_name] -days $days -key test -batch -subj '$newsubject' -extfile '$tmpname'" >> /tmp/openssl.tmp`;
$do = `/usr/bin/openssl ca -config $opensslcnf -in $row[csr_name] -out $row[crt_name] -days $days -key test -batch -subj '$newsubject' -extfile '$tmpname' 2>&1`;
// unlink($tmpname);
$dom = mysql_fetch_assoc(mysql_query("select * from `domains` where `id`='$row[domid]'"));
$user = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='$dom[memid]'"));
if(filesize($row['crt_name']) > 0 && intval($user['id']) > 0)
@ -119,8 +133,13 @@
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
{
$do = `/usr/bin/openssl ca -config /etc/ssl/openssl-server.cnf -key test -batch -revoke $row[crt_name] > /dev/null 2>&1`;
$do = `/usr/bin/openssl ca -config /etc/ssl/openssl-server.cnf -key test -batch -gencrl -crldays 7 -crlexts crl_ext -out /tmp/cacert-revoke.crl > /dev/null 2>&1`;
if($row['rootcert'] == 2)
$opensslcnf = "/etc/ssl/class3-server.cnf";
else
$opensslcnf = "/etc/ssl/openssl-server.cnf";
$do = `/usr/bin/openssl ca -config $opensslcnf -key test -batch -revoke $row[crt_name] > /dev/null 2>&1`;
$do = `/usr/bin/openssl ca -config $opensslcnf -key test -batch -gencrl -crldays 7 -crlexts crl_ext -out /tmp/cacert-revoke.crl > /dev/null 2>&1`;
$do = `/usr/bin/openssl crl -in /tmp/cacert-revoke.crl -outform DER -out ../www/revoke.crl > /dev/null 2>&1`;
$dom = mysql_fetch_assoc(mysql_query("select * from `domains` where `id`='".$row['domid']."'"));
$user = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='".$dom['memid']."'"));
@ -171,8 +190,14 @@
fputs($fp, "subjectAltName = $SAN\n");
fclose($fp);
$newsubject = str_replace("//", "/", $newsubject);
//echo "/usr/bin/openssl ca -config /etc/ssl/openssl-server.cnf -in $row[csr_name] -out $row[crt_name] -days $days -key test -batch -subj '$newsubject' -extfile '$tmpname'\n"; die;
$do = `/usr/bin/openssl ca -config /etc/ssl/openssl-server-org.cnf -in $row[csr_name] -out $row[crt_name] -days $days -key test -batch -subj '$newsubject' -extfile '$tmpname' > /dev/null 2>&1`;
if($row['rootcert'] == 2)
$opensslcnf = "/etc/ssl/class3-server.cnf";
else
$opensslcnf = "/etc/ssl/openssl-server.cnf";
$do = `echo "/usr/bin/openssl ca -config $opensslcnf -in $row[csr_name] -out $row[crt_name] -days $days -key test -batch -subj '$newsubject' -extfile '$tmpname'" >> /tmp/openssl.tmp`;
$do = `/usr/bin/openssl ca -config $opensslcnf -in $row[csr_name] -out $row[crt_name] -days $days -key test -batch -subj '$newsubject' -extfile '$tmpname' > /dev/null 2>&1`;
unlink($tmpname);
if(filesize($row['crt_name']) > 0)
{
@ -209,8 +234,13 @@
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
{
$do = `/usr/bin/openssl ca -config /etc/ssl/openssl-server-org.cnf -key test -batch -revoke $row[crt_name] > /dev/null 2>&1`;
$do = `/usr/bin/openssl ca -config /etc/ssl/openssl-server-org.cnf -key test -batch -gencrl -crldays 7 -crlexts crl_ext -out /tmp/cacert-revoke.crl > /dev/null 2>&1`;
if($row['rootcert'] == 2)
$opensslcnf = "/etc/ssl/class3-server.cnf";
else
$opensslcnf = "/etc/ssl/openssl-server.cnf";
$do = `/usr/bin/openssl ca -config $opensslcnf -key test -batch -revoke $row[crt_name] > /dev/null 2>&1`;
$do = `/usr/bin/openssl ca -config $opensslcnf -key test -batch -gencrl -crldays 7 -crlexts crl_ext -out /tmp/cacert-revoke.crl > /dev/null 2>&1`;
$do = `/usr/bin/openssl crl -in /tmp/cacert-revoke.crl -outform DER -out ../www/revoke.crl > /dev/null 2>&1`;
mysql_query("update `orgdomaincerts` set `revoked`=FROM_UNIXTIME(UNIX_TIMESTAMP()) where `id`='$row[id]'");
}

View file

@ -61,10 +61,20 @@
else
$max = 50;
if(substr($URL, 0, strlen("https://www.thawte.com/cgi/personal/wot/directory.exe?node=")) !=
"https://www.thawte.com/cgi/personal/wot/directory.exe?node=")
{
showheader(_("Thawte Points Transfer"));
echo _("You failed to enter a valid Thawte Notary URL.");
showfooter();
exit;
}
if($tmp['points'] >= $max)
{
showheader(_("Thawte Points Transfer"));
echo _("Your request would not gain you any more points and will not be taken any further.").sprintf(_("You have %s points already and you would have been issued up to %s points."), $tmp['points'], $max);
echo _("Your request would not gain you any more points and will not be taken any further.").
sprintf(_("You have %s points already and you would have been issued up to %s points."), $tmp['points'], $max);
showfooter();
exit;
}
@ -123,16 +133,25 @@
sendmail($user['email'], "[CAcert.org] Thawte Notary Points Transfer", $body, "website-form@cacert.org", "returns@cacert.org", "", "CAcert Tverify");
} else if($id == 1) {
$body = "There is a new valid request for thawte points tranfer, details as follows:\n\n";
$body .= "Primary email address: $email ($memid)\n";
$body .= "Certificate Subject: $CN\n";
if($URL != "")
$body .= "Notary URL: $URL\n";
if($URL != "" && $nofile == 0)
$body .= "PhotoID URL: https://www.cacert.org/account.php?id=51&photoid=$tverify\n";
$body .= "To vote on this application, go to: https://www.cacert.org/account.php?id=52&uid=$tverify\n\n";
$body .= "\nCurrent Points: ".$tmp['points']."\n\n";
// $body .= "Primary email address: $email ($memid)\n";
// $body .= "Certificate Subject: $CN\n";
// if($URL != "")
// $body .= "Notary URL: $URL\n";
// if($URL != "" && $nofile == 0)
// $body .= "PhotoID URL: https://www.cacert.org/account.php?id=51&photoid=$tverify\n";
$body .= "\nTo vote on this application, go to: https://www.cacert.org/account.php?id=52&uid=$tverify\n\n";
// $body .= "\nCurrent Points: ".$tmp['points']."\n\n";
$body .= "We know that by signing into https://tverify.cacert.org that\n";
$body .= "1. they have possession of a cert issued from Thawte\n";
$body .= "2. the person named in the cert has been verified by Thawte's Web of Trust\n";
$body .= "3. at least 1 of the emails listed as valid in that cert belongs to a\n";
$body .= "CAcert.org user\n\n";
$body .= "It's up to us as voting members to verify the details that can't be\n";
$body .= "programatically handled, that means checking the ID, and signing into\n";
$body .= "the Thawte site and validating their name is listed as a notary.\n\n";
$body .= "Best regards"."\n";
$body .= "CAcert Support Team";

81
www/api/ccsr.php Normal file
View file

@ -0,0 +1,81 @@
<?
$username = mysql_escape_string($_POST['username']);
$password = mysql_escape_string($_POST['password']);
$query = "select * from `users` where `email`='$username' and `password`=password('$password')";
$res = mysql_query($query);
if(mysql_num_rows($res) != 1)
die("403,That username couldn't be found\n");
$user = mysql_fetch_assoc($res);
$memid = $user['id'];
$emails = "";
foreach($_POST['email'] as $email)
{
$email = mysql_escape_string(trim($email));
$query = "select * from `email` where `memid`='$memid' and `hash`='' and `deleted`=0 and `email`='$email'";
$res = mysql_query($query);
if(mysql_num_rows($res) > 0)
{
$row = mysql_fetch_assoc($res);
$id = $row['id'];
$emails[$id] = $email;
}
}
if(count($emails) <= 0)
die("404,Wasn't able to match any emails sent against your account");
$query = "select sum(`points`) as `points` from `notary` where `to`='$memid' group by `to`";
$row = mysql_fetch_assoc(mysql_query($query));
$points = $row['points'];
$name = "CAcert WoT User\n";
if($points >= 50)
{
if($_POST['name'] == $user['fname']." ".$user['lname'] ||
$_POST['name'] == $user['fname']." ".$user['mname']." ".$user['lname'] ||
$_POST['name'] == $user['fname']." ".$user['lname']." ".$user['suffix'] ||
$_POST['name'] == $user['fname']." ".$user['mname']." ".$user['lname']." ".$user['suffix'])
$name = $_POST['name'];
}
$codesign = 0;
if($user['codesign'] == "1" && $_POST['codesign'] == "1" && $points >= 100)
$codesign = 1;
$CSR = trim($_POST['optionalCSR']);
$tmpname = tempnam("/tmp", "CSR");
$tempnam = tempnam("/tmp", "CSR");
$fp = fopen($tmpname, "w");
fputs($fp, $CSR);
fclose($fp);
$do = `/usr/bin/openssl req -in $tmpname -out $tempnam`;
@unlink($tmpfname);
if(filesize($tempnam) <= 0)
die("404,Invalid or missing CSR");
$csrsubject = "/CN=$name";
foreach($emails as $id => $email)
$csrsubject .= "/emailAddress=".$email;
$query = "insert into `emailcerts` set `CN`='".$user['email']."', `keytype`='MS',
`memid`='".$user['id']."', `created`=FROM_UNIXTIME(UNIX_TIMESTAMP()),
`subject`='$csrsubject', `codesign`='$codesign'";
mysql_query($query);
$certid = mysql_insert_id();
$CSRname = "/www/csr/client-$certid.csr";
rename($tempnam, $CSRname);
mysql_query("update `emailcerts` set `csr_name`='$CSRname' where `id`='$certid'");
foreach($emails as $emailid => $email)
mysql_query("insert into `emaillink` set `emailcertsid`='$certid', `emailid`='$emailid'");
$do = `../../scripts/runclient`;
sleep(1);
$query = "select * from `emailcerts` where `id`='$certid' and `crt_name` != ''";
$res = mysql_query($query);
if(mysql_num_rows($res) <= 0)
die("404,Your certificate request has failed");
$cert = mysql_fetch_assoc($res);
echo "200,Authentication Ok\n";
readfile($cert['crt_name']);
?>

31
www/api/cemails.php Normal file
View file

@ -0,0 +1,31 @@
<?
$username = mysql_escape_string($_GET['username']);
$password = mysql_escape_string($_GET['password']);
$query = "select * from `users` where `email`='$username' and `password`=password('$password')";
$res = mysql_query($query);
if(mysql_num_rows($res) != 1)
die("403,That username couldn't be found\n");
echo "200,Authentication Ok\n";
$user = mysql_fetch_assoc($res);
$memid = $user['id'];
$query = "select sum(`points`) as `points` from `notary` where `to`='$memid' group by `to`";
$row = mysql_fetch_assoc(mysql_query($query));
$points = $row['points'];
echo "CS=".$user['codesign']."\n";
echo "NAME=CAcert WoT User\n";
if($points >= 50)
{
echo "NAME=".$user['fname']." ".$user['lname']."\n";
if($user['mname'] != "")
echo "NAME=".$user['fname']." ".$user['mname']." ".$user['lname']."\n";
if($user['suffix'] != "")
echo "NAME=".$user['fname']." ".$user['lname']." ".$user['suffix']."\n";
if($user['mname'] != "" && $user['suffix'] != "")
echo "NAME=".$user['fname']." ".$user['mname']." ".$user['lname']." ".$user['suffix']."\n";
}
$query = "select * from `email` where `memid`='$memid' and `hash`='' and `deleted`=0";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
echo "EMAIL=".$row['email']."\n";
?>

4
www/api/index.php Normal file
View file

@ -0,0 +1,4 @@
<?
header("location: ..");
exit;
?>

View file

@ -244,6 +244,9 @@
$pdf->Open();
$pdf->AddPage();
$pdf->Body($_GET['name'], $_GET['dob'], $_GET['email'], $_GET['assurer'], $_GET['date'], $maxpoints, $_GET['document1'], $_GET['document2'], $_GET['location']);
header("Expires: ".gmdate("D, j M Y G:i:s \G\M\T", time()+10800));
header("Cache-Control: public, max-age=10800");
header("Pragma: cache");
$pdf->output();
exit;
?>

File diff suppressed because it is too large Load diff

View file

@ -17,9 +17,9 @@
$id = intval($id);
$oldid = intval($oldid);
if($id == 17)
if($id == 17 || $id == 20)
{
include_once("index/17.php");
include_once("index/$id.php");
exit;
}
@ -355,6 +355,9 @@
$body .= _("Best regards")."\n"._("CAcert.org Support!");
sendmail($_SESSION['signup']['email'], "[CAcert.org] "._("Mail Probe"), $body, "support@cacert.org", "", "", "CAcert Support");
foreach($_SESSION['signup'] as $key => $val)
$_SESSION['signup'][$key] = "";
unset($_SESSION['signup']);
}
}

View file

@ -1,7 +1,7 @@
<?
if($process == "Confirm, I agree to these terms and conditions" && $iagree == "yes")
{
$output_file = $fname = "cacert-20050702.tar.bz2";
$output_file = $fname = "cacert-20050724.tar.bz2";
header('Pragma: public');
@ -35,7 +35,7 @@ Source Code License Terms</p>
<li>review the source code in these source code files in order to verify that there are no unknown vulnerabilities or the like and in order to make your own assessment of the security features of CAcert software; </li>
<li>compile the any C source code that may be contained in the CAcert software into an executable code version of the program; </li>
<li>run the executable code version on one computer solely in order to assist in your testing and analysis of the security features of the CAcert software; and </li>
<li>modify the source code in the course of exercising the rights granted above. </li>
<li>modify the source code in the course of exercising the rights granted above, or for the explicit purpose of feature enhancements or improvements of the CAcert Inc. operated services.</li>
</ol>
</li>
<li>
@ -47,10 +47,10 @@ Source Code License Terms</p>
<li>give (meaning sell, loan, distribute, or transfer) the source code files to anyone else (unless you are downloading the source code files in the course of performing duties for your employer, in which case you can share the source code files with fellow employees as long as you don't make additional copies and otherwise comply with these license terms ' if this seems overly restrictive, remember that other people who want to have access to these source code files can also come to the CAcert web site to download them, but for important legal reasons we need to require that each copy of the source code be obtained directly from CAcert); </li>
<li>use versions of CAcert software created for any purpose or reason other than verifying that there are no unknown vulnerabilities or the like or otherwise making your own assessment of the integrity of the source code and the security features of the CAcert software; or </li>
</ol>
<p>If you have any questions about what is or is not permitted under these license terms or if you would like to obtain the right to use CAcert source code in ways that are not allowed under these license terms, you should contact CAcert at <a href="mailto:bugs@cacert.org">bugs@cacert.org </a>. </p>
<p>If you have any questions about what is or is not permitted under these license terms or if you would like to obtain the right to use CAcert source code in ways that are not allowed under these license terms, you should contact CAcert at <a href="http://bugs.cacert.org">http://bugs.cacert.org</a>. </p>
</li>
<li>
<p>Reporting Bugs and the Like. If you discover any 'bug' or problem in the source code in these files, or anything you think is a 'bug' or problem in the source code or a deficiency or weakness in the security features of the CAcert software, you should report the bug, problem, deficiency, or weakness (including any suggested code fixes you have prepared or any other information you have that could help CAcert reproduce, verify, and correct it) to CAcert at <a href="mailto:bugs@cacert.org">bugs@cacert.org </a>. </p>
<p>Reporting Bugs and the Like. If you discover any 'bug' or problem in the source code in these files, or anything you think is a 'bug' or problem in the source code or a deficiency or weakness in the security features of the CAcert software, you should report the bug, problem, deficiency, or weakness (including any suggested code fixes you have prepared or any other information you have that could help CAcert reproduce, verify, and correct it) to CAcert at <a href="http://bugs.cacert.org">http://bugs.cacert.org</a>.</p>
<p>CAcert will endeavor to send an email acknowledgment (signed by CAcert) within five business days for those reports that describe a serious security bug, problem, deficiency, or weakness in the CAcert software. If you do not receive such an email acknowledgment to a report you submitted (and you think you should have), please re-submit the report to CAcert as soon as possible. </p>
<p>You agree that you will not post any information about any bug, problem, deficiency, or weakness in the CAcert software on any web site or electronic bulletin board, or otherwise disclose or provide any such information to anyone else, unless you have first reported it to CAcert and until at least 30 days after CAcert sends its email acknowledgment to you. </p>
<p>CAcert takes reported bugs and security weaknesses in its software very seriously and strives to offer its customers the most secure and reliable software products available (given the functionality, features, and price of the software). However, CAcert cannot promise that it will respond to, analyze, attempt to correct, or correct each and every bug or security weakness that is reported to CAcert, and hence CAcert will have no obligation to you under these license terms to respond to, analyze, attempt to correct, or correct any bug, problem, deficiency, or weakness you report to CAcert. If CAcert does correct a bug, problem, deficiency, or weakness in a CAcert software program you report to CAcert under these license terms, the correction will be made available to CAcert's customers in a subsequent patch, update, or general release of the affected CAcert software. </p>

View file

@ -1,6 +1,12 @@
<?
loadem("index");
showheader(_("Welcome to CAcert.org"));
function tc($sql)
{
$row = mysql_fetch_assoc($sql);
return($row['count']);
}
?>
<h1>CAcert.org <?=_("Statistics")?></h1>
@ -10,34 +16,34 @@
</tr>
<tr>
<td class="DataTD"><?=_("Verified Users")?>:</td>
<td class="DataTD"><?=number_format(mysql_num_rows(mysql_query("select * from `users` where `verified`=1")))?></td>
<td class="DataTD"><?=number_format(tc(mysql_query("select count(`id`) as `count` from `users` where `verified`=1")))?></td>
</tr>
<tr>
<td class="DataTD"><?=_("Verified Emails")?>:</td>
<td class="DataTD"><?=number_format(mysql_num_rows(mysql_query("select * from `email` where `hash`='' and `deleted`=0")))?></td>
<td class="DataTD"><?=number_format(tc(mysql_query("select count(`id`) as `count` from `email` where `hash`='' and `deleted`=0")))?></td>
</tr>
<tr>
<td class="DataTD"><?=_("Verified Domains")?>:</td>
<td class="DataTD"><?=number_format(mysql_num_rows(mysql_query("select * from `domains` where `hash`='' and `deleted`=0")))?></td>
<td class="DataTD"><?=number_format(tc(mysql_query("select count(`id`) as `count` from `domains` where `hash`='' and `deleted`=0")))?></td>
</tr>
<?
$certs = mysql_num_rows(mysql_query("select * from `domaincerts`"));
$certs += mysql_num_rows(mysql_query("select * from `emailcerts`"));
$certs += mysql_num_rows(mysql_query("select * from `gpg`"));
$certs += mysql_num_rows(mysql_query("select * from `orgdomaincerts`"));
$certs += mysql_num_rows(mysql_query("select * from `orgemailcerts`"));
$certs = tc(mysql_query("select count(`id`) as `count` from `domaincerts`"));
$certs += tc(mysql_query("select count(`id`) as `count` from `emailcerts`"));
$certs += tc(mysql_query("select count(`id`) as `count` from `gpg`"));
$certs += tc(mysql_query("select count(`id`) as `count` from `orgdomaincerts`"));
$certs += tc(mysql_query("select count(`id`) as `count` from `orgemailcerts`"));
?>
<tr>
<td class="DataTD"><?=_("Certificates Issued")?>:</td>
<td class="DataTD"><?=number_format($certs)?></td>
</tr>
<?
$certs = mysql_num_rows(mysql_query("select * from `domaincerts` where `revoked`=0 and `expire`>NOW()"));
$certs += mysql_num_rows(mysql_query("select * from `emailcerts` where `revoked`=0 and `expire`>NOW()"));
$certs += mysql_num_rows(mysql_query("select * from `gpg` where `expire`<=NOW()"));
$certs += mysql_num_rows(mysql_query("select * from `orgdomaincerts` where `revoked`=0 and `expire`>NOW()"));
$certs += mysql_num_rows(mysql_query("select * from `orgemailcerts` where `revoked`=0 and `expire`>NOW()"));
$totalassurers = mysql_num_rows(mysql_query("select * from notary group by `to` having sum(`points`) >= 100"));
$certs = tc(mysql_query("select count(`id`) as `count` from `domaincerts` where `revoked`=0 and `expire`>NOW()"));
$certs += tc(mysql_query("select count(`id`) as `count` from `emailcerts` where `revoked`=0 and `expire`>NOW()"));
$certs += tc(mysql_query("select count(`id`) as `count` from `gpg` where `expire`<=NOW()"));
$certs += tc(mysql_query("select count(`id`) as `count` from `orgdomaincerts` where `revoked`=0 and `expire`>NOW()"));
$certs += tc(mysql_query("select count(`id`) as `count` from `orgemailcerts` where `revoked`=0 and `expire`>NOW()"));
$totalassurers = tc(mysql_query("select count(`id`) as `count` from notary group by `to` having sum(`points`) >= 100"));
?>
<tr>
<td class="DataTD"><?=_("Valid Certificates")?>:</td>
@ -45,15 +51,16 @@
</tr>
<tr>
<td class="DataTD"><?=_("Assurances Made")?>:</td>
<td class="DataTD"><?=number_format(mysql_num_rows(mysql_query("select * from `notary`")))?></td>
<td class="DataTD"><?=number_format(tc(mysql_query("select count(`id`) as `count` from `notary`")))?></td>
</tr>
<tr>
<td class="DataTD"><?=_("Users with 1-49 Points")?>:</td>
<td class="DataTD"><?=number_format(mysql_num_rows(mysql_query("select * from `notary` group by `to` having sum(`points`) > 0 and sum(`points`) < 50")))?></td>
<td class="DataTD"><?=number_format(tc(mysql_query(
"select count(`id`) as `count` from `notary` group by `to` having sum(`points`) > 0 and sum(`points`) < 50")))?></td>
</tr>
<tr>
<td class="DataTD"><?=_("Users with 50-99 Points")?>:</td>
<td class="DataTD"><?=number_format(mysql_num_rows(mysql_query("select * from `notary` group by `to` having sum(`points`) >= 50 and sum(`points`) < 100")))?></td>
<td class="DataTD"><?=number_format(tc(mysql_query("select count(`id`) as `count` from `notary` group by `to` having sum(`points`) >= 50 and sum(`points`) < 100")))?></td>
</tr>
<tr>
<td class="DataTD"><?=_("Assurers")?>:</td>
@ -77,13 +84,13 @@
</tr>
<? for($i = 0; $i < 12; $i++) {
$date = date("Y-m", mktime(0,0,0,date("m") - $i,1,date("Y")));
$totalusers += $users = mysql_num_rows(mysql_query("select * from `users` where `created` like '$date%' and `verified`=1"));
$totassurers += $assurers = mysql_num_rows(mysql_query("select * from `notary` where `when` like '$date%' and `method`!='Administrative Increase' group by `to` having sum(`points`) >= 100"));
$certs = mysql_num_rows(mysql_query("select * from `domaincerts` where `created` like '$date%'"));
$certs += mysql_num_rows(mysql_query("select * from `emailcerts` where `created` like '$date%'"));
$certs += mysql_num_rows(mysql_query("select * from `gpg` where `issued` like '$date%'"));
$certs += mysql_num_rows(mysql_query("select * from `orgdomaincerts` where `created` like '$date%'"));
$certs += mysql_num_rows(mysql_query("select * from `orgemailcerts` where `created` like '$date%'"));
$totalusers += $users = tc(mysql_query("select count(`id`) as `count` from `users` where `created` like '$date%' and `verified`=1"));
$totassurers += $assurers = tc(mysql_query("select count(`id`) as `count` from `notary` where `when` like '$date%' and `method`!='Administrative Increase' group by `to` having sum(`points`) >= 100"));
$certs = tc(mysql_query("select count(`id`) as `count` from `domaincerts` where `created` like '$date%'"));
$certs += tc(mysql_query("select count(`id`) as `count` from `emailcerts` where `created` like '$date%'"));
$certs += tc(mysql_query("select count(`id`) as `count` from `gpg` where `issued` like '$date%'"));
$certs += tc(mysql_query("select count(`id`) as `count` from `orgdomaincerts` where `created` like '$date%'"));
$certs += tc(mysql_query("select count(`id`) as `count` from `orgemailcerts` where `created` like '$date%'"));
$totalcerts += $certs;
?>
<tr>
@ -114,13 +121,13 @@
<?
$totalcerts = $totalusers = $totassurers = 0;
for($i = date("Y"); $i >= 2002; $i--) {
$totalusers += $users = mysql_num_rows(mysql_query("select * from `users` where `created` like '$i%' and `verified`=1"));
$totassurers += $assurers = mysql_num_rows(mysql_query("select * from `notary` where `when` like '$i%' and `method`!='Administrative Increase' group by `to` having sum(`points`) >= 100"));
$certs = mysql_num_rows(mysql_query("select * from `domaincerts` where `created` like '$i%'"));
$certs += mysql_num_rows(mysql_query("select * from `emailcerts` where `created` like '$i%'"));
$certs += mysql_num_rows(mysql_query("select * from `gpg` where `issued` like '$i%'"));
$certs += mysql_num_rows(mysql_query("select * from `orgdomaincerts` where `created` like '$i%'"));
$certs += mysql_num_rows(mysql_query("select * from `orgemailcerts` where `created` like '$i%'"));
$totalusers += $users = tc(mysql_query("select count(`id`) as `count` from `users` where `created` like '$i%' and `verified`=1"));
$totassurers += $assurers = tc(mysql_query("select count(`id`) as `count` from `notary` where `when` like '$i%' and `method`!='Administrative Increase' group by `to` having sum(`points`) >= 100"));
$certs = tc(mysql_query("select count(`id`) as `count` from `domaincerts` where `created` like '$i%'"));
$certs += tc(mysql_query("select count(`id`) as `count` from `emailcerts` where `created` like '$i%'"));
$certs += tc(mysql_query("select count(`id`) as `count` from `gpg` where `issued` like '$i%'"));
$certs += tc(mysql_query("select count(`id`) as `count` from `orgdomaincerts` where `created` like '$i%'"));
$certs += tc(mysql_query("select count(`id`) as `count` from `orgemailcerts` where `created` like '$i%'"));
$totalcerts += $certs;
?>
<tr>

View file

@ -480,16 +480,22 @@ td.storyLeft{
/********************* end **********************/
.DataTD input, .DataTD textarea {
FONT-SIZE: 92%;
}
.DataTD select, .DataTD option {
FONT-SIZE: 92%;
}
.DataTD {
background-color: #E2E2E2;
border-style: inset;
border-width: 1px;
FONT-SIZE: 8pt;
FONT-SIZE: 92%;
COLOR: #000000;
FONT-FAMILY: Arial, Tahoma, Verdana, Helvetica, sans-serif;
}
.DataTD {
background: #ffffff;
padding: 1px 5px 1px 5px;
border: 1px #CFCFCF solid;
@ -501,12 +507,10 @@ td.storyLeft{
background-color: #EFEDED;
border-style: inset;
border-width: 1px;
FONT-SIZE: 8pt;
FONT-SIZE: 92%;
COLOR: #000000;
FONT-FAMILY: Arial, Tahoma, Verdana, Helvetica, sans-serif;
}
.DataTDGrey {
padding: 1px 5px 1px 5px;
border: 1px #CFCFCF solid;
border-left: 1px #CFCFCF dotted;
@ -517,12 +521,10 @@ td.storyLeft{
background-color: #E2E2E2;
border-style: inset;
border-width: 1px;
FONT-SIZE: 8pt;
FONT-SIZE: 92%;
COLOR: #000000;
FONT-FAMILY: Arial, Tahoma, Verdana, Helvetica, sans-serif;
}
.DataTDNotDotted {
background: #ffffff;
padding: 1px 5px 1px 5px;
border: 1px #CFCFCF solid;

View file

@ -188,6 +188,9 @@
$pdf->Open();
$pdf->AddPage();
$pdf->Body($_GET['name'], $_GET['dob'], $_GET['email'], $_GET['date']);
header("Expires: ".gmdate("D, j M Y G:i:s \G\M\T", time()+10800));
header("Cache-Control: public, max-age=10800");
header("Pragma: cache");
$pdf->output();
exit;
?>

View file

@ -85,8 +85,7 @@
$id = $oldid;
unset($oldid);
$_SESSION['_config']['error'] = _("I'm sorry, there was no email matching what you entered in the system. Please double check your information.");
if(maxpoints() >= 150)
$_SESSION['_config']['noemailfound'] = 1;
$_SESSION['_config']['noemailfound'] = 1;
} else {
$_SESSION['_config']['notarise'] = mysql_fetch_assoc($res);
}
@ -333,6 +332,22 @@
showheader(_("My CAcert.org Account!"));
echo "<p>"._("Shortly you and the person you were assuring will receive an email confirmation. There is no action on your behalf required to complete this.")."</p>";
?><form method="post" action="wot.php">
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
<tr>
<td colspan="2" class="title"><?=_("Assure Someone")?></td>
</tr>
<tr>
<td class="DataTD"><?=_("Email")?>:</td>
<td class="DataTD"><input type="text" name="email" value=""></td>
</tr>
<tr>
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Next")?>"></td>
</tr>
</table>
<input type="hidden" name="oldid" value="5">
</form>
<?
showfooter();
exit;
}