'int', FIELD_STRING => 'string', FIELD_TEXT => 'text', FIELD_BOOL => 'bool', FIELD_DROPDOWN => 'dropdown', FIELD_DATE => 'date'); var $profile_cache = array(); var $options_lang = array(); /** * Assign editable fields to template, mode can be profile (for profile change) or register (for registration) * Called by ucp_profile and ucp_register * @access public */ function generate_profile_fields($mode, $lang_id) { global $db, $template, $auth; $sql_where = ''; switch ($mode) { case 'register': // If the field is required we show it on the registration page $sql_where .= ' AND f.field_show_on_reg = 1'; break; case 'profile': // Show hidden fields to moderators/admins if (!$auth->acl_gets('a_', 'm_') && !$auth->acl_getf_global('m_')) { $sql_where .= ' AND f.field_show_profile = 1'; } break; default: trigger_error('Wrong profile mode specified', E_USER_ERROR); break; } $sql = 'SELECT l.*, f.* FROM ' . PROFILE_LANG_TABLE . ' l, ' . PROFILE_FIELDS_TABLE . " f WHERE f.field_active = 1 $sql_where AND l.lang_id = $lang_id AND l.field_id = f.field_id ORDER BY f.field_order"; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { // Return templated field $tpl_snippet = $this->process_field_row('change', $row); // Some types are multivalue, we can't give them a field_id as we would not know which to pick $type = (int) $row['field_type']; $template->assign_block_vars('profile_fields', array( 'LANG_NAME' => $row['lang_name'], 'LANG_EXPLAIN' => $row['lang_explain'], 'FIELD' => $tpl_snippet, 'FIELD_ID' => ($type == FIELD_DATE || ($type == FIELD_BOOL && $row['field_length'] == '1')) ? '' : 'pf_' . $row['field_ident'], 'S_REQUIRED' => ($row['field_required']) ? true : false) ); } $db->sql_freeresult($result); } /** * Validate entered profile field data * @access public */ function validate_profile_field($field_type, &$field_value, $field_data) { switch ($field_type) { case FIELD_DATE: $field_validate = explode('-', $field_value); $day = (isset($field_validate[0])) ? (int) $field_validate[0] : 0; $month = (isset($field_validate[1])) ? (int) $field_validate[1] : 0; $year = (isset($field_validate[2])) ? (int) $field_validate[2] : 0; if ((!$day || !$month || !$year) && !$field_data['field_required']) { return false; } if ((!$day || !$month || !$year) && $field_data['field_required']) { return 'FIELD_REQUIRED'; } if ($day < 0 || $day > 31 || $month < 0 || $month > 12 || ($year < 1901 && $year > 0) || $year > gmdate('Y', time()) + 50) { return 'FIELD_INVALID_DATE'; } if (checkdate($month, $day, $year) === false) { return 'FIELD_INVALID_DATE'; } break; case FIELD_BOOL: $field_value = (bool) $field_value; if (!$field_value && $field_data['field_required']) { return 'FIELD_REQUIRED'; } break; case FIELD_INT: if (trim($field_value) === '' && !$field_data['field_required']) { return false; } $field_value = (int) $field_value; if ($field_value < $field_data['field_minlen']) { return 'FIELD_TOO_SMALL'; } else if ($field_value > $field_data['field_maxlen']) { return 'FIELD_TOO_LARGE'; } break; case FIELD_DROPDOWN: $field_value = (int) $field_value; // retrieve option lang data if necessary if (!isset($this->options_lang[$field_data['field_id']]) || !isset($this->options_lang[$field_data['field_id']][$field_data['lang_id']]) || !sizeof($this->options_lang[$file_data['field_id']][$field_data['lang_id']])) { $this->get_option_lang($field_data['field_id'], $field_data['lang_id'], FIELD_DROPDOWN, false); } if (!isset($this->options_lang[$field_data['field_id']][$field_data['lang_id']][$field_value])) { return 'FIELD_INVALID_VALUE'; } if ($field_value == $field_data['field_novalue'] && $field_data['field_required']) { return 'FIELD_REQUIRED'; } break; case FIELD_STRING: case FIELD_TEXT: if (trim($field_value) === '' && !$field_data['field_required']) { return false; } else if (trim($field_value) === '' && $field_data['field_required']) { return 'FIELD_REQUIRED'; } if ($field_data['field_minlen'] && utf8_strlen($field_value) < $field_data['field_minlen']) { return 'FIELD_TOO_SHORT'; } else if ($field_data['field_maxlen'] && utf8_strlen($field_value) > $field_data['field_maxlen']) { return 'FIELD_TOO_LONG'; } if (!empty($field_data['field_validation']) && $field_data['field_validation'] != '.*') { $field_validate = ($field_type == FIELD_STRING) ? $field_value : bbcode_nl2br($field_value); if (!preg_match('#^' . str_replace('\\\\', '\\', $field_data['field_validation']) . '$#i', $field_validate)) { return 'FIELD_INVALID_CHARS'; } } break; } return false; } /** * Build profile cache, used for display * @access private */ function build_cache() { global $db, $user, $auth; $this->profile_cache = array(); // Display hidden/no_view fields for admin/moderator $sql = 'SELECT l.*, f.* FROM ' . PROFILE_LANG_TABLE . ' l, ' . PROFILE_FIELDS_TABLE . ' f WHERE l.lang_id = ' . $user->get_iso_lang_id() . ' AND f.field_active = 1 ' . ((!$auth->acl_gets('a_', 'm_') && !$auth->acl_getf_global('m_')) ? ' AND f.field_hide = 0 ' : '') . ' AND f.field_no_view = 0 AND l.field_id = f.field_id ORDER BY f.field_order'; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { $this->profile_cache[$row['field_ident']] = $row; } $db->sql_freeresult($result); } /** * Get language entries for options and store them here for later use */ function get_option_lang($field_id, $lang_id, $field_type, $preview) { global $db; if ($preview) { $lang_options = (!is_array($this->vars['lang_options'])) ? explode("\n", $this->vars['lang_options']) : $this->vars['lang_options']; foreach ($lang_options as $num => $var) { $this->options_lang[$field_id][$lang_id][($num + 1)] = $var; } } else { $sql = 'SELECT option_id, lang_value FROM ' . PROFILE_FIELDS_LANG_TABLE . " WHERE field_id = $field_id AND lang_id = $lang_id AND field_type = $field_type ORDER BY option_id"; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { $this->options_lang[$field_id][$lang_id][($row['option_id'] + 1)] = $row['lang_value']; } $db->sql_freeresult($result); } } /** * Submit profile field for validation * @access public */ function submit_cp_field($mode, $lang_id, &$cp_data, &$cp_error) { global $auth, $db, $user; $sql_where = ''; switch ($mode) { case 'register': // If the field is required we show it on the registration page $sql_where .= ' AND f.field_show_on_reg = 1'; break; case 'profile': // Show hidden fields to moderators/admins if (!$auth->acl_gets('a_', 'm_') && !$auth->acl_getf_global('m_')) { $sql_where .= ' AND f.field_show_profile = 1'; } break; default: trigger_error('Wrong profile mode specified', E_USER_ERROR); break; } $sql = 'SELECT l.*, f.* FROM ' . PROFILE_LANG_TABLE . ' l, ' . PROFILE_FIELDS_TABLE . " f WHERE l.lang_id = $lang_id AND f.field_active = 1 $sql_where AND l.field_id = f.field_id ORDER BY f.field_order"; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { $cp_data['pf_' . $row['field_ident']] = $this->get_profile_field($row); $check_value = $cp_data['pf_' . $row['field_ident']]; if (($cp_result = $this->validate_profile_field($row['field_type'], $check_value, $row)) !== false) { // If not and only showing common error messages, use this one $error = ''; switch ($cp_result) { case 'FIELD_INVALID_DATE': case 'FIELD_INVALID_VALUE': case 'FIELD_REQUIRED': $error = sprintf($user->lang[$cp_result], $row['lang_name']); break; case 'FIELD_TOO_SHORT': case 'FIELD_TOO_SMALL': $error = sprintf($user->lang[$cp_result], $row['lang_name'], $row['field_minlen']); break; case 'FIELD_TOO_LONG': case 'FIELD_TOO_LARGE': $error = sprintf($user->lang[$cp_result], $row['lang_name'], $row['field_maxlen']); break; case 'FIELD_INVALID_CHARS': switch ($row['field_validation']) { case '[0-9]+': $error = sprintf($user->lang[$cp_result . '_NUMBERS_ONLY'], $row['lang_name']); break; case '[\w]+': $error = sprintf($user->lang[$cp_result . '_ALPHA_ONLY'], $row['lang_name']); break; case '[\w_\+\. \-\[\]]+': $error = sprintf($user->lang[$cp_result . '_SPACERS_ONLY'], $row['lang_name']); break; } break; } if ($error != '') { $cp_error[] = $error; } } } $db->sql_freeresult($result); } /** * Update profile field data directly */ function update_profile_field_data($user_id, &$cp_data) { global $db; if (!sizeof($cp_data)) { return; } switch ($db->sql_layer) { case 'oracle': case 'firebird': case 'postgres': $right_delim = $left_delim = '"'; break; case 'sqlite': case 'mssql': case 'mssql_odbc': case 'mssqlnative': $right_delim = ']'; $left_delim = '['; break; case 'mysql': case 'mysql4': case 'mysqli': $right_delim = $left_delim = '`'; break; } // use new array for the UPDATE; changes in the key do not affect the original array $cp_data_sql = array(); foreach ($cp_data as $key => $value) { // Firebird is case sensitive with delimiter $cp_data_sql[$left_delim . (($db->sql_layer == 'firebird' || $db->sql_layer == 'oracle') ? strtoupper($key) : $key) . $right_delim] = $value; } $sql = 'UPDATE ' . PROFILE_FIELDS_DATA_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $cp_data_sql) . " WHERE user_id = $user_id"; $db->sql_query($sql); if (!$db->sql_affectedrows()) { $cp_data_sql['user_id'] = (int) $user_id; $db->sql_return_on_error(true); $sql = 'INSERT INTO ' . PROFILE_FIELDS_DATA_TABLE . ' ' . $db->sql_build_array('INSERT', $cp_data_sql); $db->sql_query($sql); $db->sql_return_on_error(false); } } /** * Assign fields to template, used for viewprofile, viewtopic and memberlist (if load setting is enabled) * This is directly connected to the user -> mode == grab is to grab the user specific fields, mode == show is for assigning the row to the template * @access public */ function generate_profile_fields_template($mode, $user_id = 0, $profile_row = false) { global $db; if ($mode == 'grab') { if (!is_array($user_id)) { $user_id = array($user_id); } if (!sizeof($this->profile_cache)) { $this->build_cache(); } if (!sizeof($user_id)) { return array(); } $sql = 'SELECT * FROM ' . PROFILE_FIELDS_DATA_TABLE . ' WHERE ' . $db->sql_in_set('user_id', array_map('intval', $user_id)); $result = $db->sql_query($sql); $field_data = array(); while ($row = $db->sql_fetchrow($result)) { $field_data[$row['user_id']] = $row; } $db->sql_freeresult($result); $user_fields = array(); // Go through the fields in correct order foreach (array_keys($this->profile_cache) as $used_ident) { foreach ($field_data as $user_id => $row) { $user_fields[$user_id][$used_ident]['value'] = $row['pf_' . $used_ident]; $user_fields[$user_id][$used_ident]['data'] = $this->profile_cache[$used_ident]; } } return $user_fields; } else if ($mode == 'show') { // $profile_row == $user_fields[$row['user_id']]; $tpl_fields = array(); $tpl_fields['row'] = $tpl_fields['blockrow'] = array(); foreach ($profile_row as $ident => $ident_ary) { $value = $this->get_profile_value($ident_ary); if ($value === NULL) { continue; } $tpl_fields['row'] += array( 'PROFILE_' . strtoupper($ident) . '_VALUE' => $value, 'PROFILE_' . strtoupper($ident) . '_TYPE' => $ident_ary['data']['field_type'], 'PROFILE_' . strtoupper($ident) . '_NAME' => $ident_ary['data']['lang_name'], 'PROFILE_' . strtoupper($ident) . '_EXPLAIN'=> $ident_ary['data']['lang_explain'], 'S_PROFILE_' . strtoupper($ident) => true ); $tpl_fields['blockrow'][] = array( 'PROFILE_FIELD_VALUE' => $value, 'PROFILE_FIELD_TYPE' => $ident_ary['data']['field_type'], 'PROFILE_FIELD_NAME' => $ident_ary['data']['lang_name'], 'PROFILE_FIELD_EXPLAIN' => $ident_ary['data']['lang_explain'], 'S_PROFILE_' . strtoupper($ident) => true ); } return $tpl_fields; } else { trigger_error('Wrong mode for custom profile', E_USER_ERROR); } } /** * Get Profile Value for display */ function get_profile_value($ident_ary) { $value = $ident_ary['value']; $field_type = $ident_ary['data']['field_type']; switch ($this->profile_types[$field_type]) { case 'int': if ($value === '') { return NULL; } return (int) $value; break; case 'string': case 'text': if (!$value) { return NULL; } $value = make_clickable($value); $value = censor_text($value); $value = bbcode_nl2br($value); return $value; break; // case 'datetime': case 'date': $date = explode('-', $value); $day = (isset($date[0])) ? (int) $date[0] : 0; $month = (isset($date[1])) ? (int) $date[1] : 0; $year = (isset($date[2])) ? (int) $date[2] : 0; if (!$day && !$month && !$year) { return NULL; } else if ($day && $month && $year) { global $user; // Date should display as the same date for every user regardless of timezone, so remove offset // to compensate for the offset added by user::format_date() return $user->format_date(gmmktime(0, 0, 0, $month, $day, $year) - ($user->timezone + $user->dst), $user->lang['DATE_FORMAT'], true); } return $value; break; case 'dropdown': $field_id = $ident_ary['data']['field_id']; $lang_id = $ident_ary['data']['lang_id']; if (!isset($this->options_lang[$field_id][$lang_id])) { $this->get_option_lang($field_id, $lang_id, FIELD_DROPDOWN, false); } if ($value == $ident_ary['data']['field_novalue']) { return NULL; } $value = (int) $value; // User not having a value assigned if (!isset($this->options_lang[$field_id][$lang_id][$value])) { return NULL; } return $this->options_lang[$field_id][$lang_id][$value]; break; case 'bool': $field_id = $ident_ary['data']['field_id']; $lang_id = $ident_ary['data']['lang_id']; if (!isset($this->options_lang[$field_id][$lang_id])) { $this->get_option_lang($field_id, $lang_id, FIELD_BOOL, false); } if ($ident_ary['data']['field_length'] == 1) { return (isset($this->options_lang[$field_id][$lang_id][(int) $value])) ? $this->options_lang[$field_id][$lang_id][(int) $value] : NULL; } else if (!$value) { return NULL; } else { return $this->options_lang[$field_id][$lang_id][(int) ($value) + 1]; } break; default: trigger_error('Unknown profile type', E_USER_ERROR); break; } } /** * Get field value for registration/profile * @access private */ function get_var($field_validation, &$profile_row, $default_value, $preview) { global $user; $profile_row['field_ident'] = (isset($profile_row['var_name'])) ? $profile_row['var_name'] : 'pf_' . $profile_row['field_ident']; $user_ident = $profile_row['field_ident']; // checkbox - only testing for isset if ($profile_row['field_type'] == FIELD_BOOL && $profile_row['field_length'] == 2) { $value = (isset($_REQUEST[$profile_row['field_ident']])) ? true : ((!isset($user->profile_fields[$user_ident]) || $preview) ? $default_value : $user->profile_fields[$user_ident]); } else if ($profile_row['field_type'] == FIELD_INT) { if (isset($_REQUEST[$profile_row['field_ident']])) { $value = ($_REQUEST[$profile_row['field_ident']] === '') ? NULL : request_var($profile_row['field_ident'], $default_value); } else { if (!$preview && array_key_exists($user_ident, $user->profile_fields) && is_null($user->profile_fields[$user_ident])) { $value = NULL; } else if (!isset($user->profile_fields[$user_ident]) || $preview) { $value = $default_value; } else { $value = $user->profile_fields[$user_ident]; } } return (is_null($value) || $value === '') ? '' : (int) $value; } else { $value = (isset($_REQUEST[$profile_row['field_ident']])) ? request_var($profile_row['field_ident'], $default_value, true) : ((!isset($user->profile_fields[$user_ident]) || $preview) ? $default_value : $user->profile_fields[$user_ident]); if (gettype($value) == 'string') { $value = utf8_normalize_nfc($value); } } switch ($field_validation) { case 'int': return (int) $value; break; } return $value; } /** * Process int-type * @access private */ function generate_int($profile_row, $preview = false) { global $template; $profile_row['field_value'] = $this->get_var('int', $profile_row, $profile_row['field_default_value'], $preview); $template->assign_block_vars($this->profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); } /** * Process date-type * @access private */ function generate_date($profile_row, $preview = false) { global $user, $template; $profile_row['field_ident'] = (isset($profile_row['var_name'])) ? $profile_row['var_name'] : 'pf_' . $profile_row['field_ident']; $user_ident = $profile_row['field_ident']; $now = getdate(); if (!isset($_REQUEST[$profile_row['field_ident'] . '_day'])) { if ($profile_row['field_default_value'] == 'now') { $profile_row['field_default_value'] = sprintf('%2d-%2d-%4d', $now['mday'], $now['mon'], $now['year']); } list($day, $month, $year) = explode('-', ((!isset($user->profile_fields[$user_ident]) || $preview) ? $profile_row['field_default_value'] : $user->profile_fields[$user_ident])); } else { if ($preview && $profile_row['field_default_value'] == 'now') { $profile_row['field_default_value'] = sprintf('%2d-%2d-%4d', $now['mday'], $now['mon'], $now['year']); list($day, $month, $year) = explode('-', ((!isset($user->profile_fields[$user_ident]) || $preview) ? $profile_row['field_default_value'] : $user->profile_fields[$user_ident])); } else { $day = request_var($profile_row['field_ident'] . '_day', 0); $month = request_var($profile_row['field_ident'] . '_month', 0); $year = request_var($profile_row['field_ident'] . '_year', 0); } } $profile_row['s_day_options'] = ''; for ($i = 1; $i < 32; $i++) { $profile_row['s_day_options'] .= '"; } $profile_row['s_month_options'] = ''; for ($i = 1; $i < 13; $i++) { $profile_row['s_month_options'] .= '"; } $profile_row['s_year_options'] = ''; for ($i = $now['year'] - 100; $i <= $now['year'] + 100; $i++) { $profile_row['s_year_options'] .= '"; } unset($now); $profile_row['field_value'] = 0; $template->assign_block_vars($this->profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); } /** * Process bool-type * @access private */ function generate_bool($profile_row, $preview = false) { global $template; $value = $this->get_var('int', $profile_row, $profile_row['field_default_value'], $preview); $profile_row['field_value'] = $value; $template->assign_block_vars($this->profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); if ($profile_row['field_length'] == 1) { if (!isset($this->options_lang[$profile_row['field_id']][$profile_row['lang_id']]) || !sizeof($this->options_lang[$profile_row['field_id']][$profile_row['lang_id']])) { $this->get_option_lang($profile_row['field_id'], $profile_row['lang_id'], FIELD_BOOL, $preview); } foreach ($this->options_lang[$profile_row['field_id']][$profile_row['lang_id']] as $option_id => $option_value) { $template->assign_block_vars('bool.options', array( 'OPTION_ID' => $option_id, 'CHECKED' => ($value == $option_id) ? ' checked="checked"' : '', 'VALUE' => $option_value) ); } } } /** * Process string-type * @access private */ function generate_string($profile_row, $preview = false) { global $template; $profile_row['field_value'] = $this->get_var('string', $profile_row, $profile_row['lang_default_value'], $preview); $template->assign_block_vars($this->profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); } /** * Process text-type * @access private */ function generate_text($profile_row, $preview = false) { global $template; global $user, $phpEx, $phpbb_root_path; $field_length = explode('|', $profile_row['field_length']); $profile_row['field_rows'] = $field_length[0]; $profile_row['field_cols'] = $field_length[1]; $profile_row['field_value'] = $this->get_var('string', $profile_row, $profile_row['lang_default_value'], $preview); $template->assign_block_vars($this->profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); } /** * Process dropdown-type * @access private */ function generate_dropdown($profile_row, $preview = false) { global $user, $template; $value = $this->get_var('int', $profile_row, $profile_row['field_default_value'], $preview); if (!isset($this->options_lang[$profile_row['field_id']]) || !isset($this->options_lang[$profile_row['field_id']][$profile_row['lang_id']]) || !sizeof($this->options_lang[$profile_row['field_id']][$profile_row['lang_id']])) { $this->get_option_lang($profile_row['field_id'], $profile_row['lang_id'], FIELD_DROPDOWN, $preview); } $profile_row['field_value'] = $value; $template->assign_block_vars($this->profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); foreach ($this->options_lang[$profile_row['field_id']][$profile_row['lang_id']] as $option_id => $option_value) { $template->assign_block_vars('dropdown.options', array( 'OPTION_ID' => $option_id, 'SELECTED' => ($value == $option_id) ? ' selected="selected"' : '', 'VALUE' => $option_value) ); } } /** * Return Templated value/field. Possible values for $mode are: * change == user is able to set/enter profile values; preview == just show the value * @access private */ function process_field_row($mode, $profile_row) { global $template; $preview = ($mode == 'preview') ? true : false; // set template filename $template->set_filenames(array( 'cp_body' => 'custom_profile_fields.html') ); // empty previously filled blockvars foreach ($this->profile_types as $field_case => $field_type) { $template->destroy_block_vars($field_type); } // Assign template variables $type_func = 'generate_' . $this->profile_types[$profile_row['field_type']]; $this->$type_func($profile_row, $preview); // Return templated data return $template->assign_display('cp_body'); } /** * Build Array for user insertion into custom profile fields table */ function build_insert_sql_array($cp_data) { global $db, $user, $auth; $sql_not_in = array(); foreach ($cp_data as $key => $null) { $sql_not_in[] = (strncmp($key, 'pf_', 3) === 0) ? substr($key, 3) : $key; } $sql = 'SELECT f.field_type, f.field_ident, f.field_default_value, l.lang_default_value FROM ' . PROFILE_LANG_TABLE . ' l, ' . PROFILE_FIELDS_TABLE . ' f WHERE l.lang_id = ' . $user->get_iso_lang_id() . ' ' . ((sizeof($sql_not_in)) ? ' AND ' . $db->sql_in_set('f.field_ident', $sql_not_in, true) : '') . ' AND l.field_id = f.field_id'; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { if ($row['field_default_value'] == 'now' && $row['field_type'] == FIELD_DATE) { $now = getdate(); $row['field_default_value'] = sprintf('%2d-%2d-%4d', $now['mday'], $now['mon'], $now['year']); } else if ($row['field_default_value'] === '' && $row['field_type'] == FIELD_INT) { // We cannot insert an empty string into an integer column. $row['field_default_value'] = NULL; } $cp_data['pf_' . $row['field_ident']] = (in_array($row['field_type'], array(FIELD_TEXT, FIELD_STRING))) ? $row['lang_default_value'] : $row['field_default_value']; } $db->sql_freeresult($result); return $cp_data; } /** * Get profile field value on submit * @access private */ function get_profile_field($profile_row) { global $phpbb_root_path, $phpEx; global $config; $var_name = 'pf_' . $profile_row['field_ident']; switch ($profile_row['field_type']) { case FIELD_DATE: if (!isset($_REQUEST[$var_name . '_day'])) { if ($profile_row['field_default_value'] == 'now') { $now = getdate(); $profile_row['field_default_value'] = sprintf('%2d-%2d-%4d', $now['mday'], $now['mon'], $now['year']); } list($day, $month, $year) = explode('-', $profile_row['field_default_value']); } else { $day = request_var($var_name . '_day', 0); $month = request_var($var_name . '_month', 0); $year = request_var($var_name . '_year', 0); } $var = sprintf('%2d-%2d-%4d', $day, $month, $year); break; case FIELD_BOOL: // Checkbox if ($profile_row['field_length'] == 2) { $var = (isset($_REQUEST[$var_name])) ? 1 : 0; } else { $var = request_var($var_name, (int) $profile_row['field_default_value']); } break; case FIELD_STRING: case FIELD_TEXT: $var = utf8_normalize_nfc(request_var($var_name, (string) $profile_row['field_default_value'], true)); break; case FIELD_INT: if (isset($_REQUEST[$var_name]) && $_REQUEST[$var_name] === '') { $var = NULL; } else { $var = request_var($var_name, (int) $profile_row['field_default_value']); } break; case FIELD_DROPDOWN: $var = request_var($var_name, (int) $profile_row['field_default_value']); break; default: $var = request_var($var_name, $profile_row['field_default_value']); break; } return $var; } } /** * Custom Profile Fields ACP * @package phpBB3 */ class custom_profile_admin extends custom_profile { var $vars = array(); /** * Return possible validation options */ function validate_options() { global $user; $validate_ary = array('CHARS_ANY' => '.*', 'NUMBERS_ONLY' => '[0-9]+', 'ALPHA_ONLY' => '[\w]+', 'ALPHA_SPACERS' => '[\w_\+\. \-\[\]]+'); $validate_options = ''; foreach ($validate_ary as $lang => $value) { $selected = ($this->vars['field_validation'] == $value) ? ' selected="selected"' : ''; $validate_options .= ''; } return $validate_options; } /** * Get string options for second step in ACP */ function get_string_options() { global $user; $options = array( 0 => array('TITLE' => $user->lang['FIELD_LENGTH'], 'FIELD' => ''), 1 => array('TITLE' => $user->lang['MIN_FIELD_CHARS'], 'FIELD' => ''), 2 => array('TITLE' => $user->lang['MAX_FIELD_CHARS'], 'FIELD' => ''), 3 => array('TITLE' => $user->lang['FIELD_VALIDATION'], 'FIELD' => '') ); return $options; } /** * Get text options for second step in ACP */ function get_text_options() { global $user; $options = array( 0 => array('TITLE' => $user->lang['FIELD_LENGTH'], 'FIELD' => ' ' . $user->lang['ROWS'] . '
' . $user->lang['COLUMNS'] . ' '), 1 => array('TITLE' => $user->lang['MIN_FIELD_CHARS'], 'FIELD' => ''), 2 => array('TITLE' => $user->lang['MAX_FIELD_CHARS'], 'FIELD' => ''), 3 => array('TITLE' => $user->lang['FIELD_VALIDATION'], 'FIELD' => '') ); return $options; } /** * Get int options for second step in ACP */ function get_int_options() { global $user; $options = array( 0 => array('TITLE' => $user->lang['FIELD_LENGTH'], 'FIELD' => ''), 1 => array('TITLE' => $user->lang['MIN_FIELD_NUMBER'], 'FIELD' => ''), 2 => array('TITLE' => $user->lang['MAX_FIELD_NUMBER'], 'FIELD' => ''), 3 => array('TITLE' => $user->lang['DEFAULT_VALUE'], 'FIELD' => '') ); return $options; } /** * Get bool options for second step in ACP */ function get_bool_options() { global $user, $config, $lang_defs; $default_lang_id = $lang_defs['iso'][$config['default_lang']]; $profile_row = array( 'var_name' => 'field_default_value', 'field_id' => 1, 'lang_name' => $this->vars['lang_name'], 'lang_explain' => $this->vars['lang_explain'], 'lang_id' => $default_lang_id, 'field_default_value' => $this->vars['field_default_value'], 'field_ident' => 'field_default_value', 'field_type' => FIELD_BOOL, 'field_length' => $this->vars['field_length'], 'lang_options' => $this->vars['lang_options'] ); $options = array( 0 => array('TITLE' => $user->lang['FIELD_TYPE'], 'EXPLAIN' => $user->lang['BOOL_TYPE_EXPLAIN'], 'FIELD' => ''), 1 => array('TITLE' => $user->lang['DEFAULT_VALUE'], 'FIELD' => $this->process_field_row('preview', $profile_row)) ); return $options; } /** * Get dropdown options for second step in ACP */ function get_dropdown_options() { global $user, $config, $lang_defs; $default_lang_id = $lang_defs['iso'][$config['default_lang']]; $profile_row[0] = array( 'var_name' => 'field_default_value', 'field_id' => 1, 'lang_name' => $this->vars['lang_name'], 'lang_explain' => $this->vars['lang_explain'], 'lang_id' => $default_lang_id, 'field_default_value' => $this->vars['field_default_value'], 'field_ident' => 'field_default_value', 'field_type' => FIELD_DROPDOWN, 'lang_options' => $this->vars['lang_options'] ); $profile_row[1] = $profile_row[0]; $profile_row[1]['var_name'] = 'field_novalue'; $profile_row[1]['field_ident'] = 'field_novalue'; $profile_row[1]['field_default_value'] = $this->vars['field_novalue']; $options = array( 0 => array('TITLE' => $user->lang['DEFAULT_VALUE'], 'FIELD' => $this->process_field_row('preview', $profile_row[0])), 1 => array('TITLE' => $user->lang['NO_VALUE_OPTION'], 'EXPLAIN' => $user->lang['NO_VALUE_OPTION_EXPLAIN'], 'FIELD' => $this->process_field_row('preview', $profile_row[1])) ); return $options; } /** * Get date options for second step in ACP */ function get_date_options() { global $user, $config, $lang_defs; $default_lang_id = $lang_defs['iso'][$config['default_lang']]; $profile_row = array( 'var_name' => 'field_default_value', 'lang_name' => $this->vars['lang_name'], 'lang_explain' => $this->vars['lang_explain'], 'lang_id' => $default_lang_id, 'field_default_value' => $this->vars['field_default_value'], 'field_ident' => 'field_default_value', 'field_type' => FIELD_DATE, 'field_length' => $this->vars['field_length'] ); $always_now = request_var('always_now', -1); if ($always_now == -1) { $s_checked = ($this->vars['field_default_value'] == 'now') ? true : false; } else { $s_checked = ($always_now) ? true : false; } $options = array( 0 => array('TITLE' => $user->lang['DEFAULT_VALUE'], 'FIELD' => $this->process_field_row('preview', $profile_row)), 1 => array('TITLE' => $user->lang['ALWAYS_TODAY'], 'FIELD' => ''), ); return $options; } } ?>po?h=16.26.5&id=889542f0636fe16b741b2cd0b7db94790d6689d7'>perl-install/install/help/po/sq.po8
-rw-r--r--perl-install/install/help/po/sr.po8
-rw-r--r--perl-install/install/help/po/sr@Latn.po8
-rw-r--r--perl-install/install/help/po/sv.po8
-rw-r--r--perl-install/install/help/po/ta.po16
-rw-r--r--perl-install/install/help/po/tg.po8
-rw-r--r--perl-install/install/help/po/th.po8
-rw-r--r--perl-install/install/help/po/tl.po8
-rw-r--r--perl-install/install/help/po/tr.po8
-rw-r--r--perl-install/install/help/po/uk.po8
-rw-r--r--perl-install/install/help/po/uz.po8
-rw-r--r--perl-install/install/help/po/uz@cyrillic.po8
-rw-r--r--perl-install/install/help/po/vi.po8
-rw-r--r--perl-install/install/help/po/wa.po8
-rw-r--r--perl-install/install/help/po/zh_CN.po8
-rw-r--r--perl-install/install/help/po/zh_TW.po8
-rw-r--r--perl-install/install/share/po/DrakX.pot2
-rw-r--r--perl-install/install/share/po/af.po2
-rw-r--r--perl-install/install/share/po/am.po2
-rw-r--r--perl-install/install/share/po/ar.po2
-rw-r--r--perl-install/install/share/po/ast.po2
-rw-r--r--perl-install/install/share/po/az.po2
-rw-r--r--perl-install/install/share/po/be.po2
-rw-r--r--perl-install/install/share/po/bg.po2
-rw-r--r--perl-install/install/share/po/bn.po2
-rw-r--r--perl-install/install/share/po/br.po2
-rw-r--r--perl-install/install/share/po/bs.po2
-rw-r--r--perl-install/install/share/po/ca.po2
-rw-r--r--perl-install/install/share/po/cs.po2
-rw-r--r--perl-install/install/share/po/cy.po2
-rw-r--r--perl-install/install/share/po/da.po2
-rw-r--r--perl-install/install/share/po/de.po2
-rw-r--r--perl-install/install/share/po/el.po2
-rw-r--r--perl-install/install/share/po/eo.po2
-rw-r--r--perl-install/install/share/po/es.po2
-rw-r--r--perl-install/install/share/po/et.po2
-rw-r--r--perl-install/install/share/po/eu.po2
-rw-r--r--perl-install/install/share/po/fa.po2
-rw-r--r--perl-install/install/share/po/fi.po2
-rw-r--r--perl-install/install/share/po/fr.po2
-rw-r--r--perl-install/install/share/po/fur.po2
-rw-r--r--perl-install/install/share/po/ga.po2
-rw-r--r--perl-install/install/share/po/gl.po2
-rw-r--r--perl-install/install/share/po/he.po2
-rw-r--r--perl-install/install/share/po/hi.po2
-rw-r--r--perl-install/install/share/po/hr.po2
-rw-r--r--perl-install/install/share/po/hu.po2
-rw-r--r--perl-install/install/share/po/id.po2
-rw-r--r--perl-install/install/share/po/is.po2
-rw-r--r--perl-install/install/share/po/it.po2
-rw-r--r--perl-install/install/share/po/ja.po2
-rw-r--r--perl-install/install/share/po/ko.po2
-rw-r--r--perl-install/install/share/po/ky.po2
-rw-r--r--perl-install/install/share/po/lt.po2
-rw-r--r--perl-install/install/share/po/ltg.po2
-rw-r--r--perl-install/install/share/po/lv.po2
-rw-r--r--perl-install/install/share/po/mk.po2
-rw-r--r--perl-install/install/share/po/mn.po2
-rw-r--r--perl-install/install/share/po/ms.po2
-rw-r--r--perl-install/install/share/po/mt.po2
-rw-r--r--perl-install/install/share/po/nb.po2
-rw-r--r--perl-install/install/share/po/nl.po2
-rw-r--r--perl-install/install/share/po/nn.po2
-rw-r--r--perl-install/install/share/po/pa_IN.po2
-rw-r--r--perl-install/install/share/po/pl.po2
-rw-r--r--perl-install/install/share/po/pt.po2
-rw-r--r--perl-install/install/share/po/pt_BR.po2
-rw-r--r--perl-install/install/share/po/ro.po2
-rw-r--r--perl-install/install/share/po/ru.po2
-rw-r--r--perl-install/install/share/po/sc.po2
-rw-r--r--perl-install/install/share/po/sk.po2
-rw-r--r--perl-install/install/share/po/sl.po2
-rw-r--r--perl-install/install/share/po/sq.po4
-rw-r--r--perl-install/install/share/po/sr.po2
-rw-r--r--perl-install/install/share/po/sr@Latn.po2
-rw-r--r--perl-install/install/share/po/sv.po2
-rw-r--r--perl-install/install/share/po/ta.po2
-rw-r--r--perl-install/install/share/po/tg.po2
-rw-r--r--perl-install/install/share/po/th.po2
-rw-r--r--perl-install/install/share/po/tl.po2
-rw-r--r--perl-install/install/share/po/tr.po2
-rw-r--r--perl-install/install/share/po/uk.po2
-rw-r--r--perl-install/install/share/po/uz.po2
-rw-r--r--perl-install/install/share/po/uz@cyrillic.po2
-rw-r--r--perl-install/install/share/po/vi.po2
-rw-r--r--perl-install/install/share/po/wa.po2
-rw-r--r--perl-install/install/share/po/zh_CN.po2
-rw-r--r--perl-install/install/share/po/zh_TW.po2
-rw-r--r--perl-install/share/po/af.po2
-rw-r--r--perl-install/share/po/am.po2
-rw-r--r--perl-install/share/po/ar.po2
-rw-r--r--perl-install/share/po/az.po2
-rw-r--r--perl-install/share/po/be.po2
-rw-r--r--perl-install/share/po/bg.po2
-rw-r--r--perl-install/share/po/bn.po2
-rw-r--r--perl-install/share/po/br.po2
-rw-r--r--perl-install/share/po/bs.po2
-rw-r--r--perl-install/share/po/ca.po2
-rw-r--r--perl-install/share/po/cs.po2
-rw-r--r--perl-install/share/po/cy.po2
-rw-r--r--perl-install/share/po/da.po2
-rw-r--r--perl-install/share/po/de.po2
-rw-r--r--perl-install/share/po/el.po2
-rw-r--r--perl-install/share/po/eo.po2
-rw-r--r--perl-install/share/po/es.po2
-rw-r--r--perl-install/share/po/et.po2
-rw-r--r--perl-install/share/po/eu.po2
-rw-r--r--perl-install/share/po/fa.po2
-rw-r--r--perl-install/share/po/fi.po2
-rw-r--r--perl-install/share/po/fr.po2
-rw-r--r--perl-install/share/po/fur.po2
-rw-r--r--perl-install/share/po/ga.po2
-rw-r--r--perl-install/share/po/gl.po2
-rw-r--r--perl-install/share/po/he.po2
-rw-r--r--perl-install/share/po/hi.po2
-rw-r--r--perl-install/share/po/hr.po2
-rw-r--r--perl-install/share/po/hu.po2
-rw-r--r--perl-install/share/po/id.po2
-rw-r--r--perl-install/share/po/is.po2
-rw-r--r--perl-install/share/po/it.po2
-rw-r--r--perl-install/share/po/ja.po2
-rw-r--r--perl-install/share/po/ko.po2
-rw-r--r--perl-install/share/po/ky.po2
-rw-r--r--perl-install/share/po/libDrakX.pot2
-rw-r--r--perl-install/share/po/lt.po2
-rw-r--r--perl-install/share/po/ltg.po2
-rw-r--r--perl-install/share/po/lv.po2
-rw-r--r--perl-install/share/po/mk.po2
-rw-r--r--perl-install/share/po/mn.po2
-rw-r--r--perl-install/share/po/ms.po2
-rw-r--r--perl-install/share/po/mt.po2
-rw-r--r--perl-install/share/po/nb.po2
-rw-r--r--perl-install/share/po/nl.po2
-rw-r--r--perl-install/share/po/nn.po2
-rw-r--r--perl-install/share/po/pa_IN.po2
-rw-r--r--perl-install/share/po/pl.po2
-rw-r--r--perl-install/share/po/pt.po2
-rw-r--r--perl-install/share/po/pt_BR.po2
-rw-r--r--perl-install/share/po/ro.po2
-rw-r--r--perl-install/share/po/ru.po2
-rw-r--r--perl-install/share/po/sc.po2
-rw-r--r--perl-install/share/po/sk.po2
-rw-r--r--perl-install/share/po/sl.po2
-rw-r--r--perl-install/share/po/sq.po2
-rw-r--r--perl-install/share/po/sr.po2
-rw-r--r--perl-install/share/po/sr@Latn.po2
-rw-r--r--perl-install/share/po/sv.po2
-rw-r--r--perl-install/share/po/ta.po2
-rw-r--r--perl-install/share/po/tg.po2
-rw-r--r--perl-install/share/po/th.po2
-rw-r--r--perl-install/share/po/tl.po2
-rw-r--r--perl-install/share/po/tr.po2
-rw-r--r--perl-install/share/po/uk.po2
-rw-r--r--perl-install/share/po/uz.po2
-rw-r--r--perl-install/share/po/uz@cyrillic.po2
-rw-r--r--perl-install/share/po/vi.po2
-rw-r--r--perl-install/share/po/wa.po2
-rw-r--r--perl-install/share/po/zh_CN.po2
-rw-r--r--perl-install/share/po/zh_TW.po2
216 files changed, 439 insertions, 439 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index 2ec3ffd12..b1ec7e74a 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -335,7 +335,7 @@ sub hd_possible_actions {
sub hd_possible_actions_interactive {
my ($_in, $_hd, $_all_hds) = @_;
- &hd_possible_actions, N_("Hard drive information");
+ &hd_possible_actions, N_("Hard disk drive information");
}
sub Clear_all {
@@ -1141,7 +1141,7 @@ sub Options {
*{'Add to LVM'} = \&Add2LVM;
*{'Remove from LVM'} = \&RemoveFromLVM;
*{'Use for loopback'} = \&Loopback;
- *{'Hard drive information'} = \&Hd_info;
+ *{'Hard disk drive information'} = \&Hd_info;
}
diff --git a/perl-install/install/help/help.pm b/perl-install/install/help/help.pm
index a60aec02f..2182bf63d 100644
--- a/perl-install/install/help/help.pm
+++ b/perl-install/install/help/help.pm
@@ -67,10 +67,10 @@ Each partition is listed as follows: \"Name\", \"Capacity\".
\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",
\"partition number\" (for example, \"hda1\").
-\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and
+\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and
\"sd\" if it is a SCSI hard disk drive.
-\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE
+\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE
hard disk drives:
* \"a\" means \"master hard disk drive on the primary IDE controller\";
@@ -536,10 +536,10 @@ Each partition is listed as follows: \"Linux name\", \"Windows name\"
\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",
\"partition number\" (for example, \"hda1\").
-\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and
+\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and
\"sd\" if it is a SCSI hard disk drive.
-\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE
+\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE
hard disk drives:
* \"a\" means \"master hard disk drive on the primary IDE controller\";
diff --git a/perl-install/install/help/po/DrakX-help.pot b/perl-install/install/help/po/DrakX-help.pot
index 81f958daa..a6ed2b546 100644
--- a/perl-install/install/help/po/DrakX-help.pot
+++ b/perl-install/install/help/po/DrakX-help.pot
@@ -97,10 +97,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -731,10 +731,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/af.po b/perl-install/install/help/po/af.po
index 2daeb34ab..b497979c8 100644
--- a/perl-install/install/help/po/af.po
+++ b/perl-install/install/help/po/af.po
@@ -152,10 +152,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1190,10 +1190,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/am.po b/perl-install/install/help/po/am.po
index 2f4109a61..337ee9d3c 100644
--- a/perl-install/install/help/po/am.po
+++ b/perl-install/install/help/po/am.po
@@ -95,10 +95,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -727,10 +727,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/ar.po b/perl-install/install/help/po/ar.po
index a5275911a..53dd78910 100644
--- a/perl-install/install/help/po/ar.po
+++ b/perl-install/install/help/po/ar.po
@@ -144,10 +144,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1215,10 +1215,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/az.po b/perl-install/install/help/po/az.po
index 06e5f3ba0..68e7a1c61 100644
--- a/perl-install/install/help/po/az.po
+++ b/perl-install/install/help/po/az.po
@@ -153,10 +153,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1260,10 +1260,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/be.po b/perl-install/install/help/po/be.po
index 8e8e18c45..bb0cdb594 100644
--- a/perl-install/install/help/po/be.po
+++ b/perl-install/install/help/po/be.po
@@ -95,10 +95,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -727,10 +727,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/bg.po b/perl-install/install/help/po/bg.po
index d503d120c..7dbff4499 100644
--- a/perl-install/install/help/po/bg.po
+++ b/perl-install/install/help/po/bg.po
@@ -150,10 +150,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1131,10 +1131,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/bn.po b/perl-install/install/help/po/bn.po
index 4f4a57921..0322733c7 100644
--- a/perl-install/install/help/po/bn.po
+++ b/perl-install/install/help/po/bn.po
@@ -148,10 +148,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1037,10 +1037,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/br.po b/perl-install/install/help/po/br.po
index bb90f6ca5..489c655df 100644
--- a/perl-install/install/help/po/br.po
+++ b/perl-install/install/help/po/br.po
@@ -97,10 +97,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -737,10 +737,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/bs.po b/perl-install/install/help/po/bs.po
index 0ed9bd845..20f6339fd 100644
--- a/perl-install/install/help/po/bs.po
+++ b/perl-install/install/help/po/bs.po
@@ -151,10 +151,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1239,10 +1239,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/ca.po b/perl-install/install/help/po/ca.po
index e9b1cb8f8..a2e3d12fd 100644
--- a/perl-install/install/help/po/ca.po
+++ b/perl-install/install/help/po/ca.po
@@ -158,10 +158,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1260,10 +1260,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/cs.po b/perl-install/install/help/po/cs.po
index 201707577..a7070ca8b 100644
--- a/perl-install/install/help/po/cs.po
+++ b/perl-install/install/help/po/cs.po
@@ -142,10 +142,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1231,10 +1231,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/cy.po b/perl-install/install/help/po/cy.po
index 06e8f7f1e..3c5296b15 100644
--- a/perl-install/install/help/po/cy.po
+++ b/perl-install/install/help/po/cy.po
@@ -148,10 +148,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1188,10 +1188,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/da.po b/perl-install/install/help/po/da.po
index 656b3cd21..865e30874 100644
--- a/perl-install/install/help/po/da.po
+++ b/perl-install/install/help/po/da.po
@@ -145,10 +145,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1214,10 +1214,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/de.po b/perl-install/install/help/po/de.po
index 99f809a5d..28388283e 100644
--- a/perl-install/install/help/po/de.po
+++ b/perl-install/install/help/po/de.po
@@ -153,10 +153,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1276,10 +1276,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/el.po b/perl-install/install/help/po/el.po
index c8bdd993d..d3f6566d5 100644
--- a/perl-install/install/help/po/el.po
+++ b/perl-install/install/help/po/el.po
@@ -140,10 +140,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1200,10 +1200,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/eo.po b/perl-install/install/help/po/eo.po
index 6a929c56a..5e1e4e5b8 100644
--- a/perl-install/install/help/po/eo.po
+++ b/perl-install/install/help/po/eo.po
@@ -148,10 +148,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1263,10 +1263,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/es.po b/perl-install/install/help/po/es.po
index f2b8a92a0..4bf27acee 100644
--- a/perl-install/install/help/po/es.po
+++ b/perl-install/install/help/po/es.po
@@ -153,10 +153,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1290,10 +1290,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/et.po b/perl-install/install/help/po/et.po
index 979459604..bbf9e3cac 100644
--- a/perl-install/install/help/po/et.po
+++ b/perl-install/install/help/po/et.po
@@ -143,10 +143,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1243,10 +1243,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/eu.po b/perl-install/install/help/po/eu.po
index ea34a69b4..0b1dc798b 100644
--- a/perl-install/install/help/po/eu.po
+++ b/perl-install/install/help/po/eu.po
@@ -146,10 +146,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1266,10 +1266,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/fa.po b/perl-install/install/help/po/fa.po
index a1825092e..0ca028505 100644
--- a/perl-install/install/help/po/fa.po
+++ b/perl-install/install/help/po/fa.po
@@ -145,10 +145,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1226,10 +1226,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/fi.po b/perl-install/install/help/po/fi.po
index 5ad859ce0..0cbd4f197 100644
--- a/perl-install/install/help/po/fi.po
+++ b/perl-install/install/help/po/fi.po
@@ -143,10 +143,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1219,10 +1219,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/fr.po b/perl-install/install/help/po/fr.po
index ab9c8046e..5eb50848f 100644
--- a/perl-install/install/help/po/fr.po
+++ b/perl-install/install/help/po/fr.po
@@ -208,10 +208,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1323,10 +1323,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/fur.po b/perl-install/install/help/po/fur.po
index 1ac5a3d6c..f199dceec 100644
--- a/perl-install/install/help/po/fur.po
+++ b/perl-install/install/help/po/fur.po
@@ -97,10 +97,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -729,10 +729,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/ga.po b/perl-install/install/help/po/ga.po
index cf6fa9d88..75d769a72 100644
--- a/perl-install/install/help/po/ga.po
+++ b/perl-install/install/help/po/ga.po
@@ -94,10 +94,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -726,10 +726,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/gl.po b/perl-install/install/help/po/gl.po
index 5e39caf0f..1dd690d63 100644
--- a/perl-install/install/help/po/gl.po
+++ b/perl-install/install/help/po/gl.po
@@ -140,10 +140,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1230,10 +1230,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/he.po b/perl-install/install/help/po/he.po
index d8090b97b..7b492c2a4 100644
--- a/perl-install/install/help/po/he.po
+++ b/perl-install/install/help/po/he.po
@@ -146,10 +146,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1212,10 +1212,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/hi.po b/perl-install/install/help/po/hi.po
index 064469ef9..7f68c3f4a 100644
--- a/perl-install/install/help/po/hi.po
+++ b/perl-install/install/help/po/hi.po
@@ -145,10 +145,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1015,10 +1015,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/hr.po b/perl-install/install/help/po/hr.po
index 0455c242f..206b62942 100644
--- a/perl-install/install/help/po/hr.po
+++ b/perl-install/install/help/po/hr.po
@@ -136,10 +136,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1190,10 +1190,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/hu.po b/perl-install/install/help/po/hu.po
index b12826d15..76c5c5721 100644
--- a/perl-install/install/help/po/hu.po
+++ b/perl-install/install/help/po/hu.po
@@ -144,10 +144,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1246,10 +1246,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/id.po b/perl-install/install/help/po/id.po
index d32206e6d..9ce92e824 100644
--- a/perl-install/install/help/po/id.po
+++ b/perl-install/install/help/po/id.po
@@ -153,10 +153,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1282,10 +1282,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/is.po b/perl-install/install/help/po/is.po
index b6a06c2b6..210b0f517 100644
--- a/perl-install/install/help/po/is.po
+++ b/perl-install/install/help/po/is.po
@@ -147,10 +147,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1227,10 +1227,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/it.po b/perl-install/install/help/po/it.po
index 224d80632..790bbce75 100644
--- a/perl-install/install/help/po/it.po
+++ b/perl-install/install/help/po/it.po
@@ -149,10 +149,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1307,10 +1307,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/ja.po b/perl-install/install/help/po/ja.po
index 64836aea3..15656ed6a 100644
--- a/perl-install/install/help/po/ja.po
+++ b/perl-install/install/help/po/ja.po
@@ -136,10 +136,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1176,10 +1176,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/ko.po b/perl-install/install/help/po/ko.po
index 1a89f07a8..5c50d5892 100644
--- a/perl-install/install/help/po/ko.po
+++ b/perl-install/install/help/po/ko.po
@@ -102,10 +102,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1021,10 +1021,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/ky.po b/perl-install/install/help/po/ky.po
index d5b61ccf6..a7a555631 100644
--- a/perl-install/install/help/po/ky.po
+++ b/perl-install/install/help/po/ky.po
@@ -141,10 +141,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1148,10 +1148,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/lt.po b/perl-install/install/help/po/lt.po
index c2be6bb72..434c94cca 100644
--- a/perl-install/install/help/po/lt.po
+++ b/perl-install/install/help/po/lt.po
@@ -96,10 +96,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -942,10 +942,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/ltg.po b/perl-install/install/help/po/ltg.po
index 81512fceb..cf57d4bd6 100644
--- a/perl-install/install/help/po/ltg.po
+++ b/perl-install/install/help/po/ltg.po
@@ -101,10 +101,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -942,10 +942,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/lv.po b/perl-install/install/help/po/lv.po
index 111af33d9..fed5ce4ef 100644
--- a/perl-install/install/help/po/lv.po
+++ b/perl-install/install/help/po/lv.po
@@ -103,10 +103,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -941,10 +941,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/mk.po b/perl-install/install/help/po/mk.po
index ee58e5f1e..2acdde2d9 100644
--- a/perl-install/install/help/po/mk.po
+++ b/perl-install/install/help/po/mk.po
@@ -151,10 +151,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1291,10 +1291,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/mn.po b/perl-install/install/help/po/mn.po
index bb6a1c0a9..4fcbd4227 100644
--- a/perl-install/install/help/po/mn.po
+++ b/perl-install/install/help/po/mn.po
@@ -99,10 +99,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -772,10 +772,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/ms.po b/perl-install/install/help/po/ms.po
index d55a1c374..17b9ed9e2 100644
--- a/perl-install/install/help/po/ms.po
+++ b/perl-install/install/help/po/ms.po
@@ -99,10 +99,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -794,10 +794,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/mt.po b/perl-install/install/help/po/mt.po
index b62e189a8..42e7067d1 100644
--- a/perl-install/install/help/po/mt.po
+++ b/perl-install/install/help/po/mt.po
@@ -136,10 +136,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1208,10 +1208,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/nb.po b/perl-install/install/help/po/nb.po
index 7fe2b9dc9..8d8dd6ccd 100644
--- a/perl-install/install/help/po/nb.po
+++ b/perl-install/install/help/po/nb.po
@@ -159,10 +159,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1293,10 +1293,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/nl.po b/perl-install/install/help/po/nl.po
index 8d2ba4a3c..e8e2bd403 100644
--- a/perl-install/install/help/po/nl.po
+++ b/perl-install/install/help/po/nl.po
@@ -149,10 +149,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1276,10 +1276,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/nn.po b/perl-install/install/help/po/nn.po
index 6642318e0..8b7b7c81f 100644
--- a/perl-install/install/help/po/nn.po
+++ b/perl-install/install/help/po/nn.po
@@ -153,10 +153,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1207,10 +1207,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/pa_IN.po b/perl-install/install/help/po/pa_IN.po
index 198badb64..5036fb640 100644
--- a/perl-install/install/help/po/pa_IN.po
+++ b/perl-install/install/help/po/pa_IN.po
@@ -103,10 +103,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -760,10 +760,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/pl.po b/perl-install/install/help/po/pl.po
index d118f0eb4..000c6ebc4 100644
--- a/perl-install/install/help/po/pl.po
+++ b/perl-install/install/help/po/pl.po
@@ -149,10 +149,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1251,10 +1251,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/pt.po b/perl-install/install/help/po/pt.po
index db198a229..267f62ee1 100644
--- a/perl-install/install/help/po/pt.po
+++ b/perl-install/install/help/po/pt.po
@@ -152,10 +152,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1238,10 +1238,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/pt_BR.po b/perl-install/install/help/po/pt_BR.po
index 63f6f364c..92861c236 100644
--- a/perl-install/install/help/po/pt_BR.po
+++ b/perl-install/install/help/po/pt_BR.po
@@ -160,10 +160,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1282,10 +1282,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/ro.po b/perl-install/install/help/po/ro.po
index 0a6b5c99f..9a48dc4dd 100644
--- a/perl-install/install/help/po/ro.po
+++ b/perl-install/install/help/po/ro.po
@@ -101,10 +101,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -733,10 +733,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/ru.po b/perl-install/install/help/po/ru.po
index 67aba145b..770e3faaa 100644
--- a/perl-install/install/help/po/ru.po
+++ b/perl-install/install/help/po/ru.po
@@ -143,10 +143,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -174,7 +174,7 @@ msgstr ""
"\"Название\" разделяется на: \"тип жесткого диска\", \"номер жесткого\n"
"диска\", \"номер раздела\" (например, \"hda1\").\n"
"\n"
-"\"Hard drive type\" это \"hd\", если ваш жесткий диск IDE и \"sd\", если он\n"
+"\"Hard disk drive type\" это \"hd\", если ваш жесткий диск IDE и \"sd\", если он\n"
"SCSI.\n"
"\n"
"\"Номер жесткого диска\" всегда является буквой после \"hd\" или \"sd\".\n"
@@ -1240,10 +1240,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/sc.po b/perl-install/install/help/po/sc.po
index 9be661ec6..24059e258 100644
--- a/perl-install/install/help/po/sc.po
+++ b/perl-install/install/help/po/sc.po
@@ -97,10 +97,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -729,10 +729,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/sk.po b/perl-install/install/help/po/sk.po
index 0144c4318..177fcc2dd 100644
--- a/perl-install/install/help/po/sk.po
+++ b/perl-install/install/help/po/sk.po
@@ -143,10 +143,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1273,10 +1273,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/sl.po b/perl-install/install/help/po/sl.po
index e25ba3aae..c5090e97e 100644
--- a/perl-install/install/help/po/sl.po
+++ b/perl-install/install/help/po/sl.po
@@ -150,10 +150,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1224,10 +1224,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/sq.po b/perl-install/install/help/po/sq.po
index 51772db19..92a0455b1 100644
--- a/perl-install/install/help/po/sq.po
+++ b/perl-install/install/help/po/sq.po
@@ -145,10 +145,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1242,10 +1242,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/sr.po b/perl-install/install/help/po/sr.po
index daa320f62..c0a8a192e 100644
--- a/perl-install/install/help/po/sr.po
+++ b/perl-install/install/help/po/sr.po
@@ -149,10 +149,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1279,10 +1279,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/sr@Latn.po b/perl-install/install/help/po/sr@Latn.po
index 94bf1c5b7..147fa9245 100644
--- a/perl-install/install/help/po/sr@Latn.po
+++ b/perl-install/install/help/po/sr@Latn.po
@@ -151,10 +151,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1284,10 +1284,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/sv.po b/perl-install/install/help/po/sv.po
index 328440b41..b69e3ea27 100644
--- a/perl-install/install/help/po/sv.po
+++ b/perl-install/install/help/po/sv.po
@@ -148,10 +148,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1235,10 +1235,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/ta.po b/perl-install/install/help/po/ta.po
index 609b696ad..60f031e31 100644
--- a/perl-install/install/help/po/ta.po
+++ b/perl-install/install/help/po/ta.po
@@ -133,10 +133,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -164,10 +164,10 @@ msgstr ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1067,10 +1067,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1098,10 +1098,10 @@ msgstr ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/tg.po b/perl-install/install/help/po/tg.po
index d0a283436..415cba967 100644
--- a/perl-install/install/help/po/tg.po
+++ b/perl-install/install/help/po/tg.po
@@ -156,10 +156,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1295,10 +1295,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/th.po b/perl-install/install/help/po/th.po
index 4d546b0ff..e2f4a4384 100644
--- a/perl-install/install/help/po/th.po
+++ b/perl-install/install/help/po/th.po
@@ -97,10 +97,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -729,10 +729,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/tl.po b/perl-install/install/help/po/tl.po
index c1602ea14..b17744a07 100644
--- a/perl-install/install/help/po/tl.po
+++ b/perl-install/install/help/po/tl.po
@@ -154,10 +154,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1313,10 +1313,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/tr.po b/perl-install/install/help/po/tr.po
index ebf9a6772..90138caff 100644
--- a/perl-install/install/help/po/tr.po
+++ b/perl-install/install/help/po/tr.po
@@ -143,10 +143,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1168,10 +1168,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/uk.po b/perl-install/install/help/po/uk.po
index 08ff66fcb..042c2ace7 100644
--- a/perl-install/install/help/po/uk.po
+++ b/perl-install/install/help/po/uk.po
@@ -146,10 +146,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1236,10 +1236,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/uz.po b/perl-install/install/help/po/uz.po
index 03ff0d14e..c15043d7b 100644
--- a/perl-install/install/help/po/uz.po
+++ b/perl-install/install/help/po/uz.po
@@ -101,10 +101,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -749,10 +749,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/uz@cyrillic.po b/perl-install/install/help/po/uz@cyrillic.po
index 38a7af057..17ca71694 100644
--- a/perl-install/install/help/po/uz@cyrillic.po
+++ b/perl-install/install/help/po/uz@cyrillic.po
@@ -101,10 +101,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -748,10 +748,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/vi.po b/perl-install/install/help/po/vi.po
index bc530d27b..17ca0f116 100644
--- a/perl-install/install/help/po/vi.po
+++ b/perl-install/install/help/po/vi.po
@@ -134,10 +134,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1196,10 +1196,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/wa.po b/perl-install/install/help/po/wa.po
index abc7c5aa4..338c84c25 100644
--- a/perl-install/install/help/po/wa.po
+++ b/perl-install/install/help/po/wa.po
@@ -146,10 +146,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1267,10 +1267,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/zh_CN.po b/perl-install/install/help/po/zh_CN.po
index 14cdc89d6..a98830d47 100644
--- a/perl-install/install/help/po/zh_CN.po
+++ b/perl-install/install/help/po/zh_CN.po
@@ -129,10 +129,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1136,10 +1136,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/help/po/zh_TW.po b/perl-install/install/help/po/zh_TW.po
index 16c1b495b..8f3015920 100644
--- a/perl-install/install/help/po/zh_TW.po
+++ b/perl-install/install/help/po/zh_TW.po
@@ -142,10 +142,10 @@ msgid ""
"\"Name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard disk drive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
@@ -1045,10 +1045,10 @@ msgid ""
"\"Linux name\" is structured: \"hard disk drive type\", \"hard disk drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
+"\"Hard disk drive type\" is \"hd\" if your hard dive is an IDE hard disk drive and\n"
"\"sd\" if it is a SCSI hard disk drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"\"Hard disk drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard disk drives:\n"
"\n"
" * \"a\" means \"master hard disk drive on the primary IDE controller\";\n"
diff --git a/perl-install/install/share/po/DrakX.pot b/perl-install/install/share/po/DrakX.pot
index 7ab20df2f..5b6ae262e 100644
--- a/perl-install/install/share/po/DrakX.pot
+++ b/perl-install/install/share/po/DrakX.pot
@@ -1350,7 +1350,7 @@ msgstr ""
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr ""
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/af.po b/perl-install/install/share/po/af.po
index 2776bb5be..26f6b2ef3 100644
--- a/perl-install/install/share/po/af.po
+++ b/perl-install/install/share/po/af.po
@@ -1440,7 +1440,7 @@ msgstr "Muis"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Hardeskyf-speuring."
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/am.po b/perl-install/install/share/po/am.po
index 3fd5d8d56..7ae2bcbb0 100644
--- a/perl-install/install/share/po/am.po
+++ b/perl-install/install/share/po/am.po
@@ -1368,7 +1368,7 @@ msgstr "መጠቆሚያ"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr ""
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/ar.po b/perl-install/install/share/po/ar.po
index 251a41493..95db5d075 100644
--- a/perl-install/install/share/po/ar.po
+++ b/perl-install/install/share/po/ar.po
@@ -1446,7 +1446,7 @@ msgstr "الفأرة"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "اكتشاف القرص الصّلب"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/ast.po b/perl-install/install/share/po/ast.po
index 4974cdca3..110c8456c 100644
--- a/perl-install/install/share/po/ast.po
+++ b/perl-install/install/share/po/ast.po
@@ -1466,7 +1466,7 @@ msgstr "Mur"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Deteición del discu duru"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/az.po b/perl-install/install/share/po/az.po
index 9b28547d1..08389c4ce 100644
--- a/perl-install/install/share/po/az.po
+++ b/perl-install/install/share/po/az.po
@@ -1432,7 +1432,7 @@ msgstr "Siçan"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Sabit disklərin aşkar edilməsi"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/be.po b/perl-install/install/share/po/be.po
index c138f35d5..1338e768d 100644
--- a/perl-install/install/share/po/be.po
+++ b/perl-install/install/share/po/be.po
@@ -1397,7 +1397,7 @@ msgstr "Мыш"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Вызначэнне жорсткага дыску"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/bg.po b/perl-install/install/share/po/bg.po
index c2b457043..c3e2c2333 100644
--- a/perl-install/install/share/po/bg.po
+++ b/perl-install/install/share/po/bg.po
@@ -1433,7 +1433,7 @@ msgstr "Мишка"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Засичане на дисковете"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/bn.po b/perl-install/install/share/po/bn.po
index ae181b955..5e6a88826 100644
--- a/perl-install/install/share/po/bn.po
+++ b/perl-install/install/share/po/bn.po
@@ -1440,7 +1440,7 @@ msgstr "মাউস"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "হার্ড ড্রাইভ সনাক্ত"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/br.po b/perl-install/install/share/po/br.po
index b5d32130f..3784732eb 100644
--- a/perl-install/install/share/po/br.po
+++ b/perl-install/install/share/po/br.po
@@ -1410,7 +1410,7 @@ msgstr "Logodenn"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Dinoiñ ar bladenn galet"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/bs.po b/perl-install/install/share/po/bs.po
index 65fd8405a..36075b959 100644
--- a/perl-install/install/share/po/bs.po
+++ b/perl-install/install/share/po/bs.po
@@ -1452,7 +1452,7 @@ msgstr "Miš"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Prepoznavanje hard diska"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/ca.po b/perl-install/install/share/po/ca.po
index 0fa97a138..c76f2be48 100644
--- a/perl-install/install/share/po/ca.po
+++ b/perl-install/install/share/po/ca.po
@@ -1445,7 +1445,7 @@ msgstr "Ratolí"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Detecció del disc dur"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/cs.po b/perl-install/install/share/po/cs.po
index 0068a0f1e..7d0666ee1 100644
--- a/perl-install/install/share/po/cs.po
+++ b/perl-install/install/share/po/cs.po
@@ -1458,7 +1458,7 @@ msgstr "Myš"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Detekce pevných disků"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/cy.po b/perl-install/install/share/po/cy.po
index 4b4ae514a..26a5e015d 100644
--- a/perl-install/install/share/po/cy.po
+++ b/perl-install/install/share/po/cy.po
@@ -1455,7 +1455,7 @@ msgstr "Llygoden"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Canfod disg caled"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/da.po b/perl-install/install/share/po/da.po
index 338f1f027..c0ed445d7 100644
--- a/perl-install/install/share/po/da.po
+++ b/perl-install/install/share/po/da.po
@@ -1465,7 +1465,7 @@ msgstr "Mus"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Harddisk-bestemmelse"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/de.po b/perl-install/install/share/po/de.po
index ddd354bf7..b174def1d 100644
--- a/perl-install/install/share/po/de.po
+++ b/perl-install/install/share/po/de.po
@@ -1479,7 +1479,7 @@ msgstr "Maus"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Festplatten suchen"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/el.po b/perl-install/install/share/po/el.po
index 56697691a..01efebc14 100644
--- a/perl-install/install/share/po/el.po
+++ b/perl-install/install/share/po/el.po
@@ -1483,7 +1483,7 @@ msgstr "Ποντίκι"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Εντοπισμός δίσκου"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/eo.po b/perl-install/install/share/po/eo.po
index 9b33843d9..82c48f25c 100644
--- a/perl-install/install/share/po/eo.po
+++ b/perl-install/install/share/po/eo.po
@@ -1453,7 +1453,7 @@ msgstr "Muso"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Detektado de fiksdisko(j)"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/es.po b/perl-install/install/share/po/es.po
index 19674ffbd..8a6449d67 100644
--- a/perl-install/install/share/po/es.po
+++ b/perl-install/install/share/po/es.po
@@ -1472,7 +1472,7 @@ msgstr "Ratón"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Detección del disco rígido"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/et.po b/perl-install/install/share/po/et.po
index bd3069906..f73e182d6 100644
--- a/perl-install/install/share/po/et.po
+++ b/perl-install/install/share/po/et.po
@@ -1447,7 +1447,7 @@ msgstr "Hiir"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Kõvaketta leidmine"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/eu.po b/perl-install/install/share/po/eu.po
index 94920b6ce..5eeb02d5b 100644
--- a/perl-install/install/share/po/eu.po
+++ b/perl-install/install/share/po/eu.po
@@ -1458,7 +1458,7 @@ msgstr "Sagua"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Disko zurrunen detekzioa"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/fa.po b/perl-install/install/share/po/fa.po
index 6acccff82..aa3b0c7c7 100644
--- a/perl-install/install/share/po/fa.po
+++ b/perl-install/install/share/po/fa.po
@@ -1429,7 +1429,7 @@ msgstr "موشی"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "شناسایی گرداننده‌ی دیسک"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/fi.po b/perl-install/install/share/po/fi.po
index e3a5a0ef7..0f51c0ef8 100644
--- a/perl-install/install/share/po/fi.po
+++ b/perl-install/install/share/po/fi.po
@@ -1477,7 +1477,7 @@ msgstr "Hiiri"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Kiintolevyjen tunnistus"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/fr.po b/perl-install/install/share/po/fr.po
index b6bb3caf8..086ea1b61 100644
--- a/perl-install/install/share/po/fr.po
+++ b/perl-install/install/share/po/fr.po
@@ -1547,7 +1547,7 @@ msgstr "Souris"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Détection des disques durs"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/fur.po b/perl-install/install/share/po/fur.po
index 494182a4e..3940d2b41 100644
--- a/perl-install/install/share/po/fur.po
+++ b/perl-install/install/share/po/fur.po
@@ -1371,7 +1371,7 @@ msgstr "Surie"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr ""
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/ga.po b/perl-install/install/share/po/ga.po
index 268b9f170..712be695f 100644
--- a/perl-install/install/share/po/ga.po
+++ b/perl-install/install/share/po/ga.po
@@ -1369,7 +1369,7 @@ msgstr "Luchóg"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr ""
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/gl.po b/perl-install/install/share/po/gl.po
index 0c1171fb7..0a2b54eec 100644
--- a/perl-install/install/share/po/gl.po
+++ b/perl-install/install/share/po/gl.po
@@ -1467,7 +1467,7 @@ msgstr "Rato"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Detección de discos duros"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/he.po b/perl-install/install/share/po/he.po
index f54817e54..f2500fa36 100644
--- a/perl-install/install/share/po/he.po
+++ b/perl-install/install/share/po/he.po
@@ -1435,7 +1435,7 @@ msgstr "עכבר"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "זיהוי כונן קשיח"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/hi.po b/perl-install/install/share/po/hi.po
index 14f3a2e76..740f2ad14 100644
--- a/perl-install/install/share/po/hi.po
+++ b/perl-install/install/share/po/hi.po
@@ -1427,7 +1427,7 @@ msgstr "माउस"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "हार्ड ड्राइव खोज"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/hr.po b/perl-install/install/share/po/hr.po
index f6802d3fd..6186b3851 100644
--- a/perl-install/install/share/po/hr.po
+++ b/perl-install/install/share/po/hr.po
@@ -1428,7 +1428,7 @@ msgstr "Miš"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Otkrivanje hard diskova"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/hu.po b/perl-install/install/share/po/hu.po
index b30440ac7..9a7e89dae 100644
--- a/perl-install/install/share/po/hu.po
+++ b/perl-install/install/share/po/hu.po
@@ -1484,7 +1484,7 @@ msgstr "Egér"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Merevlemez keresése"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/id.po b/perl-install/install/share/po/id.po
index 6ecf7fc18..1228c2b6d 100644
--- a/perl-install/install/share/po/id.po
+++ b/perl-install/install/share/po/id.po
@@ -1455,7 +1455,7 @@ msgstr "Mouse"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Deteksi hard disk"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/is.po b/perl-install/install/share/po/is.po
index 0d7c7f191..057402e0c 100644
--- a/perl-install/install/share/po/is.po
+++ b/perl-install/install/share/po/is.po
@@ -1456,7 +1456,7 @@ msgstr "Mús"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Leita að disk(um)"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/it.po b/perl-install/install/share/po/it.po
index cbc17df2c..c142fe80b 100644
--- a/perl-install/install/share/po/it.po
+++ b/perl-install/install/share/po/it.po
@@ -1468,7 +1468,7 @@ msgstr "Mouse"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Rilevamento disco fisso"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/ja.po b/perl-install/install/share/po/ja.po
index def63beed..0967329d2 100644
--- a/perl-install/install/share/po/ja.po
+++ b/perl-install/install/share/po/ja.po
@@ -1449,7 +1449,7 @@ msgstr "マウス"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "ハードドライブを検出"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/ko.po b/perl-install/install/share/po/ko.po
index c0f0677aa..a14039f5f 100644
--- a/perl-install/install/share/po/ko.po
+++ b/perl-install/install/share/po/ko.po
@@ -1439,7 +1439,7 @@ msgstr "마우스"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "하드 디스크 선택"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/ky.po b/perl-install/install/share/po/ky.po
index 3ef5926fc..aa6791197 100644
--- a/perl-install/install/share/po/ky.po
+++ b/perl-install/install/share/po/ky.po
@@ -1466,7 +1466,7 @@ msgstr "Чычкан"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Таш дискти аныктоо"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/lt.po b/perl-install/install/share/po/lt.po
index ca940ae31..c3c2a4e1f 100644
--- a/perl-install/install/share/po/lt.po
+++ b/perl-install/install/share/po/lt.po
@@ -1404,7 +1404,7 @@ msgstr "Pelė"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Kieto disko nustatymas"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/ltg.po b/perl-install/install/share/po/ltg.po
index d6e0b0157..ad5aef559 100644
--- a/perl-install/install/share/po/ltg.po
+++ b/perl-install/install/share/po/ltg.po
@@ -1450,7 +1450,7 @@ msgstr "Pele"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Cītuo diska nūteikšona"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/lv.po b/perl-install/install/share/po/lv.po
index 9662a5a28..05a3d4763 100644
--- a/perl-install/install/share/po/lv.po
+++ b/perl-install/install/share/po/lv.po
@@ -1430,7 +1430,7 @@ msgstr "Pele"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Cietā diska noteikšana"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/mk.po b/perl-install/install/share/po/mk.po
index 2ca2fffc4..0eae7faa1 100644
--- a/perl-install/install/share/po/mk.po
+++ b/perl-install/install/share/po/mk.po
@@ -1458,7 +1458,7 @@ msgstr "Глушец"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Детекција на хард дискот"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/mn.po b/perl-install/install/share/po/mn.po
index a92dd925c..1da130bcc 100644
--- a/perl-install/install/share/po/mn.po
+++ b/perl-install/install/share/po/mn.po
@@ -1374,7 +1374,7 @@ msgstr "Хулгана"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Хатуу диск хөтлөгч танилт"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/ms.po b/perl-install/install/share/po/ms.po
index 3452d7e55..1e7557caf 100644
--- a/perl-install/install/share/po/ms.po
+++ b/perl-install/install/share/po/ms.po
@@ -1392,7 +1392,7 @@ msgstr "Tetikus"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Pengesanan cakera keras"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/mt.po b/perl-install/install/share/po/mt.po
index fa5b9303c..b1493f9ef 100644
--- a/perl-install/install/share/po/mt.po
+++ b/perl-install/install/share/po/mt.po
@@ -1435,7 +1435,7 @@ msgstr "Maws"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Għarfien tal-ħard disk"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/nb.po b/perl-install/install/share/po/nb.po
index b7a53aa3d..8c7bddc16 100644
--- a/perl-install/install/share/po/nb.po
+++ b/perl-install/install/share/po/nb.po
@@ -1475,7 +1475,7 @@ msgstr "Mus"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Oppdaging av harddisk"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/nl.po b/perl-install/install/share/po/nl.po
index 1f1926113..4d39b50a3 100644
--- a/perl-install/install/share/po/nl.po
+++ b/perl-install/install/share/po/nl.po
@@ -1470,7 +1470,7 @@ msgstr "Muis"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Harde schijf-detectie"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/nn.po b/perl-install/install/share/po/nn.po
index 7c668beb2..818a65824 100644
--- a/perl-install/install/share/po/nn.po
+++ b/perl-install/install/share/po/nn.po
@@ -1452,7 +1452,7 @@ msgstr "Mus"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Harddiskoppdaging"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/pa_IN.po b/perl-install/install/share/po/pa_IN.po
index 8603cebf1..16199a272 100644
--- a/perl-install/install/share/po/pa_IN.po
+++ b/perl-install/install/share/po/pa_IN.po
@@ -1410,7 +1410,7 @@ msgstr "ਮਾਊਸ"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "ਹਾਰਡ ਡਰਾਈਵ ਖੋਜ"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/pl.po b/perl-install/install/share/po/pl.po
index 4ad2e2082..fcce99f9e 100644
--- a/perl-install/install/share/po/pl.po
+++ b/perl-install/install/share/po/pl.po
@@ -1470,7 +1470,7 @@ msgstr "Mysz"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Wykrywanie dysków"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/pt.po b/perl-install/install/share/po/pt.po
index c15d57d44..17d1aeecc 100644
--- a/perl-install/install/share/po/pt.po
+++ b/perl-install/install/share/po/pt.po
@@ -1476,7 +1476,7 @@ msgstr "Rato"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Detecção de discos rígidos"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/pt_BR.po b/perl-install/install/share/po/pt_BR.po
index 06af84169..01dc2ff1e 100644
--- a/perl-install/install/share/po/pt_BR.po
+++ b/perl-install/install/share/po/pt_BR.po
@@ -1477,7 +1477,7 @@ msgstr "Mouse"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Detecção de discos rígidos"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/ro.po b/perl-install/install/share/po/ro.po
index 3d5680de1..5f5639e7d 100644
--- a/perl-install/install/share/po/ro.po
+++ b/perl-install/install/share/po/ro.po
@@ -1505,7 +1505,7 @@ msgstr "Maus"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Detectarea discului dur"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/ru.po b/perl-install/install/share/po/ru.po
index f151ff92b..c21f85c02 100644
--- a/perl-install/install/share/po/ru.po
+++ b/perl-install/install/share/po/ru.po
@@ -1470,7 +1470,7 @@ msgstr "Мышь"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Поиск жёсткого диска"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/sc.po b/perl-install/install/share/po/sc.po
index 541c70648..b1a81e5ea 100644
--- a/perl-install/install/share/po/sc.po
+++ b/perl-install/install/share/po/sc.po
@@ -1379,7 +1379,7 @@ msgstr "Sòrixi"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Controllu de su discu tostau"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/sk.po b/perl-install/install/share/po/sk.po
index 86abaae97..0b25ac721 100644
--- a/perl-install/install/share/po/sk.po
+++ b/perl-install/install/share/po/sk.po
@@ -1435,7 +1435,7 @@ msgstr "Myš"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Detekcia pevného disku"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/sl.po b/perl-install/install/share/po/sl.po
index e9f6c8240..e8580fdd1 100644
--- a/perl-install/install/share/po/sl.po
+++ b/perl-install/install/share/po/sl.po
@@ -1464,7 +1464,7 @@ msgstr "Miška"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Zaznava trdega diska"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/sq.po b/perl-install/install/share/po/sq.po
index 8d5af0e40..b3db24990 100644
--- a/perl-install/install/share/po/sq.po
+++ b/perl-install/install/share/po/sq.po
@@ -1435,8 +1435,8 @@ msgstr "Mini"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
-msgstr "Zbulim i Diskut të Fortë (Hard drive)"
+"Hard disk drive detection"
+msgstr "Zbulim i Diskut të Fortë (Hard disk drive)"
#: steps_list.pm:21 steps_list.pm:22
#, c-format
diff --git a/perl-install/install/share/po/sr.po b/perl-install/install/share/po/sr.po
index a242ed35b..a2dc1caf2 100644
--- a/perl-install/install/share/po/sr.po
+++ b/perl-install/install/share/po/sr.po
@@ -1449,7 +1449,7 @@ msgstr ""
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Детекција хард диска"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/sr@Latn.po b/perl-install/install/share/po/sr@Latn.po
index d14df9fc8..04105142c 100644
--- a/perl-install/install/share/po/sr@Latn.po
+++ b/perl-install/install/share/po/sr@Latn.po
@@ -1449,7 +1449,7 @@ msgstr "Miš"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Detekcija hard diska"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/sv.po b/perl-install/install/share/po/sv.po
index 4b94ad4df..5dc3898f2 100644
--- a/perl-install/install/share/po/sv.po
+++ b/perl-install/install/share/po/sv.po
@@ -1464,7 +1464,7 @@ msgstr "Mus"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Identifiering av hårddisk"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/ta.po b/perl-install/install/share/po/ta.po
index 9c7025176..c7e3e9055 100644
--- a/perl-install/install/share/po/ta.po
+++ b/perl-install/install/share/po/ta.po
@@ -1409,7 +1409,7 @@ msgstr "எலி"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "வன்தட்டு கண்டுபிடித்தல்"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/tg.po b/perl-install/install/share/po/tg.po
index 8d211129c..10a5c7afd 100644
--- a/perl-install/install/share/po/tg.po
+++ b/perl-install/install/share/po/tg.po
@@ -1458,7 +1458,7 @@ msgstr "Муш"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Муаяйн намудани ронандаи сахт"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/th.po b/perl-install/install/share/po/th.po
index 8e5c29a05..3fc1c0a8b 100644
--- a/perl-install/install/share/po/th.po
+++ b/perl-install/install/share/po/th.po
@@ -1387,7 +1387,7 @@ msgstr "Mouse"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "การตรวจหาฮาร์ดไดรว์"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/tl.po b/perl-install/install/share/po/tl.po
index 9a4761267..2657b0302 100644
--- a/perl-install/install/share/po/tl.po
+++ b/perl-install/install/share/po/tl.po
@@ -1444,7 +1444,7 @@ msgstr "Mouse"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Pagtitiktik ng hard disk drive"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/tr.po b/perl-install/install/share/po/tr.po
index 29db14426..d2d421d6f 100644
--- a/perl-install/install/share/po/tr.po
+++ b/perl-install/install/share/po/tr.po
@@ -1468,7 +1468,7 @@ msgstr "Fare"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Sabit disk algılaması"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/uk.po b/perl-install/install/share/po/uk.po
index 2da29ba49..e434b4c4e 100644
--- a/perl-install/install/share/po/uk.po
+++ b/perl-install/install/share/po/uk.po
@@ -1470,7 +1470,7 @@ msgstr "Миша"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Визначення твердого диску"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/uz.po b/perl-install/install/share/po/uz.po
index 5b5b8f436..572077e3a 100644
--- a/perl-install/install/share/po/uz.po
+++ b/perl-install/install/share/po/uz.po
@@ -1451,7 +1451,7 @@ msgstr "Sichqoncha"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Qattiq diskni aniqlash"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/uz@cyrillic.po b/perl-install/install/share/po/uz@cyrillic.po
index 568f40386..eadb5f8ca 100644
--- a/perl-install/install/share/po/uz@cyrillic.po
+++ b/perl-install/install/share/po/uz@cyrillic.po
@@ -1446,7 +1446,7 @@ msgstr "Сичқонча"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Қаттиқ дискни аниқлаш"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/vi.po b/perl-install/install/share/po/vi.po
index ab4c8e298..281ce1c2f 100644
--- a/perl-install/install/share/po/vi.po
+++ b/perl-install/install/share/po/vi.po
@@ -1432,7 +1432,7 @@ msgstr "Chuột"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Dò tìm đĩa cứng"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/wa.po b/perl-install/install/share/po/wa.po
index c1d5fdea2..a8c219feb 100644
--- a/perl-install/install/share/po/wa.po
+++ b/perl-install/install/share/po/wa.po
@@ -1461,7 +1461,7 @@ msgstr "Sori"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "Trover les deurès plakes"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/zh_CN.po b/perl-install/install/share/po/zh_CN.po
index c56bacfcb..41707fdb7 100644
--- a/perl-install/install/share/po/zh_CN.po
+++ b/perl-install/install/share/po/zh_CN.po
@@ -1424,7 +1424,7 @@ msgstr "鼠标"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "硬盘检测"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/install/share/po/zh_TW.po b/perl-install/install/share/po/zh_TW.po
index 2a17024dc..95b591353 100644
--- a/perl-install/install/share/po/zh_TW.po
+++ b/perl-install/install/share/po/zh_TW.po
@@ -1441,7 +1441,7 @@ msgstr "滑鼠"
#, c-format
msgid ""
"_: Keep these entry short\n"
-"Hard drive detection"
+"Hard disk drive detection"
msgstr "硬碟偵測"
#: steps_list.pm:21 steps_list.pm:22
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 28dd9bfa7..a8f32a755 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -1499,7 +1499,7 @@ msgstr "Skakel oor na kundige gebruiksvlak"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Hardeskyfinligting"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index 6655ffd4f..785906f10 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -1450,7 +1450,7 @@ msgstr ""
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "የቋሚ ዲስክ መረጃ"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index d2a8298f0..3f28a66f8 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -1511,7 +1511,7 @@ msgstr "الانتقال إلى وضعية الخبير"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "معلومات القرص الصلب"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 9102ccb79..590fa8a7c 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -1505,7 +1505,7 @@ msgstr "Mütəxəssis moduna keç"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Sabit disk mə'lumatı"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 202ef178b..9d6b27dea 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -1455,7 +1455,7 @@ msgstr "Рэжым эксперту"
#: diskdrake/interactive.pm:338
#, fuzzy, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Канфігурацыя сістэмных сэрвісаў"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index b193c1d15..a66d02fcf 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -1522,7 +1522,7 @@ msgstr "Експертен режим"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Информация за твърдия диск"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index b860a42da..d367c56ef 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -1511,7 +1511,7 @@ msgstr "দক্ষ মোডে বদল করো"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "হার্ড ড্রাইভের তথ্য"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index f56d72da1..8846c7d53 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -1469,7 +1469,7 @@ msgstr "Tremen er mod mailh"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Titouroù ar bladenn"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 6533a23bb..82f04ab62 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -1528,7 +1528,7 @@ msgstr "Prebaci u ekspertni mod"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informacije o hard disku"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 006a863a1..3b7b3553f 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -1518,7 +1518,7 @@ msgstr "Canvia al mode expert"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informació del disc dur"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 82c25c506..45a6c370d 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -1535,7 +1535,7 @@ msgstr "Přepnout se do režimu 'expert'"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informace o pevném disku"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 2092f72b9..5c92d9013 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -1521,7 +1521,7 @@ msgstr "Cyffredinol > Arbenigwr"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Gwybodaeth am y ddisg galed"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 11fd11785..271958742 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -1533,7 +1533,7 @@ msgstr "Normal -> Ekspert"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Drev-information"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 4a2b26f6d..7be141c38 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -1569,7 +1569,7 @@ msgstr "In den Experten-Modus wechseln"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Festplatten-Informationen"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 16ade33eb..d2c886c65 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -1561,7 +1561,7 @@ msgstr "Αλλαγή σε προχωρημένο τρόπο λειτουργία
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Πληροφορίες σκληρού δίσκου"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 4ff2263b6..939783e52 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -1479,7 +1479,7 @@ msgstr "Ŝanĝu al Spertula reĝimo"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informoj pri fiksdisko(j)"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 56a8bd9fb..c5534903d 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -1543,7 +1543,7 @@ msgstr "Cambiar al modo experto"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Información del disco rígido"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index 075124842..153179e5a 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -1521,7 +1521,7 @@ msgstr "Lülitu ekspertrežiimi"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Kõvaketta info"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 1c75b1adf..74315aa46 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -1536,7 +1536,7 @@ msgstr "Aldatu aditu-modura"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Disko zurrunaren informazioa"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index 696635c18..171810ed7 100644
--- a/perl-install/share/po/fa.po
+++ b/perl-install/share/po/fa.po
@@ -1519,7 +1519,7 @@ msgstr "تعویض به حالت کارشناسی"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "اطلاعات دیسک سخت"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index 150d32d0e..738980408 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -1555,7 +1555,7 @@ msgstr "Vaihda asiantuntijatilaan"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Kiintolevyn tiedot"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index 19c56977d..a0fb21c91 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -1621,7 +1621,7 @@ msgstr "Passer en mode expert"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informations sur les disques durs"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po
index d779f6bcc..2f1936f96 100644
--- a/perl-install/share/po/fur.po
+++ b/perl-install/share/po/fur.po
@@ -1453,7 +1453,7 @@ msgstr ""
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr ""
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index b9ffd65d6..cf378d0d5 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -1454,7 +1454,7 @@ msgstr ""
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Eolas faoi cruadhioscaí"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 37c282260..8341abce1 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -1533,7 +1533,7 @@ msgstr "Cambiar a modo experto"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Información da unidade de disco duro"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 43be68a49..fa69a3f72 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -1508,7 +1508,7 @@ msgstr "עבור למצב מומחה"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "מידע על הכונן הקשיח"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po
index fd8a5759f..2c491e8df 100644
--- a/perl-install/share/po/hi.po
+++ b/perl-install/share/po/hi.po
@@ -1500,7 +1500,7 @@ msgstr "एक्सपर्ट विधा की ओर टॉगल"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "हार्ड ड्राइव सूचना"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index efecf8fab..2edf93f88 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -1497,7 +1497,7 @@ msgstr "Normalno > Ekspert"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Hard disk informacije"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index 7322863b4..fd0c5550c 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po
@@ -1541,7 +1541,7 @@ msgstr "Átváltás szakértői módba"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Merevlemez jellemzők"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index dfd72da10..d5e51ceda 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -1528,7 +1528,7 @@ msgstr "Ubah ke modus ahli"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Info hard disk drive"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index 18f5c02ed..f93dc498c 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -1526,7 +1526,7 @@ msgstr "Fara í snillingsham"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Upplýsingar um disk"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index d8949fcbc..66dbbe914 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -1543,7 +1543,7 @@ msgstr "Passare a modalità esperto"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informazioni sul disco fisso"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index 16c3b127e..5c14d784b 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -1514,7 +1514,7 @@ msgstr "エキスパートモードに切り替え"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "ハードドライブの情報"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index c32f4a66b..4317c4feb 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -1507,7 +1507,7 @@ msgstr "전문가 모드로 전환"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "하드 디스크 정보"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/ky.po b/perl-install/share/po/ky.po
index 3124d1154..b6d688f0a 100644
--- a/perl-install/share/po/ky.po
+++ b/perl-install/share/po/ky.po
@@ -1528,7 +1528,7 @@ msgstr "Эксперт режимине өтүү"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Таш диск жөнүндө маалымат"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/libDrakX.pot b/perl-install/share/po/libDrakX.pot
index b4be45f73..ffe3437c3 100644
--- a/perl-install/share/po/libDrakX.pot
+++ b/perl-install/share/po/libDrakX.pot
@@ -1374,7 +1374,7 @@ msgstr ""
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr ""
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index e706cf46a..34c2d98a6 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -1467,7 +1467,7 @@ msgstr "Pakeisti į eksperto režimą"
#: diskdrake/interactive.pm:338
#, fuzzy, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Pašto informaciją"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/ltg.po b/perl-install/share/po/ltg.po
index 1d6a393f5..d57af0593 100644
--- a/perl-install/share/po/ltg.po
+++ b/perl-install/share/po/ltg.po
@@ -1495,7 +1495,7 @@ msgstr "Puorsaslēgt eksperta režimā"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Cītuo diska informaceja"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
index 46e09f1e5..963aa57ba 100644
--- a/perl-install/share/po/lv.po
+++ b/perl-install/share/po/lv.po
@@ -1489,7 +1489,7 @@ msgstr "Pārslēgt eksperta režīmā"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Cietā diska informācija"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/mk.po b/perl-install/share/po/mk.po
index 8b0c06106..313ee409b 100644
--- a/perl-install/share/po/mk.po
+++ b/perl-install/share/po/mk.po
@@ -1506,7 +1506,7 @@ msgstr "Префрлање во експертски режим"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Информации за дискот"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/mn.po b/perl-install/share/po/mn.po
index 07119d80f..3f73fece9 100644
--- a/perl-install/share/po/mn.po
+++ b/perl-install/share/po/mn.po
@@ -1452,7 +1452,7 @@ msgstr "Мэргэжилтний горимд шилжүүлэх"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Хатуу диск хөтлөгчийн мэдээлэл"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/ms.po b/perl-install/share/po/ms.po
index 08d79dba5..b96a32aa9 100644
--- a/perl-install/share/po/ms.po
+++ b/perl-install/share/po/ms.po
@@ -1454,7 +1454,7 @@ msgstr "/Mod pakar dalam _wizard"
#: diskdrake/interactive.pm:338
#, fuzzy, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Maklumat Peranti Terlampir"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/mt.po b/perl-install/share/po/mt.po
index 451df9d4f..4d5a4a453 100644
--- a/perl-install/share/po/mt.po
+++ b/perl-install/share/po/mt.po
@@ -1518,7 +1518,7 @@ msgstr "Idħol f'modalità għal esperti"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informazzjoni dwar il-ħard disk"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/nb.po b/perl-install/share/po/nb.po
index aad1af026..4390ea8a2 100644
--- a/perl-install/share/po/nb.po
+++ b/perl-install/share/po/nb.po
@@ -1531,7 +1531,7 @@ msgstr "Skift til ekspertmodus"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Harddiskinformasjon"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po
index 5bdd0323d..df71342b0 100644
--- a/perl-install/share/po/nl.po
+++ b/perl-install/share/po/nl.po
@@ -1544,7 +1544,7 @@ msgstr "Naar expert-modus"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informatie over harde schijf"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/nn.po b/perl-install/share/po/nn.po
index 99edf2ecd..968e731bb 100644
--- a/perl-install/share/po/nn.po
+++ b/perl-install/share/po/nn.po
@@ -1514,7 +1514,7 @@ msgstr "Skift til ekspertmodus"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Harddiskinformasjon"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/pa_IN.po b/perl-install/share/po/pa_IN.po
index 1c419ab47..cb9f57497 100644
--- a/perl-install/share/po/pa_IN.po
+++ b/perl-install/share/po/pa_IN.po
@@ -1506,7 +1506,7 @@ msgstr "ਮਾਹਿਰ ਵਿਧੀ ਤਬਦੀਲ ਕਰੋ"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "ਹਾਰਡ ਡਰਾਈਵ ਜਾਣਕਾਰੀ"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/pl.po b/perl-install/share/po/pl.po
index c5f614960..bc7a5204f 100644
--- a/perl-install/share/po/pl.po
+++ b/perl-install/share/po/pl.po
@@ -1554,7 +1554,7 @@ msgstr "Przełącz w tryb zaawansowany"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informacje o twardym dysku"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/pt.po b/perl-install/share/po/pt.po
index 1eaea78ba..c06c46774 100644
--- a/perl-install/share/po/pt.po
+++ b/perl-install/share/po/pt.po
@@ -1545,7 +1545,7 @@ msgstr "Alternar para modo avançado"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informação dos discos rígidos"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/pt_BR.po b/perl-install/share/po/pt_BR.po
index 36bd837e7..2512b23ff 100644
--- a/perl-install/share/po/pt_BR.po
+++ b/perl-install/share/po/pt_BR.po
@@ -1558,7 +1558,7 @@ msgstr "Mudar para modo expert"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informações do disco rígido"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/ro.po b/perl-install/share/po/ro.po
index 1ef04fd22..2dc1dc4cc 100644
--- a/perl-install/share/po/ro.po
+++ b/perl-install/share/po/ro.po
@@ -1585,7 +1585,7 @@ msgstr "Comută în regim expert"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informații despre discurile dure"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/ru.po b/perl-install/share/po/ru.po
index 256806cb8..9cbaf4600 100644
--- a/perl-install/share/po/ru.po
+++ b/perl-install/share/po/ru.po
@@ -1530,7 +1530,7 @@ msgstr "Переключиться в режим эксперта"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Информация о жестком диске"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/sc.po b/perl-install/share/po/sc.po
index 4d63bea83..2bafa3599 100644
--- a/perl-install/share/po/sc.po
+++ b/perl-install/share/po/sc.po
@@ -1500,7 +1500,7 @@ msgstr "Modalidadi sperta"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Scedas discu tostau"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/sk.po b/perl-install/share/po/sk.po
index d1629e950..d9e7bb908 100644
--- a/perl-install/share/po/sk.po
+++ b/perl-install/share/po/sk.po
@@ -1512,7 +1512,7 @@ msgstr "Prepni do expert režimu"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informácie o pevnom disku"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/sl.po b/perl-install/share/po/sl.po
index a6da373b4..e6aa22771 100644
--- a/perl-install/share/po/sl.po
+++ b/perl-install/share/po/sl.po
@@ -1536,7 +1536,7 @@ msgstr "Preklopi v napredni način"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Podatki o trdem disku"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/sq.po b/perl-install/share/po/sq.po
index 6c031c28e..de5471a29 100644
--- a/perl-install/share/po/sq.po
+++ b/perl-install/share/po/sq.po
@@ -1500,7 +1500,7 @@ msgstr "Kalo në modë expert"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informacion mbi diskun e fort (hard disk drive)"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/sr.po b/perl-install/share/po/sr.po
index 2f641ff28..e141ac4cf 100644
--- a/perl-install/share/po/sr.po
+++ b/perl-install/share/po/sr.po
@@ -1491,7 +1491,7 @@ msgstr "Пређи на експерт мод"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Информације о хард диску"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/sr@Latn.po b/perl-install/share/po/sr@Latn.po
index 7c5899a6f..ec8975c42 100644
--- a/perl-install/share/po/sr@Latn.po
+++ b/perl-install/share/po/sr@Latn.po
@@ -1491,7 +1491,7 @@ msgstr "Pređi na ekspert mod"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informacije o hard disku"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/sv.po b/perl-install/share/po/sv.po
index a61e1ef2d..ca243e62d 100644
--- a/perl-install/share/po/sv.po
+++ b/perl-install/share/po/sv.po
@@ -1532,7 +1532,7 @@ msgstr "Byt till expertläge"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Information om hårddisk"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/ta.po b/perl-install/share/po/ta.po
index 474df5adb..59566ec7e 100644
--- a/perl-install/share/po/ta.po
+++ b/perl-install/share/po/ta.po
@@ -1489,7 +1489,7 @@ msgstr "அறிஞர் முறைமைக்கு மாறு"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "வன்தட்ைட பற்றிய தகவல்"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/tg.po b/perl-install/share/po/tg.po
index eb919611e..fd0a39b05 100644
--- a/perl-install/share/po/tg.po
+++ b/perl-install/share/po/tg.po
@@ -1542,7 +1542,7 @@ msgstr "Зомин ба усули мутахассис"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Маълумоти сахтгардон"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/th.po b/perl-install/share/po/th.po
index e08659370..8734c566c 100644
--- a/perl-install/share/po/th.po
+++ b/perl-install/share/po/th.po
@@ -1463,7 +1463,7 @@ msgstr "ปกติ > สำหรับผู้ชำนาญ"
#: diskdrake/interactive.pm:338
#, fuzzy, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "การตรวจหาฮาร์ดไดรว์"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/tl.po b/perl-install/share/po/tl.po
index f38389253..79354e630 100644
--- a/perl-install/share/po/tl.po
+++ b/perl-install/share/po/tl.po
@@ -1505,7 +1505,7 @@ msgstr "Gamitin ang bihasang paraan"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Inpormasyon sa \"hard disk drive\""
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/tr.po b/perl-install/share/po/tr.po
index ef2c4cf1b..4a186634f 100644
--- a/perl-install/share/po/tr.po
+++ b/perl-install/share/po/tr.po
@@ -1547,7 +1547,7 @@ msgstr "Uzman kipine geç"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Sabit Disk bilgisi"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/uk.po b/perl-install/share/po/uk.po
index ec71e2a5a..54ab45843 100644
--- a/perl-install/share/po/uk.po
+++ b/perl-install/share/po/uk.po
@@ -1540,7 +1540,7 @@ msgstr "Перемикнути в режим експерта"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Інформація про твердий диск"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/uz.po b/perl-install/share/po/uz.po
index 4de617582..88b290cb3 100644
--- a/perl-install/share/po/uz.po
+++ b/perl-install/share/po/uz.po
@@ -1538,7 +1538,7 @@ msgstr "Ekspert usuliga oʻtish"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Qattiq disk haqida maʼlumot"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/uz@cyrillic.po b/perl-install/share/po/uz@cyrillic.po
index 6ad3b1cbd..5dfe57414 100644
--- a/perl-install/share/po/uz@cyrillic.po
+++ b/perl-install/share/po/uz@cyrillic.po
@@ -1533,7 +1533,7 @@ msgstr "Эксперт усулига ўтиш"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Қаттиқ диск ҳақида маълумот"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/vi.po b/perl-install/share/po/vi.po
index 1fbd6a7dc..01d5dc14c 100644
--- a/perl-install/share/po/vi.po
+++ b/perl-install/share/po/vi.po
@@ -1509,7 +1509,7 @@ msgstr "Chuyển sang chế độ Chuyên gia"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Thông tin đĩa cứng"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/wa.po b/perl-install/share/po/wa.po
index 25a466375..660a5aa59 100644
--- a/perl-install/share/po/wa.po
+++ b/perl-install/share/po/wa.po
@@ -1523,7 +1523,7 @@ msgstr "Candjî pol môde sipepieus"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "Informåcion sol deure plake"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/zh_CN.po b/perl-install/share/po/zh_CN.po
index 0a892cf2a..b0b8d8e96 100644
--- a/perl-install/share/po/zh_CN.po
+++ b/perl-install/share/po/zh_CN.po
@@ -1491,7 +1491,7 @@ msgstr "切换到专家模式"
#: diskdrake/interactive.pm:338
#, c-format
-msgid "Hard drive information"
+msgid "Hard disk drive information"
msgstr "硬盘信息"
#: diskdrake/interactive.pm:371
diff --git a/perl-install/share/po/zh_TW.po b/perl-install/share/po/zh_TW.po
index 0805cf611..ca7760783 100644
--- a/perl-install/share/po/zh_TW.po
+++ b/perl-install/share/po/zh_TW.po