mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
영어 - 추가 번역
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4505 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
456fc1c9d5
commit
f3b78e20c7
3 changed files with 105 additions and 0 deletions
|
|
@ -1,11 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="0.2">
|
||||
<title xml:lang="ko">이슈트래커</title>
|
||||
<title xml:lang="en">Issue Tracker</title>
|
||||
<description xml:lang="ko">각종 이슈 처리를 위한 모듈입니다.</description>
|
||||
<description xml:lang="en">This module handles many kinds of issues.</description>
|
||||
<version>1.0</version>
|
||||
<date>2008-08-04</date>
|
||||
<category>service</category>
|
||||
<author email_address="haneul0318@gmail.com" link="http://www.seungyeop.kr">
|
||||
<name xml:lang="ko">haneul, zero</name>
|
||||
<name xml:lang="en">haneul, zero</name>
|
||||
</author>
|
||||
</module>
|
||||
|
|
|
|||
92
modules/issuetracker/lang/en.lang.php
Normal file
92
modules/issuetracker/lang/en.lang.php
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
<?php
|
||||
/**
|
||||
* @file ko.lang.php
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief Default Language Pack of Issuetracker
|
||||
**/
|
||||
|
||||
$lang->issuetracker = 'Issue Tracker';
|
||||
$lang->about_issuetracker = 'Issue Tracker manages milestones, codes, issues and releases';
|
||||
|
||||
$lang->cmd_project_list = 'Project List';
|
||||
$lang->cmd_view_info = 'Project Info';
|
||||
$lang->cmd_project_setting = 'Project Setting';
|
||||
$lang->cmd_release_setting = 'Release Setting';
|
||||
$lang->cmd_insert_package = 'Add Package';
|
||||
$lang->cmd_insert_release = 'Add Release';
|
||||
$lang->cmd_attach_file = 'Attach File';
|
||||
$lang->cmd_display_item = 'Display Item';
|
||||
|
||||
$lang->cmd_resolve_as = 'Modify Status';
|
||||
$lang->cmd_reassign = 'Modify Assignee';
|
||||
$lang->cmd_accept = 'Accept';
|
||||
|
||||
$lang->svn_url = 'SVN URL';
|
||||
$lang->about_svn_url = "Please input SVN URL where project's version is managed";
|
||||
$lang->svn_cmd = 'SVN Command Location';
|
||||
$lang->about_svn_cmd = 'Please input the location of svn client to link with SVN. (ex: /usr/bin/svn)';
|
||||
$lang->diff_cmd = 'DIFF Command Location';
|
||||
$lang->about_diff_cmd = 'Please input the location of diff to compare SVN revisions. (ex: /usr/bin/diff)';
|
||||
|
||||
$lang->issue = 'Issue';
|
||||
$lang->total_issue = 'All Issues';
|
||||
$lang->milestone = $lang->milestone_srl = 'Milestone';
|
||||
$lang->priority = $lang->priority_srl = 'Priority';
|
||||
$lang->type = $lang->type_srl = 'Type';
|
||||
$lang->component = $lang->component_srl = 'Components';
|
||||
$lang->assignee = 'Assignee';
|
||||
$lang->status = 'Status';
|
||||
$lang->action = 'Action';
|
||||
|
||||
$lang->history_format_not_source = '<span class="key">[key]</span> Modify to <span class="target">[target]</span>';
|
||||
$lang->history_format = '<span class="key">[key]</span> Modify from <span class="source">[source]</span> to <span class="target">[target]</span>';
|
||||
|
||||
$lang->project = 'Project';
|
||||
|
||||
$lang->deadline = 'Deadline';
|
||||
$lang->name = 'Name';
|
||||
$lang->complete = 'Complete';
|
||||
$lang->completed_date = 'Completed Date';
|
||||
$lang->order = 'Order';
|
||||
$lang->package = $lang->package_srl = 'Package';
|
||||
$lang->release = $lang->release_srl = 'Release';
|
||||
$lang->release_note = 'Release Note';
|
||||
$lang->release_changes = 'Release Changes';
|
||||
$lang->occured_version = $lang->occured_version_srl = 'Occured Version';
|
||||
$lang->attached_file = 'Attached File';
|
||||
$lang->filename = 'File Name';
|
||||
$lang->filesize = 'File Size';
|
||||
|
||||
$lang->status_list = array(
|
||||
'new' => 'New',
|
||||
'reviewing' => 'Reviewing',
|
||||
'assign' => 'Assign',
|
||||
'resolve' => 'Resolve',
|
||||
'reopen' => 'Reopen',
|
||||
'postponed' => 'Postponed',
|
||||
'duplicated' => 'Duplicated',
|
||||
'invalid' => 'Invalid',
|
||||
);
|
||||
|
||||
$lang->about_milestone = 'This sets milestones.';
|
||||
$lang->about_priority = 'This sets priority.';
|
||||
$lang->about_type = 'This selects type of issues (ex. issue, development)';
|
||||
$lang->about_component = 'This sets components of issues';
|
||||
|
||||
$lang->project_menus = array(
|
||||
'dispIssuetrackerViewIssue' => 'View Issue',
|
||||
'dispIssuetrackerNewIssue' => 'New Issue',
|
||||
'dispIssuetrackerViewMilestone' => 'Milestone',
|
||||
'dispIssuetrackerViewSource' => 'View Source',
|
||||
'dispIssuetrackerDownload' => 'Download',
|
||||
'dispIssuetrackerAdminProjectSetting' => 'Settings',
|
||||
);
|
||||
|
||||
$lang->msg_not_attched = 'No file is attached';
|
||||
$lang->msg_attached = 'File has been attached';
|
||||
$lang->msg_no_releases = 'No release is registered';
|
||||
|
||||
$lang->cmd_document_do = 'You would...';
|
||||
$lang->not_assigned = 'Unassigned';
|
||||
$lang->not_assigned_description = 'List of unassigned issues.';
|
||||
?>
|
||||
|
|
@ -1,33 +1,43 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<skin version="0.2">
|
||||
<title xml:lang="ko">XE IssueTracker 기본 스킨</title>
|
||||
<title xml:lang="en">Basic Skin of XE IssueTracker</title>
|
||||
<description xml:lang="ko">XE IssueTracker의 기본 스킨입니다. </description>
|
||||
<description xml:lang="en">This is the basic skin of XE IssueTracker. </description>
|
||||
<version>0.1</version>
|
||||
<date>2008-08-11</date>
|
||||
|
||||
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com">
|
||||
<name xml:lang="ko">zero</name>
|
||||
<name xml:lang="en">zero</name>
|
||||
</author>
|
||||
|
||||
<colorset>
|
||||
<color name="white" src="screenshot/white.gif">
|
||||
<title xml:lang="ko">일반</title>
|
||||
<title xml:lang="en">General</title>
|
||||
</color>
|
||||
<color name="black" src="screenshot/black.gif">
|
||||
<title xml:lang="ko">검은색 배경용</title>
|
||||
<title xml:lang="en">For Black Background</title>
|
||||
</color>
|
||||
</colorset>
|
||||
|
||||
<extra_vars>
|
||||
<group>
|
||||
<title xml:lang="ko">기본 설정</title>
|
||||
<title xml:lang="en">Default Settings</title>
|
||||
<var name="projectTitle" type="text">
|
||||
<title xml:lang="ko">이슈트래커 제목</title>
|
||||
<title xml:lang="en">Issue Tracker Name</title>
|
||||
<description xml:lang="ko">이슈트래커의 상단에 큰 제목으로 표시가 됩니다.</description>
|
||||
<description xml:lang="en">It will be displayed on top of the issue tracker.</description>
|
||||
</var>
|
||||
<var name="projectDescription" type="textarea">
|
||||
<title xml:lang="ko">이슈트래커 설명</title>
|
||||
<title xml:lang="en">Description</title>
|
||||
<description xml:lang="ko">입력하시면 이슈트래커의 메인에 설명이 노출됩니다.</description>
|
||||
<description xml:lang="en">It will be displayed on main of the issue tracker if you input the description.</description>
|
||||
</var>
|
||||
</group>
|
||||
</extra_vars>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue