Translations: reorder alphabetically (#5335)

remove `Author`, closes #5334
This commit is contained in:
Mauro Bieg 2019-02-27 19:11:50 +01:00 committed by John MacFarlane
parent a908129d93
commit b72b395127
5 changed files with 16 additions and 17 deletions

View file

@ -8,6 +8,7 @@ Encl: Anlage(n)
Figure: Abbildung Figure: Abbildung
Glossary: Glossar Glossary: Glossar
Index: Index Index: Index
Listing: Auflistung
ListOfFigures: Abbildungsverzeichnis ListOfFigures: Abbildungsverzeichnis
ListOfTables: Tabellenverzeichnis ListOfTables: Tabellenverzeichnis
Page: Seite Page: Seite

View file

@ -8,6 +8,7 @@ Encl: encl
Figure: Figure Figure: Figure
Glossary: Glossary Glossary: Glossary
Index: Index Index: Index
Listing: Listing
ListOfFigures: ListOfFigures ListOfFigures: ListOfFigures
ListOfTables: ListOfTables ListOfTables: ListOfTables
Page: page Page: page
@ -19,4 +20,3 @@ See: see
SeeAlso: see also SeeAlso: see also
Table: Table Table: Table
To: To To: To
Listing: Listing

View file

@ -1,6 +1,5 @@
Abstract: Аннотация Abstract: Аннотация
Appendix: Приложение Appendix: Приложение
Author: Именной указатель
Bibliography: Литература Bibliography: Литература
Cc: исх. Cc: исх.
Chapter: Глава Chapter: Глава

View file

@ -1,6 +1,5 @@
Abstract: Анотація Abstract: Анотація
Appendix: Додаток Appendix: Додаток
Author: Іменний покажчик}% babel has "Їменний покажчик"
Bibliography: Бібліоґрафія Bibliography: Бібліоґрафія
Cc: копія Cc: копія
Chapter: Розділ Chapter: Розділ

View file

@ -59,28 +59,28 @@ import Text.Pandoc.Shared (safeRead)
import qualified Text.Pandoc.UTF8 as UTF8 import qualified Text.Pandoc.UTF8 as UTF8
data Term = data Term =
Preface Abstract
| References
| Abstract
| Bibliography
| Chapter
| Appendix | Appendix
| Bibliography
| Cc
| Chapter
| Contents | Contents
| Encl
| Figure
| Glossary
| Index
| Listing
| ListOfFigures | ListOfFigures
| ListOfTables | ListOfTables
| Index
| Figure
| Table
| Part
| Page | Page
| Part
| Preface
| Proof
| References
| See | See
| SeeAlso | SeeAlso
| Encl | Table
| Cc
| To | To
| Proof
| Glossary
| Listing
deriving (Show, Eq, Ord, Generic, Enum, Read) deriving (Show, Eq, Ord, Generic, Enum, Read)
newtype Translations = Translations (M.Map Term String) newtype Translations = Translations (M.Map Term String)