git-svn-id: http://xe-core.googlecode.com/svn/trunk@1865 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-07-04 08:54:56 +00:00
parent b376053c1c
commit 74374604a0
27 changed files with 730 additions and 46 deletions

View file

@ -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>

View 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";
?>