1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
$english = array(
"foafssl:manage" => "Manage ssl certificates",
"foafssl:suck" => "Suck an identity",
"foafssl:addforeign" => "Import a certificate",
"foafssl:generate" => "Generate",
"foafssl:generatecert" => "Generate a certificate",
"foafssl:your" => "Your ssl certificates",
"foafssl:name" => "Name",
"foafssl:generate:description" => "Write a name for your certificate (it should describe your identity on this network) and click on generate.",
"foafssl:return" => "After generating the certificate return to the manage page",
"foafssl:modulus" => "Modulus",
"foafssl:exponent" => "Exponent",
"foafssl:loggedin" => "You logged in successfully with your certificate!",
"foafssl:cantlogin" => "Couldnt login with the certificate",
"foafssl:addkey" => "Your new key has been added",
"foafssl:cantadd" => "Couldnt add the certificate, check that it is a correct foaf ssl certificate",
"foafssl:login" => "Foaf-ssl Login",
"foafssl:explain" => "You can generate your certificate for this network by using the generate button, also you can import from a file, or suck one you have installed on your browser.",
);
add_translation("en",$english);
?>
|