스페인어(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

@ -3,12 +3,15 @@
<title xml:lang="ko">첨부파일</title>
<title xml:lang="zh-CN">上传附件</title>
<title xml:lang="en">Attachment</title>
<title xml:lang="es">Ajuntar archivo</title>
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<name xml:lang="zh-CN">zero</name>
<name xml:lang="en">Zero</name>
<name xml:lang="es">zero</name>
<description xml:lang="ko">첨부 파일 관리하는 모듈입니다.</description>
<description xml:lang="zh-CN">管理上传附件的模块。</description>
<description xml:lang="en">Module for managing attachments.</description>
<description xml:lang="es">Es el módulo maneja archivo ajuntado.</description>
</author>
</module>

View file

@ -0,0 +1,39 @@
<?php
/**
* @file modules/file/lang/es.lang.php
* @author zero <zero@nzeo.com>
* @brief Paquete lingual de archivo ajuntado
**/
$lang->file = 'Ajuntar Archivo';
$lang->file_name = 'Nombre de Archivo';
$lang->file_size = 'Tamaño';
$lang->download_count = 'Bajado';
$lang->status = 'Estado';
$lang->is_valid = 'Valido';
$lang->is_stand_by = 'Preparado';
$lang->file_list = 'Lista de archivo';
$lang->allowed_filesize = 'Tamaño maximo de archivo';
$lang->allowed_attach_size = 'Tamaño maximo en total por documento';
$lang->allowed_filetypes = 'Tipo de Archivos';
$lang->about_allowed_filesize = 'Puede especificar el limite de archivos incluidos. (excepto administrador)';
$lang->about_allowed_attach_size = 'Pueude especificar el limite de archivos incluidos en documento. (excepto administrador)';
$lang->about_allowed_filetypes = 'Puede subir archivo solo extenciónes definido. Puede definir en la forma como: "*.extensión", y puede usar ";" para muliples.<br />ej) *.* o *.jpg;*.gif;<br />(excepto administrador)';
$lang->cmd_delete_checked_file = 'eliminar la selección';
$lang->cmd_move_to_document = 'mover a documento';
$lang->cmd_download = 'bajar';
$lang->msg_cart_is_null = 'Por favor seleccióne archivo';
$lang->msg_checked_file_is_deleted = 'Ha eliminado %d archivos';
$lang->msg_exceeds_limit_size = 'Ha excedido del limite de incluidos';
$lang->search_target_list = array(
'filename' => 'Nombre',
'filesize' => 'Tamaño (byte)',
'download_count' => 'Bajado (más)',
'regdate' => 'Registrado',
'ipaddress' => 'Dirección IP',
);
?>