diff options
author | Jason St. John <jstjohn@purdue.edu> | 2012-11-19 19:13:10 -0500 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2012-11-27 15:16:15 +1000 |
commit | 3536975bbf89214d393068195563bebb7236ab70 (patch) | |
tree | 64303a2933717e9ac7d054fe3bb3dbc41211731a /scripts | |
parent | 3531533c2f703693b87e074dfbe8951b9bef910f (diff) | |
download | pacman-3536975bbf89214d393068195563bebb7236ab70.tar.xz |
Use sentence case in makepkg
Most of makepkg already uses sentence case. This cleans up the last few
stragglers.
Signed-off-by: Jason St. John <jstjohn@purdue.edu>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makepkg.sh.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 3556cab0..78bd4d4c 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -645,7 +645,7 @@ download_svn() { } download_sources() { - msg "$(gettext "Retrieving Sources...")" + msg "$(gettext "Retrieving sources...")" local GET_VCS=1 if [[ $1 == "fast" ]]; then @@ -952,7 +952,7 @@ resolve_deps() { [[ -z $deplist ]] && return $R_DEPS_SATISFIED fi - msg "$(gettext "Missing Dependencies:")" + msg "$(gettext "Missing dependencies:")" local dep for dep in $deplist; do msg2 "$dep" @@ -1219,7 +1219,7 @@ check_source_integrity() { } extract_sources() { - msg "$(gettext "Extracting Sources...")" + msg "$(gettext "Extracting sources...")" local netfile for netfile in "${source[@]}"; do local file=$(get_filename "$netfile") @@ -1617,7 +1617,7 @@ find_libprovides() { esac if (( missing )); then - warning "$(gettext "Can not find library listed in %s: %s")" "'provides'" "$p" + warning "$(gettext "Cannot find library listed in %s: %s")" "'provides'" "$p" fi done |