1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-02-24 17:57:48 +03:00

Replace "can not" with "cannot"

This commit is contained in:
Zdenek Kabelac 2010-10-08 11:18:29 +00:00
parent f42b2d4bbf
commit 3a6e5f36f9

View File

@ -227,7 +227,7 @@ yes_no() {
try_umount() {
yes_no "Do you want to unmount \"$MOUNTED\"" && dry $UMOUNT "$MOUNTED" && return 0
error "Can not proceed with mounted filesystem \"$MOUNTED\""
error "Cannot proceed with mounted filesystem \"$MOUNTED\""
}
validate_parsing() {
@ -289,7 +289,7 @@ resize_reiser() {
########################
# Resize XFS filesystem
# - mounted for upsize
# - can not downsize
# - cannot downsize
########################
resize_xfs() {
detect_mounted
@ -345,7 +345,7 @@ resize() {
###################
check() {
detect_fs "$1"
detect_mounted && error "Can not fsck device \"$VOLUME\", filesystem mounted on $MOUNTED"
detect_mounted && error "Cannot fsck device \"$VOLUME\", filesystem is mounted on $MOUNTED"
case "$FSTYPE" in
"xfs") dry $XFS_CHECK "$VOLUME" ;;
*) dry $FSCK $YES "$VOLUME" ;;