updates + added api
This commit is contained in:
parent
13a851559a
commit
40a0cc9ebd
43 changed files with 3715 additions and 2256 deletions
|
@ -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'"));
|
||||
|
|
|
@ -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");
|
||||
|
|
760
locale/ar.po
760
locale/ar.po
File diff suppressed because it is too large
Load diff
658
locale/bg.po
658
locale/bg.po
File diff suppressed because one or more lines are too long
163
locale/da.po
163
locale/da.po
|
@ -7,7 +7,7 @@ msgstr ""
|
|||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
||||
"PO-Revision-Date: 2005-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ø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øjelse vil hæ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øjelse i loggen. Der kan maksimalt tildeles forhø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år og følger nedenstående regler, for at sikre at ansø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ået at du behandler oplysningerne om ansøgeren fortroligt og ikke videregivere disse uden ansø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æret længe under vejs, men ventetiden har væ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ælg de typer meddelelser du ikk eønsker at modtager. For at nationale, regions og område meddelelser kan fungere, skal du oplyse din lokation når din konto er bekræftet og du er logget ind i systemet."
|
||||
|
||||
#: includes/general_stuff.php:53
|
||||
msgid "Join"
|
||||
|
@ -1163,7 +1163,7 @@ msgstr "Nøgle styrke:"
|
|||
|
||||
#: www/help/3.php:4
|
||||
msgid "Key generation process"
|
||||
msgstr ""
|
||||
msgstr "Nøgle oprettelses forlø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æ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å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ørgsmå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ørgsmål til glemt kodesætning. Indtast 5 spørgsmål og de tilhørende svar, til brug for sikkerhedsbekræ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ø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æ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 øjeblikket utilfredse med de kommercielle tilbud. Mange ønsker kun at communikere med personer de kender, eller ønske at sikre deres webmail imod at andre ser den. f.eks ved at sniffe deres netværkstrafik. Hvorfor abonnere på services som ikke er indrettet til at håndtere dette og ydermere betale skyhø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ørre andel til CAcert projektet, med kode, dokumentation, oversættelse og forsikringer og ønsker at blive nævnt - så 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 åbnet, læ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å og lyder for døve øren. Den mest effektive vej til at bekæ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ære meget svæ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ænke. Hvorfor så det? Fordi kryptering kan knækkes, men det tager meget komputerkraft og der er ikke være nok computerkraft til at overvå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æ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æste trin er at du sender indholdet af server.csr filen til CAcert websiden. Det skal se ud PRÆCIST som eksemplet herunder, ellers kan serveren afvise din forespørgsel, fordi det ser ud til at væ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æ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ø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å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øjt til himlen i CAcert."
|
||||
|
||||
#: www/index/0.php:115
|
||||
msgid "None; $10 USD per year membership fee."
|
||||
msgstr ""
|
||||
msgstr "Ingen; $10 USD årligt for medlemsskab."
|
||||
|
||||
#: includes/general_stuff.php:57
|
||||
msgid "Normal Login"
|
||||
|
@ -1489,7 +1489,7 @@ msgstr "Ikke gyldig epost adresse. Kan ikke fortsæ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ø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ørste å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øver dit eget certifikat for digitalt at underskrive dine emails. Certifikat myndigheden kræver penge for at give dig et sådant. Behøver jeg at sige mere...? Der er dog ved at være organisationer der tilbyder gratis certifikater. Men den åbenlyse mangel på financiering af projekteterne og behovet for penge til at disse organisationer kan etablere sikre certifikats myndigheder ikke er dækket. Det hele afhænge at tilliden, og at og en beslutning hos alle brugere om at stole på en ukendt certifikat myndighed. Når man først har valgt at stole på en certifikat myndighed kan du herefter stole på de certifikater som denne myndighed udsteder. Med andre ord: Hvis du stoler på, og accpterer de certifikater som den certifikats myndighed jeg bruger udsteder, så kan du også stole på 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år du har besluttet dig til at bestille et SSL server certifikat skal du udfylde denne aftale. Læs den grundigt igennem. Din certifikats ansøgning (CSR) kan kun behandles hvis du accepterer og forstå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år du har bekræftiget dit firma, vil du se disse muligheder i menuen. Der kan du udstede så mange certifikater du ønsker uden at bekræfte de enkelte email addresser på domænet. Yderligere er det muligt at få 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år du har indsendt det, vil systemet behandle din forespø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ø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ødtes med ansøgeren."
|
||||
|
||||
#: www/help/3.php:8
|
||||
msgid "Open Directory Security folder"
|
||||
msgstr ""
|
||||
msgstr "Å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å LAD VÆRE MED AT FORTSÆ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ælge denne boks vil du automatisk få dit navn inkluderet i certifikatet, uanset hvad du væ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ø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ø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ø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øber efter 24 må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å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ærmbillede af IIS 5.0"
|
||||
|
||||
#: www/wot/7.php:127
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
msgstr "Søg"
|
||||
|
||||
#: www/wot/7.php:120
|
||||
msgid "Search this region"
|
||||
msgstr ""
|
||||
msgstr "Sø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æ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ælg bitlængde. Vi anbefaler en nøglelængde på 1024 bits."
|
||||
|
||||
#: www/help/3.php:11
|
||||
msgid "Select 'Create a new certificate'"
|
||||
|
@ -1883,7 +1883,7 @@ msgstr "Væ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ælg "Server Certificate" i bunden af fanebladet "Secure communications section""
|
||||
|
||||
#: 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ælg .cer filen og tryk på "Næste"."
|
||||
|
||||
#: www/help/3.php:54
|
||||
msgid "Select the Directory Security tab"
|
||||
msgstr ""
|
||||
msgstr "Vælg "Directory Security" 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ø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å?"
|
||||
|
||||
#: 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ø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æ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å alle spørgsmålene, system administratorerne har få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å alle spørgsmålene, eller også har du ikke oprettet nok spørgsmål til genoprettelse af glemt kodeord for din CAcert konto. System administratorerne har få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æ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 ""
|
||||
|
|
|
@ -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 ä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
|
||||
|
|
119
locale/es.po
119
locale/es.po
|
@ -7,7 +7,7 @@ msgstr ""
|
|||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
||||
"PO-Revision-Date: 2005-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í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У­s que es responsable de autorizar firmas y documentos de identificaciУГn. Este papel es cubierto por muchos tУ­tulos diferentes como notarios pУК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í­s que es responsable de autorizar firmas y documentos de identificación. Este papel es cubierto por muchos títulos diferentes como notarios pú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án cometiendo errores"
|
|||
|
||||
#: www/help/3.php:70
|
||||
msgid "And you're done!"
|
||||
msgstr "Y esta terminado!"
|
||||
msgstr "Y está terminado!"
|
||||
|
||||
#: www/account/16.php:39
|
||||
msgid "Another Email"
|
||||
|
@ -241,7 +241,7 @@ msgstr "Antes de contactarse con nosotros, asegurese de leer la informació
|
|||
|
||||
#: 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ñadir dominios a su cuenta desde el menú Dominios. TambiУЉn puede eliminar dominios. Una vez haya agregado un dominio ya puede ir al menУК Certificados de Servidor y pegar su CSR para que el sistema le devuelva su certificado por un periodo de hasta dos aУБ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ñadir dominios a su cuenta desde el menú Dominios. También puede eliminar dominios. Una vez haya agregado un dominio ya puede ir al menú Certificados de Servidor y pegar su CSR para que el sistema le devuelva su certificado por un periodo de hasta dos añ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ás, la razó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, ¿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ón pú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УБ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УЉs de este sitio web para mantener la confianza de forma dispersa y automatizada!"
|
||||
msgstr "CAcert.org ha sido diseñ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é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í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УГn que se exhibe es verdadera y que la copia es correcta y veraz:"
|
||||
msgstr "Verifique y compare que la identificació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! ¿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é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áginas web, y uno para el depósito raíz. El servidor raíz esta conectado al servidor web a través de un cable serial, con un demonio corriendo como usuario no priviligiado en cada puerta, escuchando y enviando la información."
|
||||
msgstr "Actualmente hay 2 servidores, una para las páginas web, y uno para el depósito raíz. El servidor raíz esta conectado al servidor web a través de un cable serie, con un demonio corriendo como usuario no priviligiado en cada puerta, escuchando y enviando la informació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ó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).&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ón de datos encriptada para los usuarios accesando su web, correo, o cualquier otro servicio con SSL; se pueden emitir certificados mú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á 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 "¡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á por informació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ágina Principal"
|
|||
|
||||
#: www/help/2.php:8
|
||||
msgid "How do I create my own digital signature?!"
|
||||
msgstr "Como creo mi propia firma digital?!"
|
||||
msgstr "¿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ómo actualizar, corregir o eliminar su información"
|
|||
|
||||
#: www/index/51.php:27
|
||||
msgid "How?"
|
||||
msgstr "Como?"
|
||||
msgstr "¿Como?"
|
||||
|
||||
#: includes/general_stuff.php:64
|
||||
msgid "Howto Information"
|
||||
|
@ -970,7 +970,7 @@ msgstr "Yo creo que la comprobació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 "¡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é el porqué 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á 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ó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УГlo si los dos coinciden completamente, puede conceder puntos de confianza hasta el mУЁximo de puntos que tiene permitido;"
|
||||
msgstr "Si, y sólo si los dos coinciden completamente, puede conceder puntos de confianza hasta el má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 "¡Inclusión en los principales navegadores!"
|
|||
|
||||
#: www/index.php:195
|
||||
msgid "Incorrect email address and/or Pass Phrase."
|
||||
msgstr "E-Mail o Contraseña incorrectos."
|
||||
msgstr "E-Mail y/o contraseñ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á 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У­, 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í, 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á satisfecha con las ofertas comerciales. Mucha gente solo desea conectarse con gente que conocen, o simplemente hacer su comunicación al webmail mas segura, obviando a los posibles escuchas en la red. Para que subscribirse a un servicio que no está estructurado para esto, y que además cobra como si fuese la recompensa del rey por sus servicios?"
|
||||
msgstr "Mucha gente no está satisfecha con las ofertas comerciales. Mucha gente solo desea conectarse con gente que conocen, o simplemente hacer su comunicación al webmail mas segura, obviando a los posibles escuchas en la red. ¿Por que subscribirse a un servicio que no está estructurado para esto, y que ademá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ías. Despues de este plazo sus puntos serán reducidos a 150."
|
||||
msgstr "Nota: Este es un incremento temporal solo por %s días. Despues de este plazo sus puntos será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úmero de bits'. Le recomendamos utilizar un largo de 1024 bits"
|
||||
msgstr "Selecione 'Nú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á autorizando recibirá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íz?"
|
|||
|
||||
#: www/index/19.php:15
|
||||
msgid "Information"
|
||||
msgstr "Información de Contacto"
|
||||
msgstr "Informació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ña indicada no es correcta."
|
|||
msgid "You failed to enter a location of your meeting."
|
||||
msgstr "No ha indicado un lugar para la reunió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á 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 "ТПCУГmo puedo programar el uso de firmas УКnicas, similar a lo que hace CAcert, utilizando certificados del cliente?"
|
||||
msgstr "¿Cómo puedo programar el uso de firmas ú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ú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íz usando Internet Explorer y el control ActiveX Cenroll. Esto evita el "Mago" de Instalació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íz usando Internet Explorer y el control ActiveX CEnroll. Esto evita el asistente de Instalació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УГn de correo, o dominio, seleccione 'Disputar E-Mail' o 'Disputar Dominio' en la parte derecha de la pУЁgina."
|
||||
msgstr "Si usted quiere disputar quien tiene control de una dirección de correo, o dominio, seleccione 'Disputar E-Mail' o 'Disputar Dominio' en la parte derecha de la pá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У­ticas, por favor seleccione 'Abuso' en el menУК de la derecha."
|
||||
msgstr "Si usted quiere reportar un abuso de nuestros certificados que va contra nuestras políticas, por favor seleccione 'Abuso' en el menú 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á 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УГn de correo serУЁ removida del sistema. NecesitarУЁ aУБadirla a su cuenta de la manera normal. La direcciУГn de correo serУЁ removida de la cuenta actual y todos los certificados revocados."
|
||||
msgstr "Si su disputa es exitosa, la dirección de correo será removida del sistema. Necesitará añadirla a su cuenta de la manera normal. La dirección de correo será 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ón de correo?"
|
||||
msgstr "¿Que direcció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á obligado a conservar los documentos firmados por 7 añ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ú aegurarse que se ha seguido el procedimiento. Después de 7 años, si desea deshacerse de estos documentos, la mejor manera es picandolos y quemandolos. No necesita mantener copias de la(s) identificación(es)."
|
||||
msgstr "Como Notario, usted está obligado a conservar los documentos firmados por 7 añ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í aegurarse que se ha seguido el procedimiento. Después de 7 años, si desea deshacerse de estos documentos, la mejor manera es picandolos y quemandolos. No necesita mantener copias de la(s) identificació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ón de CAcert (CAP) ti
|
|||
|
||||
#: www/cap.php:46
|
||||
msgid "Applicant's Statement"
|
||||
msgstr "DeclaraciУГn del solicitante"
|
||||
msgstr "Declaración del solicitante"
|
||||
|
||||
#: www/cap.php:26 www/ttp.php:35
|
||||
msgid "CAcert's Root Certificate fingerprints"
|
||||
|
@ -3425,7 +3425,7 @@ msgstr "Huella digitál de certificado raíz CAcert's"
|
|||
|
||||
#: www/ttp.php:109
|
||||
msgid "Applicant Information"
|
||||
msgstr "InformaciУГn del Solicitante"
|
||||
msgstr "Informació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аЃа convencido de su autenticidad, asаЃТ­ 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аЃа“n legal en su paаЃТ­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á convencido de su autenticidad, así 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ón legal en su paí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УЁs"
|
||||
msgstr "Ir atrá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УГn persona a persona"
|
||||
msgstr "Reunió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УЁs Noticias"
|
||||
msgstr "Má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á reajustar su contraseña por este mé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ña en caso de pé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ó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Ó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 "Éste es un recordatorio de que usted completó formas para certificarse con CAcert.org, y %s ha procurado asignarle puntos. Por favor cree su cuenta en %s cuanto antes y después notifique a %s para poder asignarle los puntos."
|
||||
|
|
821
locale/fi.po
821
locale/fi.po
File diff suppressed because it is too large
Load diff
57
locale/fr.po
57
locale/fr.po
|
@ -7,7 +7,7 @@ msgstr ""
|
|||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
||||
"PO-Revision-Date: 2005-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éditeur de CAcert qui certifie en pleine connaissance de cause ou en pouvant raisonnablement le soupsonner ou le savoir, une demande qui va à l'encontre de cette politique, peut être tenu responsable."
|
||||
msgstr "Un accréditeur de CAcert qui certifie, en pleine connaissance de cause ou en pouvant raisonnablement le soupçonner ou le savoir, une demande qui va à l'encontre de cette politique peut ê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éciée - plus CAcert re&cce
|
|||
|
||||
#: includes/account_stuff.php:182
|
||||
msgid "About"
|
||||
msgstr "A propos"
|
||||
msgstr "À propos"
|
||||
|
||||
#: www/account/37.php:15 www/index/12.php:15
|
||||
msgid "About CAcert.org"
|
||||
msgstr "A propos de CACert.org"
|
||||
msgstr "À propos de CACert.org"
|
||||
|
||||
#: includes/account_stuff.php:209 includes/general_stuff.php:108
|
||||
msgid "About Us"
|
||||
msgstr "A notre sujet"
|
||||
msgstr "À 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 électronique alternatives vé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écurité supplémentaires avec des serveurs Web (disons 4) communiquant avec 2 serveurs intermédiaires qui s'échangent des données avec le magasin de certificat racine, et avec un fonctionnement basé sur l'échange de jetons, si quelque chose se produit en dehors de l'ordre déterminé alors le serveur racine s'arrê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ère à réflexion pour l'avenir."
|
||||
msgstr "Alternativement, lors de la poursuite du projet, nous pourrons ajouter des couches de sécurité supplémentaires avec des serveurs Web, disons quatre, communiquant avec deux serveurs intermédiaires qui s'échangent des données avec le magasin de certificat racine, et avec un fonctionnement basé sur l'échange de jetons. Si quelque chose se produit en dehors de l'ordre déterminé alors le serveur racine s'arrê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ère à ré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évoqué aussi"
|
||||
msgstr "Tout certificat valide sera également révoqué"
|
||||
|
||||
#: 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ées résident sur une partition racine chiffré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 "À part les données d'initialisation, toutes les données résident sur une partition racine chiffré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épertoire où 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écurité de l'Internet et nous armer pour assurer notre sécurité personnelle avec les outils disponibles aujourd'hui. En démocratisant la signature digitale, nous donnons la possibilité de se familiariser avec la sécurité électronique et la cryptographie."
|
||||
msgstr "Mais, la raison majeure pour utiliser la signature digitale est la prise de conscience du besoin de protéger son identité et la confidentialité des informations. Nous devons avoir conscience du manque de sécurité de l'Internet et nous armer pour assurer notre sécurité personnelle avec les outils disponibles aujourd'hui. En démocratisant la signature digitale, nous donnons la possibilité de se familiariser avec la sécurité é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é 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és, ils doivent faire très attention pour s'assurer que les Autorité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és, il est certain qu'ils font très attention de s'assurer que les Autorité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 ê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ésirant protéger les services qu'ils offrent, nous fournissons les certificats pour leur serveur ou leur domaine dont la délivrance est presque immédiate. Non seulement vous pouvez employer ces derniers pour protéger des sites Web, mais également les services POP3, de SMTP et IMAP, pour ne siter qu'eux. A la différence d'autres Autorité 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 à la sécurité et à la protection de leur vie privée, pas seulement ceux qui gèrent les sites de commerce électronique."
|
||||
msgstr "Pour des administrateurs désirant protéger les services qu'ils offrent, nous fournissons les certificats pour leur serveur ou leur domaine dont la délivrance est presque immédiate. Non seulement vous pouvez employer ces derniers pour protéger des sites Web, mais également les services POP3, SMTP et IMAP, pour ne citer qu'eux. À la différence d'autres Autorité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 à la sécurité et à la protection de leur vie privée, pas seulement ceux qui gèrent les sites de commerce é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 à l'eau en sécurité, 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ées, nous avons tous été contraints de payer pour la sécurité, ce qui ne doit pas et ne devrait pas coûter les yeux de la tê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 échoué dans la saisie de la position géographique de votre rencontre."
|
||||
|
||||
#: www/index.php:90
|
||||
msgid "You failed to get all answers correct, system admins have been notified."
|
||||
msgstr "Vous avez échoué à rentrer tous les réponses correctes, les administrateurs systèmes en sont notifié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éponses, les administrateurs du système sont notifiés."
|
||||
|
||||
#: www/gpg.php:24
|
||||
msgid "You failed to paste a valid GPG/PGP key."
|
||||
|
@ -3543,3 +3543,28 @@ msgstr "Histoire complè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éponse pour vous aider en cas de perte de votre mot de passe. Vous perdez la possibilité de remettre à zéro votre mot de passe par l'intermédiaire de cette mé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écurité, vous devez fournir 5 questions/ré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étection d'une erreur, les détails de utilisateur ont changé pendant la procédure d'accréditation. VEUILLEZ VOUS ASSURER QUE LES NOUVEAUX DÉ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 être accrédité par CAcert.org, et que %s a essayé de vous attribuer des points. Veuillez créer votre compte à %s dès que possible et informez alors %s de sorte que les points puissent vous être attribués."
|
||||
|
|
|
@ -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éhány hirdetõnk külsõ reklám sz
|
|||
|
||||
#: www/wot/9.php:19 www/wot/9.php:29
|
||||
msgid "Sorry, I was unable to locate that user."
|
||||
msgstr "Sajnálom, nem talalálom ezt a felhasználót."
|
||||
msgstr "Sajnálom, nem találom ezt a felhasználót."
|
||||
|
||||
#: www/wot/6.php:85
|
||||
msgid "Sponsoring Member"
|
||||
|
|
361
locale/it.po
361
locale/it.po
File diff suppressed because it is too large
Load diff
135
locale/ja.po
135
locale/ja.po
|
@ -7,7 +7,7 @@ msgstr ""
|
|||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
||||
"PO-Revision-Date: 2005-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 "残念ながら、あなた
|
|||
|
||||
#: 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 "残念ながら、システムに入力したアドレスにマッチするメールアドレスはありませんでした。あなたの情報を再確認してください。"
|
||||
msgstr "残念ながら、入力したアドレスにマッチするメールアドレスはシステムにありませんでした。あなたの情報を再確認してください。"
|
||||
|
||||
#: 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 鍵"
|
|||
#: 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 "クラス1ルート証明書による署名"
|
||||
|
||||
#: 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 "個人証明書がインストールされました。"
|
||||
|
||||
#: www/account/39.php:24 www/index/10.php:24
|
||||
msgid "Personal information"
|
||||
|
@ -1664,7 +1664,7 @@ msgstr "個人情報"
|
|||
|
||||
#: 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 "注意: あなたの証明書中のCommonNameフィールド以外の情報はすべて削除されます。それは、これが自動サービスであり自動的には他の部分の有効性を確認できないためです。もしあなたが有効な組織であり、証明書にもっと詳細な情報を加えたい場合は、少なくとも50保証ポイントをもち、あなたの組織の文書をわたしたちに送付する必要があります。そうすればわたしたちはそれらの詳細情報を証明書に加えることができます。組織サービスについてさらに知りたい場合は、わたしたちに連絡してください。"
|
||||
|
||||
#: 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 "この状況は変わって
|
|||
|
||||
#: 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ビットの鍵の生成に失敗しました。代わりに512ビットの鍵を生成しますか?"
|
||||
|
||||
#: 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 "他の新しいCAcertのユー&#
|
|||
|
||||
#: includes/account.php:363
|
||||
msgid "The address you submitted isn't a valid authority address for the domain."
|
||||
msgstr ""
|
||||
msgstr "あなたが堤出したアドレスはそのドメインに関して権威のあるアドレスではありません。"
|
||||
|
||||
#: www/index/8.php:1
|
||||
#, php-format
|
||||
|
@ -2177,17 +2177,17 @@ msgstr "朝飯前です。つまり
|
|||
|
||||
#: www/index.php:272
|
||||
msgid "This email address is currently valid in the system."
|
||||
msgstr ""
|
||||
msgstr "現在このメールアドレスはシステム内で有効です。"
|
||||
|
||||
#: www/wot/6.php:36
|
||||
#, php-format
|
||||
msgid "This person already has %s assurance points."
|
||||
msgstr ""
|
||||
msgstr "この人物は既に%s保証ポイント所有しています。"
|
||||
|
||||
#: 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 "この人物は既に%s保証ポイント所有しています。あなたがこの人に与えるポイントは切り下げられるか、1ポイントも与えられないかもしれません。ですが、もしあなたの持っているポイントが150未満なら、彼らを保証することで2ポイント得ます。"
|
||||
|
||||
#: 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 "警告! あなたはクラӝ
|
|||
#: includes/account.php:1609
|
||||
#, php-format
|
||||
msgid "Wasn't able to match '%s' against any user in the system"
|
||||
msgstr ""
|
||||
msgstr "'%s' はシステム中のどのユーザともマッチさせられませんでした。 "
|
||||
|
||||
#: 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 "認証局のための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へようこそ"
|
||||
|
||||
#: 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 "それは何に使うの?"
|
|||
|
||||
#: www/index/51.php:30
|
||||
msgid "When and Where?"
|
||||
msgstr "いつどこで?"
|
||||
msgstr "いつ、どこで?"
|
||||
|
||||
#: www/help/3.php:67
|
||||
msgid "When you have read this information, click 'Finish'."
|
||||
|
@ -2471,11 +2471,11 @@ msgstr "証明書をインストー
|
|||
|
||||
#: www/wot.php:54
|
||||
msgid "You are never allowed to Assure yourself!"
|
||||
msgstr ""
|
||||
msgstr "自分自身を保証することはけっしてできません!"
|
||||
|
||||
#: www/wot.php:68
|
||||
msgid "You are only allowed to Assure someone once!"
|
||||
msgstr ""
|
||||
msgstr "誰かを保証することは1回しかできません!"
|
||||
|
||||
#: www/help/2.php:45
|
||||
msgid "You are putting your trust in people you don't know!"
|
||||
|
@ -2483,17 +2483,17 @@ msgstr "あなたの知らない人
|
|||
|
||||
#: 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 "一時的に200ポイントに増加したので、このメールが送信されました。これは期限をすぎると150ポイントに減じられます。"
|
||||
|
||||
#: www/wot.php:230
|
||||
#, php-format
|
||||
msgid "You are receiving this email because you have assured %s %s (%s)."
|
||||
msgstr ""
|
||||
msgstr "%s %s (%s) を保証しましたので、このメールが送信されました。"
|
||||
|
||||
#: 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) によって保証されましたので、このメールが送信されました。"
|
||||
|
||||
#: includes/general_stuff.php:112 includes/tverify_stuff.php:78
|
||||
msgid "Further Information"
|
||||
|
@ -2543,7 +2543,7 @@ msgstr "こちらにはアクセス
|
|||
|
||||
#: www/wot.php:23
|
||||
msgid "You don't have access to view these pages."
|
||||
msgstr ""
|
||||
msgstr "これらのページを見る権限がありません。"
|
||||
|
||||
#: 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の規則とポリシー&#
|
|||
|
||||
#: includes/account.php:842
|
||||
msgid "You failed to correctly enter your current Pass Phrase."
|
||||
msgstr ""
|
||||
msgstr "現在のパスフレーズが正しく入力されませんでした。"
|
||||
|
||||
#: www/wot.php:109
|
||||
msgid "You failed to enter a location of your meeting."
|
||||
msgstr ""
|
||||
msgstr "あなたの面会場所が入力されませんでした。"
|
||||
|
||||
#: www/index.php:90
|
||||
msgid "You failed to get all answers correct, system admins have been notified."
|
||||
msgstr "質問すべてに正しく答えられませんでした。システム管理者に通知されました。"
|
||||
#: 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 "有効なGPG/PGP鍵がペーストされませんでした。"
|
||||
|
||||
#: 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 "あなたは、whoisレコー
|
|||
#: 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 "これが動作するようにするにはActiveXを有効にしなければなりません。"
|
||||
|
||||
#: www/wot/3.php:21
|
||||
msgid "You must meet the applicant in person;"
|
||||
|
@ -2604,11 +2604,11 @@ msgstr "政府発行の写真付き
|
|||
|
||||
#: www/wot.php:216
|
||||
msgid "You now have over 100 points and can start assuring others."
|
||||
msgstr ""
|
||||
msgstr "あなたは現在100ポイント以上所有しており、他の人の保証を始めることができます。"
|
||||
|
||||
#: 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 "あなたは現在50ポイント以上所有し、クライアント証明書にあなたの名前を加えたり、2年間有効のサーバ証明書を発行することができます。"
|
||||
|
||||
#: 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 "既に150ポイント以上{
|
|||
|
||||
#: includes/account.php:1676
|
||||
msgid "You tried to use an invalid language."
|
||||
msgstr ""
|
||||
msgstr "無効な言語を使用しようとしました。"
|
||||
|
||||
#: www/wot.php:207
|
||||
#, php-format
|
||||
msgid "You were issued %s points and you now have %s points in total."
|
||||
msgstr ""
|
||||
msgstr "あなたに%sポイントが発行され、現在あなたは合計%sポイント所有しています。"
|
||||
|
||||
#: 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 "ここで証明書の要求
|
|||
|
||||
#: www/wot.php:237
|
||||
msgid "You've Assured Another Member."
|
||||
msgstr ""
|
||||
msgstr "あなたは他のメンバーを保証しました。"
|
||||
|
||||
#: 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 "同じドメインの確認を無効なハッシュを使って4回続けて試みました。そのため、この要求はシステムから削除されました。"
|
||||
|
||||
#: www/wot.php:225
|
||||
msgid "You've been Assured."
|
||||
msgstr ""
|
||||
msgstr "あなたは保証されました。"
|
||||
|
||||
#: www/account/43.php:190 www/wot/10.php:19
|
||||
msgid "Your Assurance Points"
|
||||
|
@ -2702,7 +2702,7 @@ msgstr "あなたのブラウザは
|
|||
#: 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 "あなたの証明書要求は正しく処理できませんでした。再度提出してみてください。"
|
||||
|
||||
#: www/help/3.php:34
|
||||
msgid "Your country, state and city."
|
||||
|
@ -2739,7 +2739,7 @@ msgstr "言語設定が更新され
|
|||
|
||||
#: www/account.php:37 www/index.php:354
|
||||
msgid "Your message has been sent to the general support list."
|
||||
msgstr ""
|
||||
msgstr "あなたのメッセージは一般サポートリストに送られました。"
|
||||
|
||||
#: www/account.php:28 www/index.php:343
|
||||
msgid "Your message has been sent."
|
||||
|
@ -2779,7 +2779,7 @@ msgstr "してあなたの証明書
|
|||
|
||||
#: www/help/4.php:7
|
||||
msgid "writing new private key to 'private.key'"
|
||||
msgstr "writing new private key to 'private.key'"
|
||||
msgstr "新しい秘密鍵を 'private.key' に書き込んでいます"
|
||||
|
||||
#: www/analyse.php:25
|
||||
msgid "Analyse"
|
||||
|
@ -2854,17 +2854,17 @@ msgstr "デジタル証明書を無
|
|||
#: www/wot.php:240
|
||||
#, php-format
|
||||
msgid "You issued %s points and they now have %s points in total."
|
||||
msgstr ""
|
||||
msgstr "あなたは%sポイントを発行し、現在彼らは合計で%sポイント所有しています。"
|
||||
|
||||
#: 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 "あなたは%sポイントを発行しましたが、システムはこれを%sに切り下げ、現在彼らは合計で%sポイント所有しています。"
|
||||
|
||||
#: 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 "あなたに%sポイントが発行されましたが、システムはこれを%sに切り下げ、現在あなたは合計で%sポイント所有しています。"
|
||||
|
||||
#: www/wot.php:49
|
||||
msgid "A reminder notice has been sent."
|
||||
|
@ -2973,7 +2973,7 @@ msgstr "パスワードを忘れた
|
|||
|
||||
#: 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 "与えられたメールアドレスが無効か、あなたのサーバへの接続試験ができなかったか、あるいはメールアドレスが無効であるとサーバが拒否しました。"
|
||||
|
||||
#: 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 "紛争を拒否"
|
|||
|
||||
#: www/account/11.php:40
|
||||
msgid "Rejected"
|
||||
msgstr ""
|
||||
msgstr "拒否"
|
||||
|
||||
#: www/disputes/4.php:29 www/disputes/6.php:29
|
||||
msgid "Report Dispute as Abuse"
|
||||
|
@ -3185,7 +3185,7 @@ msgstr "以下のコメントはレ
|
|||
|
||||
#: 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 "次のホスト名は、システムがあなたのアカウントと結びつけられなかったため、拒否されました。もしこれらが有効である場合は、あなたのアカウントに対してドメインの確認を行ってください。"
|
||||
|
||||
#: www/index/7.php:18
|
||||
msgid "The list of names are in no sense of order"
|
||||
|
@ -3213,7 +3213,7 @@ msgstr "これはこのアカウン
|
|||
|
||||
#: 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 "あなたの地区にいる他の人があなたをみつけやすくするには、あなたを保証人リストに加えて、あなたが住んでいるか働いている物理的な場所を記載しておくと有用です(これは任意です)。以下に行くことにより、あなたのアカウントを保証人リストに入れ、表示するコメントを加えることができます:"
|
||||
|
||||
#: 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 "あいにく、あなたのポイント増要求は拒否されました。以下はあなたの要求をレビューした人々からの、なぜ彼らがあなたの申請を拒否したかについてのコメントです。"
|
||||
|
||||
#: www/disputes/4.php:32 www/disputes/5.php:29 www/disputes/6.php:32
|
||||
msgid "Update Dispute"
|
||||
|
@ -3269,11 +3269,11 @@ msgstr "また、公証人、治安
|
|||
|
||||
#: www/wot.php:257
|
||||
msgid "You can list your location by going to:"
|
||||
msgstr ""
|
||||
msgstr "以下に行くとあなたの所在地を一覧表示できます:"
|
||||
|
||||
#: includes/account.php:2010
|
||||
msgid "You have already voted on this request."
|
||||
msgstr ""
|
||||
msgstr "あなたはこの要求に既に投票しています。"
|
||||
|
||||
#: www/disputes.php:416
|
||||
#, php-format
|
||||
|
@ -3308,23 +3308,23 @@ msgstr "あるアカウントの主
|
|||
|
||||
#: www/verify.php:34
|
||||
msgid "You've attempted to verify the same email address a fourth time with an invalid hash, subsequently this request has been deleted in the system"
|
||||
msgstr ""
|
||||
msgstr "同じメールアドレスの確認を無効なハッシュを使って4回続けて試みました。そのため、この要求はシステムから削除されました。"
|
||||
|
||||
#: 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 "紛争中のドメインの受理または拒否の試みは、ハッシュ文字列がドメインIDとマッチしなかったため、無効です。"
|
||||
|
||||
#: 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 "紛争中のドメインの受理または拒否の試みは、ハッシュ文字列がドメインIDとマッチしなかったため、無効です。そのため、この試みは記録され、要求はシステムから消去されます。"
|
||||
|
||||
#: 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 "紛争中のメールアドレスの受理または拒否の試みは、ハッシュ文字列がメールアドレスIDとマッチしなかったため、無効です。"
|
||||
|
||||
#: 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 "紛争中のメールアドレスの受理または拒否の試みは、ハッシュ文字列がメールアドレスIDとマッチしなかったため、無効です。そのため、この試みは記録され、要求はシステムから消去されます。"
|
||||
|
||||
#: 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ルート証明書のダウンロードエラーの問題が検出されました:"
|
||||
|
||||
#: www/index/17.php:67
|
||||
msgid "The CAcert root certificate was successfully installed"
|
||||
msgstr ""
|
||||
msgstr "CAcertルート証明書が正しくインストールされました。"
|
||||
|
||||
#: www/wot/6.php:70
|
||||
#, php-format
|
||||
|
@ -3415,7 +3415,7 @@ msgstr "申請者声明"
|
|||
|
||||
#: www/cap.php:26 www/ttp.php:35
|
||||
msgid "CAcert's Root Certificate fingerprints"
|
||||
msgstr ""
|
||||
msgstr "CAcertルート証明書の指紋"
|
||||
|
||||
#: www/ttp.php:109
|
||||
msgid "Applicant Information"
|
||||
|
@ -3500,7 +3500,7 @@ 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 "あなたは申請者の写真付き身分証明書2種を見て、その真正性を確信し、写真が申請者のものであることを確信しています (許容される身分証明書は、政府が発行した写真付きのもので、運転免許証やパスポート、あるいはあなたの国で通常認められている他の法的身分証明書です。有効期限の切れた身分証明書も許容されます)。"
|
||||
msgstr "あなたは申請者の写真付き身分証明書を2種類目視して、その真正性を確信し、写真が申請者のものであることを確信しています (許容される身分証明書は、政府が発行した写真付きのもので、運転免許証やパスポート、あるいはあなたの国で通常認められている他の法的身分証明書です。有効期限の切れた身分証明書も許容されます)。"
|
||||
|
||||
#: www/ttp.php:86
|
||||
msgid "as applicable"
|
||||
|
@ -3545,3 +3545,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 ""
|
||||
|
|
|
@ -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"
|
||||
|
|
61
locale/pl.po
61
locale/pl.po
|
@ -7,7 +7,7 @@ msgstr ""
|
|||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
||||
"PO-Revision-Date: 2005-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łeś uwierzytelniony %s %s (%s)."
|
||||
msgstr ""
|
||||
"Otrzymujesz ten Email poniewaz zostałeś uwierzytelniony: "
|
||||
"%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łeś 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ę 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żsamości"
|
||||
|
||||
#: www/cap.php:129
|
||||
msgid "Location of Face-to-face Meeting"
|
||||
msgstr ""
|
||||
msgstr "Miejsce Spotkanie Twarzą w Twarz"
|
||||
|
||||
#: www/cap.php:133
|
||||
msgid "Maximum Points"
|
||||
msgstr ""
|
||||
msgstr "Maksimum Punktów"
|
||||
|
||||
#: www/cap.php:51 www/ttp.php:75
|
||||
msgid "Names"
|
||||
msgstr ""
|
||||
msgstr "Imię i Nazwisko"
|
||||
|
||||
#: www/cap.php:123
|
||||
msgid "Photo ID Shown: (ID types, not numbers. eg Drivers license, Passport)"
|
||||
msgstr ""
|
||||
msgstr "Okazane Dokumenty Tożsamości ze zdjęciem: (typy dokumentó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ś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ęcej..."
|
|||
#: www/index/0.php:40
|
||||
msgid "More News Items"
|
||||
msgstr "Więcej wiadomoś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 ""
|
||||
|
|
450
locale/pt.po
450
locale/pt.po
File diff suppressed because it is too large
Load diff
|
@ -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ê també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ão cometendo erros."
|
||||
|
||||
#: www/help/3.php:70
|
||||
msgid "And you're done!"
|
||||
|
@ -205,7 +205,7 @@ msgstr "Certificação Efetuada"
|
|||
|
||||
#: includes/account_stuff.php:182 www/wot/5.php:19
|
||||
msgid "Assure Someone"
|
||||
msgstr "Certificar alguem"
|
||||
msgstr "Certificar alguém"
|
||||
|
||||
#: www/index/0.php:60
|
||||
msgid "Assured client certificates"
|
||||
|
@ -241,7 +241,7 @@ msgstr "Antes de entrar em contato conosco, leia as informaçõ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ão de certificados para seu website, servidor irc, servidor smtp, pop3, imap etc, você precisa adicionar os dominios em sua conta no menu "Domínios". Você pode ainda, remover dominios através desse menu. Uma vez adicionado o dominio, você é livre para então ir a seção Certificado de Servidor e começar a colar a CSR no website, e o website retorna para você um certificado valido por 2 anos se você tiver 50 pontos de confianção, ou 6 meses caso você não tenha nenhum ponto de confiança."
|
||||
msgstr "Antes de você iniciar a emissão de certificados para seu website, servidor irc, servidor smtp, pop3, imap etc, você precisa adicionar os dominios em sua conta no menu "Domínios". Você pode ainda, remover dominios através desse menu. Uma vez adicionado o dominio, você é livre para então ir a seção Certificado de Servidor e começar a colar a CSR no website, e o website retorna para você um certificado valido por 2 anos se você tiver 50 pontos de confianção, ou 6 meses caso você não tenha nenhum ponto de confianç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árias dicas que podem ser úteis."
|
|||
|
||||
#: www/account/37.php:23 www/index/12.php:23
|
||||
msgid "For administrators looking to protect the services they offer, we provide host and wild card certificates which you can issue almost immediately. Not only can you use these to protect websites, but also POP3, SMTP and IMAP connections, to list but a few. Unlike other certificate authorities, we don't limit the strength of the certificates, or the use of wild card certificates. Everyone should have the right to security and to protect their privacy, not just those looking to run ecommerce sites."
|
||||
msgstr ""
|
||||
msgstr "Para os administradores que querem protegem os serviços que oferecem, nós fornecemos os certificados de servidores e de dominio para você usar quase imediatamente. Você, não somente poderá você usar estes certificados para proteger o seu Web site, mas as conexões também de POP3, de smtp e de IMAP, para listar algumas das utilização. Ao contrário de outras autoridades de certificacão, nós não limitamos o uso dos certificados. Todos devem ter a direito à segurança e proteger sua privacidade, nã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ário que você procura parece ter desaparecido! Coisas ruins são um pé!"
|
||||
msgstr "Desculpe, o usuário que você 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ão apenas usuá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ã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áfego. Por que subscrever em um serviço que não seja estruturado para isto, e que alé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ínio '%s' já está no sistema e é 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ção de Contas de Email é para adicionar/alterar/remover, as contas de e-mails que podem ser usados para emitir certificados. Utilize a seção Certificados de Cliente para você gerar o certificado para um ou mais email que você registou na seçã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ágina foi reproduzida em %s com permissão explícita de %sthe author%s com a informaçã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ó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 é descrita como 'não valido/nã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ê não tem acesso ao email selecionado, ou você ain
|
|||
|
||||
#: www/wot.php:133
|
||||
msgid "You didn't list a valid sponsor for this action."
|
||||
msgstr ""
|
||||
msgstr "Você não alistou um patrocinador válido para esta ação."
|
||||
|
||||
#: includes/account.php:1362 includes/account.php:1566
|
||||
#: includes/account.php:1686
|
||||
|
@ -2562,9 +2562,9 @@ msgstr "Você não digitou sua Frase-Senha atual corretamente."
|
|||
msgid "You failed to enter a location of your meeting."
|
||||
msgstr "Você 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ê 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ê falhou ao responder todas as perguntas corretamente ou nã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ê 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ê alistou um patrocinador inválido para esta açã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ê tentou dar aumento temporário de pontos a algué
|
|||
|
||||
#: includes/account.php:1676
|
||||
msgid "You tried to use an invalid language."
|
||||
msgstr ""
|
||||
msgstr "Você tentou usar uma língua inválida."
|
||||
|
||||
#: www/wot.php:207
|
||||
#, php-format
|
||||
|
@ -2925,7 +2925,7 @@ msgstr "Atualmente o email '%s' está 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ós emitimos somente certificados para domínios Punycode, com isto temos um nivel mais elevado da seguranç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ção"
|
||||
|
||||
#: www/account/52.php:50
|
||||
msgid "I don't agree with this Application"
|
||||
msgstr ""
|
||||
msgstr "Eu não concordo com esta aplicaçã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çã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ó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ão os números. por exemplo Carteira de Motorista, RG, Passaporte)"
|
||||
|
||||
#: www/cap.php:131
|
||||
msgid "Points Allocated"
|
||||
|
@ -3436,7 +3436,7 @@ msgstr "Email (se aplicável)"
|
|||
|
||||
#: www/ttp.php:136
|
||||
msgid "First ID Number (driver's license, passport etc)"
|
||||
msgstr ""
|
||||
msgstr "Primeiro nú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ça de paz, cartorário, advogado, contador, ou gerente
|
|||
|
||||
#: www/ttp.php:119
|
||||
msgid "Main email (so we can find you)"
|
||||
msgstr ""
|
||||
msgstr "Email principal (assim nós podemos o encontrar)"
|
||||
|
||||
#: www/ttp.php:89
|
||||
msgid "Office Phone"
|
||||
|
@ -3481,7 +3481,7 @@ msgstr "Profissão (circunde um)"
|
|||
|
||||
#: www/ttp.php:138
|
||||
msgid "Second ID Number (driver's license, passport etc)"
|
||||
msgstr ""
|
||||
msgstr "Segundo nú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ória Completa"
|
|||
|
||||
#: www/index/0.php:40
|
||||
msgid "More News Items"
|
||||
msgstr "Mais Artigos De Notí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çã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 ""
|
||||
|
|
160
locale/ru.po
160
locale/ru.po
|
@ -7,7 +7,7 @@ msgstr ""
|
|||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
||||
"PO-Revision-Date: 2005-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 "Показано %s строк."
|
||||
|
||||
#: www/account/43.php:71
|
||||
#, php-format
|
||||
|
@ -61,7 +61,7 @@ msgstr "...затем нажмl
|
|||
|
||||
#: 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 "Заверитель CAcert, который предумышленно или осознательно удостоверяет заявителя в противоречие пунктам данной политики, может быть признан ответственным."
|
||||
|
||||
#: 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 "Доверенное &
|
|||
|
||||
#: 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 "Мы благодарны за ЛЮБУЮ сумму. Чем большая финансовая поддержка будет оказана CAcert, тем скорее она сможет достичь целей, поставленных сообществом пользователей."
|
||||
msgstr "Мы благодарны за ЛЮБУЮ сумму. Чем большая финансовая поддержка будет оказана CAcert, тем скорее мы сможем достичь целей, поставленных сообществом пользователей."
|
||||
|
||||
#: includes/account_stuff.php:182
|
||||
msgid "About"
|
||||
|
@ -96,7 +96,7 @@ msgstr "Добавить до&
|
|||
|
||||
#: www/account/1.php:18
|
||||
msgid "Add Email"
|
||||
msgstr "Добавить адрес email"
|
||||
msgstr "Добавить 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 "Получив соо&
|
|||
|
||||
#: www/account/39.php:32 www/index/10.php:32
|
||||
msgid "Aggregated tracking information"
|
||||
msgstr ""
|
||||
msgstr "Накопленная информация слежения"
|
||||
|
||||
#: www/account/36.php:21 www/index/1.php:110
|
||||
msgid "Alert me if"
|
||||
|
@ -197,7 +197,7 @@ msgstr "Пункты дове&
|
|||
|
||||
#: www/account/43.php:225 www/wot/10.php:52
|
||||
msgid "Assurance Points You Issued"
|
||||
msgstr ""
|
||||
msgstr "Выданные баллы доверенности"
|
||||
|
||||
#: www/stats.php:51
|
||||
msgid "Assurances Made"
|
||||
|
@ -237,7 +237,7 @@ msgstr "Как стать За
|
|||
|
||||
#: 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 "Перед тем как связаться с нами, обязательно прочитайте информацию расположенную на наших официальных и неофициальных Руководстве по Пользованию и Ответах на Чачто Задаваемые Вопросы."
|
||||
|
||||
#: 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 "Ниже Ваш Сертификат Сервера"
|
||||
|
||||
#: 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 "С наилучшим&
|
|||
|
||||
#: www/index/8.php:6 www/index/8.php:7 www/index/8.php:8
|
||||
msgid "Board Member"
|
||||
msgstr ""
|
||||
msgstr "Члена Совета Правления"
|
||||
|
||||
#: www/help/3.php:60
|
||||
msgid "Browse to the location you saved the .cer file to in step 1"
|
||||
msgstr ""
|
||||
msgstr "Пойти на страницу где в 1-ом шаге Вы сохранили ".cer" файл."
|
||||
|
||||
#: 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 "Но, увы, разве это на самом деле доказательство достоверности Вашей електонной почты?"
|
||||
|
||||
#: 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 "Правила допустимого использования Сертификатов 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 после этого посылает Вам электронное сообщение, подписанное копией Вашего сертификата. Надеемся, что остальное будет не трудно."
|
||||
|
||||
#: 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 "список изъятых сертификатов (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 "Описание ус&
|
|||
|
||||
#: includes/general_stuff.php:65
|
||||
msgid "CAcert Logos"
|
||||
msgstr ""
|
||||
msgstr "Логотипы CAcert"
|
||||
|
||||
#: includes/account.php:669 includes/account.php:1066
|
||||
#, php-format
|
||||
|
@ -388,7 +388,7 @@ msgstr "Установить &
|
|||
|
||||
#: www/stats.php:31
|
||||
msgid "Certificates Issued"
|
||||
msgstr ""
|
||||
msgstr "Выданные Сертификаты"
|
||||
|
||||
#: www/index/0.php:64
|
||||
msgid "Certificates expires in 12 months."
|
||||
|
@ -417,7 +417,7 @@ msgstr "Изменить па&
|
|||
|
||||
#: www/help/3.php:36
|
||||
msgid "Choose a filename to save the request to"
|
||||
msgstr ""
|
||||
msgstr "Выберите название для файла в котором сохранить запрос"
|
||||
|
||||
#: includes/account.php:671 includes/account.php:1068
|
||||
#: includes/account.php:1445 includes/account.php:1492
|
||||
|
@ -427,7 +427,7 @@ msgstr "Нажать здес&
|
|||
|
||||
#: www/account/40.php:21 www/index/11.php:21
|
||||
msgid "Click here to go to the Support List"
|
||||
msgstr ""
|
||||
msgstr "Щёлкните здесь для того, чтобы пойти на страницу со Списком Поддержки"
|
||||
|
||||
#: www/account/40.php:38 www/index/11.php:38
|
||||
msgid "Click here to view all lists available"
|
||||
|
@ -443,7 +443,7 @@ msgstr "Клиентские &
|
|||
|
||||
#: www/account/3.php:63
|
||||
msgid "Code Signing"
|
||||
msgstr ""
|
||||
msgstr "Сертификаты для подписи кода"
|
||||
|
||||
#: www/index/0.php:70
|
||||
msgid "Code signing certificates"
|
||||
|
@ -473,11 +473,11 @@ msgstr "Новости CAcert"
|
|||
|
||||
#: includes/general_stuff.php:66
|
||||
msgid "CAcert Statistics"
|
||||
msgstr ""
|
||||
msgstr "Статистика 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 "Сравните и подтвердите, что представленное удостоверение личности является настоящей и правильной копией;"
|
||||
|
||||
#: www/wot/3.php:31
|
||||
msgid "Compare the online information to the information recorded on the paper form;"
|
||||
|
@ -593,7 +593,7 @@ msgstr "Удалить"
|
|||
|
||||
#: www/account/43.php:102 www/account/43.php:103
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
msgstr "Удалить учетную запись"
|
||||
|
||||
#: www/account/34.php:28
|
||||
#, php-format
|
||||
|
@ -781,7 +781,7 @@ msgstr ""
|
|||
|
||||
#: includes/account_stuff.php:191
|
||||
msgid "Find Domain"
|
||||
msgstr ""
|
||||
msgstr "Найти домен"
|
||||
|
||||
#: includes/account_stuff.php:191 www/account/42.php:19
|
||||
msgid "Find User"
|
||||
|
@ -789,7 +789,7 @@ msgstr "Найти Польз&
|
|||
|
||||
#: www/account/48.php:19
|
||||
msgid "Find User by Domain"
|
||||
msgstr ""
|
||||
msgstr "Найти пользователя по домену"
|
||||
|
||||
#: includes/account_stuff.php:182
|
||||
msgid "Find an Assurer"
|
||||
|
@ -855,7 +855,7 @@ msgstr "Ключи GPG/PGP"
|
|||
|
||||
#: www/account/36.php:22 www/index/1.php:111
|
||||
msgid "General Announcements"
|
||||
msgstr ""
|
||||
msgstr "Объявления по общим вопросам"
|
||||
|
||||
#: 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 "Не найдено доменов, соответствующих (%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 "Сведения"
|
||||
|
||||
#: 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 "Общее колич&
|
|||
|
||||
#: www/wot/10.php:79
|
||||
msgid "Total Points Issued"
|
||||
msgstr ""
|
||||
msgstr "Всего баллов выдано"
|
||||
|
||||
#: 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 "Дополнительная информация"
|
||||
|
||||
#: 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 "Совет 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 "Лицензия на исходный код 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 "Бесплатные цифровые сертификаты!"
|
||||
|
||||
#: www/wot.php:240
|
||||
#, php-format
|
||||
|
@ -2866,7 +2866,7 @@ msgstr ""
|
|||
|
||||
#: www/wot.php:49
|
||||
msgid "A reminder notice has been sent."
|
||||
msgstr ""
|
||||
msgstr "Повторное уведомление отправлено."
|
||||
|
||||
#: 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 "Ранг заверителя"
|
||||
|
||||
#: www/index/16.php:24 www/index/3.php:24
|
||||
msgid "CAcert's GPG Key"
|
||||
msgstr ""
|
||||
msgstr "GPG-ключ CAcert"
|
||||
|
||||
#: www/account/52.php:39
|
||||
msgid "Certificate Subject"
|
||||
msgstr ""
|
||||
msgstr "Субъект сертификата"
|
||||
|
||||
#: 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 "Комментарий"
|
||||
|
||||
#: 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 "Текущие баллы"
|
||||
|
||||
#: www/disputes/6.php:16
|
||||
#, php-format
|
||||
|
@ -2930,7 +2930,7 @@ msgstr ""
|
|||
|
||||
#: www/disputes/2.php:20
|
||||
msgid "Dispute Domain"
|
||||
msgstr ""
|
||||
msgstr "Спорный домен"
|
||||
|
||||
#: 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 "Оспорить домен"
|
||||
|
||||
#: www/disputes.php:399
|
||||
msgid "Domain Dispute!"
|
||||
msgstr ""
|
||||
msgstr "Оспорить домен!"
|
||||
|
||||
#: 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 "Оспорить 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-ключ"
|
||||
|
||||
#: 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 "Как мне получить в CAcert сертификат сервера?"
|
||||
|
||||
#: includes/account_stuff.php:162
|
||||
msgid "My Points"
|
||||
msgstr ""
|
||||
msgstr "Мои баллы"
|
||||
|
||||
#: 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 "Неверный запрос. Невозможно продолжить."
|
||||
|
||||
#: includes/tverify_stuff.php:39
|
||||
msgid "Main Website"
|
||||
|
@ -3057,7 +3057,7 @@ msgstr ""
|
|||
|
||||
#: includes/account_stuff.php:214
|
||||
msgid "More Information"
|
||||
msgstr ""
|
||||
msgstr "Дополнительные сведения"
|
||||
|
||||
#: 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 "Некорректный домен. Невозможно продолжить."
|
||||
|
||||
#: www/account/52.php:40
|
||||
msgid "Notary URL"
|
||||
|
@ -3077,15 +3077,15 @@ msgstr ""
|
|||
|
||||
#: includes/account_stuff.php:198
|
||||
msgid "Organisation Assurance"
|
||||
msgstr ""
|
||||
msgstr "Заверение организации"
|
||||
|
||||
#: www/wot/11.php:19
|
||||
msgid "Organisational Assurance"
|
||||
msgstr ""
|
||||
msgstr "Организационное заверение"
|
||||
|
||||
#: www/wot/11.php:22
|
||||
msgid "Organisation Title"
|
||||
msgstr ""
|
||||
msgstr "Название организации"
|
||||
|
||||
#: 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 "Потенциальные баллы"
|
||||
|
||||
#: www/account/52.php:38
|
||||
msgid "Primary email address"
|
||||
msgstr ""
|
||||
msgstr "Главный email"
|
||||
|
||||
#: www/help/0.php:20
|
||||
msgid "Digital signing (a guide for normal people)"
|
||||
msgstr ""
|
||||
msgstr "Цифровое заверение (руководство для обычных пользователей)"
|
||||
|
||||
#: www/wot/1.php:133
|
||||
msgid "Email Me"
|
||||
msgstr ""
|
||||
msgstr "Написать мне"
|
||||
|
||||
#: 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 "Детали запроса"
|
||||
|
||||
#: 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 ""
|
||||
"То же, что и выше, и, плюс к тому, Вы получите 100 баллов доверия, встретившись с несколькими заверителями из Сети доверия CAcert, которые установят Вашу личность на основании документов государственного образца с фотографией. "
|
||||
" "
|
||||
""
|
||||
|
||||
#: 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 "Ваш сертификат PGP/GPG приведен ниже."
|
||||
|
||||
#: www/help/0.php:19
|
||||
msgid "Certificate retrieval proposal"
|
||||
msgstr ""
|
||||
msgstr "Приглашение к установке сертификата"
|
||||
|
||||
#: www/disputes.php:423
|
||||
#, php-format
|
||||
|
@ -3215,7 +3218,7 @@ msgstr ""
|
|||
|
||||
#: www/account/43.php:101
|
||||
msgid "Tverify Account"
|
||||
msgstr ""
|
||||
msgstr "Проверить учетную запись"
|
||||
|
||||
#: 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 "Мы сообщим Вам о получении документов и добавим Вам соответствующее количество баллов."
|
||||
|
||||
#: www/account/12.php:18 www/account/5.php:18
|
||||
msgid "View all certificates"
|
||||
msgstr ""
|
||||
msgstr "Просмотреть сертификаты"
|
||||
|
||||
#: 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 "Вы уже отвечали на данный запрос."
|
||||
|
||||
#: www/disputes.php:416
|
||||
#, php-format
|
||||
|
@ -3326,7 +3329,7 @@ msgstr ""
|
|||
|
||||
#: includes/account.php:2089
|
||||
msgid "Your vote has been accepted."
|
||||
msgstr ""
|
||||
msgstr "Ваш ответ принят."
|
||||
|
||||
#: 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 ""
|
||||
|
|
394
locale/sv.po
394
locale/sv.po
|
@ -7,7 +7,7 @@ msgstr ""
|
|||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
||||
"PO-Revision-Date: 2005-05-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ålitlig tredje-part är helt enkelt någon i ditt land som är ansvarig för att bevittna signaturer och identifikationshandlingar. Bland dessa kan nämnas notarius publicus, fredsdomare osv. Andra personer som också kan användas för detta är bankdirektö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ö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ält är obligatoriska."
|
||||
msgstr "Alla f&auml;lt &auml;r obligatoriska."
|
||||
|
||||
#: www/account/43.php:157
|
||||
msgid "Alternate Verified Email Addresses"
|
||||
|
@ -148,7 +148,7 @@ msgstr "Alternativt kan du kontakta oss på fö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å att å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änliga hä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 ä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 "Ändra hemlig fras"
|
|||
msgid "Change Password"
|
||||
msgstr "Ändra lö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ämfö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ä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ö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ö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är - och bara när - de tvÃ&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ö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 ö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ång tid, men det har varit värt väntan, för nu kan du äntligen få säkerhet till rätt pris... Gratis!"
|
||||
msgstr "Det har tagit l&aring;ng tid, men det har varit värt väntan, för nu kan du äntligen få säkerhet till rä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ängd:"
|
||||
|
||||
#: www/help/3.php:4
|
||||
#: www/help/3.php:4
|
||||
msgid "Key generation process"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1233,7 +1237,7 @@ msgstr "Frågor för fö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örlorat lösenord"
|
||||
msgstr "F&ouml;rlorat l&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 "Ä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ö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ä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öva med 512 bitar istä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å 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å finns inte domänen lä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 "Översä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Ã¥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ågot anvä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är"
|
||||
|
||||
#: www/wot/6.php:48
|
||||
#: www/cap.php:64 www/ttp.php:128 www/wot/6.php:66
|
||||
msgid "YYYY-MM-DD"
|
||||
msgstr "Ã…Ã…Ã…Ã…-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 ä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ätt på alla frågorna, systemadministratö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örfrågan kunde inte processas ordentligt. Vänligen lä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 är skickat."
|
||||
|
||||
#: www/help/3.php:48
|
||||
#: www/help/3.php:48
|
||||
msgid "and"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2747,7 +2756,7 @@ msgstr "DD/MM/Ã…Ã…Ã…Ã…"
|
|||
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 ""
|
||||
|
|
372
locale/tl.po
372
locale/tl.po
|
@ -7,7 +7,7 @@ msgstr ""
|
|||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
||||
"PO-Revision-Date: 2005-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 ""
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -13,5 +13,5 @@
|
|||
PARTICULAR PURPOSE. See the License for more details.
|
||||
*/ ?>
|
||||
<p>
|
||||
<?=$_GET['message']?>
|
||||
<?=strip_tags($_GET['message'])?>
|
||||
</p>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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®id=".$_GET['regid']."'>$reg[long] ("._("Listed").": $total3)</a>\n".
|
||||
"<a href='wot.php?id=1®id=".$_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®id=$row[regid]'>$row[long] ("._("Listed").": $listed)</a></li>\n";
|
||||
echo "<li><a href='wot.php?id=1®id=$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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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®id=".$_GET['regid']."'>$reg[long] ("._("Listed").": $total3)</a>\n".
|
||||
"<a href='wot.php?id=7®id=".$_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®id=$row[id]'>$row[long]</a></li>\n";
|
||||
echo "<li><a href='wot.php?id=7®id=$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']."'"));
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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'] != "")
|
||||
{
|
||||
|
|
|
@ -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]'");
|
||||
}
|
||||
|
|
|
@ -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
81
www/api/ccsr.php
Normal 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
31
www/api/cemails.php
Normal 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
4
www/api/index.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?
|
||||
header("location: ..");
|
||||
exit;
|
||||
?>
|
|
@ -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;
|
||||
?>
|
||||
|
|
830
www/cps.php
830
www/cps.php
File diff suppressed because it is too large
Load diff
|
@ -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']);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
?>
|
||||
|
|
19
www/wot.php
19
www/wot.php
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue