스페인어(by 이코님) 7월 9일 16시분까지 적용

git-svn-id: http://xe-core.googlecode.com/svn/trunk@1881 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-09 07:12:25 +00:00
parent 554a7ddced
commit 7083aa37e4
26 changed files with 395 additions and 3 deletions

View file

@ -2,10 +2,13 @@
<module version="0.1">
<title xml:lang="ko">문서</title>
<title xml:lang="en">Document</title>
<title xml:lang="es">Documento</title>
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<name xml:lang="en">Zero</name>
<name xml:lang="es">zero</name>
<description xml:lang="ko">게시판, 블로그등의 모듈에서 사용되는 문서를 관리하는 모듈입니다. </description>
<description xml:lang="en">Module for managing documents used in board, blog, etc.</description>
<description xml:lang="es">Es el módulo para manejar documentos en blog y boletínes.</description>
</author>
</module>

View file

@ -0,0 +1,37 @@
dksk <?php
/**
* @file modules/document/lang/es.lang.php
* @author zero <zero@nzeo.com>
* @brief Paquete lingual de módulo documento
**/
$lang->cmd_delete_checked_document = 'Eliminar selección';
$lang->msg_cart_is_null = 'Por favor selecciona documento para eliminar';
$lang->msg_category_not_moved = 'No puede mover';
$lang->msg_is_secret = 'es secreto';
$lang->msg_checked_document_is_deleted = 'Eliminado %d documentos';
// Artículo de busqueda en la pantalla de administración
$lang->search_target_list = array(
'title' => 'Título',
'content' => 'Contenido',
'user_id' => 'ID',
'member_srl' => 'Numero de miembro',
'user_name' => 'Nombre de usuario',
'nick_name' => 'Apodo',
'email_address' => 'Correo Electrónico',
'homepage' => 'Pagina de web',
'is_notice' => 'Noticia',
'is_secret' => 'Secreto',
'tags' => 'Etiqueta',
'readed_count' => 'Leido',
'voted_count' => 'Votado',
'comment_count ' => 'Commentarios',
'trackback_count ' => 'Trackback',
'uploaded_count ' => 'Subido',
'regdate' => 'Registrado',
'last_update' => 'Ultimo actualizado',
'ipaddress' => 'Dirección IP',
);
?>