/usr/share/IlohaMail/lang/kr/main.inc is in ilohamail 0.8.14-0rc3sid6.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | <?php
include("../lang/eng/main.inc"); // <-- do not delete
/********************************************************
lang/kr/main.inc
(C)2001-2002 Ryo Chijiiwa <Ryo@IlohaMail.org>
This file is part of IlohaMail, and released under GPL.
See COPYING, or http://www.fsf.org/copyleft/gpl.html
********************************************************/
function formatStatusString($num, $folder, $type){
$str="";
if ($type=="delete"){
$str = "$num °³ÀÇ ÆíÁö Áö¿ò".($num>1?"s":"");
}else if ($type == "move"){
$str = "$num °³ÀÇ ÆíÁö ¿Å±è".($num>1?"s":"")." to $folder";
}
return $str;
}
$mainStrings[0] = "%p of %n Ç¥½Ã";
$mainStrings[1] = " ÆíÁö ãÀ½";
$mainStrings[2] = "ÀÌÀü";
$mainStrings[3] = " ÆíÁö";
$mainStrings[4] = "´ÙÀ½";
$mainStrings[5] = " ÆíÁö";
$mainStrings[6] = "Á¦¸ñ";
$mainStrings[7] = "To";
$mainStrings[8] = "From";
$mainStrings[9] = "³¯Â¥";
$mainStrings[10] = "»èÁ¦";
$mainStrings[11] = "ÈÞÁöÅë ºñ¿ì±â";
$mainStrings[12] = "ÆÄÀÏ";
$mainStrings[13] = "°Ë»ö";
$mainStrings[14] = "Å©±â";
$mainStrings[15] = "Á¦¸ñ¾øÀ½";
$mainStrings[16] = "º¸±â";
$mainStrings[17] = "»õ·Î °íħ ";
$mainStrings[18] = "¸ðµÎ »èÁ¦";
$mainStrings[19] = "Ãë¼Ò";
$mainErrors[0] = "ÆíÁöÇÔÀÌ ºñ¾î ÀÖ½À´Ï´Ù.";
$mainErrors[1] = "ÆíÁöÇÔÀÌ ºñ¾î ÀÖ½À´Ï´Ù.";
$mainErrors[2] = "ÈÞÁöÅëÀ¸·Î ¿Å±æ¼ö ¾ø½À´Ï´Ù..";
$mainErrors[3] = "ÆíÁö¸¦ Áö¿î°ÍÀ¸·Î Ç¥½ÃÇÒ¼ö ¾ø½À´Ï´Ù.";
$mainErrors[4] = "ÆíÁö¸¦ ¿Å±æ¼ö ¾ø½À´Ï´Ù.";
$mainErrors[5] = "ÈÞÁöÅëÀÌ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù.";
$mainErrors[6] = "ÈÞÁöÅëÀ» ºñ¿ï¼ö ¾ø½À´Ï´Ù.";
$mainErrors[7] = "%f ¿¡ ÀÖ´Â ¸ðµç ÆíÁö¸¦ »èÁ¦ÇϽðڽÀ´Ï±î?";
?>
|