mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1865 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
b376053c1c
commit
74374604a0
27 changed files with 730 additions and 46 deletions
|
|
@ -1,9 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<addon version="0.1">
|
||||
<title xml:lang="ko">사용자 추가 정보 및 커뮤니케이션 기능 활성화</title>
|
||||
<title xml:lang="jp">会員の追加情報とコミュニケーション機能活性化</title>
|
||||
<title xml:lang="zh-CN">用户添加信息与Communication功能激活</title>
|
||||
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
|
||||
<name xml:lang="ko">제로</name>
|
||||
<name xml:lang="jp">ゼロ</name>
|
||||
<name xml:lang="zh-CN">zero</name>
|
||||
<description xml:lang="ko">
|
||||
사용자의 정보중 이미지이름, 이미지마크, 서명등을 화면에 출력해주는 애드온입니다.
|
||||
|
|
@ -15,6 +17,16 @@
|
|||
4. MemberModel::getMemberMenu 호출시 대상이 회원일 경우 쪽지 보내기 기능 추가합니다.
|
||||
5. MemberModel::getMemberMenu 호출시 친구 등록 메뉴를 추가합니다.
|
||||
</description>
|
||||
<description xml:lang="jp">
|
||||
会員情報の中イメージ名、イメージマーク、署名などを画面に出力する拡張機能です。
|
||||
このような情報を使用しない場合、実行時間を少なくするため拡張機能としておきます。
|
||||
イメージ名、イメージマーク、署名などを出力したい時はこの拡張機能を活性化して下さい。
|
||||
1. 出力の直前 <div class="member_会員番号">....</div> に定義された部分を探し、会員番号をチェックしてイメージ名、イメージマークがあるかを確認して、ある場合内容を変更します
|
||||
2. 出力の直前 <div class="document_会員番号">...</div>に定義された部分を探し、書込みの内容だと判断して、下段に署名を追加します
|
||||
3. 新しいメッセージが来た場合ポップアップします
|
||||
4. MemberModel::getMemberMenu 呼出す時、相手が会員の場合メッセージ送信の機能を追加します
|
||||
5. MemberModel::getMemberMenu 呼出す時、友達登録メニュを追加します
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
用户信息中显示在页面的昵称图像,用户图标,签名等的Add-On。
|
||||
激活Add-On以后后才可以使用昵称图像, 用户图标, 签名等功能。
|
||||
|
|
|
|||
|
|
@ -50,18 +50,18 @@
|
|||
$lang->disable = 'Disable';
|
||||
|
||||
// Essencial Words
|
||||
$lang->no = 'No';
|
||||
$lang->no = 'No.';
|
||||
$lang->notice = 'Notice';
|
||||
$lang->secret = 'Secret';
|
||||
$lang->category = 'Category';
|
||||
$lang->document_srl = 'Doc. No.';
|
||||
$lang->user_id = 'ID';
|
||||
$lang->user_id = 'User ID';
|
||||
$lang->author = 'Author';
|
||||
$lang->password = 'Password';
|
||||
$lang->password1 = 'Password';
|
||||
$lang->password2 = 'Confirm Password';
|
||||
$lang->admin_id = 'Admin ID';
|
||||
$lang->writer = 'Writer';
|
||||
$lang->writer = 'Author';
|
||||
$lang->user_name = 'User Name';
|
||||
$lang->nick_name = 'Nick Name';
|
||||
$lang->email_address = 'Email';
|
||||
|
|
@ -69,7 +69,7 @@
|
|||
$lang->blog = 'Blog';
|
||||
$lang->birthday = 'Birthdate';
|
||||
$lang->browser_title = 'Browser Title';
|
||||
$lang->title = 'Title';
|
||||
$lang->title = 'Subject';
|
||||
$lang->title_content = 'Title+Content';
|
||||
$lang->content = 'Content';
|
||||
$lang->document = 'Entry';
|
||||
|
|
@ -78,7 +78,7 @@
|
|||
$lang->trackback = 'Trackback';
|
||||
$lang->tag = 'Tag';
|
||||
$lang->allow_comment = 'Allow Comment';
|
||||
$lang->lock_comment = 'Lock Comment';
|
||||
$lang->lock_comment = 'Block Comment';
|
||||
$lang->allow_trackback = 'Allow Trackback';
|
||||
$lang->uploaded_file = 'Attachment';
|
||||
$lang->grant = 'Authority';
|
||||
|
|
@ -103,11 +103,11 @@
|
|||
$lang->blog_name = 'Blog Title';
|
||||
$lang->excerpt = 'Quotation';
|
||||
|
||||
$lang->document_count = 'Entry Count';
|
||||
$lang->document_count = 'Total Entries';
|
||||
$lang->page_count = 'Page Count';
|
||||
$lang->list_count = 'List Count';
|
||||
$lang->readed_count = 'Count Referred';
|
||||
$lang->voted_count = 'Count Voted';
|
||||
$lang->readed_count = 'Views';
|
||||
$lang->voted_count = 'Votes';
|
||||
$lang->member_count = 'Member Count';
|
||||
$lang->date = 'Date';
|
||||
$lang->regdate = 'Date Published';
|
||||
|
|
@ -145,18 +145,18 @@
|
|||
// Related to Message
|
||||
$lang->msg_call_server = 'Requesting to the server, please wait';
|
||||
$lang->msg_db_not_setted = 'DB configuration has not been set';
|
||||
$lang->msg_invalid_queryid = 'Query ID value specified wrong';
|
||||
$lang->msg_not_permitted = 'You have no permission';
|
||||
$lang->msg_invalid_queryid = 'Specified query ID value is invalid';
|
||||
$lang->msg_not_permitted = 'You are not permitted to continue';
|
||||
$lang->msg_input_password = 'Please enter your password';
|
||||
$lang->msg_invalid_document = 'Invalid Entry Number';
|
||||
$lang->msg_invalid_request = 'Invalid Request';
|
||||
$lang->msg_invalid_password = 'Invalid Password';
|
||||
$lang->msg_error_occured = 'Error has been Occured';
|
||||
$lang->msg_error_occured = 'Error has been occured';
|
||||
$lang->msg_not_founded = 'Target could not be found';
|
||||
$lang->msg_no_result = 'This search has no result';
|
||||
$lang->msg_no_result = 'Your search returned no result';
|
||||
|
||||
$lang->msg_not_permitted_act = 'You are not permitted to request the action to be executed';
|
||||
$lang->msg_module_is_not_exists = 'Could not find the module you requested';
|
||||
$lang->msg_module_is_not_exists = 'Could not find the module you have requested';
|
||||
$lang->msg_module_is_not_standalone = 'The module you requested could not behave independently';
|
||||
|
||||
$lang->success_registed = 'Successfully Registered';
|
||||
|
|
@ -165,22 +165,22 @@
|
|||
$lang->success_voted = 'Successfully Voted';
|
||||
$lang->success_moved = 'Successfully Moved';
|
||||
$lang->success_sended = 'Successfully Sent';
|
||||
$lang->success_reset = 'Successfully Reset';
|
||||
$lang->success_reset = 'Successfully Reseted';
|
||||
$lang->success_leaved = 'Successfully Seceded';
|
||||
|
||||
$lang->fail_to_delete = 'Deletion Failed';
|
||||
$lang->fail_to_move = 'Moving Failed';
|
||||
|
||||
$lang->failed_voted = 'Could not be voted';
|
||||
$lang->fail_to_delete_have_children = 'Deletion Failed, since there are one or more replies';
|
||||
$lang->fail_to_delete_have_children = 'There are still one or more replies left; Deletion Failed';
|
||||
|
||||
$lang->confirm_submit = 'Confirm to Submit?';
|
||||
$lang->confirm_logout = 'Confirm to Logout?';
|
||||
$lang->confirm_vote = 'Confirm to Vote?';
|
||||
$lang->confirm_delete = 'Confirm to Delete?';
|
||||
$lang->confirm_move = 'Confirm to Move?';
|
||||
$lang->confirm_reset = 'Confirm to Reset?';
|
||||
$lang->confirm_leave = 'Confirm to Secede?';
|
||||
$lang->confirm_submit = 'Sure you want to Submit?';
|
||||
$lang->confirm_logout = 'Sure you want to Logout?';
|
||||
$lang->confirm_vote = 'Sure you want to Vote?';
|
||||
$lang->confirm_delete = 'Sure you want to Delete?';
|
||||
$lang->confirm_move = 'Sure you want to Move?';
|
||||
$lang->confirm_reset = 'Sure you want to Reset?';
|
||||
$lang->confirm_leave = 'Sure you want to Secede?';
|
||||
|
||||
$lang->column_type = 'Column Type';
|
||||
$lang->column_type_list['text'] = 'one-line text';
|
||||
|
|
@ -196,8 +196,8 @@
|
|||
$lang->column_name = 'Column Name';
|
||||
$lang->column_title = 'Column Title';
|
||||
$lang->default_value = 'Default Value';
|
||||
$lang->is_active = 'Present tense';
|
||||
$lang->is_required = 'Required field';
|
||||
$lang->is_active = 'Active';
|
||||
$lang->is_required = 'Required Field';
|
||||
|
||||
// Alert messages for Javascript using by XML filter
|
||||
$lang->filter->isnull = 'Input a value for %s';
|
||||
|
|
@ -205,7 +205,7 @@
|
|||
$lang->filter->equalto = 'Invalid value assigned for %s';
|
||||
$lang->filter->invalid_email = '%s got an invalid format (eg. zbxe@zeroboard.com)';
|
||||
$lang->filter->invalid_user_id = $lang->filter->invalid_userid = "%s got an invalid format.\\nIt takes English letters, numbers, and underbar(_) of which should start with English letters";
|
||||
$lang->filter->invalid_homepage = '%s got an invalid format. (ex: http://www.zeroboard.com)';
|
||||
$lang->filter->invalid_homepage = '%s got an invalid format. (eg. http://www.zeroboard.com)';
|
||||
$lang->filter->invalid_korean = '%s got an invalid format. Only Korean letters are accepted';
|
||||
$lang->filter->invalid_korean_number = '%s got an invalid format. Only a combination of Korean letters and numbers is accepted';
|
||||
$lang->filter->invalid_alpha = '%s got an invalid format. Only English letters are accepted';
|
||||
|
|
|
|||
214
common/lang/es.lang.php
Normal file
214
common/lang/es.lang.php
Normal file
|
|
@ -0,0 +1,214 @@
|
|||
<?php
|
||||
/**
|
||||
* common/lang/en.lang.php @file
|
||||
* @author cero (zero@nzeo.com)
|
||||
* paquete de la lengua inglesa del @brief (solamente las palabras básicas se incluyen aquí)
|
||||
**/
|
||||
|
||||
//palabras para la acción, que se utiliza básicamente
|
||||
$lang->cmd_write = 'escribir';
|
||||
$lang->cmd_reply = 'contestación';
|
||||
$lang->cmd_delete = 'cancelación';
|
||||
$lang->cmd_modify = 'modificarse';
|
||||
$lang->cmd_edit = 'corregir';
|
||||
$lang->cmd_view = 'visión';
|
||||
$lang->cmd_view_all = 'Visión Toda';
|
||||
$lang->cmd_list = 'lista';
|
||||
$lang->cmd_prev = 'Prev';
|
||||
$lang->cmd_next = 'después';
|
||||
$lang->cmd_send_trackback = 'Enviar Trackback';
|
||||
$lang->cmd_registration = $lang->cmd_submit = 'someter';
|
||||
$lang->cmd_comment_registration = 'Agregar El Comentario';
|
||||
$lang->cmd_insert = 'relleno';
|
||||
$lang->cmd_save = 'excepto';
|
||||
$lang->cmd_input = 'entrado';
|
||||
$lang->cmd_search = 'búsqueda';
|
||||
$lang->cmd_cancel = 'cancelación';
|
||||
$lang->cmd_back = 'Ir Detrás';
|
||||
$lang->cmd_vote = 'voto';
|
||||
$lang->cmd_move = 'movimiento';
|
||||
$lang->cmd_move_up = 'encima de';
|
||||
$lang->cmd_move_down = 'abajo';
|
||||
$lang->cmd_add_indent = 'mella';
|
||||
$lang->cmd_remove_indent = 'Outdent';
|
||||
$lang->cmd_management = 'manejar';
|
||||
$lang->cmd_make = 'crear';
|
||||
$lang->cmd_select = 'seleccionar';
|
||||
$lang->cmd_select_all = 'Seleccionar Todos';
|
||||
$lang->cmd_unselect_all = 'Deselect Todos';
|
||||
$lang->cmd_close_all = 'Cercano Todos';
|
||||
$lang->cmd_open_all = 'Abrir Todos';
|
||||
$lang->cmd_reload = 'recarga';
|
||||
$lang->cmd_close = 'cercano';
|
||||
$lang->cmd_open = 'abrirse';
|
||||
$lang->cmd_setup = 'configurar';
|
||||
$lang->cmd_apply = 'aplicarse';
|
||||
$lang->cmd_open_calendar = 'seleccionar una fecha';
|
||||
$lang->cmd_send = 'enviar';
|
||||
|
||||
$lang->enable = 'permitir';
|
||||
$lang->disable = 'inhabilitar';
|
||||
|
||||
//Palabras De Essencial
|
||||
$lang->no = 'ningún';
|
||||
$lang->notice = 'aviso';
|
||||
$lang->secret = 'secreto';
|
||||
$lang->category = 'categoría';
|
||||
$lang->document_srl = 'Doc.Num';
|
||||
$lang->user_id = 'IDENTIFICACIÓN';
|
||||
$lang->author = 'autor';
|
||||
$lang->password = 'contraseña';
|
||||
$lang->password1 = 'contraseña';
|
||||
$lang->password2 = 'Confirmar La Contraseña';
|
||||
$lang->admin_id = 'Identificación Del Admin';
|
||||
$lang->writer = 'escritor';
|
||||
$lang->user_name = 'Nombre Del Usuario';
|
||||
$lang->nick_name = 'Nombre De la Mella';
|
||||
$lang->email_address = 'email';
|
||||
$lang->homepage = 'homepage';
|
||||
$lang->blog = 'Blog';
|
||||
$lang->birthday = 'fecha de nacimiento';
|
||||
$lang->browser_title = 'Título Del Browser';
|
||||
$lang->title = 'título';
|
||||
$lang->title_content = 'Title+Content';
|
||||
$lang->content = 'contenido';
|
||||
$lang->document = 'entrada';
|
||||
$lang->comment = 'comentario';
|
||||
$lang->description = 'descripción';
|
||||
$lang->trackback = 'Trackback';
|
||||
$lang->tag = 'etiqueta';
|
||||
$lang->allow_comment = 'Permitir El Comentario';
|
||||
$lang->lock_comment = 'Comentario Que se traba';
|
||||
$lang->allow_trackback = 'Permitir Trackback';
|
||||
$lang->uploaded_file = 'accesorio';
|
||||
$lang->grant = 'autoridad';
|
||||
$lang->target = 'blanco';
|
||||
$lang->total = 'total';
|
||||
$lang->total_count = 'Total De la Cuenta';
|
||||
$lang->ipaddress = 'IP ADDRESS';
|
||||
$lang->path = 'trayectoria';
|
||||
$lang->cart = 'Artículo Seleccionado';
|
||||
$lang->friend = 'amigos';
|
||||
|
||||
$lang->mid = 'Nombre Del Módulo';
|
||||
$lang->layout = 'disposición';
|
||||
$lang->widget = 'Widget';
|
||||
$lang->module = 'módulo';
|
||||
$lang->skin = 'tema';
|
||||
$lang->colorset = 'Colorset';
|
||||
$lang->extra_vars = 'Vars Adicional';
|
||||
|
||||
$lang->document_url = 'URL De la Entrada';
|
||||
$lang->trackback_url = 'URL De Trackback';
|
||||
$lang->blog_name = 'Título De Blog';
|
||||
$lang->excerpt = 'cita';
|
||||
|
||||
$lang->document_count = 'Cuenta De la Entrada';
|
||||
$lang->page_count = 'Cuenta De la Página';
|
||||
$lang->list_count = 'Cuenta De la Lista';
|
||||
$lang->readed_count = 'Cuenta Referida';
|
||||
$lang->voted_count = 'Cuenta Votada';
|
||||
$lang->member_count = 'Cuenta Del Miembro';
|
||||
$lang->date = 'fecha';
|
||||
$lang->regdate = 'Fecha Publicada';
|
||||
$lang->last_update = 'Actualización Pasada';
|
||||
$lang->signup_date = 'Fecha De Signup';
|
||||
$lang->last_login = 'Conexión Pasada';
|
||||
$lang->first_page = 'Primera Página';
|
||||
$lang->last_page = 'Página Pasada';
|
||||
$lang->search_target = 'Buscando La Blanco';
|
||||
$lang->search_keyword = 'Buscando Palabra clave';
|
||||
$lang->is_default = 'defecto';
|
||||
|
||||
$lang->no_documents = 'Ningunas Entradas!';
|
||||
|
||||
$lang->board_manager = 'Tablero Que fija';
|
||||
$lang->member_manager = 'Miembro Que fija';
|
||||
$lang->layout_manager = 'Disposición Que fija';
|
||||
|
||||
$lang->use = 'uso';
|
||||
$lang->notuse = 'disuse';
|
||||
$lang->not_exists = 'no existió';
|
||||
|
||||
$lang->unit_sec = 'sec';
|
||||
$lang->unit_min = 'minuto';
|
||||
$lang->unit_hour = 'hora';
|
||||
$lang->unit_day = 'día';
|
||||
$lang->unit_week = 'semana';
|
||||
$lang->unit_month = 'mes';
|
||||
$lang->unit_year = 'año';
|
||||
|
||||
//relacionado con la descripción
|
||||
$lang->about_tag = 'cuando mecanografiar las etiquetas, insertando un comma() entre cada etiqueta permite que usted entre las etiquetas múltiples';
|
||||
$lang->about_layout = 'la\'disposición adorna un aspecto de su módulo que usted podría configurarlo de menú de la disposición en la tapa';
|
||||
|
||||
//relacionado con el mensaje
|
||||
$lang->msg_call_server = 'solicitando al servidor, esperar por favor';
|
||||
$lang->msg_db_not_setted = 'la\'configuración del DB tiene no ser fijada';
|
||||
$lang->msg_invalid_queryid = 'el valor de la identificación de la pregunta especificó mal';
|
||||
$lang->msg_not_permitted = 'usted no tiene ningún permiso';
|
||||
$lang->msg_input_password = 'incorporar por favor su contraseña';
|
||||
$lang->msg_invalid_document = 'Número Inválido De la Entrada';
|
||||
$lang->msg_invalid_request = 'Petición Inválida';
|
||||
$lang->msg_invalid_password = 'Contraseña Inválida';
|
||||
$lang->msg_error_occured = 'El\'Error Ocurrió';
|
||||
$lang->msg_not_founded = 'la\'blanco no se podía encontrar';
|
||||
$lang->msg_no_result = 'esta búsqueda no tiene ningún resultado';
|
||||
|
||||
$lang->msg_not_permitted_act = 'le no permiten para solicitar la acción para ser ejecutado';
|
||||
$lang->msg_module_is_not_exists = 'no podría encontrar el módulo que usted solicitó';
|
||||
$lang->msg_module_is_not_standalone = 'el módulo que usted solicitó no podría comportarse independientemente';
|
||||
|
||||
$lang->success_registed = 'Colocado Con éxito';
|
||||
$lang->success_updated = 'Puesto al día Con éxito';
|
||||
$lang->success_deleted = 'Suprimido Con éxito';
|
||||
$lang->success_voted = 'Votado Con éxito';
|
||||
$lang->success_moved = 'Movido Con éxito';
|
||||
$lang->success_sended = 'Enviado Con éxito';
|
||||
$lang->success_reset = 'Reajustado Con éxito';
|
||||
$lang->success_leaved = 'Con éxito Seceded';
|
||||
|
||||
$lang->fail_to_delete = 'Canceladura Fallada';
|
||||
$lang->fail_to_move = 'Mudanza Fallada';
|
||||
|
||||
$lang->failed_voted = 'no podía ser votado';
|
||||
$lang->fail_to_delete_have_children = 'la\'canceladura falló, puesto que hay unas o más contestaciones';
|
||||
|
||||
$lang->confirm_submit = 'confirmar para someter?';
|
||||
$lang->confirm_logout = 'confirmar al registro de estado de la máquina?';
|
||||
$lang->confirm_vote = 'confirmar para votar?';
|
||||
$lang->confirm_delete = 'confirmar para suprimir?';
|
||||
$lang->confirm_move = 'confirmar para moverse?';
|
||||
$lang->confirm_reset = 'confirmar para reajustar?';
|
||||
$lang->confirm_leave = 'confirmar a Secede?';
|
||||
|
||||
$lang->column_type = 'Tipo De la Columna';
|
||||
$lang->column_type_list['text'] ='uno-li\'nea texto';
|
||||
$lang->column_type_list['homepage'] ='URL';
|
||||
$lang->column_type_list['email_address'] ='email';
|
||||
$lang->column_type_list['tel'] ='número de teléfono';
|
||||
$lang->column_type_list['textarea'] ='textarea multilínea';
|
||||
$lang->column_type_list['checkbox'] ='checkbox (múltiple selección)';
|
||||
$lang->column_type_list['select'] ='caja selecta (solo selección)';
|
||||
$lang->column_type_list['kr_zip'] ='código postal (coreano)';
|
||||
$lang->column_type_list['date'] ='fecha (yyyy/mm/dd)';
|
||||
//$lang->column_type_list['jp_zip'] ='código postal (japonés)';
|
||||
$lang->column_name = 'Nombre De la Columna';
|
||||
$lang->column_title = 'Título De la Columna';
|
||||
$lang->default_value = 'Valor Prefijado';
|
||||
$lang->is_active = 'activado';
|
||||
$lang->is_required = 'Necesario Entrada';
|
||||
|
||||
//los mensajes alertas para el Javascript que usa por XML filtrarse
|
||||
$lang->filter->isnull = 'entrar un valor para %s';
|
||||
$lang->filter->outofrange = 'alinear el lenghth del texto de %s';
|
||||
$lang->filter->equalto = 'valor inválido asignado para %s';
|
||||
$lang->filter->invalid_email = '%s consiguió un formato inválido (eg. zbxe@zeroboard.com)';
|
||||
$lang->filter->invalid_user_id = $lang->filter->invalid_userid = "%s consiguió a tomas inválidas de un format.\\nIt letras, números, y el underbar(ingleses _) de cuál debe comenzar con las letras inglesas";
|
||||
$lang->filter->invalid_homepage = '%s consiguió un formato inválido (?: http://www.zeroboard.com)';
|
||||
$lang->filter->invalid_korean = '%s consiguió un formato inválido. Solamente se aceptan las letras coreanas';
|
||||
$lang->filter->invalid_korean_number = '%s consiguió un formato inválido. Solamente una combinación de letras y de números coreanos se acepta';
|
||||
$lang->filter->invalid_alpha = '%s consiguió un formato inválido. Solamente se aceptan las letras inglesas';
|
||||
$lang->filter->invalid_alpha_number = '%s consiguió un formato inválido. Solamente una combinación de letras y de números ingleses se acepta';
|
||||
$lang->filter->invalid_number = '%s consiguió un formato inválido. Solamente se aceptan los números';
|
||||
?>
|
||||
|
|
@ -2,66 +2,78 @@
|
|||
<layout version="0.1">
|
||||
<title xml:lang="ko">zb5beta 사이트 레이아웃</title>
|
||||
<title xml:lang="zh-CN">zb5beta 网站布局</title>
|
||||
<title xml:lang="en">zb5beta site's layout</title>
|
||||
<author email_address="styx@zeroboard.com" link="http://bystyx.com" date="2007. 2. 28">
|
||||
<name xml:lang="ko">styx</name>
|
||||
<name xml:lang="zh-CN">styx</name>
|
||||
<description xml:lang="ko">
|
||||
zb5beta에서 사용되던 사이트 레이아웃입니다.
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
在zb5beta 使用的布局
|
||||
</description>
|
||||
<name xml:lang="en">styx</name>
|
||||
<description xml:lang="ko">zb5beta에서 사용되던 사이트 레이아웃입니다.</description>
|
||||
<description xml:lang="zh-CN">在zb5beta 使用的布局</description>
|
||||
<description xml:lang="en">It is layout which used into zb5beta.</description>
|
||||
</author>
|
||||
<extra_vars>
|
||||
<var name="colorset" type="select">
|
||||
<title xml:lang="ko">컬러셋</title>
|
||||
<title xml:lang="zh-CN">颜色</title>
|
||||
<title xml:lang="en">Colorset</title>
|
||||
<description xml:lang="ko">원하시는 컬러셋을 선택해주세요.</description>
|
||||
<description xml:lang="zh-CN">请选择颜色。</description>
|
||||
<description xml:lang="en">Select colorset.</description>
|
||||
<options name="blue">
|
||||
<title xml:lang="ko">파란색</title>
|
||||
<title xml:lang="zh-CN">蓝色</title>
|
||||
<title xml:lang="en">Blue</title>
|
||||
<value>blue</value>
|
||||
</options>
|
||||
<options name="green">
|
||||
<title xml:lang="ko">녹색</title>
|
||||
<title xml:lang="zh-CN">绿色</title>
|
||||
<title xml:lang="en">Green</title>
|
||||
<value>green</value>
|
||||
</options>
|
||||
<options name="red">
|
||||
<title xml:lang="ko">빨간색 </title>
|
||||
<title xml:lang="zh-CN">红色 </title>
|
||||
<title xml:lang="en">Red </title>
|
||||
<value>red</value>
|
||||
</options>
|
||||
<options name="purple">
|
||||
<title xml:lang="ko">보라색</title>
|
||||
<title xml:lang="zh-CN">紫色</title>
|
||||
<title xml:lang="en">Purple</title>
|
||||
<value>purple</value>
|
||||
</options>
|
||||
</var>
|
||||
<var name="logo_image" type="image">
|
||||
<title xml:lang="ko">로고이미지</title>
|
||||
<title xml:lang="zh-CN">LOGO图片</title>
|
||||
<title xml:lang="en">Logo image</title>
|
||||
<description xml:lang="ko">레이아웃의 상단에 표시될 로고이미지를 입력하세요. (세로길이가 100px인 투명이미지가 가장 어울립니다)</description>
|
||||
<description xml:lang="zh-CN">请输入布局顶部现实的LOGO图片。 (适合高度 100px的透明LOGO。)</description>
|
||||
<description xml:lang="en">Please put a logo image in the the top of layout. (Transparency image's height 100px is best becoming.)</description>
|
||||
</var>
|
||||
<var name="index_url" type="text">
|
||||
<title xml:lang="ko">홈 페이지 URL</title>
|
||||
<title xml:lang="zh-CN">网站 URL</title>
|
||||
<title xml:lang="en">Hompage URL</title>
|
||||
<description xml:lang="ko">로고를 클릭시에 이동할 홈 페이지 URL을 입력해 주세요.</description>
|
||||
<description xml:lang="zh-CN">点击网站LOGO或标题时要移动的页面URL。</description>
|
||||
<description xml:lang="en">Please put a homepage URL, when you click the logo.</description>
|
||||
</var>
|
||||
<var name="copyright_text" type="textarea">
|
||||
<title xml:lang="ko">카피라이트</title>
|
||||
<title xml:lang="zh-CN">版权信息</title>
|
||||
<title xml:lang="en">Copyright</title>
|
||||
<description xml:lang="ko">사이트 하단에 표시될 카피라이트를 입력해주세요.</description>
|
||||
<description xml:lang="zh-CN">请输入网站底部显示的版权信息。</description>
|
||||
<description xml:lang="en">Please put a copyright in the site's lower column.</description>
|
||||
</var>
|
||||
</extra_vars>
|
||||
<menus>
|
||||
<menu name="main_menu" default="true">
|
||||
<title xml:lang="ko">상단 메뉴</title>
|
||||
<title xml:lang="zh-CN">顶部菜单</title>
|
||||
<title xml:lang="en">Top menu</title>
|
||||
<maxdepth>3</maxdepth>
|
||||
</menu>
|
||||
</menus>
|
||||
|
|
|
|||
|
|
@ -2,10 +2,13 @@
|
|||
<module version="0.1">
|
||||
<title xml:lang="ko">애드온</title>
|
||||
<title xml:lang="en">Addon</title>
|
||||
<title xml:lang="es">Addon</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">This module is for maintaining addons which can toggle use and disuse states.</description>
|
||||
<description xml:lang="es">Esto es el módulo de mantenimiento del addon que a colocar addons a encendir/apagar..</description>
|
||||
</author>
|
||||
</module>
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
レイアウトと基本メニュを直接担当
|
||||
</description>
|
||||
<description xml:lang="en">
|
||||
This module used for blog functions.
|
||||
It is similar to the board, but it has diffent views and new methods for blog has been included.
|
||||
Also contains layout and basic menu.
|
||||
This module contains the blog functions.
|
||||
It's similar to the bbs module, but it has diffent views and more suitable methods for blog has been included.
|
||||
This module manages layout and basic menu itself.
|
||||
</description>
|
||||
</author>
|
||||
</module>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
/**
|
||||
* @file ko.lang.php
|
||||
* @file en.lang.php
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief basic language pack for blog module
|
||||
**/
|
||||
|
|
@ -20,9 +20,9 @@
|
|||
$lang->parent_category_name = 'Parent category';
|
||||
$lang->category_name = 'Category';
|
||||
$lang->expand = 'Expand';
|
||||
$lang->category_group_srls = '그룹제한'; //context 이해 불가능;;
|
||||
$lang->category_group_srls = 'Accessable Group';
|
||||
$lang->search_result = 'Search result';
|
||||
|
||||
|
||||
// blah blah..
|
||||
$lang->about_category_name = 'Input category name';
|
||||
$lang->about_expand = 'By selecting this option, it will be always expanded';
|
||||
|
|
|
|||
|
|
@ -1,42 +1,55 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<skin>
|
||||
<title xml:lang="ko">블로그 기본 스킨</title>
|
||||
<title xml:lang="zh-CN">博客基本皮肤</title>
|
||||
<maker 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>
|
||||
<description xml:lang="ko">blog 모듈의 default스킨</description>
|
||||
<description xml:lang="zh-CN">blog 模块的默认皮肤</description>
|
||||
</maker>
|
||||
<colorset>
|
||||
<color name="normal" src="screenshot/normal.gif">
|
||||
<title xml:lang="ko">기본</title>
|
||||
</color>
|
||||
<color name="deep" src="screenshot/blue.gif">
|
||||
<title xml:lang="ko">이상한거</title>
|
||||
<title xml:lang="zh-CN">基本</title>
|
||||
</color>
|
||||
</colorset>
|
||||
<extra_vars>
|
||||
<var name="top_title" type="text">
|
||||
<title xml:lang="ko">상단 제목</title>
|
||||
<title xml:lang="zh-CN">顶部 标题</title>
|
||||
<description xml:lang="ko">레이아웃의 상단에 표시할 제목을 입력하세요.</description>
|
||||
<description xml:lang="zh-CN">请输入布局顶部显示的标题。</description>
|
||||
</var>
|
||||
<var name="logo_image" type="image" width="60" height="60">
|
||||
<title xml:lang="ko">로고이미지</title>
|
||||
<title xml:lang="zh-CN">LOGO图片</title>
|
||||
<description xml:lang="ko">레이아웃의 상단에 표시될 로고이미지를 입력하세요.</description>
|
||||
<description xml:lang="zh-CN">请输入顶部显示的LOGO图片。</description>
|
||||
</var>
|
||||
<var name="profile_image" type="image" width="60" height="60">
|
||||
<title xml:lang="ko">프로필 이미지</title>
|
||||
<title xml:lang="zh-CN">档案图片</title>
|
||||
<description xml:lang="ko">프로필 이미지를 입력해 주세요 (가로 사이즈는 200px이 가장 보기 좋습니다)</description>
|
||||
<description xml:lang="zh-CN">请输入用户图片。 (宽度200px图片为适合)</description>
|
||||
</var>
|
||||
<var name="profile" type="textarea">
|
||||
<title xml:lang="ko">프로필</title>
|
||||
<title xml:lang="zh-CN">档案</title>
|
||||
<description lang="ko">간단한 프로필을 입력해주세요</description>
|
||||
<description lang="zh-CN">请输入基本档案。</description>
|
||||
</var>
|
||||
<var name="category_name" type="text">
|
||||
<title xml:lang="ko">카테고리명</title>
|
||||
<title xml:lang="zh-CN">分类名称</title>
|
||||
<description lang="ko">카테고리의 이름을 입력해주세요.</description>
|
||||
<description lang="zh-CN">请输入分类名称。</description>
|
||||
</var>
|
||||
<var name="display_writer" type="select">
|
||||
<title xml:lang="ko">글쓴이 표시</title>
|
||||
<title xml:lang="zh-CN">显示作者姓名</title>
|
||||
<description lang="ko">다수가 블로그를 함께 운영시에 글쓴이의 이름을 표시할 수 있습니다.</description>
|
||||
<description lang="zh-CN">多数人一起管理博客时可以显示发表文章的作者。</description>
|
||||
<default>off</default>
|
||||
<default>on</default>
|
||||
</var>
|
||||
|
|
@ -44,6 +57,7 @@
|
|||
<menus>
|
||||
<menu name="top_menu" default="true">
|
||||
<title xml:lang="ko">상단 메뉴</title>
|
||||
<title xml:lang="zh-CN">主菜单</title>
|
||||
<maxdepth>1</maxdepth>
|
||||
</menu>
|
||||
</menus>
|
||||
|
|
|
|||
|
|
@ -1,51 +1,75 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<skin>
|
||||
<title xml:lang="ko">제로보드XE 블로그 기본 스킨</title>
|
||||
<title xml:lang="zh-CN">zeroboard XE 博客基本皮肤</title>
|
||||
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
|
||||
<name xml:lang="ko">(주)NHN</name>
|
||||
<name xml:lang="zh-CN">(株)NHN</name>
|
||||
<description xml:lang="ko">
|
||||
제로보드XE 블로그 기본 스킨입니다.
|
||||
디자인 : 서기정
|
||||
HTML/CSS : 정찬명
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
zeroboard XE 博客基本皮肤。
|
||||
设计 : 서기정
|
||||
HTML/CSS : 정찬명
|
||||
</description>
|
||||
</maker>
|
||||
<colorset>
|
||||
<color name="white" src="screenshot/white.gif">
|
||||
<title xml:lang="ko">하얀색(기본)</title>
|
||||
<title xml:lang="zh-CN">白色(基本)</title>
|
||||
</color>
|
||||
</colorset>
|
||||
<extra_vars>
|
||||
<var name="top_title" type="text">
|
||||
<title xml:lang="ko">상단 제목</title>
|
||||
<title xml:lang="zh-CN">顶部标题</title>
|
||||
<description xml:lang="ko">레이아웃의 상단에 표시할 제목을 입력하세요.</description>
|
||||
<description xml:lang="zh-CN">请输入布局顶部显示的标题。</description>
|
||||
</var>
|
||||
<var name="sub_title" type="text">
|
||||
<title xml:lang="ko">부제</title>
|
||||
<title xml:lang="zh-CN">副标题</title>
|
||||
<description xml:lang="ko">레이아웃의 상단에 큰 제목 아래 부제목을 입력하세요.</description>
|
||||
<description xml:lang="zh-CN">部分顶部主标题下面显示的副标题。</description>
|
||||
</var>
|
||||
<var name="logo_image" type="image">
|
||||
<title xml:lang="ko">로고이미지</title>
|
||||
<title xml:lang="zh-CN">LOGO图片</title>
|
||||
<description xml:lang="ko">레이아웃의 상단에 표시될 로고이미지를 입력하세요.</description>
|
||||
<description xml:lang="zh-CN">布局顶部显示的LOGO图片。</description>
|
||||
</var>
|
||||
<var name="profile_image" type="image">
|
||||
<title xml:lang="ko">프로필 이미지</title>
|
||||
<title xml:lang="zh-CN">档案图片</title>
|
||||
<description xml:lang="ko">프로필 이미지를 입력해 주세요 (가로 사이즈는 160px이 가장 보기 좋습니다)</description>
|
||||
<description xml:lang="zh-CN">请输入档案图片。 (宽度160px图片为适合)</description>
|
||||
</var>
|
||||
<var name="background_image" type="image">
|
||||
<title xml:lang="ko">배경 이미지</title>
|
||||
<title xml:lang="zh-CN">背景图片</title>
|
||||
<description xml:lang="ko">배경 이미지를 사용하시려면 등록해주세요.</description>
|
||||
<description xml:lang="zh-CN">使用背景图片请登录。</description>
|
||||
</var>
|
||||
<var name="profile" type="textarea">
|
||||
<title xml:lang="ko">프로필</title>
|
||||
<title xml:lang="zh-CN">档案</title>
|
||||
<description lang="ko">간단한 프로필을 입력해주세요</description>
|
||||
<description lang="zh-CN">请输入基本档案</description>
|
||||
</var>
|
||||
<var name="category_name" type="text">
|
||||
<title xml:lang="ko">카테고리명</title>
|
||||
<title xml:lang="zh-CN">分类名称</title>
|
||||
<description lang="ko">카테고리의 이름을 입력해주세요.</description>
|
||||
<description lang="zh-CN">请输入分类名称。</description>
|
||||
</var>
|
||||
<var name="display_writer" type="select">
|
||||
<title xml:lang="ko">글쓴이 표시</title>
|
||||
<title xml:lang="zh-CN">显示作者</title>
|
||||
<description lang="ko">다수가 블로그를 함께 운영시에 글쓴이의 이름을 표시할 수 있습니다.</description>
|
||||
<description lang="zh-CN">多数人一起管理博客时可以显示发表文章的作者。</description>
|
||||
<default>off</default>
|
||||
<default>on</default>
|
||||
</var>
|
||||
|
|
@ -53,6 +77,7 @@
|
|||
<menus>
|
||||
<menu name="top_menu" default="true">
|
||||
<title xml:lang="ko">상단 메뉴</title>
|
||||
<title xml:lang="zh-CN">主菜单</title>
|
||||
<maxdepth>1</maxdepth>
|
||||
</menu>
|
||||
</menus>
|
||||
|
|
|
|||
|
|
@ -1,13 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module version="0.1">
|
||||
<title xml:lang="ko">댓글</title>
|
||||
<title xml:lang="jp">コメント</title>
|
||||
<title xml:lang="zh-CN">评论</title>
|
||||
<title xml:lang="en">Comment</title>
|
||||
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
|
||||
<name xml:lang="ko">제로</name>
|
||||
<name xml:lang="jp">ゼロ</name>
|
||||
<name xml:lang="zh-CN">zero</name>
|
||||
<name xml:lang="en">zero</name>
|
||||
<description xml:lang="ko">게시판이나 블로그등의 댓글을 관리하는 모듈입니다.</description>
|
||||
<description xml:lang="jp">掲示板やブログなどのコメントを管理するモジュールです</description>
|
||||
<description xml:lang="zh-CN">管理Board或博客评论的模块。</description>
|
||||
<description xml:lang="en">Module for managing board/blog''s comments</description>
|
||||
</author>
|
||||
|
|
|
|||
23
modules/comment/lang/jp.lang.php
Normal file
23
modules/comment/lang/jp.lang.php
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
/**
|
||||
* @file modules/comment/lang/ko.lang.php
|
||||
* @author zero <zero@nzeo.com> 翻訳:keinicht
|
||||
* @brief コメント(comment) モジュールの基本言語パッケージ
|
||||
**/
|
||||
$lang->cmd_delete_checked_comment = '選択項目削除';
|
||||
|
||||
$lang->msg_cart_is_null = '削除するものを選択して下さい';
|
||||
$lang->msg_checked_comment_is_deleted = '%d個のコメントが削除されました';
|
||||
|
||||
$lang->search_target_list = array(
|
||||
'content' => '内容',
|
||||
'user_id' => 'ID',
|
||||
'user_name' => '名前',
|
||||
'nick_name' => 'ニック',
|
||||
'email_address' => 'メールアドレス',
|
||||
'homepage' => 'ホームページ',
|
||||
'regdate' => '登録日',
|
||||
'last_update' => '最終更新日 ',
|
||||
'ipaddress' => 'IP アドレス',
|
||||
);
|
||||
?>
|
||||
|
|
@ -2,10 +2,13 @@
|
|||
<module version="0.1">
|
||||
<title xml:lang="ko">기본 카운터</title>
|
||||
<title xml:lang="zh-CN">基本访问统计</title>
|
||||
<title xml:lang="en">Basic counter</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>
|
||||
<description xml:lang="ko">기본 접속 통계 프로그램입니다.</description>
|
||||
<description xml:lang="zh-CN">基本计访问统计程序。</description>
|
||||
<description xml:lang="en">Basic connection statistics program.</description>
|
||||
</author>
|
||||
</module>
|
||||
|
|
|
|||
22
modules/counter/lang/en.lang.php
Normal file
22
modules/counter/lang/en.lang.php
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
/**
|
||||
* @file modules/counter/lang/en.lang.php
|
||||
* @author zero <zero@nzeo.com>
|
||||
* @brief English Language Pack (Only basic contents are listed)
|
||||
**/
|
||||
|
||||
$lang->counter = "Counter";
|
||||
$lang->cmd_select_date = 'Select date';
|
||||
$lang->cmd_select_counter_type = array(
|
||||
'hour' => 'By hour',
|
||||
'day' => 'By day',
|
||||
'month' => 'By month',
|
||||
'year' => 'By year',
|
||||
);
|
||||
|
||||
$lang->total_counter = 'Total status';
|
||||
$lang->selected_day_counter = 'Selected day status';
|
||||
|
||||
$lang->unique_visitor = 'Visitor';
|
||||
$lang->pageview = 'Pageview';
|
||||
?>
|
||||
|
|
@ -1,8 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module version="0.1">
|
||||
<title xml:lang="ko">문서</title>
|
||||
<title xml:lang="en">Document</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>
|
||||
<description xml:lang="ko">게시판, 블로그등의 모듈에서 사용되는 문서를 관리하는 모듈입니다. </description>
|
||||
<description xml:lang="en">Module for managing documents used in board, blog, etc.</description>
|
||||
</author>
|
||||
</module>
|
||||
|
|
|
|||
37
modules/document/lang/en.lang.php
Normal file
37
modules/document/lang/en.lang.php
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
/**
|
||||
* @file modules/document/lang/en.lang.php
|
||||
* @author zero <zero@nzeo.com>
|
||||
* @brief Document module's basic language pack
|
||||
**/
|
||||
|
||||
$lang->cmd_delete_checked_document = 'Delete selected';
|
||||
|
||||
$lang->msg_cart_is_null = 'Select the articles you wish to delete';
|
||||
$lang->msg_category_not_moved = 'Unabled to move';
|
||||
$lang->msg_is_secret = 'This article is secret';
|
||||
$lang->msg_checked_document_is_deleted = 'Total of %d articles has been deleted';
|
||||
|
||||
// Search targets in admin page
|
||||
$lang->search_target_list = array(
|
||||
'title' => 'Subject',
|
||||
'content' => 'Content',
|
||||
'user_id' => 'User ID',
|
||||
'member_srl' => 'Member No.',
|
||||
'user_name' => 'Content',
|
||||
'nick_name' => 'Content',
|
||||
'email_address' => 'Email',
|
||||
'homepage' => 'Homepage',
|
||||
'is_notice' => 'Notice',
|
||||
'is_secret' => 'Secret',
|
||||
'tags' => 'Tag',
|
||||
'readed_count' => 'Number of Views (Above)',
|
||||
'voted_count' => 'Number of Votes (Above)',
|
||||
'comment_count ' => 'Number of Comments (Above)',
|
||||
'trackback_count ' => 'Number of trackbacks (Above)',
|
||||
'uploaded_count ' => 'Number of Attachments (Above)',
|
||||
'regdate' => 'Date',
|
||||
'last_update' => 'Last Revised',
|
||||
'ipaddress' => 'IP Address',
|
||||
);
|
||||
?>
|
||||
|
|
@ -1,8 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module version="0.1">
|
||||
<title xml:lang="ko">위지윅 에디터 </title>
|
||||
<title xml:lang="en">WYSIWYG Editor </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>
|
||||
<description xml:lang="ko">위지윅 에디터를 출력하거나 에디터 컴포넌트들을 관리/중계하는 모듈입니다.</description>
|
||||
<description xml:lang="en">Module for displaying WYSIWYG editor and managing/relaying editor components.</description>
|
||||
</author>
|
||||
</module>
|
||||
|
|
|
|||
30
modules/editor/lang/en.lang.php
Normal file
30
modules/editor/lang/en.lang.php
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
/**
|
||||
* @file modules/editor/lang/en.lang.php
|
||||
* @author zero <zero@nzeo.com>
|
||||
* @brief WYSIWYG Editor module's basic language pack
|
||||
**/
|
||||
|
||||
$lang->editor = "WYSIWYG Editor";
|
||||
$lang->component_name = "Component";
|
||||
$lang->component_version = "Version";
|
||||
$lang->component_author = "Developer";
|
||||
$lang->component_link = "Link";
|
||||
$lang->component_date = "Date";
|
||||
$lang->component_description = "Description";
|
||||
$lang->component_extra_vars = "Option Variable";
|
||||
$lang->component_grant = "Permission Setting";
|
||||
|
||||
$lang->about_component = "About component";
|
||||
$lang->about_component_grant = "Only selected groups are allowed to use. (Everyone can use it when mode is disabled)";
|
||||
|
||||
$lang->msg_component_is_not_founded = 'Unabled to find editor component %s';
|
||||
$lang->msg_component_is_inserted = 'Selected component is already inputted';
|
||||
$lang->msg_component_is_first_order = 'Selected component is located at the first position';
|
||||
$lang->msg_component_is_last_order = 'Selected component is located at the last position';
|
||||
$lang->msg_load_saved_doc = "There is an automatically saved article. Do you wish to recover it?\nThe auto-saved draft will be discarded after saving current article";
|
||||
$lang->msg_auto_saved = "Automatically Saved";
|
||||
|
||||
$lang->cmd_disable = "Inactive";
|
||||
$lang->cmd_enable = "Active";
|
||||
?>
|
||||
|
|
@ -2,10 +2,13 @@
|
|||
<module version="0.1">
|
||||
<title xml:lang="ko">첨부파일</title>
|
||||
<title xml:lang="zh-CN">上传附件</title>
|
||||
<title xml:lang="en">Attachment</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>
|
||||
<description xml:lang="ko">첨부 파일 관리하는 모듈입니다.</description>
|
||||
<description xml:lang="zh-CN">管理上传附件的模块。</description>
|
||||
<description xml:lang="en">Module for managing attachments.</description>
|
||||
</author>
|
||||
</module>
|
||||
|
|
|
|||
39
modules/file/lang/en.lang.php
Normal file
39
modules/file/lang/en.lang.php
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<?php
|
||||
/**
|
||||
* @file modules/file/lang/en.lang.php
|
||||
* @author zero <zero@nzeo.com>
|
||||
* @brief Attachment module's basic language pack
|
||||
**/
|
||||
|
||||
$lang->file = 'Attachment';
|
||||
$lang->file_name = 'File name';
|
||||
$lang->file_size = 'File size';
|
||||
$lang->download_count = 'Number of downloads';
|
||||
$lang->status = 'Status';
|
||||
$lang->is_valid = 'Valid';
|
||||
$lang->is_stand_by = 'Stand by';
|
||||
$lang->file_list = 'Attachments list';
|
||||
$lang->allowed_filesize = 'File size limit';
|
||||
$lang->allowed_attach_size = 'Total size limit';
|
||||
$lang->allowed_filetypes = 'Allowed extensions';
|
||||
|
||||
$lang->about_allowed_filesize = 'You can assign file size limit for each file. (Excluding administrators)';
|
||||
$lang->about_allowed_attach_size = 'You can assign file size limit for each document. (Excluding administrators)';
|
||||
$lang->about_allowed_filetypes = 'Only allowed extentsions can be attached. To allow an extention, use "*.extention". To allow multiple extentions, use ";" between each extentions.<br />ex) *.* or *.jpg;*.gif;<br />(Excludes Administrators)';
|
||||
|
||||
$lang->cmd_delete_checked_file = 'Delete Selected';
|
||||
$lang->cmd_move_to_document = 'Move to document';
|
||||
$lang->cmd_download = 'Download';
|
||||
|
||||
$lang->msg_cart_is_null = 'Select the file you wish to delete';
|
||||
$lang->msg_checked_file_is_deleted = 'Total of %d attachments has been deleted';
|
||||
$lang->msg_exceeds_limit_size = 'Attachment faild; exceeded the file size limit';
|
||||
|
||||
$lang->search_target_list = array(
|
||||
'filename' => 'File name',
|
||||
'filesize' => 'File size (byte, Above)',
|
||||
'download_count' => 'Downloads (Above)',
|
||||
'regdate' => 'Date',
|
||||
'ipaddress' => 'IP Address',
|
||||
);
|
||||
?>
|
||||
|
|
@ -4,7 +4,18 @@
|
|||
|
||||
<div id="agreement">{nl2br($lang->license)}</div>
|
||||
|
||||
<div class="buttonCenter">
|
||||
<div class="tCenter">
|
||||
Select language : <select name="lang_type" onchange="doChangeLangType(this)">
|
||||
<option value="{$lang_type}">{$lang_type}</option>
|
||||
<!--@foreach($lang_supported as $val)-->
|
||||
<!--@if($val != $lang_type)-->
|
||||
<option value="{$val}">{$val}</option>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="tCenter gap1">
|
||||
<a class="button" href="{getUrl('','act','dispInstallCheckEnv')}"><span>{$lang->cmd_agree_license}</span></a>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module version="0.1">
|
||||
<title xml:lang="ko">레이아웃</title>
|
||||
<title xml:lang="zh-CN">布局</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>
|
||||
<description xml:lang="ko">레이아웃을 생성/관리하는 모듈입니다.</description>
|
||||
<description xml:lang="zh-CN">布局生成/管理模块</description>
|
||||
</author>
|
||||
</module>
|
||||
|
|
|
|||
34
modules/layout/lang/zh-CN.lang.php
Normal file
34
modules/layout/lang/zh-CN.lang.php
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
/**
|
||||
* @file modules/layout/lang/zh-CN.lang.php
|
||||
* @author zero <zero@nzeo.com>
|
||||
* @brief 布局(layout) 模块基本语言包
|
||||
**/
|
||||
|
||||
$lang->cmd_layout_management = '布局设定';
|
||||
$lang->cmd_layout_edit = '布局编辑';
|
||||
$lang->cmd_preview = '预览';
|
||||
$lang->cmd_reset = '初期化';
|
||||
|
||||
$lang->layout_name = '布局名称';
|
||||
$lang->layout_maker = "布局作者";
|
||||
$lang->layout_history = "变更事项 ";
|
||||
$lang->layout_info = "布局信息";
|
||||
$lang->layout_list = '布局目录';
|
||||
$lang->menu_count = '菜单数';
|
||||
$lang->downloaded_list = '下载目录';
|
||||
$lang->layout_preview_content = '显示内容的部分';
|
||||
$lang->not_apply_menu = '布局全部适用';
|
||||
|
||||
$lang->cmd_move_to_installed_list = "查看生成目录";
|
||||
|
||||
$lang->about_downloaded_layouts = "已下载的布局目录";
|
||||
$lang->about_title = '请输入链接模块时容易区分的标题';
|
||||
$lang->about_not_apply_menu = '选择将全部变更已链接整个菜单的模块布局。';
|
||||
|
||||
$lang->about_layout = "布局模块是使制作网站变得更简单。<br />通过布局设定和菜单的链接可以展示多种模块组成的网站。<br />* 不能删除和修改的布局是博客或其他模块自带的布局,要设定到相关模块设置。";
|
||||
$lang->about_layout_code =
|
||||
"修改下面的代码保存后会马上生效。
|
||||
保存之前请先预览后再保存。
|
||||
zeroboard XE 模板的语法请参考 <a href=\"#\" onclick=\"winopen('http://trac.zeroboard.com/trac/wiki/TemplateHandler');return false;\">zeroboard XE 模板</a>。";
|
||||
?>
|
||||
|
|
@ -1,8 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<module version="0.1">
|
||||
<title xml:lang="ko">회원</title>
|
||||
<title xml:lang="zh-CN">会员</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>
|
||||
<description xml:lang="ko">회원 관리 및 회원 관련 설정등을 하는 모듈입니다.</description>
|
||||
<description xml:lang="zh-CN">会员管理和会员相关设定的模块。</description>
|
||||
</author>
|
||||
</module>
|
||||
|
|
|
|||
169
modules/member/lang/zh-CN.lang.php
Normal file
169
modules/member/lang/zh-CN.lang.php
Normal file
|
|
@ -0,0 +1,169 @@
|
|||
<?php
|
||||
/**
|
||||
* @file zh-CN.lang.php
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief 简体中文语言包 (只收录基本内容)
|
||||
**/
|
||||
|
||||
$lang->member = '会员';
|
||||
$lang->member_default_info = '基本信息';
|
||||
$lang->member_extend_info = '追加信息';
|
||||
$lang->default_group_1 = "准会员";
|
||||
$lang->default_group_2 = "正会员";
|
||||
$lang->admin_group = "管理组";
|
||||
$lang->remember_user_id = 'I D 保存';
|
||||
$lang->already_logged = '您已经登录';
|
||||
$lang->denied_user_id = '使用禁止 I D。';
|
||||
$lang->null_user_id = '请输入用户 I D.';
|
||||
$lang->null_password = '请输入密码';
|
||||
$lang->invalid_authorization = '还没有认证';
|
||||
$lang->invalid_user_id= '不存在的用户 I D';
|
||||
$lang->invalid_password = '密码有误!';
|
||||
$lang->allow_mailing = '接收邮件';
|
||||
$lang->allow_message = '允许接收短信';
|
||||
$lang->allow_message_type = array(
|
||||
'Y' => '全部接收',
|
||||
'N' => '拒绝',
|
||||
'F' => '只允许好友',
|
||||
);
|
||||
$lang->denied = '使用中止';
|
||||
$lang->is_admin = '最高管理权限';
|
||||
$lang->group = '所属组';
|
||||
$lang->group_title = '组标题';
|
||||
$lang->group_srl = '组编号';
|
||||
$lang->signature = '签名';
|
||||
$lang->image_name = '昵称图像';
|
||||
$lang->image_name_max_width = '宽度大小限制';
|
||||
$lang->image_name_max_height = '高度大小限制';
|
||||
$lang->image_mark = '用户图标';
|
||||
$lang->image_mark_max_width = '宽度大小限制';
|
||||
$lang->image_mark_max_height = '高度大小限制';
|
||||
$lang->enable_openid = 'OpenID 支持';
|
||||
$lang->enable_join = '允许注册会员';
|
||||
$lang->limit_day = '临时限制日期';
|
||||
$lang->limit_date = '限制日期';
|
||||
$lang->redirect_url = '注册会员后将移动的页面';
|
||||
$lang->agreement = '注册会员条款';
|
||||
$lang->accept_agreement = '同意条款';
|
||||
$lang->sender = '寄件人';
|
||||
$lang->receiver = '收件人';
|
||||
$lang->friend_group = '好友组';
|
||||
$lang->default_friend_group = '组未指定';
|
||||
$lang->member_info = '会员信息';
|
||||
$lang->current_password = '当前密码';
|
||||
$lang->openid = 'OpenID';
|
||||
|
||||
$lang->search_target_list = array(
|
||||
'user_id' => 'I D',
|
||||
'user_name' => '姓名',
|
||||
'nick_name' => '昵称',
|
||||
'email_address' => '邮箱地址',
|
||||
'regdate' => '注册日期',
|
||||
'last_login' => '最后登录日期',
|
||||
);
|
||||
|
||||
$lang->message_box = array(
|
||||
'R' => '收件箱',
|
||||
'S' => '发件箱',
|
||||
'T' => '保管箱',
|
||||
);
|
||||
|
||||
$lang->readed_date = "阅读日期";
|
||||
|
||||
$lang->cmd_login = '登录';
|
||||
$lang->cmd_logout = '退出';
|
||||
$lang->cmd_signup = '注册会员';
|
||||
$lang->cmd_modify_member_info = '修改会员信息';
|
||||
$lang->cmd_modify_member_password = '修改密码';
|
||||
$lang->cmd_view_member_info = '查看会员信息';
|
||||
$lang->cmd_leave = '注销';
|
||||
|
||||
$lang->cmd_member_list = '会员目录';
|
||||
$lang->cmd_module_config = '基本设定';
|
||||
$lang->cmd_member_group = '管理组';
|
||||
$lang->cmd_send_mail = '发送邮件';
|
||||
$lang->cmd_manage_id = '禁止 I D 管理';
|
||||
$lang->cmd_manage_form = '注册样式管理';
|
||||
$lang->cmd_view_own_document = '查看内容';
|
||||
$lang->cmd_send_email = '发送邮件';
|
||||
$lang->cmd_send_message = '发送短信';
|
||||
$lang->cmd_reply_message = '回复短信';
|
||||
$lang->cmd_view_friend = '查看好友';
|
||||
$lang->cmd_add_friend = '添加好友';
|
||||
$lang->cmd_view_message_box = '查看短信箱';
|
||||
$lang->cmd_store = "保管";
|
||||
$lang->cmd_add_friend_group = '添加好友组';
|
||||
|
||||
$lang->msg_cart_is_null = '请选择对象';
|
||||
$lang->msg_checked_file_is_deleted = '已删除%d个文件。';
|
||||
|
||||
$lang->msg_no_message = '没有短信';
|
||||
$lang->message_received = '收到短信';
|
||||
|
||||
$lang->msg_new_member = '添加会员';
|
||||
$lang->msg_update_member = '修改会员信息';
|
||||
$lang->msg_leave_member = '注销会员';
|
||||
$lang->msg_group_is_null = '没有登录的组';
|
||||
$lang->msg_not_delete_default = '不能删除基本项目';
|
||||
$lang->msg_not_exists_member = '不存在的用户';
|
||||
$lang->msg_cannot_delete_admin = '不能删除管理员 ID .解除管理后再删除';
|
||||
$lang->msg_exists_user_id = '已存在的 I D ,请输入另一个 I D。';
|
||||
$lang->msg_exists_email_address = '已存在的电子邮件地址,请输入另一个电子邮件地址';
|
||||
$lang->msg_exists_nick_name = '已存在的昵称,请输入另一个昵称';
|
||||
$lang->msg_signup_disabled = '不能注册会员';
|
||||
$lang->msg_already_logged = '已注册会员的状态';
|
||||
$lang->msg_not_logged = '您还没有登录';
|
||||
$lang->msg_title_is_null = '请输入短信标题';
|
||||
$lang->msg_content_is_null = '请输入内容';
|
||||
$lang->msg_allow_message_to_friend = '您设定为只允许接收好友短信的状态,不能发送短信';
|
||||
$lang->msg_disallow_message = '拒绝接收短信状态,不能发送短信';
|
||||
$lang->msg_insert_group_name = '请输入组名称';
|
||||
|
||||
$lang->msg_not_uploaded_image_name = '不能登录昵称图像';
|
||||
$lang->msg_not_uploaded_image_mark = '不能登录用户图标';
|
||||
|
||||
$lang->msg_accept_agreement = '您必须同意条款';
|
||||
|
||||
$lang->msg_user_denied = '您输入的 I D 已中止使用。';
|
||||
$lang->msg_user_limited = '您输入的 I D %s 以后可以开始使用';
|
||||
|
||||
$lang->about_user_id = '用户 I D 长度控制在 3 ~20 字以内的英文+数字组成,首个字母必须是英文字母。';
|
||||
$lang->about_password = '密码长度控制在6~20字以内。';
|
||||
$lang->about_user_name = '姓名控制在2~20字以内';
|
||||
$lang->about_nick_name = '昵称控制在2~20字以内';
|
||||
$lang->about_email_address = '电子邮件地址是邮件认证后使用在修改密码或找回密码。';
|
||||
$lang->about_homepage = '可以输入您的网站地址';
|
||||
$lang->about_blog_url = '有博客的用户请输入';
|
||||
$lang->about_birthday = '请输入您的出生年月日';
|
||||
$lang->about_allow_mailing = '您不选择接收邮件,以后不能接收站内发送的重要信息。';
|
||||
$lang->about_allow_message = '可以决定短信接收与否';
|
||||
$lang->about_denied = '选择时不能使用此 I D。';
|
||||
$lang->about_is_admin = '选择时具有最高管理员的权限';
|
||||
$lang->about_description = '对会员的管理员笔记';
|
||||
$lang->about_group = '一个 I D 可属于多个组';
|
||||
|
||||
$lang->about_column_type = '请指定要添加的注册类型';
|
||||
$lang->about_column_name = '请记录在模板可以使用的英文名称(变数名)';
|
||||
$lang->about_column_title = '注册或信息修改/查询时显示的标题';
|
||||
$lang->about_default_value = '可以选定基本输入的值';
|
||||
$lang->about_active = '必须选择激活项目才可以正常启用';
|
||||
$lang->about_form_description = '在说明栏里输入内容,注册时将显示。';
|
||||
$lang->about_required = '选择将注册会员时改为必填项目';
|
||||
|
||||
$lang->about_enable_openid = '支持 OpenID 时请选择';
|
||||
$lang->about_enable_join = '选择以后用户可以注册会员';
|
||||
$lang->about_limit_day = '注册会员后可以指定日期内认证的限制';
|
||||
$lang->about_limit_date = '指定日期之内相关用户不能登录';
|
||||
$lang->about_redirect_url = '请输入注册会员后将移动的页面 url.留空返回到前页';
|
||||
$lang->about_agreement = '没有会员条款时不会显示';
|
||||
|
||||
$lang->about_image_name = '用户的姓名可以代替图片显示';
|
||||
$lang->about_image_mark = '用户姓名前显示的小图标';
|
||||
$lang->about_accept_agreement = '已阅读全部条款并同意。';
|
||||
|
||||
$lang->about_member_default = '注册会员时设定为基本组';
|
||||
|
||||
$lang->about_openid = '用OpenID注册时 I D 和 邮件等基本信息会保存在这个网站,但密码和认证的处理是属于提供OpenID服务的站点。';
|
||||
|
||||
$lang->about_member = "可以管理会员添加/修改/删除/和组管理或注册管理的会员管理模块。\n在基本生成的组以外再生成组以后可以管理会员和通过注册形式的基本信息外还可以收录其他的信息。";
|
||||
?>
|
||||
|
|
@ -1,16 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<skin>
|
||||
<title xml:lang="ko">회원 기본 스킨</title>
|
||||
<title xml:lang="zh-CN">会员基本皮肤</title>
|
||||
<maker 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>
|
||||
<description xml:lang="ko">회원모듈의 default스킨</description>
|
||||
<description xml:lang="zh-CN">会员模块的默认皮肤</description>
|
||||
</maker>
|
||||
<colorset>
|
||||
<color name="normal" src="screenshot/normal.gif">
|
||||
<title xml:lang="ko">기본</title>
|
||||
</color>
|
||||
<color name="deep" src="screenshot/blue.gif">
|
||||
<title xml:lang="ko">이상한거</title>
|
||||
<title xml:lang="zh-CN">基本</title>
|
||||
</color>
|
||||
</colorset>
|
||||
</skin>
|
||||
|
|
|
|||
|
|
@ -1,21 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<widget version="0.1">
|
||||
<title xml:lang="ko">월별 보관 현황 출력</title>
|
||||
<title xml:lang="zh-CN">按月输出选择模块的帖子</title>
|
||||
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
|
||||
<name xml:lang="ko">제로</name>
|
||||
<description xml:lang="ko">선택된 모듈의 월별 글 보관 현황을 보여줍니다.
|
||||
글의 수가 너무 많을 경우 부하가 심해질 수 있습니다.</description>
|
||||
<name xml:lang="zh-CN">zero</name>
|
||||
<description xml:lang="ko">
|
||||
선택된 모듈의 월별 글 보관 현황을 보여줍니다.
|
||||
글의 수가 너무 많을 경우 부하가 심해질 수 있습니다.
|
||||
</description>
|
||||
<description xml:lang="zh-CN">
|
||||
按月输出选择模块的帖子。
|
||||
贴子数过多会增加服务器负载。
|
||||
</description>
|
||||
</author>
|
||||
<extra_vars>
|
||||
<var id="title">
|
||||
<name xml:lang="ko">제목</name>
|
||||
<name xml:lang="zh-CN">标题</name>
|
||||
<type>text</type>
|
||||
<description xml:lang="ko">보관 현황 제목으로 출력됩니다.</description>
|
||||
<description xml:lang="zh-CN">以标题形式输出帖子。</description>
|
||||
</var>
|
||||
<var id="mid_list">
|
||||
<name xml:lang="ko">대상 모듈</name>
|
||||
<name xml:lang="zh-CN">模块对象</name>
|
||||
<type>mid_list</type>
|
||||
<description xml:lang="ko">선택하신 모듈에 등록된 글을 대상으로 합니다.</description>
|
||||
<description xml:lang="zh-CN">所选择的模块为对象。</description>
|
||||
</var>
|
||||
</extra_vars>
|
||||
</widget>
|
||||
|
|
|
|||
|
|
@ -1,15 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<widget version="0.1">
|
||||
<title xml:lang="ko">달력 출력</title>
|
||||
<title xml:lang="zh-CN">日历</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>
|
||||
<description xml:lang="ko">달력을 표시하고 등록된 글이 있는 날에 표시와 링크를 해줍니다.</description>
|
||||
<description xml:lang="zh-CN">显示日历,有新帖的日期会在该日期增加连接。</description>
|
||||
</author>
|
||||
<extra_vars>
|
||||
<var id="mid_list">
|
||||
<name xml:lang="ko">대상 모듈</name>
|
||||
<name xml:lang="zh-CN">模块对象</name>
|
||||
<type>mid_list</type>
|
||||
<description xml:lang="ko">선택하신 모듈에 등록된 글을 대상으로 합니다.</description>
|
||||
<description xml:lang="zh-CN">所选择的模块为对象。</description>
|
||||
</var>
|
||||
</extra_vars>
|
||||
</widget>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue