/**
 * i18n implementation based on
 * http://recurser.com/articles/2008/02/21/jquery-i18n-translation-plugin/
 * http://svn.recurser.com/misc/jquery/i18n/
 */
var i18n_dict = {
    
    /**
     * REQUIRED
     *
     */
    
    'contact_title_selection'               : '&raquo; The field <strong>Title</strong> is required. Please select the correct detail.',
    'contact_name_required'                 : '&raquo; The field <strong>Name</strong> is required. Please provide the correct detail.',
    'contact_email_required'                : '&raquo; The field <strong>Email</strong> is required. Please provide the correct detail.',
    'contact_password_required'             : '&raquo; The field <strong>Password</strong> is required. Please provide the correct detail.',
    'contact_password_again_required'       : '&raquo; The field <strong>Password Again</strong> is required. Please provide the correct detail.',
    'contact_no_required'                   : '&raquo; The field <strong>Contact No.</strong> is required. Please provide the correct detail.',
    'contact_notype_selection'              : '&raquo; The field <strong>Contact No. Type</strong> is required. Please select the correct detail.',
    'contact_role_selection'                : '&raquo; The field <strong>Role</strong> is required. Please select the correct detail.',
    'property_type_selection'               : '&raquo; The field <strong>Property Type</strong> is required. Please select the correct detail.',
    'property_address_required'             : '&raquo; The field <strong>Address</strong> is required. Please provide the correct detail.',
    'property_postcode_required'            : '&raquo; The field <strong>Postcode</strong> is required. Please provide the correct detail.',
    'property_towncity_required'            : '&raquo; The field <strong>Town/City</strong> is required. Please provide the correct detail.',
    'property_state_selection'              : '&raquo; The field <strong>State</strong> is required. Please select the correct detail.',
    'misc_furnishings_selection'            : '&raquo; The field <strong>Furnishing</strong> is required. Please select the correct detail.',
    'rental_amount_required'                : '&raquo; The field <strong>Rental Amount</strong> is required. Please provide the correct detail.',
    'rental_deposit_month_selection'        : '&raquo; The field <strong>Rental Deposit</strong> is required. Please select the correct detail.',
    'rental_deposit_required'               : '&raquo; The field <strong>Total Deposit</strong> is required. Please provide the correct detail.',
    'misc_utility_cost_sharing_required'    : '&raquo; The field <strong>Utility Payment Method</strong> is required. Please select the correct detail.',
    'rental_agreement_min_period_selection' : '&raquo; The field <strong>Agreement Period</strong> is required. Please select the correct detail.',
    'room_availability_required'            : '&raquo; The field <strong>Room Availability</strong> is required. Please provide the correct detail.',
    'room_size_selection'                   : '&raquo; The field <strong>Room Size</strong> is required. Please select the correct detail.',
    'room_person_selection'                 : '&raquo; The field <strong>Person Limit</strong> is required. Please select the correct detail.',
    'enquiry_subject_selection'             : '&raquo; The field <strong>Subject</strong> is required. Please select the correct detail.',
    'enquiry_message_required'              : '&raquo; The field <strong>Message</strong> is required. Please provide the correct detail.',
    'search_criteria_required'              : '&raquo; Please provide the correct <strong>search criteria</strong>.',
    
    /**
     * Value Cannot be 0
     *
     */
    
    'rental_amount_zerovalue'               : '&raquo; The field <strong>Rental</strong> cannot have zero value.',
    'rental_deposit_zerovalue'              : '&raquo; The field <strong>Total Deposit</strong> cannot have zero value.',
    
    /**
     * Email, Number, Misc
     */
    
    'contact_email_email'                   : '&raquo; The field <strong>Email</strong> must be a valid email.',
    'contact_no_number'                     : '&raquo; The field <strong>Contact No.</strong> must be numbers.',
    'property_postcode_number'              : '&raquo; The field <strong>Postcode</strong> must be numbers.',
    'rental_amount_number'                  : '&raquo; The field <strong>Rental</strong> must be numbers.',
    'rental_utilities_deposit_number'       : '&raquo; The field <strong>Utilities Deposit</strong> must be numbers.',
    'rental_deposit_number'                 : '&raquo; The field <strong>Total Deposit</strong> must be numbers.',
    'contact_password_passwd_match'         : '&raquo; The field <strong>Password</strong> and <strong>Password Again</strong> does\'t match.',
    'search_criteria_minlength'             : '&raquo; The <strong>search criteria</strong> must at least 3 characters.'
}
