diff options
author | Sem <sembrestels@riseup.net> | 2012-01-14 01:28:21 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-01-14 01:28:21 +0100 |
commit | 6b5c3f11ac70fa8ccc08cbdfe905713c8e3d9849 (patch) | |
tree | fa15264f2d513bba57e2c3da2c94ba04c29c9855 /languages/es.diagnostics.php | |
parent | 46d1727f0e6e5dc32fa703157879be9ff65240be (diff) | |
download | elgg-6b5c3f11ac70fa8ccc08cbdfe905713c8e3d9849.tar.gz elgg-6b5c3f11ac70fa8ccc08cbdfe905713c8e3d9849.tar.bz2 |
Moved all files to languages folder.
for file in *; do
mv $file/languages/es.php ../languages/es.$file.php;
done
Diffstat (limited to 'languages/es.diagnostics.php')
-rw-r--r-- | languages/es.diagnostics.php | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/languages/es.diagnostics.php b/languages/es.diagnostics.php new file mode 100644 index 000000000..8b2693931 --- /dev/null +++ b/languages/es.diagnostics.php @@ -0,0 +1,59 @@ +<?php + +// Generado por translationbrowser + +$spanish = array( + 'admin:utilities:diagnostics' => 'Diagnóstico del Sistema', + 'diagnostics' => "Diagnóstico del sistema" , + 'diagnostics:report' => 'Reportes de Diagnósticos', + + 'diagnostics:description' => "El informe de diagnóstico es muy útil para poder resolver cualquier problema de la plataforma. Puedes descargar un log completo y analizarlo. Presiona el botón para obtener un .txt" , + + 'diagnostics:download' => "Descargar .txt" , + 'diagnostics:header' => "======================================================================== +Informe de Diagnóstico de la red social +Generado %s por %s +======================================================================== + +" , + 'diagnostics:report:basic' => " +Distribución de Elgg %s, version %s + +------------------------------------------------------------------------" , + 'diagnostics:report:php' => " +PHP info: +%s +------------------------------------------------------------------------" , + 'diagnostics:report:plugins' => " +Detalles y plugins instalados: + +%s +------------------------------------------------------------------------" , + 'diagnostics:report:md5' => " +Ficheros y checksums instalados: + +%s +------------------------------------------------------------------------" , + 'diagnostics:report:globals' => " +Variables globales: + +%s +------------------------------------------------------------------------" , + 'diagnostics:unittester' => "Test de unidades" , + 'diagnostics:unittester:description' => "Los siguientes tests de diagnostico se utilizan para debuggear determinadas partes del framework de Elgg" , + 'diagnostics:test:executetest' => "Ejecutar test" , + 'diagnostics:test:executeall' => "Ejectuar todo" , + 'diagnostics:unittester:notests' => "Disculpa, no hay modulos para realizar tests instalados" , + 'diagnostics:unittester:testnotfound' => "Disculpa, el informe no puede ser generado porque no ha encontrado ningún test válido." , + 'diagnostics:unittester:testresult:nottestclass' => "FALLO - no se trata de una clase test" , + 'diagnostics:unittester:testresult:fail' => "FALLO" , + 'diagnostics:unittester:testresult:success' => "SUCESO" , + 'diagnostics:unittest:example' => "Ejemplo de unidad test, solo disponible en modo debug" , + 'diagnostics:unittester:report' => "Informe de test para %s" , + 'diagnostics:unittester:debug' => "El sitio debe estar en modo de depuración para ejecutar tests unitarios." , + 'diagnostics:unittester:warning' => "ATENCIÓN: Estos tests pueden dejar tras de sí objetos de depuración en tu base de datos. ¡NO USAR EN UN SITIO EN PRODUCCIÓN!" +); + +add_translation('es', $spanish); + +?>
\ No newline at end of file |