diff options
author | Mauro Bieg <mb21@users.noreply.github.com> | 2019-02-27 19:11:50 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-02-27 11:11:50 -0700 |
commit | b72b395127ae2a7f45d74840ddeb86158bea8ea0 (patch) | |
tree | 1405812b3f434f46c1489a00f1ee57d004711d98 /src | |
parent | a908129d932fa066d9cec575a1065c5e6345a679 (diff) | |
download | pandoc-b72b395127ae2a7f45d74840ddeb86158bea8ea0.tar.gz |
Translations: reorder alphabetically (#5335)
remove `Author`, closes #5334
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Translations.hs | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/Text/Pandoc/Translations.hs b/src/Text/Pandoc/Translations.hs index db8ee7744..9d9e622fd 100644 --- a/src/Text/Pandoc/Translations.hs +++ b/src/Text/Pandoc/Translations.hs @@ -59,28 +59,28 @@ import Text.Pandoc.Shared (safeRead) import qualified Text.Pandoc.UTF8 as UTF8 data Term = - Preface - | References - | Abstract + Abstract + | Appendix | Bibliography + | Cc | Chapter - | Appendix | Contents + | Encl + | Figure + | Glossary + | Index + | Listing | ListOfFigures | ListOfTables - | Index - | Figure - | Table - | Part | Page + | Part + | Preface + | Proof + | References | See | SeeAlso - | Encl - | Cc + | Table | To - | Proof - | Glossary - | Listing deriving (Show, Eq, Ord, Generic, Enum, Read) newtype Translations = Translations (M.Map Term String) |