summaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorChris Lamb <lamby@debian.org>2009-02-21 23:17:38 +0000
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:09:42 +0100
commitef9121fc23c6eae86ff359cf429af3b096360075 (patch)
tree58fe8433f73cda8ea28f5f02f1041fcedf987d47 /functions
parentc081caf4d79eca3fc86fc7cfd8a2f492a66b1438 (diff)
downloadlive-build-ef9121fc23c6eae86ff359cf429af3b096360075.zip
live-build-ef9121fc23c6eae86ff359cf429af3b096360075.tar.gz
Improving grammar and clarity of LH_ISO_APPLICATION etc. warnings
Diffstat (limited to 'functions')
-rwxr-xr-xfunctions/defaults.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 5244d2e..376a4d6 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -852,21 +852,21 @@ Check_defaults ()
if [ "$(echo ${LH_ISO_APPLICATION} | wc -c)" -ge 129 ]
then
- Echo_warning "You have specified a too long string for iso application, the maximum length is 128 characters."
+ Echo_warning "You have specified a value of LH_ISO_APPLICATION that is too long; the maximum length is 128 characters."
fi
if [ "$(echo ${LH_ISO_PREPARER} | wc -c)" -ge 129 ]
then
- Echo_warning "You have specified a too long string for iso preparer, the maximum length is 128 characters."
+ Echo_warning "You have specified a value of LH_ISO_PREPARER that is too long; the maximum length is 128 characters."
fi
if [ "$(echo ${LH_ISO_PUBLISHER} | wc -c)" -ge 129 ]
then
- Echo_warning "You have specified a too long string for iso publisher, the maximum length is 128 characters."
+ Echo_warning "You have specified a value of LH_ISO_PUBLISHER that is too long; the maximum length is 128 characters."
fi
if [ "$(eval "echo ${LH_ISO_VOLUME}" | wc -c)" -ge 33 ]
then
- Echo_warning "You have specified a too long string for iso volume, the maximum length is 32 characters."
+ Echo_warning "You have specified a value of LH_ISO_VOLUME that is too long; the maximum length is 32 characters."
fi
}