-- This file is part of purebred -- Copyright (C) 2017-2020 Fraser Tweedale and RĂ³man Joost -- -- purebred is free software: you can redistribute it and/or modify -- it under the terms of the GNU Affero General Public License as published by -- the Free Software Foundation, either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU Affero General Public License for more details. -- -- You should have received a copy of the GNU Affero General Public License -- along with this program. If not, see . {-# LANGUAGE OverloadedStrings #-} -- | Utility functions for UI module Purebred.UI.Utils ( titleize , Titleize ) where import Data.Text (Text, pack) import Purebred.Types -- | Show a descriptive name -- class Titleize a where titleize :: a -> Text instance Titleize Name where titleize ListOfMails = "List of Mails" titleize ListOfThreads = "List of Threads" titleize ManageThreadTagsEditor = "Edit Labels of Threads" titleize ManageMailTagsEditor = "Edit Labels of Mails" titleize SearchThreadsEditor = "Search Editor" titleize ScrollingMailView = "Mail Viewer" titleize ComposeTo = "Editor to Compose a new Mail" titleize ComposeFrom = "Editor to Compose a new Mail" titleize ComposeSubject = "Editor to Compose a new Mail" titleize ListOfFiles = "Directory Listing" titleize ComposeListOfAttachments = "Attachments" titleize ManageFileBrowserSearchPath = "Filepath for Directory Listing" titleize MailAttachmentOpenWithEditor = "Open With Editor" titleize MailAttachmentPipeToEditor = "Pipe to Editor" titleize m = pack $ show m instance Titleize ViewName where titleize a = pack $ show a