aboutsummaryrefslogtreecommitdiff
path: root/mod/foafssl/languages
diff options
context:
space:
mode:
Diffstat (limited to 'mod/foafssl/languages')
-rwxr-xr-xmod/foafssl/languages/en.php25
-rwxr-xr-xmod/foafssl/languages/es.php26
2 files changed, 51 insertions, 0 deletions
diff --git a/mod/foafssl/languages/en.php b/mod/foafssl/languages/en.php
new file mode 100755
index 000000000..13141fd41
--- /dev/null
+++ b/mod/foafssl/languages/en.php
@@ -0,0 +1,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);
+
+?>
diff --git a/mod/foafssl/languages/es.php b/mod/foafssl/languages/es.php
new file mode 100755
index 000000000..fbe170595
--- /dev/null
+++ b/mod/foafssl/languages/es.php
@@ -0,0 +1,26 @@
+<?php
+/**
+ * Elgg spotlight lorea
+ *
+ * @package
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author lorea
+ * @copyright lorea
+ * @link http://lorea.cc
+ */
+
+ $spanish = array(
+ "foafssl:manage" => "Gestionar certificados ssl",
+ "foafssl:addforeign" => "Importar un certificado",
+ "foafssl:generate" => "Generar",
+ "foafssl:your" => "Tus certificados ssl",
+ "foafssl:name" => "Nombre",
+ "foafssl:modulus" => "Modulo",
+ "foafssl:exponent" => "Exponente",
+ "foafssl:loggedin" => "Has entrado a la red con tu certificado",
+ "foafssl:cantlogin" => "No se ha podido validar tu certificado",
+ );
+
+ add_translation("es",$spanish);
+
+?>