Reorder extra var types in a way that makes more sense

This commit is contained in:
Kijin Sung 2024-03-27 00:25:43 +09:00
parent 1b7657f581
commit 9d57d24306
2 changed files with 23 additions and 23 deletions

View file

@ -310,22 +310,22 @@ $lang->comfirm_act_msg = 'Are you sure to %2$s this %1$s?';
$lang->msg_eul = '';
$lang->msg_rul = '';
$lang->column_type = 'Column Type';
$lang->column_type_list['text'] = 'one-line text';
$lang->column_type_list['homepage'] = 'URL';
$lang->column_type_list['email_address'] = 'e-mail address';
$lang->column_type_list['text'] = 'One-line text';
$lang->column_type_list['textarea'] = 'Multi-line text';
$lang->column_type_list['password'] = 'Password';
$lang->column_type_list['select'] = 'Select box (single choice)';
$lang->column_type_list['radio'] = 'Radio buttons (single choice)';
$lang->column_type_list['checkbox'] = 'Checkboxes (multiple choices)';
$lang->column_type_list['tel'] = 'Phone number (3 inputs)';
$lang->column_type_list['tel_v2'] = 'Phone number (1 input)';
$lang->column_type_list['tel_intl'] = 'International phone number (4 inputs)';
$lang->column_type_list['tel_intl_v2'] = 'International phone number (2 inputs)';
$lang->column_type_list['textarea'] = 'multi-line textarea';
$lang->column_type_list['password'] = 'password';
$lang->column_type_list['radio'] = 'radio button(radio)';
$lang->column_type_list['select'] = 'single select box';
$lang->column_type_list['checkbox'] = 'checkbox(multiple selection)';
$lang->column_type_list['kr_zip'] = 'zip code(Korean)';
$lang->column_type_list['date'] = 'date(yyyy/mm/dd)';
$lang->column_type_list['country'] = 'country';
$lang->column_type_list['language'] = 'language';
$lang->column_type_list['homepage'] = 'URL';
$lang->column_type_list['email_address'] = 'E-mail address';
$lang->column_type_list['kr_zip'] = 'Korean address and postal code';
$lang->column_type_list['country'] = 'Country';
$lang->column_type_list['language'] = 'Language';
$lang->column_type_list['date'] = 'Date';
$lang->column_type_list['timezone'] = 'Time zone';
$lang->column_name = 'Column Name';
$lang->column_title = 'Column Title';