﻿/**
 * @type : intro
 * @desc : g4f_message_en.js는 프로젝트 전반에 걸쳐 전 시스템에서 공통으로 사용하는 메시지를 기술한
 * 자바스크립트 파일이다. 빈번히 사용되는 메시지이 화면마다 반복적으로 하드코딩되지
 * 않도록 미리 정의되어 있어서 g4f_message.js를 업무화면에 import시키기만 하고
 * 각 개발자가 별도로 개발할 필요가 없다.<br><br>
 *
 * 메시지 Naming Rule은 다음과 같다.
 * <pre>
 *     - MSG_<서브시스템명>_<기능명>_<일련번호>  
 *     - 기능명 : INF[information] : 정상적인 처리결과를 사용자에게 알려주는 메시지
 *               CRM[Confirmation] : 프로세스를 계속 진행할지 의사결정을 요청하는 메시지
 *               ERR[Eorror] : 비정상적인 처리결과를 사용자에게 알려주는 메시지
 *               WRN[Warning] : 프로세스를 진행하기 위한 필요조건을 충족시키도록 요구하는 메시지
 * </pre>
 * @version : 1.0
 * @change  :
 * <pre>
 *     <font color="blue">V1.0</font>
 *     - 최초버전.
 * </pre>
 */

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_001   = "It has been saved successfully.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_002   = "It has been registered successfully.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_003   = "It has been modified successfully.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_004   = "It has been deleted successfully.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_005   = "It has been printed successfully.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_006   = "Please, ask to a manager.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_007   = "@ has been saved successfully.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_008   = "@ is created successfully.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_009   = "@ has been deleted.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_010   = "Process has been canceled.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_011   = "@ is valid.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_012   = "Data of @ cases has been searched.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_013   = "It has been requested successfully.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_INF_020   =  "You can't log in if password failure happens more than 3 times.\nPlease, ask to a manager.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_001   = "Will you save?";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_002   = "Will you register?";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_003   = "Will you modifiy?";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_004   = "Will you delete?";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_005   = "The matters of modification were not reflected. Will you save?";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_006   = "@ is already existing. Will you add?";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_007   = "Will you delete @?";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_008   = "Will you create @?";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_009   = "Will you apply @?";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_010   = "Will you cancel?";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_011   = "Will you approve immediately?";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_012   = "Will you register adding @?";     //Adding Kim, Hyun Gu
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_013   = "Will you do @?";          
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_014   = "Will you cancel @?";     
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_CRM_015   = "Do you really want for someone to be withdrawn?";         

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_001   = "@ has not be altered.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_002   = "@ is required.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_003   = "No matching materials.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_004   = "Please, enter @ wihtout spaces.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_005   = "Please, enter @ characters.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_006   = "Please, enter @ from @ to @.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_007   = "Please, enter @ with only numbers.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_008   = "Please, enter @ with only characters.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_009   = "Please, enter @ with only characters & numbers.(except for spaces)";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_010   = "Please, enter @ with only characters and numbers.(including spaces)"
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_011   = "Please, enter @ more than @ characters.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_012   = "Please, enter @ less than @ characters.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_013   = "Please, enter @ more than @.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_014   = "Please, enter @ less than @.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_015   = "@'s year was wrong.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_016   = "@ is not a valid National ID No."
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_017   = "@ is not a valid business registration No."
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_018   = "@ is not a valid date"
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_019   = "@'s month was wrong.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_020   = "@'s date was wrong."; 
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_021   = "@'s time was wrong.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_022   = "@'s minute was wrong.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_023   = "@'s second was wrong.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_025   = "@ should be next to @ month @ date, @ year.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_024   = "@ should be prior to @ month @ date, @ year.";
/**
 * @type   : var 
 * @access : public
 */
var MSG_COM_ERR_026   = "@ should be a type of @.\n" +
                            "  - # : Character or Number\n" +
                            "  - h, H : Korean (H includes a Blank space.)\n" +
                            "  - A, Z : Character (Z includes a Blank space.)\n" +
                            "  - 0, 9 : Number (9 includes a Blank space.)";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_027   =  "Please, enter @ with @ characters. (in case of Korean, @ characters)";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_028   =  "Please, enter @ more than @ characters. (in case of Korean, more than @ characters)";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_029   =  "Please, enter @ less than @ characters. (in case of Korean, less than @ characters)";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_030   =  "@ is ";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_031   =  "from the @th data of @.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_032   =  "@ can not be doubled.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_033   =  "Following characters are not available for @.\n@";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_034   =  "Page setting was wrong.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_035   =  "It is not available to print out more than @ pages";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_036   =  "Following characters are only available for @.\n@";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_037   =  "@ is not a valid email address.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_038   =  "@ is not valid.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_039   =  "Please, select(enter) the beginning date before the closing date.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_040   =  "Password is not matched.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_041   =  "@ can not do @.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_042   =  "@'s matters were altered. \nPlease, carry out @ after saving matters of altercation.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_043	  =  "@ is not valid. \nPlease, retype.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_045   =  "The starting should be limited within the closing. :@";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_046   =  "@ is not existing.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_047   =  "Errors have been found. \nPlease, ask to a manager.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_048   =  "@ should be smaller than @.";
/**
 * @type   : var
 * @access : public 
 */
var MSG_COM_ERR_049   =  "@ is not existing.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_050   =  "Errors have been found.\nPlease, restart from the beginning.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_051   =  "@ has a failure.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_052   =  "@ conditions are not falling.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_053   =  "@ was left out.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_054   =  "Creating @ is a failure.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_055   =  "Please, check @.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_056   =  "@ is not selected.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_057   =  "Please, enter the higher figure than @ in case of @.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_058   =  "Please, select(enter) the beginning hour before the closing one.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_059   =  "Please, enter numbers less than @ characters in case of @.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_060   =  "Please, enter decimal fractions less than @ characters in case of @.";



/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_061   =  "File was not attached. Please, check it again.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_062   =  "Attached file is too big to upload. Please, check it again";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_063   =  "The file route is not availabe. Please, check it again.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_064   =  "Work is not yet saved. \nIf you enter confirmation, your work will be disappeared.\nWill you continue?";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_065	  =  "You are required to enter one of @ and @.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_066	  =  "@ materials are not available.  @ has te be conducted first.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_067	  =  "You are required to enter at least one of @.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_068   =  "@ should be smaller or same than @.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_069   =  "@ does not support.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_070   =  "@ should be same like @.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_071   =  "Please login first";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_072   =  "No access rights to following menu.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_073   =  "Please, carry out @.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_074   =  "You are already done @.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_075   = "@ is not a vaild corporation number.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_076   = "This is not @.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_077   =  "Please, select @ for registerataion.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_078   =  "@.\n Please, retype.";    //Ex) This is an existing ID. \n Please, retype.

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_079   = "Please enter the @, with Numbers and Letters combined (other than blank Space)";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_080   = "@ is not a vaild Foreigner Registration Number.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_081   = "Please enter @ in English only(including blank Space)";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_082   = "Files can be attached up to @. Please check again.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_083   =  "No matching data.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_084   =  "You can only enter up to the @th decimal point.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_085   =  "Saving is only available in the design tab";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_ERR_086   =  "You can @";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_001   =  "No data for saving.\nPlease, search @ first.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_002   =  "No matching result from search.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_003   =  "Please, enter @.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_004   =  "@ does not have to delete.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_005   =  "It can't be deleted due to the existing answer.";
/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_006   =  "Only available to print out under conditions of having date of birth as well as search result, not checking on similarity.";


/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_007   =  "@ has no rights about @.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_008   =  "No rights to @.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_009   =  "@is a classified data.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_010   =  "The Search Results have (@) exceeded the Limits permitted for Printing.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_011   =  "Please, enter a password with a combination of English letters & numbers.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_012   =  "It can be searched from @";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_013   =  "Please enter the Search Conditions on a yearly Basis";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_014   =  "Please enter @ in English.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_015   =  "@ is from @ @ to @.\n(except Saturday, Sunday and Holidays)";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_016   =  "The Session has expired..\nPlease Log-in Again. ";

/**
 * @type   : var
 * @access : public
 */
var MSG_COM_WRN_017   =  "The post have already been replied. It cannot be edited";

////////////////////////////////  PT MSG ///////////////////////////////////////////
/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_001   =  "The Number entered is incorrect.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_002   =  "Please check for your ID, for it may have overlapped.";
/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_003   =  "Would you like to re-Apply?";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_004   =  "Would you request for Refund?";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_005   =  "Entering @ in Korean is disabled.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_006   =  "@ cannot exceed 100%.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_007   =  "Shareholder has to be enterred more than 1 person.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_008   =  "You have to enter common stock or preferred stock among composition of shareholders.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_009   =  "Please, enter shareholder's name.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_010   =  "@ cannot exceed 1000%.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_011   =  "You have to enter more than 1 product name.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_012   =  "You have to enter product line items.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_013   =  "Please, enter product name.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_014   =  "Please, enter sales per year.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_015   =  "Please, enter sales.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_016   =  "Please, enter all items(years) of financial statement.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_017   =  "The sum of total liabilities and capitals is total assets. ";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_018   =  "Please, select investment types.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_019   =  "Please, select investment fields.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_020   =  "You can search if you have to enroll letters of investment intent or investment request. ";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_021   =  "@";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_INF_022   =  "You are not eligible for this application.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_CRM_001   =  "All Posts in the Bulletin Board will be deleted.\n Do you want to delete the Board?";

/**
 * @type   : var
 * @access : public
 */
var MSG_PT_WRN_001   =  "The Blog of the Member @ has been closed. \nPlease contact the Administrator.";


////////////////////////////////  PTMGMT MSG ///////////////////////////////////////////
/**
 * @type   : var
 * @access : public
 */
var MSG_PTMGMT_ERR_001=  "Please select the Group first when granting / withdrawing Privileges.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PTMGMT_ERR_002=  "@ is not a valid application date.";

/**
 * @type   : var
 * @access : public
 */
var MSG_PTMGMT_ERR_003=  "Cannot delete more @.";

////////////////////////////////  COP MSG ///////////////////////////////////////////
/**
 * @type   : var
 * @access : public
 */
var MSG_COP_INF_001   = "Please conduct @ Check.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COP_INF_002   = "@ can be registered.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COP_WRN_001   =  "The Countries cannot be selected more than 7.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COP_WRN_002   =  "Please Select 5 Countries.";

/**
 * @type   : var
 * @access : public
 */
var MSG_COP_WRN_003   =  "Only one POC (Personnel of Charge) of the Organization can be selected.";


////////////////////////////////  PGW MSG ///////////////////////////////////////////
/**
 * @type   : var
 * @access : public
 */
var MSG_PGW_CRM_001 = "Password does not match, please check again."

/**
 * @type   : var
 * @access : public
 */
var MSG_PGW_CRM_002 = "@, do you want to reject this application?"

/**
 * @type   : var
 * @access : public
 */
var MSG_PGW_CRM_003 = "@, do you want to forward this application?"

/**
 * @type   : var
 * @access : public
 */
var MSG_PGW_CRM_004 = "@, do you want to reply to this application?"

/**
 * @type   : var
 * @access : public
 */
var MSG_PGW_CRM_005 = "@, request re-sending of attached file?"

////////////////////////////////  INV MSG ///////////////////////////////////////////
/**
 * @type   : var
 * @access : public
 */
var MSG_INV_ERR_001 = "Select @ from the search window."

/**
 * @type   : var
 * @access : public
 */
var MSG_INV_CRM_001 = "@ has child menu (code). Delete anyway?"

/**
 * @type   : var
 * @access : public
 */
var MSG_INV_INF_001 = "Not in progress."


////////////////////////////////  ISI MSG ///////////////////////////////////////////
/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_INF_001 = "Cannot select more than one @"

/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_INF_002 = "Resident registration number has been changed. Click on the notify changes button."

/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_INF_003 = "To change the information of the officer in charge, click on the save button."

/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_INF_004 = "Error on line @"

/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_INF_005 = "You did not agree to the EUA. Unable to proceed with the certification."

/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_INF_006 = "@ is only possible in @/@."

/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_INF_007 = "@ takes place every month from @ ~ @"

/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_INF_008 = "@ does not match. Cannot @"

/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_INF_009 = "Please select @ from the group."

/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_INF_010 = "@ of the representative is a required input. Please make the change from the edit training facility information screen";

/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_INF_011 = "Select all"

/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_INF_012 = "Cannot delete standard acceptance forms that have already been e-mailed."

/**
 * @type   : var
 * @access : public
 */
var MSG_ISI_CRM_001 = "Send e-mail?"
