diff --git a/README.rst b/README.rst index aeff0e14..fde43826 100644 --- a/README.rst +++ b/README.rst @@ -638,7 +638,7 @@ Installing packages from the repositories (supporting multi packages): Installing summary =============================================================================== Total 5 packages. - 5 packages will be installed, 0 allready installed and 0 package + 5 packages will be installed, 0 already installed and 0 package will be upgraded. Would you like to continue [y/N]? @@ -677,7 +677,7 @@ Installing packages from the repositories (supporting multi packages): Installing summary =============================================================================== Total 15 packages. - 10 packages will be installed, 5 allready installed and 0 package + 10 packages will be installed, 5 already installed and 0 package will be upgraded. Would you like to continue [y/N]? @@ -963,7 +963,7 @@ And check if packages need upgrade with: Installing summary =============================================================================== Total 5 packages. - 0 package will be installed, 2 allready installed and 3 packages + 0 package will be installed, 2 already installed and 3 packages will be upgraded. Would you like to continue [y/N]? @@ -1055,7 +1055,7 @@ Skip packages when upgrading: Installing summary =============================================================================== Total 3 packages. - 0 package will be installed, 1 allready installed and 2 packages + 0 package will be installed, 1 already installed and 2 packages will be upgraded. Would you like to continue [y/N]? diff --git a/slpkg/sbo/slackbuild.py b/slpkg/sbo/slackbuild.py index 07f8b9fd..b10a9d03 100644 --- a/slpkg/sbo/slackbuild.py +++ b/slpkg/sbo/slackbuild.py @@ -133,7 +133,7 @@ class SBoInstall(object): print("{0}Total {1} {2}.".format( self.meta.color["GREY"], count_total, self.msg.pkg(count_total))) - print("{0} {1} will be installed, {2} allready installed and " + print("{0} {1} will be installed, {2} already installed and " "{3} {4}".format(self.count_uni, self.msg.pkg(self.count_uni), self.count_ins, self.count_upg, diff --git a/slpkg/tracking.py b/slpkg/tracking.py index 8b0c0820..47aff68c 100644 --- a/slpkg/tracking.py +++ b/slpkg/tracking.py @@ -41,7 +41,7 @@ class TrackingDeps(object): """ View tree of dependencies and also highlight packages with color green - if allready installed and color red + if already installed and color red if not installed. """ def __init__(self, name, repo, flag):