mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 02:01:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4226 201d5d3c-b55e-5fd7-737f-ddc643e51545
48 lines
1.7 KiB
PHP
48 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* @file en.lang.php
|
|
* @author zero (zero@nzeo.com)
|
|
* @brief English Language Pack (Only Basic Things)
|
|
**/
|
|
|
|
$lang->communication = 'Communication';
|
|
$lang->about_communication = '회원간의 쪽지나 친구 관리등 커뮤니케이션 기능을 수행하는 모듈입니다';
|
|
|
|
$lang->allow_message = 'Receive Messages';
|
|
$lang->allow_message_type = array(
|
|
'Y' => 'Receive All',
|
|
'N' => 'Reject All',
|
|
'F' => 'Only Friends',
|
|
);
|
|
|
|
$lang->message_box = array(
|
|
'R' => 'Received',
|
|
'S' => 'Sent',
|
|
'T' => 'Mailbox',
|
|
);
|
|
$lang->readed_date = "Read Date";
|
|
|
|
$lang->sender = 'Sender';
|
|
$lang->receiver = 'Receiver';
|
|
$lang->friend_group = 'Friend Group';
|
|
$lang->default_friend_group = 'Unassigned Group';
|
|
|
|
$lang->cmd_send_message = 'Send Message';
|
|
$lang->cmd_reply_message = 'Reply Message';
|
|
$lang->cmd_view_friend = 'Friends';
|
|
$lang->cmd_add_friend = 'Add to Friends';
|
|
$lang->cmd_view_message_box = 'Message Box';
|
|
$lang->cmd_store = "Save";
|
|
$lang->cmd_add_friend_group = 'Add Friend Group';
|
|
$lang->cmd_rename_friend_group = 'Modify Friend Group Name';
|
|
|
|
$lang->msg_no_message = 'There is no message';
|
|
$lang->message_received = 'You have a new message';
|
|
|
|
$lang->msg_title_is_null = 'Please input the title of message';
|
|
$lang->msg_content_is_null = 'Please input the content';
|
|
$lang->msg_allow_message_to_friend = "Failed to send because receiver only allows friends' messages";
|
|
$lang->msg_disallow_message = 'Failed to send because receiver rejects message reception';
|
|
|
|
$lang->about_allow_message = 'You can decide message reception';
|
|
?>
|