영어 번역(FruitHake님, 알로하님) 2007년 7월 9일 16시 20분까지 적용

git-svn-id: http://xe-core.googlecode.com/svn/trunk@1882 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-09 07:22:20 +00:00
parent 7083aa37e4
commit 429a1dc252
7 changed files with 402 additions and 3 deletions

View file

@ -1,11 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<module version="0.1">
<title xml:lang="ko">한국 우편번호</title>
<title xml:lang="en">Korean Zip Code<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">
Searching the zip code via zip code server operated by zeroboard.
You can change the zip code server by setting.
</description>
</author>
</module>

View file

@ -0,0 +1,22 @@
<?php
/**
* @file modules/krzip/lang/en.lang.php
* @author zero <zero@nzeo.com>
* @brief English language pack (Only basic contents are listed)
**/
// normal words
$lang->krzip = "Korean Zip code";
$lang->krzip_server_hostname = "Server name for zip code checking";
$lang->krzip_server_port = "Server port for zip code checking";
$lang->krzip_server_query = "Server path for zip code checking";
// descriptions
$lang->about_krzip_server_hostname = "Input the server's domain for checking zip codes and receiving the result list";
$lang->about_krzip_server_port = "Input the server's port number for checking the zip code";
$lang->about_krzip_server_query = "Input the query url that will be requested for checking the zip code";
// error messages
$lang->msg_not_exists_addr = "Target for searching doesn't exist";
$lang->msg_fail_to_socket_open = "Unabled to connect to zip code checking server";
?>