-
-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(aura) Warning for no sudo matches pacman output - fixes #422
- Loading branch information
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ Filip Brcic | Serbian | |
|
||
{- | ||
Copyright 2012, 2013, 2014 Colin Woodbury <[email protected]> | ||
Copyright 2012 - 2016 Colin Woodbury <[email protected]> | ||
This file is part of Aura. | ||
|
@@ -41,9 +41,10 @@ along with Aura. If not, see <http://www.gnu.org/licenses/>. | |
|
||
module Aura.Languages where | ||
|
||
import Aura.Colour.Text (cyan, green, red, blue, yellow, magenta, bForeground) | ||
import qualified Data.Map.Lazy as Map (Map, (!), fromList, toList, mapWithKey) | ||
import Data.Monoid | ||
import Data.Monoid | ||
|
||
import Aura.Colour.Text (cyan, green, red, blue, yellow, magenta, bForeground) | ||
|
||
--- | ||
|
||
|
@@ -225,7 +226,7 @@ mustBeRoot_1 = let sudo = bt "sudo" in \case | |
Serbian -> "Морате да користите " <> sudo <> " за ову радњу." | ||
Norwegian -> "Du må bruke " <> sudo <> " for det." | ||
Indonesia -> "Anda harus menggunakan " <> sudo <> " untuk melakukannya." | ||
_ -> "You have to use " <> sudo <> " for that." | ||
_ -> "You cannot perform this operation unless you are root." | ||
|
||
----------------------- | ||
-- Aura/Build functions | ||
|