--- mountall.c +++ new/mountall.c @@ -1765,7 +1765,7 @@ */ if ((errno != EEXIST) && has_option (mnt, "optional", FALSE)) { - nih_debug ("%s: mountpoint doesn't exist, ignoring", + nih_debug ("%s: mountpoint doesn't exist. Ignoring", MOUNT_NAME (mnt)); mounted (mnt); return; @@ -2953,21 +2953,21 @@ message = NIH_MUST (nih_sprintf (NULL,_("The disk drive for %s is not ready yet or not present"), MOUNT_NAME (plymouth_mnt))); keys_message = NIH_MUST (nih_sprintf (NULL, "keys:%s", - _("Continue to wait; or Press S to skip mounting or M for manual recovery"))); + _("Continue to wait, or Press S to skip mounting or M for manual recovery"))); plymouth_keys = "SsMm"; break; case ERROR_FSCK_FAILED: message = NIH_MUST (nih_sprintf (NULL,_("Errors were found while checking the disk drive for %s"), MOUNT_NAME (plymouth_mnt))); keys_message = NIH_MUST (nih_sprintf (NULL, "keys:%s", - _("Press F to attempt to fix the errors, I to ignore, S to skip mounting or M for manual recovery"))); + _("Press F to attempt to fix the errors, I to ignore, S to skip mounting, or M for manual recovery"))); plymouth_keys = "FfIiSsMm"; break; case ERROR_FSCK_FAILED_HARD: message = NIH_MUST (nih_sprintf (NULL,_("Serious errors were found while checking the disk drive for %s"), MOUNT_NAME (plymouth_mnt))); keys_message = NIH_MUST (nih_sprintf (NULL, "keys:%s", - _("Press I to ignore, S to skip mounting or M for manual recovery"))); + _("Press I to ignore, S to skip mounting, or M for manual recovery"))); plymouth_keys = "IiSsMm"; break; case ERROR_MOUNT_FAILED: @@ -2978,7 +2978,7 @@ plymouth_keys = "SsMm"; break; case ERROR_FSCK_IN_PROGRESS: - message = NIH_MUST (nih_strdup (NULL, _("Your disk drives are being checked for errors, this may take some time"))); + message = NIH_MUST (nih_strdup (NULL, _("Your disk drives are being checked for errors. This may take some time"))); keys_message = NIH_MUST (nih_sprintf (NULL, "keys:%s", _("Press C to cancel all checks currently in progress"))); plymouth_keys = "Cc";