From 556103ee215c317e7c20bc0b15286c4e7a98f96f Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sun, 10 Jul 2022 14:37:49 +0200 Subject: [PATCH 01/10] feat(i18n): Add i18n support for as many languages as possible --- classes/book.lua | 17 ++++-------- documentation/c08-language.sil | 2 +- i18n/af.ftl | 39 ++++++++++++++++++++++++++ i18n/am.ftl | 39 ++++++++++++++++++++++++++ i18n/ar.ftl | 39 ++++++++++++++++++++++++++ i18n/as.ftl | 39 ++++++++++++++++++++++++++ i18n/bg.ftl | 39 ++++++++++++++++++++++++++ i18n/bn.ftl | 39 ++++++++++++++++++++++++++ i18n/bo.ftl | 39 ++++++++++++++++++++++++++ i18n/ca.ftl | 39 ++++++++++++++++++++++++++ i18n/cs.ftl | 40 +++++++++++++++++++++++++-- i18n/cy.ftl | 33 ++++++++++++++++++++++ i18n/da.ftl | 39 ++++++++++++++++++++++++++ i18n/de.ftl | 39 ++++++++++++++++++++++++++ i18n/el-monoton.ftl | 39 ++++++++++++++++++++++++++ i18n/el-polyton.ftl | 39 ++++++++++++++++++++++++++ i18n/el.ftl | 1 + i18n/en.ftl | 44 ++++++++++++++++++++++++----- i18n/eo.ftl | 44 ++++++++++++++++++++++++----- i18n/es.ftl | 39 ++++++++++++++++++++++++++ i18n/et.ftl | 39 ++++++++++++++++++++++++++ i18n/eu.ftl | 39 ++++++++++++++++++++++++++ i18n/fi.ftl | 39 ++++++++++++++++++++++++++ i18n/fr.ftl | 39 ++++++++++++++++++++++++++ i18n/ga.ftl | 39 ++++++++++++++++++++++++++ i18n/gu.ftl | 39 ++++++++++++++++++++++++++ i18n/hi.ftl | 39 ++++++++++++++++++++++++++ i18n/hr.ftl | 39 ++++++++++++++++++++++++++ i18n/hu.ftl | 42 ++++++++++++++++++++++++++++ i18n/hy.ftl | 39 ++++++++++++++++++++++++++ i18n/id.ftl | 39 ++++++++++++++++++++++++++ i18n/is.ftl | 39 ++++++++++++++++++++++++++ i18n/it.ftl | 39 ++++++++++++++++++++++++++ i18n/ja.ftl | 46 +++++++++++++++++++++++++++++-- i18n/jv.ftl | 39 ++++++++++++++++++++++++++ i18n/ka.ftl | 39 ++++++++++++++++++++++++++ i18n/kn.ftl | 39 ++++++++++++++++++++++++++ i18n/la.ftl | 38 ++++++++++++++++++++----- i18n/lt.ftl | 39 ++++++++++++++++++++++++++ i18n/lv.ftl | 39 ++++++++++++++++++++++++++ i18n/ml.ftl | 39 ++++++++++++++++++++++++++ i18n/mr.ftl | 39 ++++++++++++++++++++++++++ i18n/my.ftl | 39 ++++++++++++++++++++++++++ i18n/nl.ftl | 39 ++++++++++++++++++++++++++ i18n/nn.ftl | 40 ++++++++++++++++++++++++++- i18n/no.ftl | 38 ++++++++++++++++++++----- i18n/or.ftl | 39 ++++++++++++++++++++++++++ i18n/pa.ftl | 39 ++++++++++++++++++++++++++ i18n/pl.ftl | 39 ++++++++++++++++++++++++++ i18n/pt.ftl | 39 ++++++++++++++++++++++++++ i18n/rm.ftl | 39 ++++++++++++++++++++++++++ i18n/ro.ftl | 39 ++++++++++++++++++++++++++ i18n/ru.ftl | 39 ++++++++++++++++++++++++++ i18n/sa.ftl | 39 ++++++++++++++++++++++++++ i18n/sk.ftl | 39 ++++++++++++++++++++++++++ i18n/sl.ftl | 39 ++++++++++++++++++++++++++ i18n/sr.ftl | 39 ++++++++++++++++++++++++++ i18n/sv.ftl | 39 ++++++++++++++++++++++++++ i18n/ta.ftl | 39 ++++++++++++++++++++++++++ i18n/th.ftl | 39 ++++++++++++++++++++++++++ i18n/tk.ftl | 39 ++++++++++++++++++++++++++ i18n/tr.ftl | 40 +++++++++++++++++++++++++-- i18n/ug.ftl | 39 ++++++++++++++++++++++++++ i18n/uk.ftl | 39 ++++++++++++++++++++++++++ i18n/und.ftl | 41 ++++++++++++++++++++++++++- i18n/ur.ftl | 39 ++++++++++++++++++++++++++ languages/ja.lua | 1 - packages/tableofcontents/init.lua | 4 +-- 68 files changed, 2446 insertions(+), 53 deletions(-) create mode 100644 i18n/af.ftl create mode 100644 i18n/am.ftl create mode 100644 i18n/ar.ftl create mode 100644 i18n/as.ftl create mode 100644 i18n/bg.ftl create mode 100644 i18n/bn.ftl create mode 100644 i18n/bo.ftl create mode 100644 i18n/ca.ftl create mode 100644 i18n/cy.ftl create mode 100644 i18n/da.ftl create mode 100644 i18n/de.ftl create mode 100644 i18n/el-monoton.ftl create mode 100644 i18n/el-polyton.ftl create mode 120000 i18n/el.ftl create mode 100644 i18n/es.ftl create mode 100644 i18n/et.ftl create mode 100644 i18n/eu.ftl create mode 100644 i18n/fi.ftl create mode 100644 i18n/fr.ftl create mode 100644 i18n/ga.ftl create mode 100644 i18n/gu.ftl create mode 100644 i18n/hi.ftl create mode 100644 i18n/hr.ftl create mode 100644 i18n/hu.ftl create mode 100644 i18n/hy.ftl create mode 100644 i18n/id.ftl create mode 100644 i18n/is.ftl create mode 100644 i18n/it.ftl create mode 100644 i18n/jv.ftl create mode 100644 i18n/ka.ftl create mode 100644 i18n/kn.ftl create mode 100644 i18n/lt.ftl create mode 100644 i18n/lv.ftl create mode 100644 i18n/ml.ftl create mode 100644 i18n/mr.ftl create mode 100644 i18n/my.ftl create mode 100644 i18n/nl.ftl mode change 120000 => 100644 i18n/nn.ftl create mode 100644 i18n/or.ftl create mode 100644 i18n/pa.ftl create mode 100644 i18n/pl.ftl create mode 100644 i18n/pt.ftl create mode 100644 i18n/rm.ftl create mode 100644 i18n/ro.ftl create mode 100644 i18n/ru.ftl create mode 100644 i18n/sa.ftl create mode 100644 i18n/sk.ftl create mode 100644 i18n/sl.ftl create mode 100644 i18n/sr.ftl create mode 100644 i18n/sv.ftl create mode 100644 i18n/ta.ftl create mode 100644 i18n/th.ftl create mode 100644 i18n/tk.ftl create mode 100644 i18n/ug.ftl create mode 100644 i18n/uk.ftl create mode 100644 i18n/ur.ftl diff --git a/classes/book.lua b/classes/book.lua index f6a68f098..f42b62f30 100644 --- a/classes/book.lua +++ b/classes/book.lua @@ -107,13 +107,11 @@ book.registerCommands = function (self) end local lang = SILE.settings:get("document.language") if SU.boolean(options.numbering, true) then - if options.prenumber then - if SILE.Commands[options.prenumber .. ":" .. lang] then - options.prenumber = options.prenumber .. ":" .. lang - end - SILE.call(options.prenumber) + if options.template then + SILE.call("fluent", { number = number }, { options.template }) + else + SILE.call("show-multilevel-counter", { id = "sectioning" }) end - SILE.call("show-multilevel-counter", { id = "sectioning" }) if options.postnumber then if SILE.Commands[options.postnumber .. ":" .. lang] then options.postnumber = options.postnumber .. ":" .. lang @@ -123,12 +121,7 @@ book.registerCommands = function (self) end end) - SILE.registerCommand("book:chapter:pre", function (_, _) - SILE.call("fluent", {}, { "book-chapter-title-pre" }) - end) - SILE.registerCommand("book:chapter:post", function (_, _) - SILE.call("fluent", {}, { "book-chapter-post" }) SILE.call("par") end) @@ -158,7 +151,7 @@ book.registerCommands = function (self) numbering = options.numbering, toc = options.toc, level = 1, - prenumber = "book:chapter:pre", + template = "chapter-template", postnumber = "book:chapter:post" }, content) end) diff --git a/documentation/c08-language.sil b/documentation/c08-language.sil index b0bb1857b..4d0701b32 100644 --- a/documentation/c08-language.sil +++ b/documentation/c08-language.sil @@ -154,7 +154,7 @@ A particularly common string to override might be the table of contents heading: \begin{verbatim} \line -\\ftl\{toc-heading = Table of Contents\} +\\ftl\{tableofcontents = Table of Contents\} \\tableofcontents \line \end{verbatim} diff --git a/i18n/af.ftl b/i18n/af.ftl new file mode 100644 index 000000000..2967713ec --- /dev/null +++ b/i18n/af.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Bylae +chapter = Hoofstuk +part = Deel + +# -- Other captions +figure = Figuur +table = Tabel +proof = Bewys + +# -- TOC-like headers +tableofcontents = Inhoudsopgawe +index = Inhoud +listoffigures = Lys van figure +listoftables = Lys van tabelle + +# -- Other usual headers +abstract = Samevatting +bibliography = Bibliografie +# glossary = +preface = Voorwoord +references = Verwysings + +# -- Miscellaneous +page = Bladsy +see = sien +see-also = sien ook +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/am.ftl b/i18n/am.ftl new file mode 100644 index 000000000..fc9b0fe53 --- /dev/null +++ b/i18n/am.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = መድበል +chapter = ክፍል +part = ንዑስ ክፍል + +# -- Other captions +figure = ሥዕል +table = ሰንጠረዥ +proof = ማረጋገጫ + +# -- TOC-like headers +tableofcontents = ይዘት +index = ምህጻር ቃል +listoffigures = የሥዕችሎ ማውጫ +listoftables = የሰንጠዥረ ማውጫ + +# -- Other usual headers +abstract = አኅጽተሮ ጽሁፍ +bibliography = ቢዋ መጽሃፍት +# glossary = +preface = መቅድም +references = የነሥ ጹሁፍ ምንጭ + +# -- Miscellaneous +page = ገጽ +see = ይመልከቱ +see-also = ይህምን ይመልከቱ +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/ar.ftl b/i18n/ar.ftl new file mode 100644 index 000000000..d5edca525 --- /dev/null +++ b/i18n/ar.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = الملاحق +chapter = باب +part = القسم + +# -- Other captions +figure = شكل +table = جدول +proof = برهان + +# -- TOC-like headers +tableofcontents = المحتويات +index = الفهرس +listoffigures = قائمة الأشكال +listoftables = قائمة الجداول + +# -- Other usual headers +abstract = ملخص +bibliography = المصادر +glossary = قاموس +preface = مدخل +references = المراجع + +# -- Miscellaneous +page = صفحة +see = راجع +see-also = راجع أيضًا +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/as.ftl b/i18n/as.ftl new file mode 100644 index 000000000..6173495cc --- /dev/null +++ b/i18n/as.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = পৰিশিষ্ট +chapter = অধ্যায় +part = অংশ + +# -- Other captions +figure = চিত্ৰ +table = তালিকা +proof = প্ৰমাণ + +# -- TOC-like headers +tableofcontents = সমল +index = বিষয়সূচী +listoffigures = চিত্ৰসূচী +listoftables = তালিকাসূচী + +# -- Other usual headers +abstract = মূলভাৱ +bibliography = তথ্যসূত্ৰ +glossary = অৰ্থকোষ +preface = পাতনি +references = প্ৰসংগ + +# -- Miscellaneous +page = পৃষ্ঠা +see = চাওক +see-also = ও +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/bg.ftl b/i18n/bg.ftl new file mode 100644 index 000000000..601791b56 --- /dev/null +++ b/i18n/bg.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Приложение +chapter = Глава +part = Част + +# -- Other captions +figure = Фигура +table = Таблица +proof = Доказателство + +# -- TOC-like headers +tableofcontents = Съдържание +index = Азбучен указател +listoffigures = Списък на фигурите +listoftables = Списък на таблиците + +# -- Other usual headers +abstract = Абстракт +bibliography = Библиография +glossary = Притурка +preface = Предговор +references = Литература + +# -- Miscellaneous +page = Стр. +see = вж. +see-also = вж. също и +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/bn.ftl b/i18n/bn.ftl new file mode 100644 index 000000000..19e41b3e4 --- /dev/null +++ b/i18n/bn.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = পরিশিষ্ট +chapter = অধ্যায় +part = খন্ড + +# -- Other captions +figure = ছবি/নকশা +table = সারনী +proof = প্রমাণ + +# -- TOC-like headers +tableofcontents = সূচীপত্র +index = সূচক/নির্দেশক +listoffigures = ছবি/নকশা সমূহের তালিকা +listoftables = তালিকাসারণী + +# -- Other usual headers +abstract = সারসংক্ষেপ +bibliography = তথ্যবিবরণ +glossary = পরিভাষার শব্দসম্ভার +preface = পূর্বকথা +references = তথ্যসুত্রসমূহ + +# -- Miscellaneous +page = পৃষ্ঠা +see = দেখুন +see-also = আরও দেখুন +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/bo.ftl b/i18n/bo.ftl new file mode 100644 index 000000000..83055d16b --- /dev/null +++ b/i18n/bo.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = ཞར་བྱུང་། +chapter = ལེའུ་ +part = ཆ་ཤས་ + +# -- Other captions +figure = པར་རིས་ +table = རེའུ་མིག་ +proof = བདེན་དཔང་། + +# -- TOC-like headers +tableofcontents = དཀར་ཆག། +index = གསུལ་བྱང་། +# listoffigures = +# listoftables = + +# -- Other usual headers +abstract = གནད་བསྡུས། +bibliography = དཔེ་ཆའི་ཐོ་གཞུང་། +glossary = མིང་ཚིག་རེའུ་མིག། +preface = དཔེ་དེབ་ཀྱི་གླེང་བརྗོད། +# references = + +# -- Miscellaneous +page = ཤོག་ +# see = +# see-also = +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/ca.ftl b/i18n/ca.ftl new file mode 100644 index 000000000..34899f25e --- /dev/null +++ b/i18n/ca.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Apèndix +chapter = Capítol +part = Part + +# -- Other captions +figure = Figura +table = Taula +proof = Demostració + +# -- TOC-like headers +tableofcontents = Índex +index = Índex alfabètic +listoffigures = Índex de figures +listoftables = Índex de taules + +# -- Other usual headers +abstract = Resum +bibliography = Bibliografia +glossary = Glossari +preface = Pròleg +references = Referències + +# -- Miscellaneous +page = Pàgina +see = Vegeu +see-also = Vegeu també +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/cs.ftl b/i18n/cs.ftl index d18f21a96..86c05adca 100644 --- a/i18n/cs.ftl +++ b/i18n/cs.ftl @@ -1,3 +1,39 @@ -toc-title = Obsah +# -- Usual book sections +appendix = Příloha +chapter = Kapitola +part = Část -book-chapter-title-pre = Kapitola{" "} +# -- Other captions +figure = Obrázek +table = Tabulka +proof = Důkaz + +# -- TOC-like headers +tableofcontents = Obsah +index = Rejstřík +listoffigures = Seznam obrázků +listoftables = Seznam tabulek + +# -- Other usual headers +abstract = Abstrakt +bibliography = Literatura +glossary = Slovník +preface = Předmluva +references = Reference + +# -- Miscellaneous +page = Strana +see = viz +see-also = viz také +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/cy.ftl b/i18n/cy.ftl new file mode 100644 index 000000000..f9f113a3b --- /dev/null +++ b/i18n/cy.ftl @@ -0,0 +1,33 @@ +# -- Usual book sections +appendix = Atodiad +chapter = Pennod +part = Rhan + +# -- Other captions +figure = Darlun +table = Taflen +proof = Prawf + +# -- TOC-like headers +tableofcontents = Cynnwys +index = Mynegai +listoffigures = Rhestr Ddarluniau +listoftables = Rhestr Dablau + +# -- Other usual headers +abstract = Crynodeb +bibliography = Llyfryddiaeth +glossary = Rhestr termau +preface = Rhagair +references = Cyfeiriadau + +# -- Miscellaneous +page = tudalen +see = gweler +see-also = gweler hefyd +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/da.ftl b/i18n/da.ftl new file mode 100644 index 000000000..ae7ab41d1 --- /dev/null +++ b/i18n/da.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Bilag +chapter = Kapitel +part = Del + +# -- Other captions +figure = Figur +table = Tabel +proof = Bevis + +# -- TOC-like headers +tableofcontents = Indhold +index = Indeks +listoffigures = Figurer +listoftables = Tabeller + +# -- Other usual headers +abstract = Resumé +bibliography = Litteratur +glossary = Gloseliste +preface = Forord +references = Litteratur + +# -- Miscellaneous +page = Side +see = Se +see-also = Se også +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/de.ftl b/i18n/de.ftl new file mode 100644 index 000000000..6488e6f7f --- /dev/null +++ b/i18n/de.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Anhang +chapter = Kapitel +part = Teil + +# -- Other captions +figure = Abbildung +table = Tabelle +proof = Beweis + +# -- TOC-like headers +tableofcontents = Inhaltsverzeichnis +index = Index +listoffigures = Abbildungsverzeichnis +listoftables = Tabellenverzeichnis + +# -- Other usual headers +abstract = Zusammenfassung +bibliography = Literaturverzeichnis +glossary = Glossar +preface = Vorwort +references = Literatur + +# -- Miscellaneous +page = Seite +see = siehe +see-also = siehe auch +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/el-monoton.ftl b/i18n/el-monoton.ftl new file mode 100644 index 000000000..d327fc6d6 --- /dev/null +++ b/i18n/el-monoton.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Παράρτημα +chapter = Κεφάλαιο +part = Μέρος + +# -- Other captions +figure = Σχήμα +table = Πίνακας +proof = Απόδειξη + +# -- TOC-like headers +tableofcontents = Περιεχόμενα +index = Ευρετήριο +listoffigures = Κατάλογος Σχημάτων +listoftables = Κατάλογος Πινάκων + +# -- Other usual headers +abstract = Περίληψη +bibliography = Βιβλιογραφία +glossary = Γλωσσάρι +preface = Πρόλογος +references = Αναφορές + +# -- Miscellaneous +page = Σελίδα +see = βλέπε +see-also = βλέπε επίσης +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/el-polyton.ftl b/i18n/el-polyton.ftl new file mode 100644 index 000000000..3bb4f82b9 --- /dev/null +++ b/i18n/el-polyton.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Παράρτημα +chapter = Κεφάλαιο +part = Μέρος + +# -- Other captions +figure = Σχῆμα +table = Πίνακας +proof = Ἀπόδειξη + +# -- TOC-like headers +tableofcontents = Περιεχόμενα +index = Εὑρετήριο +listoffigures = Κατάλογος Σχημάτων +listoftables = Κατάλογος Πινάκων + +# -- Other usual headers +abstract = Περίληψη +bibliography = Βιβλιογραφία +glossary = Γλωσσάρι +preface = Πρόλογος +references = Ἀναφορές + +# -- Miscellaneous +page = Σελίδα +see = βλέπε +see-also = βλέπε ἐπίσης +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/el.ftl b/i18n/el.ftl new file mode 120000 index 000000000..0d1c64dc6 --- /dev/null +++ b/i18n/el.ftl @@ -0,0 +1 @@ +el-monoton.ftl \ No newline at end of file diff --git a/i18n/en.ftl b/i18n/en.ftl index 65d69e6e4..2e00c95ab 100644 --- a/i18n/en.ftl +++ b/i18n/en.ftl @@ -1,15 +1,45 @@ -hello = Hello { $name }! +# -- Usual book sections +appendix = Appendix +chapter = Chapter +part = Part -toc-not-generated = Rerun SILE to process the table of contents! +# -- Other captions +figure = Figure +table = Table +proof = Proof -toc-title = Table of Contents +# -- TOC-like headers +tableofcontents = Table of Contents +index = Index +listoffigures = List of Figures +listoftables = List of Tables -book-chapter-title-pre = Chapter{" "} +# -- Other usual headers +abstract = Abstract +bibliography = Bibliography +glossary = Glossary +preface = Preface +references = References -bibliography-and = and +# -- Miscellaneous +page = Page +see = see +see-also = see also +toc-not-generated = Rerun SILE to process the table of contents! +# Test (only for en and tr) +hello = Hello { $name }! +# -- Bibliography stuff +bibliography-and = and bibliography-edited-by = Edited by { $name } - bibliography-et-al = et al. - bibliography-translated-by = Translated by { $name } + +# -- Assembling rules +chapter-template = { chapter } { $number } +part-template = { part } { $number } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/eo.ftl b/i18n/eo.ftl index f2b61a85c..3ea089836 100644 --- a/i18n/eo.ftl +++ b/i18n/eo.ftl @@ -1,15 +1,45 @@ -hello = Saluton { $name }! +# -- Usual book sections +appendix = Apendico +chapter = Ĉapitro +part = Parto -toc-not-generated = Reruli na SILE por trakti la enhavan tabelon! +# -- Other captions +figure = Figuro +table = Tabelo +proof = Pruvo -toc-title = Enhavoj +# -- TOC-like headers +tableofcontents = Enhavoj +index = Indekso +listoffigures = Listo de figuroj +listoftables = Listo de tabeloj -book-chapter-title-pre = Ĉapitro{" "} +# -- Other usual headers +abstract = Resumo +bibliography = Bibliografio +glossary = Glosaro +preface = Antaŭparolo +references = Citaĵoj -bibliography-and = kaj +# -- Miscellaneous +page = Paĝo +see = vidu +see-also = vidu ankaŭ +toc-not-generated = Reruli na SILE por trakti la enhavan tabelon! +# -- Bibliography stuff +bibliography-and = kaj bibliography-edited-by = Redaktita por { $name } - bibliography-et-al = kaj aliaj - bibliography-translated-by = Tradukita por { $name } + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/es.ftl b/i18n/es.ftl new file mode 100644 index 000000000..d42759c13 --- /dev/null +++ b/i18n/es.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Apéndice +chapter = Capítulo +part = Parte + +# -- Other captions +figure = Figura +table = Cuadro +proof = Demostración + +# -- TOC-like headers +tableofcontents = Índice +index = Índice alfabético +listoffigures = Índice de figuras +listoftables = Índice de cuadros + +# -- Other usual headers +abstract = Resumen +bibliography = Bibliografía +glossary = Glosario +preface = Prefacio +references = Referencias + +# -- Miscellaneous +page = página +see = véase +see-also = véase también +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/et.ftl b/i18n/et.ftl new file mode 100644 index 000000000..e4389ee4f --- /dev/null +++ b/i18n/et.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Lisa +chapter = Peatükk +part = Osa + +# -- Other captions +figure = Joonis +table = Tabel +proof = Tõestus + +# -- TOC-like headers +tableofcontents = Sisukord +index = Indeks +listoffigures = Joonised +listoftables = Tabelid + +# -- Other usual headers +abstract = Kokkuvõte +bibliography = Kirjandus +glossary = Sõnastik +preface = Sissejuhatus +references = Viited + +# -- Miscellaneous +page = Lk. +see = vt. +see-also = vt. ka +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/eu.ftl b/i18n/eu.ftl new file mode 100644 index 000000000..ab787a6c6 --- /dev/null +++ b/i18n/eu.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Eranskina +chapter = Kapitulua +part = Atala + +# -- Other captions +figure = Irudia +table = Taula +proof = Frogapena + +# -- TOC-like headers +tableofcontents = Gaien Aurkibidea +index = Kontzeptuen Aurkibidea +listoffigures = Irudien Zerrenda +listoftables = Taulen Zerrenda + +# -- Other usual headers +abstract = Laburpena +bibliography = Bibliografia +glossary = Glosarioa +preface = Hitzaurrea +references = Erreferentziak + +# -- Miscellaneous +page = Orria +see = Ikusi +see-also = Ikusi, halaber +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { $number }. { appendix } +chapter-template = { $number }. { chapter } +part-template = { $number }. { chapter } diff --git a/i18n/fi.ftl b/i18n/fi.ftl new file mode 100644 index 000000000..0f243ccb7 --- /dev/null +++ b/i18n/fi.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Liite +chapter = Luku +part = Osa + +# -- Other captions +figure = Kuva +table = Taulukko +proof = Todistus + +# -- TOC-like headers +tableofcontents = Sisällys +index = Hakemisto +listoffigures = Kuvat +listoftables = Taulukot + +# -- Other usual headers +abstract = Tiivistelmä +bibliography = Kirjallisuutta +glossary = Sanasto +preface = Esipuhe +references = Viitteet + +# -- Miscellaneous +page = Sivu +see = katso +see-also = katso myös +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/fr.ftl b/i18n/fr.ftl new file mode 100644 index 000000000..d3c971911 --- /dev/null +++ b/i18n/fr.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Annexe +chapter = Chapitre +part = Partie + +# -- Other captions +figure = Figure +table = Table +proof = Démonstration + +# -- TOC-like headers +tableofcontents = Table des matières +index = Index +listoffigures = Table des figures +listoftables = Liste des tableaux + +# -- Other usual headers +abstract = Résumé +bibliography = Bibliographie +glossary = Glossaire +preface = Préface +references = Références + +# -- Miscellaneous +page = page +see = voir +see-also = voir aussi +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +bibliography-and = et +bibliography-edited-by = Édité par { $name } +bibliography-et-al = et al. +bibliography-translated-by = Traduit par { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/ga.ftl b/i18n/ga.ftl new file mode 100644 index 000000000..bcc4db1e6 --- /dev/null +++ b/i18n/ga.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Aguisín +chapter = Caibidil +part = Cuid + +# -- Other captions +figure = Léaráid +table = Tábla +proof = Cruthúnas + +# -- TOC-like headers +tableofcontents = Clár Ábhair +index = Innéacs +listoffigures = Léaráidí +listoftables = Táblaí + +# -- Other usual headers +abstract = Achoimre +bibliography = Leabharliosta +glossary = Glossary +preface = Réamhrá +references = Tagairtí + +# -- Miscellaneous +page = Leathanach +see = féach +see-also = féach freisin +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/gu.ftl b/i18n/gu.ftl new file mode 100644 index 000000000..8133e3e48 --- /dev/null +++ b/i18n/gu.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +# appendix = +# chapter = +# part = + +# -- Other captions +# figure = +# table = +# proof = + +# -- TOC-like headers +# tableofcontents = +# index = +# listoffigures = +# listoftables = + +# -- Other usual headers +# abstract = +# bibliography = +# glossary = +# preface = +# references = + +# -- Miscellaneous +# page = +# see = +# see-also = +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { $number } +chapter-template = { $number } +part-template = { $number } diff --git a/i18n/hi.ftl b/i18n/hi.ftl new file mode 100644 index 000000000..64d3e5d59 --- /dev/null +++ b/i18n/hi.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = परिशिष्ट +chapter = अध्याय +part = खण्ड + +# -- Other captions +figure = चित्र +table = तालिका +proof = प्रमाण + +# -- TOC-like headers +tableofcontents = अनुक्रम +index = सूची +listoffigures = चित्रों की सूची +listoftables = तालिकाओं की सूची + +# -- Other usual headers +abstract = सारांश +bibliography = संदर्भ-ग्रन्थ +glossary = शब्दार्थ सूची +preface = प्रस्तावना +references = हवाले + +# -- Miscellaneous +page = पृष्ठ +see = देखिए +see-also = और देखिए +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/hr.ftl b/i18n/hr.ftl new file mode 100644 index 000000000..715e11973 --- /dev/null +++ b/i18n/hr.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Dodatak +chapter = Poglavlje +part = Dio + +# -- Other captions +figure = Slika +table = Tablica +proof = Dokaz + +# -- TOC-like headers +tableofcontents = Sadržaj +index = Kazalo +listoffigures = Popis slika +listoftables = Popis tablica + +# -- Other usual headers +abstract = Sažetak +bibliography = Bibliografija +glossary = Pojmovnik +preface = Predgovor +references = Literatura + +# -- Miscellaneous +page = Stranica +see = Vidjeti +see-also = Također vidjeti +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/hu.ftl b/i18n/hu.ftl new file mode 100644 index 000000000..4a6949f69 --- /dev/null +++ b/i18n/hu.ftl @@ -0,0 +1,42 @@ +# -- Usual book sections +appendix = függelék +chapter = fejezet +part = rész + +# -- Other captions +figure = ábra +table = táblázat +proof = Bizonyítás + +# -- TOC-like headers +tableofcontents = Tartalomjegyzék +index = Tárgymutató +listoffigures = Ábrák jegyzéke +listoftables = Táblázatok jegyzéke + +# -- Other usual headers +abstract = Kivonat +bibliography = Irodalomjegyzék +glossary = Szójegyzék +preface = Előszó +references = Hivatkozások + +# -- Miscellaneous +page = oldal +see = lásd +see-also = lásd még +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { $number }. { appendix } +chapter-template = { $number }. { chapter } +part-template = { $number }. { part } + + + diff --git a/i18n/hy.ftl b/i18n/hy.ftl new file mode 100644 index 000000000..eea4d75f4 --- /dev/null +++ b/i18n/hy.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Հավելված +chapter = Գլուխ +part = Մաս + +# -- Other captions +figure = Նկար +table = Աղյուսակ +proof = Ապացույց + +# -- TOC-like headers +tableofcontents = Բովանդակություն +index = Առարկայական ցանկ +listoffigures = Նկարների ցանկ +listoftables = Աղյուսակների ցանկ + +# -- Other usual headers +abstract = Սեղմագիր +bibliography = Գրականություն +glossary = Տերմինների ցանկ +preface = Նախաբան +references = Հղումներ + +# -- Miscellaneous +page = էջ +see = տե՛ս +see-also = տե՛ս նաև +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/id.ftl b/i18n/id.ftl new file mode 100644 index 000000000..4910cb17a --- /dev/null +++ b/i18n/id.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Lampiran +chapter = Bab +part = Bagian + +# -- Other captions +figure = Gambar +table = Tabel +proof = Bukti + +# -- TOC-like headers +tableofcontents = Daftar Isi +index = Indeks +listoffigures = Daftar Gambar +listoftables = Daftar Tabel + +# -- Other usual headers +abstract = Ringkasan +bibliography = Bibliografi +glossary = Daftar Istilah +preface = Pendahuluan +references = Pustaka + +# -- Miscellaneous +page = Halaman +see = lihat +see-also = lihat juga +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/is.ftl b/i18n/is.ftl new file mode 100644 index 000000000..42216f494 --- /dev/null +++ b/i18n/is.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Viðauki +chapter = Kafli +part = Hluti + +# -- Other captions +figure = Mynd +table = Tafla +proof = Sönnun + +# -- TOC-like headers +tableofcontents = Efnisyfirlit +index = Atriðisorðaskrá +listoffigures = Myndaskrá +listoftables = Töfluskrá + +# -- Other usual headers +abstract = Útdráttur +bibliography = Heimildir +glossary = Orðalisti +preface = Formáli +references = Heimildir + +# -- Miscellaneous +page = Blaðsíða +see = Sjá +see-also = Sjá einnig +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/it.ftl b/i18n/it.ftl new file mode 100644 index 000000000..4aa3ef72f --- /dev/null +++ b/i18n/it.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Appendice +chapter = Capitolo +part = Parte + +# -- Other captions +figure = Figura +table = Tabella +proof = Dimostrazione + +# -- TOC-like headers +tableofcontents = Indice +index = Indice analitico +listoffigures = Elenco delle figure +listoftables = Elenco delle tabelle + +# -- Other usual headers +abstract = Sommario +bibliography = Bibliografia +glossary = Glossario +preface = Prefazione +references = Riferimenti bibliografici + +# -- Miscellaneous +page = Pag. +see = vedi +see-also = vedi anche +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/ja.ftl b/i18n/ja.ftl index 3d408f4bf..131547c11 100644 --- a/i18n/ja.ftl +++ b/i18n/ja.ftl @@ -1,4 +1,44 @@ -# End with thin nonbreaking space (U+202F) -book-chapter-title-pre = 第  +# some translations are likely tentative -book-chapter-post =  章 +# -- Usual book sections +appendix = 付録 +prechapter = 第 +postchapter = 章 +prepart = 第 +postpart = 部 + +# -- Other captions +figure = 図 +table = 表 +proof = 証明 + +# -- TOC-like headers +tableofcontents = 目次 +index = 索引 +listoffigures = 図目次 +listoftables = 表目次 + +# -- Other usual headers +abstract = 概要 +bibliography = 参考文献 +glossary = 用語集 +preface = 前書き +references = 参考文献 + +# -- Miscellaneous +# page = +# see = +# see-also = +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +# N.B. Contain thin nonbreaking space (U+202F) around the number +chapter-template = { prechapter } { $number } { postchapter } +part-template = { prepart } { $number } { postpart } diff --git a/i18n/jv.ftl b/i18n/jv.ftl new file mode 100644 index 000000000..8133e3e48 --- /dev/null +++ b/i18n/jv.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +# appendix = +# chapter = +# part = + +# -- Other captions +# figure = +# table = +# proof = + +# -- TOC-like headers +# tableofcontents = +# index = +# listoffigures = +# listoftables = + +# -- Other usual headers +# abstract = +# bibliography = +# glossary = +# preface = +# references = + +# -- Miscellaneous +# page = +# see = +# see-also = +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { $number } +chapter-template = { $number } +part-template = { $number } diff --git a/i18n/ka.ftl b/i18n/ka.ftl new file mode 100644 index 000000000..dfc28bd62 --- /dev/null +++ b/i18n/ka.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = დანართი +chapter = თავი +part = ნაწილი + +# -- Other captions +figure = სურ. +table = ცხრ. +proof = დამტკიცება + +# -- TOC-like headers +tableofcontents = შინაარსი +index = საძიებელი +listoffigures = სურათი +listoftables = ცხრილი + +# -- Other usual headers +abstract = ანოტაცია +bibliography = ლიტერატურა +glossary = ტერმინები +preface = წინასიტყვაობა +references = ლიტერატურა + +# -- Miscellaneous +page = გვ. +see = იხ. +see-also = იხ. ასევე +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/kn.ftl b/i18n/kn.ftl new file mode 100644 index 000000000..d4c97a3e1 --- /dev/null +++ b/i18n/kn.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = ಅನುಬಂಧ +chapter = ಅಧ್ಯಾಯ +part = ಭಾಗ + +# -- Other captions +figure = ಚಿತ್ರ +table = ಕೋಷ್ಟಕ +proof = ಕರಡುಪ್ರತಿ + +# -- TOC-like headers +tableofcontents = ವಿಷಯಗಳು +index = ಸೂಚಿ +listoffigures = ಚಿತ್ರಗಳ ಪಟ್ಟಿ +listoftables = ಕೋಷ್ಟಕಗಳ ಪಟ್ಟಿ + +# -- Other usual headers +abstract = ಸಾರಾಂಶ +bibliography = ಗ್ರಂಥಸೂಚಿ +# glossary = +preface = ಮುನ್ನುಡಿ +references = ಉಲ್ಲೇಖಗಳು + +# -- Miscellaneous +page = ಪುಟ +see = ನೋಡು +see-also = ಇದನ್ನೂ ಸಹ ನೋಡು +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/la.ftl b/i18n/la.ftl index 36cd742d4..733603c20 100644 --- a/i18n/la.ftl +++ b/i18n/la.ftl @@ -1,15 +1,39 @@ -hello = Salve { $name }! +# -- Usual book sections +appendix = Additamentum +chapter = Caput +part = Pars -toc-not-generated = Curre SILE iterum ad mensam contentorum computetur! +# -- Other captions +figure = Descriptio +table = Tabula +proof = Demonstratio -toc-title = Tabula contentorum +# -- TOC-like headers +tableofcontents = Tabula contentorum +index = Index rerum notabilium +listoffigures = Conspectus descriptionum +listoftables = Conspectus tabularum -book-chapter-title-pre = Caput{" "} +# -- Other usual headers +abstract = Summarium +bibliography = Conspectus librorum +glossary = Glossarium +preface = Praefatio +references = Conspectus librorum -bibliography-and = et +# -- Miscellaneous +page = charta +see = cfr. +see-also = cfr. +toc-not-generated = Curre SILE iterum ad mensam contentorum computetur! +# -- Bibliography stuff +bibliography-and = et bibliography-edited-by = Conpositor erat { $name } - bibliography-et-al = et al. - bibliography-translated-by = Interpres fuit { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/lt.ftl b/i18n/lt.ftl new file mode 100644 index 000000000..74b8edc7c --- /dev/null +++ b/i18n/lt.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = priedas +chapter = skyrius +part = dalis + +# -- Other captions +figure = pav. +table = lentelė +proof = Įrodymas + +# -- TOC-like headers +tableofcontents = Turinys +listoffigures = Iliustracijų sąrašas +listoftables = Lentelių sąrašas + +# -- Other usual headers +abstract = Santrauka +bibliography = Literatūra +glossary = Glosarijus +index = Rodyklė +preface = Pratarmė +references = Literatūra + +# -- Miscellaneous +page = puslapis +see = žiūrėk +see-also = taip pat +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { $number } { appendix } +chapter-template = { $number } { chapter } +part-template = { $number } { part } diff --git a/i18n/lv.ftl b/i18n/lv.ftl new file mode 100644 index 000000000..d75503cde --- /dev/null +++ b/i18n/lv.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Pielikums +chapter = Nodaļa +part = Daļa + +# -- Other captions +figure = Zīm. +table = Tabula +# proof = + +# -- TOC-like headers +tableofcontents = Saturs +listoffigures = Attēlu rādītājs +listoftables = Tabulu rādītājs + +# -- Other usual headers +abstract = Anotācija +bibliography = Bibliogrāfija +# glossary = +index = Priekšmetu rādītājs +preface = Priekšvārds +references = Literatūra + +# -- Miscellaneous +page = lpp. +see = skat. +see-also = skat. arī +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/ml.ftl b/i18n/ml.ftl new file mode 100644 index 000000000..633b44ae0 --- /dev/null +++ b/i18n/ml.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = ശിഷ്ടം +chapter = അദ്ധ്യായം +part = ഭാഗം + +# -- Other captions +figure = ചിത്രം +table = പട്ടിക +# proof = + +# -- TOC-like headers +tableofcontents = ഉള്ളടക്കം +listoffigures = ചിത്രസൂചിക +listoftables = പട്ടികകളുടെ സൂചിക + +# -- Other usual headers +bstract = സാരാംശം +# bibliography = +glossary = +# index = സൂചിക +# preface = +# references = + +# -- Miscellaneous +# page = +see = കാണുക +see-also = ഇതും കാണുക +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/mr.ftl b/i18n/mr.ftl new file mode 100644 index 000000000..2da6b4304 --- /dev/null +++ b/i18n/mr.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = परिशिष्ट +chapter = प्रकरण +part = खंड + +# -- Other captions +figure = आकृती +table = कोष्टक +proof = सिद्धता + +# -- TOC-like headers +tableofcontents = अनुक्रमणिका +listoffigures = आकृत्यांची सूची +listoftables = कोष्टकसूची + +# -- Other usual headers +abstract = सारांश +bibliography = संदर्भसूची +glossary = संज्ञासूची +index = सूची +preface = प्रस्तावना +references = संदर्भ + +# -- Miscellaneous +page = पृष्ठ +see = पाहा +see-also = हेदेखील पाहा +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/my.ftl b/i18n/my.ftl new file mode 100644 index 000000000..8133e3e48 --- /dev/null +++ b/i18n/my.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +# appendix = +# chapter = +# part = + +# -- Other captions +# figure = +# table = +# proof = + +# -- TOC-like headers +# tableofcontents = +# index = +# listoffigures = +# listoftables = + +# -- Other usual headers +# abstract = +# bibliography = +# glossary = +# preface = +# references = + +# -- Miscellaneous +# page = +# see = +# see-also = +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { $number } +chapter-template = { $number } +part-template = { $number } diff --git a/i18n/nl.ftl b/i18n/nl.ftl new file mode 100644 index 000000000..cb1831666 --- /dev/null +++ b/i18n/nl.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Bijlage +chapter = Hoofdstuk +part = Deel + +# -- Other captions +figure = Figuur +table = Tabel +proof = Bewijs + +# -- TOC-like headers +tableofcontents = Inhoudsopgave +index = Index +listoffigures = Lijst van figuren +listoftables = Lijst van tabellen + +# -- Other usual headers +abstract = Samenvatting +bibliography = Bibliografie +glossary = Verklarende Woordenlijst +preface = Voorwoord +references = Referenties + +# -- Miscellaneous +page = Pagina +see = zie +see-also = zie ook +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/nn.ftl b/i18n/nn.ftl deleted file mode 120000 index 6d839d59a..000000000 --- a/i18n/nn.ftl +++ /dev/null @@ -1 +0,0 @@ -no.ftl \ No newline at end of file diff --git a/i18n/nn.ftl b/i18n/nn.ftl new file mode 100644 index 000000000..8492cedda --- /dev/null +++ b/i18n/nn.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Tillegg +chapter = Kapittel +part = Del + +# -- Other captions +figure = Figur +table = Tabell +proof = Bevis + +# -- TOC-like headers +tableofcontents = Innhald +index = Register +listoffigures = Figurar +listoftables = Tabellar + +# -- Other usual headers +abstract = Samandrag +bibliography = Litteratur +glossary = Ordliste +preface = Forord +references = Referansar + +# -- Miscellaneous +page = Side +see = Sjå +see-also = Sjå òg +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/no.ftl b/i18n/no.ftl index e04ba1c99..aae273628 100644 --- a/i18n/no.ftl +++ b/i18n/no.ftl @@ -1,15 +1,39 @@ -hello = Hei { $name }! +# -- Usual book sections +appendix = Tillegg +chapter = Kapittel +part = Del -toc-not-generated = Kjør SILE om igjen slik at innholdsfortegnelsen blir behandlet! +# -- Other captions +figure = Figur +table = Tabell +proof = Bevis -toc-title = Innhold +# -- TOC-like headers +tableofcontents = Innhold +index = Register +listoffigures = Figurer +listoftables = Tabeller -book-chapter-title-pre = Kapittel{" "} +# -- Other usual headers +abstract = Sammendrag +bibliography = Bibliografi +glossary = Ordliste +preface = Forord +references = Referanser -bibliography-and = og +# -- Miscellaneous +page = Side +see = Se +see-also = Se også +toc-not-generated = Kjør SILE om igjen slik at innholdsfortegnelsen blir behandlet! +# -- Bibliography stuff +bibliography-and = og bibliography-edited-by = Redigert av { $name } - bibliography-et-al = et al. +bibliography-translated-by = Oversatt av { $name } -bibliography-translated-by = Redigert av { $name } +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/or.ftl b/i18n/or.ftl new file mode 100644 index 000000000..8133e3e48 --- /dev/null +++ b/i18n/or.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +# appendix = +# chapter = +# part = + +# -- Other captions +# figure = +# table = +# proof = + +# -- TOC-like headers +# tableofcontents = +# index = +# listoffigures = +# listoftables = + +# -- Other usual headers +# abstract = +# bibliography = +# glossary = +# preface = +# references = + +# -- Miscellaneous +# page = +# see = +# see-also = +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { $number } +chapter-template = { $number } +part-template = { $number } diff --git a/i18n/pa.ftl b/i18n/pa.ftl new file mode 100644 index 000000000..8133e3e48 --- /dev/null +++ b/i18n/pa.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +# appendix = +# chapter = +# part = + +# -- Other captions +# figure = +# table = +# proof = + +# -- TOC-like headers +# tableofcontents = +# index = +# listoffigures = +# listoftables = + +# -- Other usual headers +# abstract = +# bibliography = +# glossary = +# preface = +# references = + +# -- Miscellaneous +# page = +# see = +# see-also = +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { $number } +chapter-template = { $number } +part-template = { $number } diff --git a/i18n/pl.ftl b/i18n/pl.ftl new file mode 100644 index 000000000..de2a2151a --- /dev/null +++ b/i18n/pl.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Dodatek +chapter = Rozdział +part = Cześć + +# -- Other captions +figure = Rysunek +table = Tablica +proof = Dowód + +# -- TOC-like headers +tableofcontents = Spis treści +index = Indeks +listoffigures = Spis rysunków +listoftables = Spis tablic + +# -- Other usual headers +abstract = Streszczenie +bibliography = Bibliografia +glossary = Glossary +preface = Przedmowa +references = Literatura + +# -- Miscellaneous +page = Strona +see = Porównaj +see-also = Porównaj także +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/pt.ftl b/i18n/pt.ftl new file mode 100644 index 000000000..ddcdc859a --- /dev/null +++ b/i18n/pt.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Apêndice +chapter = Capítulo +part = Parte + +# -- Other captions +figure = Figura +table = Tabela +proof = Demonstração + +# -- TOC-like headers +tableofcontents = Conteúdo +index = Índice +listoffigures = Lista de Figuras +listoftables = Lista de Tabelas + +# -- Other usual headers +abstract = Resumo +bibliography = Bibliografia +glossary = Glossário +preface = Prefácio +references = Referências + +# -- Miscellaneous +page = Página +see = ver +see-also = ver também +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/rm.ftl b/i18n/rm.ftl new file mode 100644 index 000000000..6069612f6 --- /dev/null +++ b/i18n/rm.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Appendix +chapter = Chapitel +part = Part + +# -- Other captions +figure = Figura +table = Tabella +proof = Demonstraziun + +# -- TOC-like headers +tableofcontents = Tavla dal cuntegn +index = Register da materias +listoffigures = Tavla da las figuras +listoftables = Tavla da las tabellas + +# -- Other usual headers +abstract = Recapitulaziun +bibliography = Index bibliografic +glossary = Glossari +preface = Prefaziun +references = Bibliografia + +# -- Miscellaneous +page = pagina +see = vesair +see-also = vesair era +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/ro.ftl b/i18n/ro.ftl new file mode 100644 index 000000000..c35f5083b --- /dev/null +++ b/i18n/ro.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Anexa +chapter = Capitolul +part = Partea + +# -- Other captions +figure = Figura +table = Tabela +proof = Demonstraţie + +# -- TOC-like headers +tableofcontents = Cuprins +index = Index +listoffigures = Listă de figuri +listoftables = Listă de tabele + +# -- Other usual headers +abstract = Rezumat +bibliography = Bibliografie +glossary = Glosar +preface = Prefaţă +references = Bibliografie + +# -- Miscellaneous +page = Pagina +see = vezi +see-also = vezi de asemenea +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/ru.ftl b/i18n/ru.ftl new file mode 100644 index 000000000..8a0fc944e --- /dev/null +++ b/i18n/ru.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Приложение +chapter = Глава +part = Часть + +# -- Other captions +figure = Рис. +table = Таблица +proof = Доказательство + +# -- TOC-like headers +tableofcontents = Содержание +index = Предметный указатель +listoffigures = Список иллюстраций +listoftables = Список таблиц + +# -- Other usual headers +abstract = Аннотация +bibliography = Литература +glossary = Словарь терминов +preface = Предисловие +references = Список литературы + +# -- Miscellaneous +page = с. +see = см. +see-also = см. также +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/sa.ftl b/i18n/sa.ftl new file mode 100644 index 000000000..8133e3e48 --- /dev/null +++ b/i18n/sa.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +# appendix = +# chapter = +# part = + +# -- Other captions +# figure = +# table = +# proof = + +# -- TOC-like headers +# tableofcontents = +# index = +# listoffigures = +# listoftables = + +# -- Other usual headers +# abstract = +# bibliography = +# glossary = +# preface = +# references = + +# -- Miscellaneous +# page = +# see = +# see-also = +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { $number } +chapter-template = { $number } +part-template = { $number } diff --git a/i18n/sk.ftl b/i18n/sk.ftl new file mode 100644 index 000000000..c41300d5f --- /dev/null +++ b/i18n/sk.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Dodatok +chapter = Kapitola +part = Časť + +# -- Other captions +figure = Obr. +table = Tabuľka +proof = Dôkaz + +# -- TOC-like headers +tableofcontents = Obsah +index = Register +listoffigures = Zoznam obrázkov +listoftables = Zoznam tabuliek + +# -- Other usual headers +abstract = Abstrakt +bibliography = Literatúra +glossary = Slovník +preface = Predhovor +references = Literatúra + +# -- Miscellaneous +page = Str. +see = viď +see-also = viď tiež +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/sl.ftl b/i18n/sl.ftl new file mode 100644 index 000000000..4b0a4bee8 --- /dev/null +++ b/i18n/sl.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Dodatek +chapter = Poglavje +part = Del + +# -- Other captions +figure = Slika +table = Tabela +proof = Dokaz + +# -- TOC-like headers +tableofcontents = Kazalo +index = Stvarno kazalo +listoffigures = Slike +listoftables = Tabele + +# -- Other usual headers +abstract = Povzetek +bibliography = Literatura +glossary = Glossary +preface = Predgovor +references = Literatura + +# -- Miscellaneous +page = Stran +see = glej +see-also = glej tudi +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/sr.ftl b/i18n/sr.ftl new file mode 100644 index 000000000..088b84736 --- /dev/null +++ b/i18n/sr.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Додатак +chapter = Глава +part = Део + +# -- Other captions +figure = Слика +table = Табела +proof = Доказ + +# -- TOC-like headers +tableofcontents = Садржаj +index = Индекспоjмова +listoffigures = Листаслика +listoftables = Листатабела + +# -- Other usual headers +abstract = Абстракт +bibliography = Библиографиjа +glossary = Речник +preface = Предговор +references = Литература + +# -- Miscellaneous +page = страна +see = види +see-also = видитакође +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/sv.ftl b/i18n/sv.ftl new file mode 100644 index 000000000..e0617aed0 --- /dev/null +++ b/i18n/sv.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Bilaga +chapter = Kapitel +part = Del + +# -- Other captions +figure = Figur +table = Tabell +proof = Bevis + +# -- TOC-like headers +tableofcontents = Innehåll +index = Sakregister +listoffigures = Figurer +listoftables = Tabeller + +# -- Other usual headers +abstract = Sammanfattning +bibliography = Litteraturförteckning +glossary = Ordlista +preface = Förord +references = Referenser + +# -- Miscellaneous +page = Sida +see = se +see-also = se även +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/ta.ftl b/i18n/ta.ftl new file mode 100644 index 000000000..0c5cd40b0 --- /dev/null +++ b/i18n/ta.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = பிற்சேர்க்கை +chapter = அத்தியாயம் +part = பகுதி + +# -- Other captions +figure = படம் +table = அட்டவணை +# proof = + +# -- TOC-like headers +tableofcontents = உள்ளே +index = சுட்டி +listoffigures = படங்களின் பட்டியல் +listoftables = அட்டவணை பட்டியல் + +# -- Other usual headers +abstract = சாராம்சம் +# bibliography = +# glossary = +# preface = +# references = + +# -- Miscellaneous +# page = +see = பார்க்க +# see-also = +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/th.ftl b/i18n/th.ftl new file mode 100644 index 000000000..7064d982d --- /dev/null +++ b/i18n/th.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = ภาคผนวก +chapter = บทที่ +part = ภาค + +# -- Other captions +figure = รูปที่ +table = ตารางที่ +proof = พิสูจน์ + +# -- TOC-like headers +tableofcontents = สารบัญ +index = ดรรชนี +listoffigures = สารบัญรูป +listoftables = สารบัญตาราง + +# -- Other usual headers +abstract = บทคัดย่อ +bibliography = บรรณานุกรม +# glossary = +preface = บทนำ +references = หนังสืออ้างอิง + +# -- Miscellaneous +page = หน้า +see = ดู +see-also = ดูเพิ่มเติม +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/tk.ftl b/i18n/tk.ftl new file mode 100644 index 000000000..500f6a56b --- /dev/null +++ b/i18n/tk.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Goşmaça +chapter = Bap +part = Bölüm + +# -- Other captions +figure = Surat +table = Tablisa +proof = Delil + +# -- TOC-like headers +tableofcontents = Mazmuny +index = Indeks +listoffigures = Suratlaryň sanawy +listoftables = Tablisalaryň sanawy + +# -- Other usual headers +abstract = Gysgaça manysy +bibliography = Çeşmeler +glossary = Sözlük +preface = Sözbaşy +references = Çeşmeler + +# -- Miscellaneous +page = Sahypa +see = ser. +see-also = şuňa-da ser. +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/tr.ftl b/i18n/tr.ftl index d762e5e32..c76252c30 100644 --- a/i18n/tr.ftl +++ b/i18n/tr.ftl @@ -1,5 +1,41 @@ +# -- Usual book sections +appendix = Ek +chapter = Bölüm +part = Kısım + +# -- Other captions +figure = Şekil +table = Tablo +proof = Kanıt + +# -- TOC-like headers +tableofcontents = İçindekiler +index = Dizin +listoffigures = Şekil Listesi +listoftables = Tablo Listesi + +# -- Other usual headers +abstract = Özet +bibliography = Kaynakça +glossary = Lügatçe +preface = Önsöz +references = Kaynaklar + +# -- Miscellaneous +page = Sayfa +see = bkz. +see-also = ayrıca bkz. +toc-not-generated = Rerun SILE to process the table of contents! +# Test (only for en and tr) hello = Merhaba { $name }! -toc-title = İçindekiler +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } -book-chapter-title-pre = Bölüm{" "} +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/ug.ftl b/i18n/ug.ftl new file mode 100644 index 000000000..ba6ee855e --- /dev/null +++ b/i18n/ug.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = قوشۇمچە +chapter = باب +part = قىسىم + +# -- Other captions +figure = رەسىم +table = جەدۋەل +proof = ئىسپات + +# -- TOC-like headers +tableofcontents = مۇندەرىجە +index = ئىندېكىس +listoffigures = رەسىملەر +listoftables = جەدۋەللەر + +# -- Other usual headers +abstract = ئابستراكت +bibliography = پايدىلانما +glossary = لۇغەت +preface = كىرىش سۆز +references = پايدىلانما + +# -- Miscellaneous +page = بەت +see = قاراڭ +see-also = ئايرىم قاراڭ +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +# bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/uk.ftl b/i18n/uk.ftl new file mode 100644 index 000000000..e9dff2255 --- /dev/null +++ b/i18n/uk.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Додаток +chapter = Розділ +part = Частина + +# -- Other captions +figure = Рис. +table = Табл. +proof = Доведення + +# -- TOC-like headers +tableofcontents = Зміст +index = Покажчик +listoffigures = Перелік ілюстрацій +listoftables = Перелік таблиць + +# -- Other usual headers +abstract = Анотація +bibliography = Бібліоґрафія +glossary = Словник термінів +preface = Вступ +references = Література + +# -- Miscellaneous +page = с. +see = див. +see-also = див. також +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/und.ftl b/i18n/und.ftl index 586351c8b..aa66cff44 100644 --- a/i18n/und.ftl +++ b/i18n/und.ftl @@ -1 +1,40 @@ -hello = Namárië { $name }! + +# -- Usual book sections +# appendix = +# chapter = +# part = + +# -- Other captions +# figure = +# table = +# proof = + +# -- TOC-like headers +# tableofcontents = +# index = +# listoffigures = +# listoftables = + +# -- Other usual headers +# abstract = +# bibliography = +# glossary = +# preface = +# references = + +# -- Miscellaneous +# page = +# see = +# see-also = +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { $number } +chapter-template = { $number } +part-template = { $number } diff --git a/i18n/ur.ftl b/i18n/ur.ftl new file mode 100644 index 000000000..a927adc14 --- /dev/null +++ b/i18n/ur.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = ضمیمہ +chapter = باب +part = حصّہ + +# -- Other captions +figure = شكل +table = جدول +proof = ثبوت + +# -- TOC-like headers +tableofcontents = فہرست عنوانات +index = اشاریہ +listoffigures = فہرست اشکال +listoftables = فہرست جداول + +# -- Other usual headers +abstract = ملخّص +bibliography = کتابیات +glossary = لغت +preface = دیباچہ +references = حوالہ جات + +# -- Miscellaneous +page = صفحہ +see = ملاحظہ ہو +see-also = ایضاً +toc-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/languages/ja.lua b/languages/ja.lua index f5135c306..7cf23f754 100644 --- a/languages/ja.lua +++ b/languages/ja.lua @@ -179,7 +179,6 @@ return { SILE.hyphenator.languages.ja = { patterns={} } SILE.registerCommand("book:chapter:post:ja", function (_, _) - SILE.call("fluent", {}, { "book-chapter-post" }) SILE.call("medskip") end) diff --git a/packages/tableofcontents/init.lua b/packages/tableofcontents/init.lua index 1f33a5f23..b1d5d3568 100644 --- a/packages/tableofcontents/init.lua +++ b/packages/tableofcontents/init.lua @@ -151,7 +151,7 @@ local function registerCommands (_) end) SILE.registerCommand("tableofcontents:title", function (_, _) - SU.deprecated("\\tableofcontents:title", "\\fluent{toc-title}", "0.13.0", "0.14.0") + SU.deprecated("\\tableofcontents:title", "\\fluent{tableofcontents}", "0.13.0", "0.14.0") end, "Deprecated") SILE.registerCommand("tableofcontents:notocmessage", function (_, _) @@ -168,7 +168,7 @@ local function registerCommands (_) SILE.call("par") SILE.call("noindent") SILE.call("tableofcontents:headerfont", {}, function () - SILE.call("fluent", {}, { "toc-title" }) + SILE.call("fluent", {}, { "tableofcontents" }) end) SILE.call("medskip") end) From 4ca587c82023931c4e27e55c32b2afa569a0e659 Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sun, 10 Jul 2022 15:07:51 +0200 Subject: [PATCH 02/10] test(i18n): Update expectation due to Japanese FTL change --- tests/bug-990.expected | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/bug-990.expected b/tests/bug-990.expected index abe5010fc..889eda25a 100644 --- a/tests/bug-990.expected +++ b/tests/bug-990.expected @@ -15,14 +15,15 @@ Mx 24.7039 My 126.5222 Set font Noto Sans CJK JP;22;800;;normal;;LTR T 29804 w=22.0000 (第) -Mx 46.7326 +Mx 46.7329 Mx 2.4640 T 1 a=4.9280 ( ) +Mx 49.2260 T 19 w=12.2100 (2) -Mx 61.4066 -Mx 4.4000 -T 1 a=4.9280 ( ) -Mx 65.8354 +Mx 61.4650 +Mx 2.4640 +T 1 a=4.9280 ( ) +Mx 63.9580 T 29653 w=22.0000 (章) Mx 24.7039 My 152.7062 From 975aad68036f440b7ecffa5c0afb73310eb98812 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 19 Jul 2022 17:16:43 +0300 Subject: [PATCH 03/10] chore(i18n): Use Fluent key namespacing by package --- i18n/af.ftl | 4 ++-- i18n/am.ftl | 4 ++-- i18n/ar.ftl | 4 ++-- i18n/as.ftl | 4 ++-- i18n/bg.ftl | 4 ++-- i18n/bn.ftl | 4 ++-- i18n/bo.ftl | 4 ++-- i18n/ca.ftl | 4 ++-- i18n/cs.ftl | 4 ++-- i18n/cy.ftl | 4 ++-- i18n/da.ftl | 4 ++-- i18n/de.ftl | 4 ++-- i18n/el-monoton.ftl | 4 ++-- i18n/el-polyton.ftl | 4 ++-- i18n/el.ftl | 40 ++++++++++++++++++++++++++++++- i18n/en.ftl | 4 ++-- i18n/eo.ftl | 4 ++-- i18n/es.ftl | 4 ++-- i18n/et.ftl | 4 ++-- i18n/eu.ftl | 4 ++-- i18n/fi.ftl | 4 ++-- i18n/fr.ftl | 4 ++-- i18n/ga.ftl | 4 ++-- i18n/gu.ftl | 4 ++-- i18n/hi.ftl | 4 ++-- i18n/hr.ftl | 4 ++-- i18n/hu.ftl | 4 ++-- i18n/hy.ftl | 4 ++-- i18n/id.ftl | 4 ++-- i18n/is.ftl | 4 ++-- i18n/it.ftl | 4 ++-- i18n/ja.ftl | 4 ++-- i18n/jv.ftl | 4 ++-- i18n/ka.ftl | 4 ++-- i18n/kn.ftl | 4 ++-- i18n/la.ftl | 4 ++-- i18n/lt.ftl | 4 ++-- i18n/lv.ftl | 4 ++-- i18n/ml.ftl | 4 ++-- i18n/mr.ftl | 4 ++-- i18n/my.ftl | 4 ++-- i18n/nb.ftl | 40 ++++++++++++++++++++++++++++++- i18n/nl.ftl | 4 ++-- i18n/nn.ftl | 4 ++-- i18n/no.ftl | 4 ++-- i18n/or.ftl | 4 ++-- i18n/pa.ftl | 4 ++-- i18n/pl.ftl | 4 ++-- i18n/pt.ftl | 4 ++-- i18n/rm.ftl | 4 ++-- i18n/ro.ftl | 4 ++-- i18n/ru.ftl | 4 ++-- i18n/sa.ftl | 4 ++-- i18n/sk.ftl | 4 ++-- i18n/sl.ftl | 4 ++-- i18n/sr.ftl | 4 ++-- i18n/sv.ftl | 4 ++-- i18n/ta.ftl | 4 ++-- i18n/th.ftl | 4 ++-- i18n/tk.ftl | 4 ++-- i18n/tr.ftl | 4 ++-- i18n/ug.ftl | 4 ++-- i18n/uk.ftl | 4 ++-- i18n/und.ftl | 4 ++-- i18n/ur.ftl | 4 ++-- packages/tableofcontents/init.lua | 4 ++-- 66 files changed, 206 insertions(+), 130 deletions(-) mode change 120000 => 100644 i18n/el.ftl mode change 120000 => 100644 i18n/nb.ftl diff --git a/i18n/af.ftl b/i18n/af.ftl index 2967713ec..69e729e6e 100644 --- a/i18n/af.ftl +++ b/i18n/af.ftl @@ -9,7 +9,7 @@ table = Tabel proof = Bewys # -- TOC-like headers -tableofcontents = Inhoudsopgawe +tableofcontents-title = Inhoudsopgawe index = Inhoud listoffigures = Lys van figure listoftables = Lys van tabelle @@ -25,7 +25,7 @@ references = Verwysings page = Bladsy see = sien see-also = sien ook -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/am.ftl b/i18n/am.ftl index fc9b0fe53..89227815d 100644 --- a/i18n/am.ftl +++ b/i18n/am.ftl @@ -9,7 +9,7 @@ table = ሰንጠረዥ proof = ማረጋገጫ # -- TOC-like headers -tableofcontents = ይዘት +tableofcontents-title = ይዘት index = ምህጻር ቃል listoffigures = የሥዕችሎ ማውጫ listoftables = የሰንጠዥረ ማውጫ @@ -25,7 +25,7 @@ references = የነሥ ጹሁፍ ምንጭ page = ገጽ see = ይመልከቱ see-also = ይህምን ይመልከቱ -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/ar.ftl b/i18n/ar.ftl index d5edca525..764d9d8d5 100644 --- a/i18n/ar.ftl +++ b/i18n/ar.ftl @@ -9,7 +9,7 @@ table = جدول proof = برهان # -- TOC-like headers -tableofcontents = المحتويات +tableofcontents-title = المحتويات index = الفهرس listoffigures = قائمة الأشكال listoftables = قائمة الجداول @@ -25,7 +25,7 @@ references = المراجع page = صفحة see = راجع see-also = راجع أيضًا -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/as.ftl b/i18n/as.ftl index 6173495cc..8c39039a8 100644 --- a/i18n/as.ftl +++ b/i18n/as.ftl @@ -9,7 +9,7 @@ table = তালিকা proof = প্ৰমাণ # -- TOC-like headers -tableofcontents = সমল +tableofcontents-title = সমল index = বিষয়সূচী listoffigures = চিত্ৰসূচী listoftables = তালিকাসূচী @@ -25,7 +25,7 @@ references = প্ৰসংগ page = পৃষ্ঠা see = চাওক see-also = ও -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/bg.ftl b/i18n/bg.ftl index 601791b56..efbf26f6f 100644 --- a/i18n/bg.ftl +++ b/i18n/bg.ftl @@ -9,7 +9,7 @@ table = Таблица proof = Доказателство # -- TOC-like headers -tableofcontents = Съдържание +tableofcontents-title = Съдържание index = Азбучен указател listoffigures = Списък на фигурите listoftables = Списък на таблиците @@ -25,7 +25,7 @@ references = Литература page = Стр. see = вж. see-also = вж. също и -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/bn.ftl b/i18n/bn.ftl index 19e41b3e4..25653ee2e 100644 --- a/i18n/bn.ftl +++ b/i18n/bn.ftl @@ -9,7 +9,7 @@ table = সারনী proof = প্রমাণ # -- TOC-like headers -tableofcontents = সূচীপত্র +tableofcontents-title = সূচীপত্র index = সূচক/নির্দেশক listoffigures = ছবি/নকশা সমূহের তালিকা listoftables = তালিকাসারণী @@ -25,7 +25,7 @@ references = তথ্যসুত্রসমূহ page = পৃষ্ঠা see = দেখুন see-also = আরও দেখুন -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/bo.ftl b/i18n/bo.ftl index 83055d16b..c191bd63d 100644 --- a/i18n/bo.ftl +++ b/i18n/bo.ftl @@ -9,7 +9,7 @@ table = རེའུ་མིག་ proof = བདེན་དཔང་། # -- TOC-like headers -tableofcontents = དཀར་ཆག། +tableofcontents-title = དཀར་ཆག། index = གསུལ་བྱང་། # listoffigures = # listoftables = @@ -25,7 +25,7 @@ preface = དཔེ་དེབ་ཀྱི་གླེང་བརྗོད། page = ཤོག་ # see = # see-also = -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/ca.ftl b/i18n/ca.ftl index 34899f25e..12ad28df6 100644 --- a/i18n/ca.ftl +++ b/i18n/ca.ftl @@ -9,7 +9,7 @@ table = Taula proof = Demostració # -- TOC-like headers -tableofcontents = Índex +tableofcontents-title = Índex index = Índex alfabètic listoffigures = Índex de figures listoftables = Índex de taules @@ -25,7 +25,7 @@ references = Referències page = Pàgina see = Vegeu see-also = Vegeu també -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/cs.ftl b/i18n/cs.ftl index 86c05adca..aeda3eccb 100644 --- a/i18n/cs.ftl +++ b/i18n/cs.ftl @@ -9,7 +9,7 @@ table = Tabulka proof = Důkaz # -- TOC-like headers -tableofcontents = Obsah +tableofcontents-title = Obsah index = Rejstřík listoffigures = Seznam obrázků listoftables = Seznam tabulek @@ -25,7 +25,7 @@ references = Reference page = Strana see = viz see-also = viz také -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/cy.ftl b/i18n/cy.ftl index f9f113a3b..ba5c5c8ed 100644 --- a/i18n/cy.ftl +++ b/i18n/cy.ftl @@ -9,7 +9,7 @@ table = Taflen proof = Prawf # -- TOC-like headers -tableofcontents = Cynnwys +tableofcontents-title = Cynnwys index = Mynegai listoffigures = Rhestr Ddarluniau listoftables = Rhestr Dablau @@ -25,7 +25,7 @@ references = Cyfeiriadau page = tudalen see = gweler see-also = gweler hefyd -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Assembling rules appendix-template = { appendix } { $number } diff --git a/i18n/da.ftl b/i18n/da.ftl index ae7ab41d1..d63292f32 100644 --- a/i18n/da.ftl +++ b/i18n/da.ftl @@ -9,7 +9,7 @@ table = Tabel proof = Bevis # -- TOC-like headers -tableofcontents = Indhold +tableofcontents-title = Indhold index = Indeks listoffigures = Figurer listoftables = Tabeller @@ -25,7 +25,7 @@ references = Litteratur page = Side see = Se see-also = Se også -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/de.ftl b/i18n/de.ftl index 6488e6f7f..2e350b024 100644 --- a/i18n/de.ftl +++ b/i18n/de.ftl @@ -9,7 +9,7 @@ table = Tabelle proof = Beweis # -- TOC-like headers -tableofcontents = Inhaltsverzeichnis +tableofcontents-title = Inhaltsverzeichnis index = Index listoffigures = Abbildungsverzeichnis listoftables = Tabellenverzeichnis @@ -25,7 +25,7 @@ references = Literatur page = Seite see = siehe see-also = siehe auch -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/el-monoton.ftl b/i18n/el-monoton.ftl index d327fc6d6..fd43d839a 100644 --- a/i18n/el-monoton.ftl +++ b/i18n/el-monoton.ftl @@ -9,7 +9,7 @@ table = Πίνακας proof = Απόδειξη # -- TOC-like headers -tableofcontents = Περιεχόμενα +tableofcontents-title = Περιεχόμενα index = Ευρετήριο listoffigures = Κατάλογος Σχημάτων listoftables = Κατάλογος Πινάκων @@ -25,7 +25,7 @@ references = Αναφορές page = Σελίδα see = βλέπε see-also = βλέπε επίσης -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/el-polyton.ftl b/i18n/el-polyton.ftl index 3bb4f82b9..f2da4efa6 100644 --- a/i18n/el-polyton.ftl +++ b/i18n/el-polyton.ftl @@ -9,7 +9,7 @@ table = Πίνακας proof = Ἀπόδειξη # -- TOC-like headers -tableofcontents = Περιεχόμενα +tableofcontents-title = Περιεχόμενα index = Εὑρετήριο listoffigures = Κατάλογος Σχημάτων listoftables = Κατάλογος Πινάκων @@ -25,7 +25,7 @@ references = Ἀναφορές page = Σελίδα see = βλέπε see-also = βλέπε ἐπίσης -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/el.ftl b/i18n/el.ftl deleted file mode 120000 index 0d1c64dc6..000000000 --- a/i18n/el.ftl +++ /dev/null @@ -1 +0,0 @@ -el-monoton.ftl \ No newline at end of file diff --git a/i18n/el.ftl b/i18n/el.ftl new file mode 100644 index 000000000..fd43d839a --- /dev/null +++ b/i18n/el.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Παράρτημα +chapter = Κεφάλαιο +part = Μέρος + +# -- Other captions +figure = Σχήμα +table = Πίνακας +proof = Απόδειξη + +# -- TOC-like headers +tableofcontents-title = Περιεχόμενα +index = Ευρετήριο +listoffigures = Κατάλογος Σχημάτων +listoftables = Κατάλογος Πινάκων + +# -- Other usual headers +abstract = Περίληψη +bibliography = Βιβλιογραφία +glossary = Γλωσσάρι +preface = Πρόλογος +references = Αναφορές + +# -- Miscellaneous +page = Σελίδα +see = βλέπε +see-also = βλέπε επίσης +tableofcontents-not-generated = Rerun SILE to process the table of contents! + +# -- Bibliography stuff +# bibliography-and = +bibliography-edited-by = { $name } +bibliography-et-al = et al. +bibliography-translated-by = { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/en.ftl b/i18n/en.ftl index 2e00c95ab..648a77e07 100644 --- a/i18n/en.ftl +++ b/i18n/en.ftl @@ -9,7 +9,7 @@ table = Table proof = Proof # -- TOC-like headers -tableofcontents = Table of Contents +tableofcontents-title = Table of Contents index = Index listoffigures = List of Figures listoftables = List of Tables @@ -25,7 +25,7 @@ references = References page = Page see = see see-also = see also -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # Test (only for en and tr) hello = Hello { $name }! diff --git a/i18n/eo.ftl b/i18n/eo.ftl index 3ea089836..863d69dcf 100644 --- a/i18n/eo.ftl +++ b/i18n/eo.ftl @@ -9,7 +9,7 @@ table = Tabelo proof = Pruvo # -- TOC-like headers -tableofcontents = Enhavoj +tableofcontents-title = Enhavoj index = Indekso listoffigures = Listo de figuroj listoftables = Listo de tabeloj @@ -25,7 +25,7 @@ references = Citaĵoj page = Paĝo see = vidu see-also = vidu ankaŭ -toc-not-generated = Reruli na SILE por trakti la enhavan tabelon! +tableofcontents-not-generated = Reruli na SILE por trakti la enhavan tabelon! # -- Bibliography stuff bibliography-and = kaj diff --git a/i18n/es.ftl b/i18n/es.ftl index d42759c13..b12a0149c 100644 --- a/i18n/es.ftl +++ b/i18n/es.ftl @@ -9,7 +9,7 @@ table = Cuadro proof = Demostración # -- TOC-like headers -tableofcontents = Índice +tableofcontents-title = Índice index = Índice alfabético listoffigures = Índice de figuras listoftables = Índice de cuadros @@ -25,7 +25,7 @@ references = Referencias page = página see = véase see-also = véase también -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/et.ftl b/i18n/et.ftl index e4389ee4f..eabb4257d 100644 --- a/i18n/et.ftl +++ b/i18n/et.ftl @@ -9,7 +9,7 @@ table = Tabel proof = Tõestus # -- TOC-like headers -tableofcontents = Sisukord +tableofcontents-title = Sisukord index = Indeks listoffigures = Joonised listoftables = Tabelid @@ -25,7 +25,7 @@ references = Viited page = Lk. see = vt. see-also = vt. ka -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/eu.ftl b/i18n/eu.ftl index ab787a6c6..49af05a68 100644 --- a/i18n/eu.ftl +++ b/i18n/eu.ftl @@ -9,7 +9,7 @@ table = Taula proof = Frogapena # -- TOC-like headers -tableofcontents = Gaien Aurkibidea +tableofcontents-title = Gaien Aurkibidea index = Kontzeptuen Aurkibidea listoffigures = Irudien Zerrenda listoftables = Taulen Zerrenda @@ -25,7 +25,7 @@ references = Erreferentziak page = Orria see = Ikusi see-also = Ikusi, halaber -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/fi.ftl b/i18n/fi.ftl index 0f243ccb7..da6191197 100644 --- a/i18n/fi.ftl +++ b/i18n/fi.ftl @@ -9,7 +9,7 @@ table = Taulukko proof = Todistus # -- TOC-like headers -tableofcontents = Sisällys +tableofcontents-title = Sisällys index = Hakemisto listoffigures = Kuvat listoftables = Taulukot @@ -25,7 +25,7 @@ references = Viitteet page = Sivu see = katso see-also = katso myös -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/fr.ftl b/i18n/fr.ftl index d3c971911..80ea659a1 100644 --- a/i18n/fr.ftl +++ b/i18n/fr.ftl @@ -9,7 +9,7 @@ table = Table proof = Démonstration # -- TOC-like headers -tableofcontents = Table des matières +tableofcontents-title = Table des matières index = Index listoffigures = Table des figures listoftables = Liste des tableaux @@ -25,7 +25,7 @@ references = Références page = page see = voir see-also = voir aussi -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff bibliography-and = et diff --git a/i18n/ga.ftl b/i18n/ga.ftl index bcc4db1e6..c409933de 100644 --- a/i18n/ga.ftl +++ b/i18n/ga.ftl @@ -9,7 +9,7 @@ table = Tábla proof = Cruthúnas # -- TOC-like headers -tableofcontents = Clár Ábhair +tableofcontents-title = Clár Ábhair index = Innéacs listoffigures = Léaráidí listoftables = Táblaí @@ -25,7 +25,7 @@ references = Tagairtí page = Leathanach see = féach see-also = féach freisin -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/gu.ftl b/i18n/gu.ftl index 8133e3e48..50fb816f1 100644 --- a/i18n/gu.ftl +++ b/i18n/gu.ftl @@ -9,7 +9,7 @@ # proof = # -- TOC-like headers -# tableofcontents = +# tableofcontents-title = # index = # listoffigures = # listoftables = @@ -25,7 +25,7 @@ # page = # see = # see-also = -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/hi.ftl b/i18n/hi.ftl index 64d3e5d59..f5e52990f 100644 --- a/i18n/hi.ftl +++ b/i18n/hi.ftl @@ -9,7 +9,7 @@ table = तालिका proof = प्रमाण # -- TOC-like headers -tableofcontents = अनुक्रम +tableofcontents-title = अनुक्रम index = सूची listoffigures = चित्रों की सूची listoftables = तालिकाओं की सूची @@ -25,7 +25,7 @@ references = हवाले page = पृष्ठ see = देखिए see-also = और देखिए -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/hr.ftl b/i18n/hr.ftl index 715e11973..32b25d0ca 100644 --- a/i18n/hr.ftl +++ b/i18n/hr.ftl @@ -9,7 +9,7 @@ table = Tablica proof = Dokaz # -- TOC-like headers -tableofcontents = Sadržaj +tableofcontents-title = Sadržaj index = Kazalo listoffigures = Popis slika listoftables = Popis tablica @@ -25,7 +25,7 @@ references = Literatura page = Stranica see = Vidjeti see-also = Također vidjeti -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/hu.ftl b/i18n/hu.ftl index 4a6949f69..a71bdc29e 100644 --- a/i18n/hu.ftl +++ b/i18n/hu.ftl @@ -9,7 +9,7 @@ table = táblázat proof = Bizonyítás # -- TOC-like headers -tableofcontents = Tartalomjegyzék +tableofcontents-title = Tartalomjegyzék index = Tárgymutató listoffigures = Ábrák jegyzéke listoftables = Táblázatok jegyzéke @@ -25,7 +25,7 @@ references = Hivatkozások page = oldal see = lásd see-also = lásd még -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/hy.ftl b/i18n/hy.ftl index eea4d75f4..fad4f9c60 100644 --- a/i18n/hy.ftl +++ b/i18n/hy.ftl @@ -9,7 +9,7 @@ table = Աղյուսակ proof = Ապացույց # -- TOC-like headers -tableofcontents = Բովանդակություն +tableofcontents-title = Բովանդակություն index = Առարկայական ցանկ listoffigures = Նկարների ցանկ listoftables = Աղյուսակների ցանկ @@ -25,7 +25,7 @@ references = Հղումներ page = էջ see = տե՛ս see-also = տե՛ս նաև -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/id.ftl b/i18n/id.ftl index 4910cb17a..da2b5e333 100644 --- a/i18n/id.ftl +++ b/i18n/id.ftl @@ -9,7 +9,7 @@ table = Tabel proof = Bukti # -- TOC-like headers -tableofcontents = Daftar Isi +tableofcontents-title = Daftar Isi index = Indeks listoffigures = Daftar Gambar listoftables = Daftar Tabel @@ -25,7 +25,7 @@ references = Pustaka page = Halaman see = lihat see-also = lihat juga -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/is.ftl b/i18n/is.ftl index 42216f494..bd01c7bbf 100644 --- a/i18n/is.ftl +++ b/i18n/is.ftl @@ -9,7 +9,7 @@ table = Tafla proof = Sönnun # -- TOC-like headers -tableofcontents = Efnisyfirlit +tableofcontents-title = Efnisyfirlit index = Atriðisorðaskrá listoffigures = Myndaskrá listoftables = Töfluskrá @@ -25,7 +25,7 @@ references = Heimildir page = Blaðsíða see = Sjá see-also = Sjá einnig -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/it.ftl b/i18n/it.ftl index 4aa3ef72f..902a21e3b 100644 --- a/i18n/it.ftl +++ b/i18n/it.ftl @@ -9,7 +9,7 @@ table = Tabella proof = Dimostrazione # -- TOC-like headers -tableofcontents = Indice +tableofcontents-title = Indice index = Indice analitico listoffigures = Elenco delle figure listoftables = Elenco delle tabelle @@ -25,7 +25,7 @@ references = Riferimenti bibliografici page = Pag. see = vedi see-also = vedi anche -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/ja.ftl b/i18n/ja.ftl index 131547c11..cb8fbd1a4 100644 --- a/i18n/ja.ftl +++ b/i18n/ja.ftl @@ -13,7 +13,7 @@ table = 表 proof = 証明 # -- TOC-like headers -tableofcontents = 目次 +tableofcontents-title = 目次 index = 索引 listoffigures = 図目次 listoftables = 表目次 @@ -29,7 +29,7 @@ references = 参考文献 # page = # see = # see-also = -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/jv.ftl b/i18n/jv.ftl index 8133e3e48..50fb816f1 100644 --- a/i18n/jv.ftl +++ b/i18n/jv.ftl @@ -9,7 +9,7 @@ # proof = # -- TOC-like headers -# tableofcontents = +# tableofcontents-title = # index = # listoffigures = # listoftables = @@ -25,7 +25,7 @@ # page = # see = # see-also = -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/ka.ftl b/i18n/ka.ftl index dfc28bd62..75c518c1e 100644 --- a/i18n/ka.ftl +++ b/i18n/ka.ftl @@ -9,7 +9,7 @@ table = ცხრ. proof = დამტკიცება # -- TOC-like headers -tableofcontents = შინაარსი +tableofcontents-title = შინაარსი index = საძიებელი listoffigures = სურათი listoftables = ცხრილი @@ -25,7 +25,7 @@ references = ლიტერატურა page = გვ. see = იხ. see-also = იხ. ასევე -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/kn.ftl b/i18n/kn.ftl index d4c97a3e1..585b7cea9 100644 --- a/i18n/kn.ftl +++ b/i18n/kn.ftl @@ -9,7 +9,7 @@ table = ಕೋಷ್ಟಕ proof = ಕರಡುಪ್ರತಿ # -- TOC-like headers -tableofcontents = ವಿಷಯಗಳು +tableofcontents-title = ವಿಷಯಗಳು index = ಸೂಚಿ listoffigures = ಚಿತ್ರಗಳ ಪಟ್ಟಿ listoftables = ಕೋಷ್ಟಕಗಳ ಪಟ್ಟಿ @@ -25,7 +25,7 @@ references = ಉಲ್ಲೇಖಗಳು page = ಪುಟ see = ನೋಡು see-also = ಇದನ್ನೂ ಸಹ ನೋಡು -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/la.ftl b/i18n/la.ftl index 733603c20..393e144e2 100644 --- a/i18n/la.ftl +++ b/i18n/la.ftl @@ -9,7 +9,7 @@ table = Tabula proof = Demonstratio # -- TOC-like headers -tableofcontents = Tabula contentorum +tableofcontents-title = Tabula contentorum index = Index rerum notabilium listoffigures = Conspectus descriptionum listoftables = Conspectus tabularum @@ -25,7 +25,7 @@ references = Conspectus librorum page = charta see = cfr. see-also = cfr. -toc-not-generated = Curre SILE iterum ad mensam contentorum computetur! +tableofcontents-not-generated = Curre SILE iterum ad mensam contentorum computetur! # -- Bibliography stuff bibliography-and = et diff --git a/i18n/lt.ftl b/i18n/lt.ftl index 74b8edc7c..d5f75e455 100644 --- a/i18n/lt.ftl +++ b/i18n/lt.ftl @@ -9,7 +9,7 @@ table = lentelė proof = Įrodymas # -- TOC-like headers -tableofcontents = Turinys +tableofcontents-title = Turinys listoffigures = Iliustracijų sąrašas listoftables = Lentelių sąrašas @@ -25,7 +25,7 @@ references = Literatūra page = puslapis see = žiūrėk see-also = taip pat -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/lv.ftl b/i18n/lv.ftl index d75503cde..138597d0b 100644 --- a/i18n/lv.ftl +++ b/i18n/lv.ftl @@ -9,7 +9,7 @@ table = Tabula # proof = # -- TOC-like headers -tableofcontents = Saturs +tableofcontents-title = Saturs listoffigures = Attēlu rādītājs listoftables = Tabulu rādītājs @@ -25,7 +25,7 @@ references = Literatūra page = lpp. see = skat. see-also = skat. arī -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/ml.ftl b/i18n/ml.ftl index 633b44ae0..8508bb931 100644 --- a/i18n/ml.ftl +++ b/i18n/ml.ftl @@ -9,7 +9,7 @@ table = പട്ടിക # proof = # -- TOC-like headers -tableofcontents = ഉള്ളടക്കം +tableofcontents-title = ഉള്ളടക്കം listoffigures = ചിത്രസൂചിക listoftables = പട്ടികകളുടെ സൂചിക @@ -25,7 +25,7 @@ glossary = # page = see = കാണുക see-also = ഇതും കാണുക -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/mr.ftl b/i18n/mr.ftl index 2da6b4304..3c2689dcb 100644 --- a/i18n/mr.ftl +++ b/i18n/mr.ftl @@ -9,7 +9,7 @@ table = कोष्टक proof = सिद्धता # -- TOC-like headers -tableofcontents = अनुक्रमणिका +tableofcontents-title = अनुक्रमणिका listoffigures = आकृत्यांची सूची listoftables = कोष्टकसूची @@ -25,7 +25,7 @@ references = संदर्भ page = पृष्ठ see = पाहा see-also = हेदेखील पाहा -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/my.ftl b/i18n/my.ftl index 8133e3e48..50fb816f1 100644 --- a/i18n/my.ftl +++ b/i18n/my.ftl @@ -9,7 +9,7 @@ # proof = # -- TOC-like headers -# tableofcontents = +# tableofcontents-title = # index = # listoffigures = # listoftables = @@ -25,7 +25,7 @@ # page = # see = # see-also = -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/nb.ftl b/i18n/nb.ftl deleted file mode 120000 index 6d839d59a..000000000 --- a/i18n/nb.ftl +++ /dev/null @@ -1 +0,0 @@ -no.ftl \ No newline at end of file diff --git a/i18n/nb.ftl b/i18n/nb.ftl new file mode 100644 index 000000000..536d46153 --- /dev/null +++ b/i18n/nb.ftl @@ -0,0 +1,39 @@ +# -- Usual book sections +appendix = Tillegg +chapter = Kapittel +part = Del + +# -- Other captions +figure = Figur +table = Tabell +proof = Bevis + +# -- TOC-like headers +tableofcontents-title = Innhold +index = Register +listoffigures = Figurer +listoftables = Tabeller + +# -- Other usual headers +abstract = Sammendrag +bibliography = Bibliografi +glossary = Ordliste +preface = Forord +references = Referanser + +# -- Miscellaneous +page = Side +see = Se +see-also = Se også +tableofcontents-not-generated = Kjør SILE om igjen slik at innholdsfortegnelsen blir behandlet! + +# -- Bibliography stuff +bibliography-and = og +bibliography-edited-by = Redigert av { $name } +bibliography-et-al = et al. +bibliography-translated-by = Oversatt av { $name } + +# -- Assembling rules +appendix-template = { appendix } { $number } +chapter-template = { chapter } { $number } +part-template = { part } { $number } diff --git a/i18n/nl.ftl b/i18n/nl.ftl index cb1831666..d3c7e1adc 100644 --- a/i18n/nl.ftl +++ b/i18n/nl.ftl @@ -9,7 +9,7 @@ table = Tabel proof = Bewijs # -- TOC-like headers -tableofcontents = Inhoudsopgave +tableofcontents-title = Inhoudsopgave index = Index listoffigures = Lijst van figuren listoftables = Lijst van tabellen @@ -25,7 +25,7 @@ references = Referenties page = Pagina see = zie see-also = zie ook -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/nn.ftl b/i18n/nn.ftl index 8492cedda..0d8e0c0a8 100644 --- a/i18n/nn.ftl +++ b/i18n/nn.ftl @@ -9,7 +9,7 @@ table = Tabell proof = Bevis # -- TOC-like headers -tableofcontents = Innhald +tableofcontents-title = Innhald index = Register listoffigures = Figurar listoftables = Tabellar @@ -25,7 +25,7 @@ references = Referansar page = Side see = Sjå see-also = Sjå òg -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/no.ftl b/i18n/no.ftl index aae273628..536d46153 100644 --- a/i18n/no.ftl +++ b/i18n/no.ftl @@ -9,7 +9,7 @@ table = Tabell proof = Bevis # -- TOC-like headers -tableofcontents = Innhold +tableofcontents-title = Innhold index = Register listoffigures = Figurer listoftables = Tabeller @@ -25,7 +25,7 @@ references = Referanser page = Side see = Se see-also = Se også -toc-not-generated = Kjør SILE om igjen slik at innholdsfortegnelsen blir behandlet! +tableofcontents-not-generated = Kjør SILE om igjen slik at innholdsfortegnelsen blir behandlet! # -- Bibliography stuff bibliography-and = og diff --git a/i18n/or.ftl b/i18n/or.ftl index 8133e3e48..50fb816f1 100644 --- a/i18n/or.ftl +++ b/i18n/or.ftl @@ -9,7 +9,7 @@ # proof = # -- TOC-like headers -# tableofcontents = +# tableofcontents-title = # index = # listoffigures = # listoftables = @@ -25,7 +25,7 @@ # page = # see = # see-also = -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/pa.ftl b/i18n/pa.ftl index 8133e3e48..50fb816f1 100644 --- a/i18n/pa.ftl +++ b/i18n/pa.ftl @@ -9,7 +9,7 @@ # proof = # -- TOC-like headers -# tableofcontents = +# tableofcontents-title = # index = # listoffigures = # listoftables = @@ -25,7 +25,7 @@ # page = # see = # see-also = -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/pl.ftl b/i18n/pl.ftl index de2a2151a..e79da3c43 100644 --- a/i18n/pl.ftl +++ b/i18n/pl.ftl @@ -9,7 +9,7 @@ table = Tablica proof = Dowód # -- TOC-like headers -tableofcontents = Spis treści +tableofcontents-title = Spis treści index = Indeks listoffigures = Spis rysunków listoftables = Spis tablic @@ -25,7 +25,7 @@ references = Literatura page = Strona see = Porównaj see-also = Porównaj także -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/pt.ftl b/i18n/pt.ftl index ddcdc859a..e10481167 100644 --- a/i18n/pt.ftl +++ b/i18n/pt.ftl @@ -9,7 +9,7 @@ table = Tabela proof = Demonstração # -- TOC-like headers -tableofcontents = Conteúdo +tableofcontents-title = Conteúdo index = Índice listoffigures = Lista de Figuras listoftables = Lista de Tabelas @@ -25,7 +25,7 @@ references = Referências page = Página see = ver see-also = ver também -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/rm.ftl b/i18n/rm.ftl index 6069612f6..1420d8b38 100644 --- a/i18n/rm.ftl +++ b/i18n/rm.ftl @@ -9,7 +9,7 @@ table = Tabella proof = Demonstraziun # -- TOC-like headers -tableofcontents = Tavla dal cuntegn +tableofcontents-title = Tavla dal cuntegn index = Register da materias listoffigures = Tavla da las figuras listoftables = Tavla da las tabellas @@ -25,7 +25,7 @@ references = Bibliografia page = pagina see = vesair see-also = vesair era -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/ro.ftl b/i18n/ro.ftl index c35f5083b..edb57f512 100644 --- a/i18n/ro.ftl +++ b/i18n/ro.ftl @@ -9,7 +9,7 @@ table = Tabela proof = Demonstraţie # -- TOC-like headers -tableofcontents = Cuprins +tableofcontents-title = Cuprins index = Index listoffigures = Listă de figuri listoftables = Listă de tabele @@ -25,7 +25,7 @@ references = Bibliografie page = Pagina see = vezi see-also = vezi de asemenea -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/ru.ftl b/i18n/ru.ftl index 8a0fc944e..35150416a 100644 --- a/i18n/ru.ftl +++ b/i18n/ru.ftl @@ -9,7 +9,7 @@ table = Таблица proof = Доказательство # -- TOC-like headers -tableofcontents = Содержание +tableofcontents-title = Содержание index = Предметный указатель listoffigures = Список иллюстраций listoftables = Список таблиц @@ -25,7 +25,7 @@ references = Список литературы page = с. see = см. see-also = см. также -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/sa.ftl b/i18n/sa.ftl index 8133e3e48..50fb816f1 100644 --- a/i18n/sa.ftl +++ b/i18n/sa.ftl @@ -9,7 +9,7 @@ # proof = # -- TOC-like headers -# tableofcontents = +# tableofcontents-title = # index = # listoffigures = # listoftables = @@ -25,7 +25,7 @@ # page = # see = # see-also = -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/sk.ftl b/i18n/sk.ftl index c41300d5f..c588a41c0 100644 --- a/i18n/sk.ftl +++ b/i18n/sk.ftl @@ -9,7 +9,7 @@ table = Tabuľka proof = Dôkaz # -- TOC-like headers -tableofcontents = Obsah +tableofcontents-title = Obsah index = Register listoffigures = Zoznam obrázkov listoftables = Zoznam tabuliek @@ -25,7 +25,7 @@ references = Literatúra page = Str. see = viď see-also = viď tiež -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/sl.ftl b/i18n/sl.ftl index 4b0a4bee8..72a4bf8ad 100644 --- a/i18n/sl.ftl +++ b/i18n/sl.ftl @@ -9,7 +9,7 @@ table = Tabela proof = Dokaz # -- TOC-like headers -tableofcontents = Kazalo +tableofcontents-title = Kazalo index = Stvarno kazalo listoffigures = Slike listoftables = Tabele @@ -25,7 +25,7 @@ references = Literatura page = Stran see = glej see-also = glej tudi -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/sr.ftl b/i18n/sr.ftl index 088b84736..ce84b4097 100644 --- a/i18n/sr.ftl +++ b/i18n/sr.ftl @@ -9,7 +9,7 @@ table = Табела proof = Доказ # -- TOC-like headers -tableofcontents = Садржаj +tableofcontents-title = Садржаj index = Индекспоjмова listoffigures = Листаслика listoftables = Листатабела @@ -25,7 +25,7 @@ references = Литература page = страна see = види see-also = видитакође -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/sv.ftl b/i18n/sv.ftl index e0617aed0..cabab79ea 100644 --- a/i18n/sv.ftl +++ b/i18n/sv.ftl @@ -9,7 +9,7 @@ table = Tabell proof = Bevis # -- TOC-like headers -tableofcontents = Innehåll +tableofcontents-title = Innehåll index = Sakregister listoffigures = Figurer listoftables = Tabeller @@ -25,7 +25,7 @@ references = Referenser page = Sida see = se see-also = se även -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/ta.ftl b/i18n/ta.ftl index 0c5cd40b0..5594f24be 100644 --- a/i18n/ta.ftl +++ b/i18n/ta.ftl @@ -9,7 +9,7 @@ table = அட்டவணை # proof = # -- TOC-like headers -tableofcontents = உள்ளே +tableofcontents-title = உள்ளே index = சுட்டி listoffigures = படங்களின் பட்டியல் listoftables = அட்டவணை பட்டியல் @@ -25,7 +25,7 @@ abstract = சாராம்சம் # page = see = பார்க்க # see-also = -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/th.ftl b/i18n/th.ftl index 7064d982d..6034c16e3 100644 --- a/i18n/th.ftl +++ b/i18n/th.ftl @@ -9,7 +9,7 @@ table = ตารางที่ proof = พิสูจน์ # -- TOC-like headers -tableofcontents = สารบัญ +tableofcontents-title = สารบัญ index = ดรรชนี listoffigures = สารบัญรูป listoftables = สารบัญตาราง @@ -25,7 +25,7 @@ references = หนังสืออ้างอิง page = หน้า see = ดู see-also = ดูเพิ่มเติม -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/tk.ftl b/i18n/tk.ftl index 500f6a56b..cc48d0a47 100644 --- a/i18n/tk.ftl +++ b/i18n/tk.ftl @@ -9,7 +9,7 @@ table = Tablisa proof = Delil # -- TOC-like headers -tableofcontents = Mazmuny +tableofcontents-title = Mazmuny index = Indeks listoffigures = Suratlaryň sanawy listoftables = Tablisalaryň sanawy @@ -25,7 +25,7 @@ references = Çeşmeler page = Sahypa see = ser. see-also = şuňa-da ser. -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/tr.ftl b/i18n/tr.ftl index c76252c30..01929770e 100644 --- a/i18n/tr.ftl +++ b/i18n/tr.ftl @@ -9,7 +9,7 @@ table = Tablo proof = Kanıt # -- TOC-like headers -tableofcontents = İçindekiler +tableofcontents-title = İçindekiler index = Dizin listoffigures = Şekil Listesi listoftables = Tablo Listesi @@ -25,7 +25,7 @@ references = Kaynaklar page = Sayfa see = bkz. see-also = ayrıca bkz. -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # Test (only for en and tr) hello = Merhaba { $name }! diff --git a/i18n/ug.ftl b/i18n/ug.ftl index ba6ee855e..7e083d43f 100644 --- a/i18n/ug.ftl +++ b/i18n/ug.ftl @@ -9,7 +9,7 @@ table = جەدۋەل proof = ئىسپات # -- TOC-like headers -tableofcontents = مۇندەرىجە +tableofcontents-title = مۇندەرىجە index = ئىندېكىس listoffigures = رەسىملەر listoftables = جەدۋەللەر @@ -25,7 +25,7 @@ references = پايدىلانما page = بەت see = قاراڭ see-also = ئايرىم قاراڭ -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/uk.ftl b/i18n/uk.ftl index e9dff2255..b5db3ec24 100644 --- a/i18n/uk.ftl +++ b/i18n/uk.ftl @@ -9,7 +9,7 @@ table = Табл. proof = Доведення # -- TOC-like headers -tableofcontents = Зміст +tableofcontents-title = Зміст index = Покажчик listoffigures = Перелік ілюстрацій listoftables = Перелік таблиць @@ -25,7 +25,7 @@ references = Література page = с. see = див. see-also = див. також -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/und.ftl b/i18n/und.ftl index aa66cff44..f5c2d7b78 100644 --- a/i18n/und.ftl +++ b/i18n/und.ftl @@ -10,7 +10,7 @@ # proof = # -- TOC-like headers -# tableofcontents = +# tableofcontents-title = # index = # listoffigures = # listoftables = @@ -26,7 +26,7 @@ # page = # see = # see-also = -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/ur.ftl b/i18n/ur.ftl index a927adc14..103d6e163 100644 --- a/i18n/ur.ftl +++ b/i18n/ur.ftl @@ -9,7 +9,7 @@ table = جدول proof = ثبوت # -- TOC-like headers -tableofcontents = فہرست عنوانات +tableofcontents-title = فہرست عنوانات index = اشاریہ listoffigures = فہرست اشکال listoftables = فہرست جداول @@ -25,7 +25,7 @@ references = حوالہ جات page = صفحہ see = ملاحظہ ہو see-also = ایضاً -toc-not-generated = Rerun SILE to process the table of contents! +tableofcontents-not-generated = Rerun SILE to process the table of contents! # -- Bibliography stuff # bibliography-and = diff --git a/packages/tableofcontents/init.lua b/packages/tableofcontents/init.lua index e05eca699..f82dc0c3b 100644 --- a/packages/tableofcontents/init.lua +++ b/packages/tableofcontents/init.lua @@ -151,12 +151,12 @@ local function registerCommands (class) end) class:registerCommand("tableofcontents:title", function (_, _) - SU.deprecated("\\tableofcontents:title", "\\fluent{tableofcontents}", "0.13.0", "0.14.0") + SU.deprecated("\\tableofcontents:title", "\\fluent{tableofcontents-title}", "0.13.0", "0.14.0") end, "Deprecated") class:registerCommand("tableofcontents:notocmessage", function (_, _) SILE.call("tableofcontents:headerfont", {}, function () - SILE.call("fluent", {}, { "toc-not-generated" }) + SILE.call("fluent", {}, { "tableofcontents-not-generated" }) end) end) From 17d3ce689dfbc77b9136176d8d9b1733ed74ab3b Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sun, 10 Jul 2022 14:46:11 +0200 Subject: [PATCH 04/10] test(i18n): Change i18n busted tests not to depend on "hello" FTL --- spec/languages_spec.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spec/languages_spec.lua b/spec/languages_spec.lua index e4df4505c..5a38826af 100644 --- a/spec/languages_spec.lua +++ b/spec/languages_spec.lua @@ -16,8 +16,8 @@ describe("Language module", function () it("should have localizations", function () fluent:set_locale("no") - local hello = fluent:get_message("hello")({ name = "Busted" }) - assert.is.equal("Hei Busted!", hello) + local msg = SILE.fluent:get_message("chapter-template")({ number = "Busted" }) + assert.is.equal("Kapittel Busted", msg) end) describe("Norwegian Bokmål", function () @@ -31,8 +31,8 @@ describe("Language module", function () end) it("should have localizations", function () - local hello = fluent:get_message("hello")({ name = "Busted" }) - assert.is.equal("Hei Busted!", hello) + local hello = fluent:get_message("chapter-template")({ number = "Busted" }) + assert.is.equal("Kapittel Busted", hello) end) end) @@ -48,8 +48,8 @@ describe("Language module", function () end) it("should have localizations", function () - local hello = fluent:get_message("hello")({ name = "Busted" }) - assert.is.equal("Hei Busted!", hello) + local hello = fluent:get_message("chapter-template")({ number = "Busted" }) + assert.is.equal("Kapittel Busted", hello) end) end) From 23e515b0b5405bcae543525e734991d918073be8 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 19 Jul 2022 22:52:46 +0300 Subject: [PATCH 05/10] chore(i18n): Restore 'hello world' test/example localizations This reverts commit 17d3ce689dfbc77b9136176d8d9b1733ed74ab3b and bits of previous commits. --- i18n/en.ftl | 5 +++-- i18n/eo.ftl | 3 +++ i18n/la.ftl | 3 +++ i18n/no.ftl | 3 +++ i18n/tr.ftl | 5 +++-- i18n/und.ftl | 2 ++ spec/languages_spec.lua | 12 ++++++------ 7 files changed, 23 insertions(+), 10 deletions(-) diff --git a/i18n/en.ftl b/i18n/en.ftl index 648a77e07..e435cefdc 100644 --- a/i18n/en.ftl +++ b/i18n/en.ftl @@ -1,3 +1,6 @@ +# Tests and examples +hello = Hello { $name }! + # -- Usual book sections appendix = Appendix chapter = Chapter @@ -26,8 +29,6 @@ page = Page see = see see-also = see also tableofcontents-not-generated = Rerun SILE to process the table of contents! -# Test (only for en and tr) -hello = Hello { $name }! # -- Bibliography stuff bibliography-and = and diff --git a/i18n/eo.ftl b/i18n/eo.ftl index 863d69dcf..0a62bc895 100644 --- a/i18n/eo.ftl +++ b/i18n/eo.ftl @@ -1,3 +1,6 @@ +# Tests and examples +hello = Saluton { $name }! + # -- Usual book sections appendix = Apendico chapter = Ĉapitro diff --git a/i18n/la.ftl b/i18n/la.ftl index 393e144e2..288cec004 100644 --- a/i18n/la.ftl +++ b/i18n/la.ftl @@ -1,3 +1,6 @@ +# Tests and examples +hello = Salve { $name }! + # -- Usual book sections appendix = Additamentum chapter = Caput diff --git a/i18n/no.ftl b/i18n/no.ftl index 536d46153..be3054471 100644 --- a/i18n/no.ftl +++ b/i18n/no.ftl @@ -1,3 +1,6 @@ +# Tests and examples +hello = Hei { $name }! + # -- Usual book sections appendix = Tillegg chapter = Kapittel diff --git a/i18n/tr.ftl b/i18n/tr.ftl index 01929770e..da8626bac 100644 --- a/i18n/tr.ftl +++ b/i18n/tr.ftl @@ -1,3 +1,6 @@ +# Tests and examples +hello = Merhaba { $name }! + # -- Usual book sections appendix = Ek chapter = Bölüm @@ -26,8 +29,6 @@ page = Sayfa see = bkz. see-also = ayrıca bkz. tableofcontents-not-generated = Rerun SILE to process the table of contents! -# Test (only for en and tr) -hello = Merhaba { $name }! # -- Bibliography stuff # bibliography-and = diff --git a/i18n/und.ftl b/i18n/und.ftl index f5c2d7b78..45870796a 100644 --- a/i18n/und.ftl +++ b/i18n/und.ftl @@ -1,3 +1,5 @@ +# Tests and examples +hello = Namárië { $name }! # -- Usual book sections # appendix = diff --git a/spec/languages_spec.lua b/spec/languages_spec.lua index 5a38826af..e4df4505c 100644 --- a/spec/languages_spec.lua +++ b/spec/languages_spec.lua @@ -16,8 +16,8 @@ describe("Language module", function () it("should have localizations", function () fluent:set_locale("no") - local msg = SILE.fluent:get_message("chapter-template")({ number = "Busted" }) - assert.is.equal("Kapittel Busted", msg) + local hello = fluent:get_message("hello")({ name = "Busted" }) + assert.is.equal("Hei Busted!", hello) end) describe("Norwegian Bokmål", function () @@ -31,8 +31,8 @@ describe("Language module", function () end) it("should have localizations", function () - local hello = fluent:get_message("chapter-template")({ number = "Busted" }) - assert.is.equal("Kapittel Busted", hello) + local hello = fluent:get_message("hello")({ name = "Busted" }) + assert.is.equal("Hei Busted!", hello) end) end) @@ -48,8 +48,8 @@ describe("Language module", function () end) it("should have localizations", function () - local hello = fluent:get_message("chapter-template")({ number = "Busted" }) - assert.is.equal("Kapittel Busted", hello) + local hello = fluent:get_message("hello")({ name = "Busted" }) + assert.is.equal("Hei Busted!", hello) end) end) From cc25d191abfcb00218dba79a72f144856d327562 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 19 Jul 2022 22:47:44 +0300 Subject: [PATCH 06/10] chore(i18n): Drop 'und' localizations We *want* to fail with an error if localized strings are requested for non-languages, so providing generic English stand-ins seems like a counter-productive move. Additionally for anybody starting a new localization it would be better to start with a language similar to their target because implementation details might differ. With simple key/value lookups it might seem like any language could be a template for any other, but Fluent is much more flexible than that. --- i18n/und.ftl | 40 ---------------------------------------- 1 file changed, 40 deletions(-) diff --git a/i18n/und.ftl b/i18n/und.ftl index 45870796a..526e218f3 100644 --- a/i18n/und.ftl +++ b/i18n/und.ftl @@ -1,42 +1,2 @@ # Tests and examples hello = Namárië { $name }! - -# -- Usual book sections -# appendix = -# chapter = -# part = - -# -- Other captions -# figure = -# table = -# proof = - -# -- TOC-like headers -# tableofcontents-title = -# index = -# listoffigures = -# listoftables = - -# -- Other usual headers -# abstract = -# bibliography = -# glossary = -# preface = -# references = - -# -- Miscellaneous -# page = -# see = -# see-also = -tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = -bibliography-edited-by = { $name } -bibliography-et-al = et al. -bibliography-translated-by = { $name } - -# -- Assembling rules -appendix-template = { $number } -chapter-template = { $number } -part-template = { $number } From 71cd3f9cb5d70576be5cf9d45c55787751b98df9 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Sat, 30 Jul 2022 16:00:32 +0300 Subject: [PATCH 07/10] chore(i18n): Drop comments in FTL sources While lovingly hand crafted, they don't reflect the structure of how we're doing to use keys as a namespace and they are getting in the way of automatically reprocessing these files. Also we don't really want to include commented keys for untranslated terms because that is one more thing to maintain and get out of sync without necessarily providing a benefit. We want people to reference similar languages when translating. ```console sed -i -e '/^#/d' *.ftl sed -i -e '/^$/d' *.ftl ``` --- i18n/af.ftl | 15 --------------- i18n/am.ftl | 15 --------------- i18n/ar.ftl | 14 -------------- i18n/as.ftl | 14 -------------- i18n/bg.ftl | 14 -------------- i18n/bn.ftl | 14 -------------- i18n/bo.ftl | 19 ------------------- i18n/ca.ftl | 14 -------------- i18n/cs.ftl | 14 -------------- i18n/cy.ftl | 11 ----------- i18n/da.ftl | 14 -------------- i18n/de.ftl | 14 -------------- i18n/el-monoton.ftl | 14 -------------- i18n/el-polyton.ftl | 14 -------------- i18n/el.ftl | 14 -------------- i18n/en.ftl | 17 ----------------- i18n/eo.ftl | 18 ------------------ i18n/es.ftl | 14 -------------- i18n/et.ftl | 14 -------------- i18n/eu.ftl | 14 -------------- i18n/fi.ftl | 14 -------------- i18n/fr.ftl | 12 ------------ i18n/ga.ftl | 14 -------------- i18n/gu.ftl | 32 -------------------------------- i18n/hi.ftl | 14 -------------- i18n/hr.ftl | 14 -------------- i18n/hu.ftl | 17 ----------------- i18n/hy.ftl | 14 -------------- i18n/id.ftl | 14 -------------- i18n/is.ftl | 14 -------------- i18n/it.ftl | 14 -------------- i18n/ja.ftl | 20 -------------------- i18n/jv.ftl | 32 -------------------------------- i18n/ka.ftl | 14 -------------- i18n/kn.ftl | 15 --------------- i18n/la.ftl | 15 --------------- i18n/lt.ftl | 14 -------------- i18n/lv.ftl | 16 ---------------- i18n/ml.ftl | 20 -------------------- i18n/mr.ftl | 14 -------------- i18n/my.ftl | 32 -------------------------------- i18n/nb.ftl | 13 ------------- i18n/nl.ftl | 14 -------------- i18n/nn.ftl | 14 -------------- i18n/no.ftl | 15 --------------- i18n/or.ftl | 32 -------------------------------- i18n/pa.ftl | 32 -------------------------------- i18n/pl.ftl | 14 -------------- i18n/pt.ftl | 14 -------------- i18n/rm.ftl | 14 -------------- i18n/ro.ftl | 14 -------------- i18n/ru.ftl | 14 -------------- i18n/sa.ftl | 32 -------------------------------- i18n/sk.ftl | 14 -------------- i18n/sl.ftl | 14 -------------- i18n/sr.ftl | 14 -------------- i18n/sv.ftl | 14 -------------- i18n/ta.ftl | 21 --------------------- i18n/th.ftl | 15 --------------- i18n/tk.ftl | 14 -------------- i18n/tr.ftl | 16 ---------------- i18n/ug.ftl | 15 --------------- i18n/uk.ftl | 14 -------------- i18n/und.ftl | 1 - i18n/ur.ftl | 14 -------------- 65 files changed, 1044 deletions(-) diff --git a/i18n/af.ftl b/i18n/af.ftl index 69e729e6e..535c98eae 100644 --- a/i18n/af.ftl +++ b/i18n/af.ftl @@ -1,39 +1,24 @@ -# -- Usual book sections appendix = Bylae chapter = Hoofstuk part = Deel - -# -- Other captions figure = Figuur table = Tabel proof = Bewys - -# -- TOC-like headers tableofcontents-title = Inhoudsopgawe index = Inhoud listoffigures = Lys van figure listoftables = Lys van tabelle - -# -- Other usual headers abstract = Samevatting bibliography = Bibliografie -# glossary = preface = Voorwoord references = Verwysings - -# -- Miscellaneous page = Bladsy see = sien see-also = sien ook tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/am.ftl b/i18n/am.ftl index 89227815d..c36f58fea 100644 --- a/i18n/am.ftl +++ b/i18n/am.ftl @@ -1,39 +1,24 @@ -# -- Usual book sections appendix = መድበል chapter = ክፍል part = ንዑስ ክፍል - -# -- Other captions figure = ሥዕል table = ሰንጠረዥ proof = ማረጋገጫ - -# -- TOC-like headers tableofcontents-title = ይዘት index = ምህጻር ቃል listoffigures = የሥዕችሎ ማውጫ listoftables = የሰንጠዥረ ማውጫ - -# -- Other usual headers abstract = አኅጽተሮ ጽሁፍ bibliography = ቢዋ መጽሃፍት -# glossary = preface = መቅድም references = የነሥ ጹሁፍ ምንጭ - -# -- Miscellaneous page = ገጽ see = ይመልከቱ see-also = ይህምን ይመልከቱ tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/ar.ftl b/i18n/ar.ftl index 764d9d8d5..7f549e120 100644 --- a/i18n/ar.ftl +++ b/i18n/ar.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = الملاحق chapter = باب part = القسم - -# -- Other captions figure = شكل table = جدول proof = برهان - -# -- TOC-like headers tableofcontents-title = المحتويات index = الفهرس listoffigures = قائمة الأشكال listoftables = قائمة الجداول - -# -- Other usual headers abstract = ملخص bibliography = المصادر glossary = قاموس preface = مدخل references = المراجع - -# -- Miscellaneous page = صفحة see = راجع see-also = راجع أيضًا tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/as.ftl b/i18n/as.ftl index 8c39039a8..f82a539f0 100644 --- a/i18n/as.ftl +++ b/i18n/as.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = পৰিশিষ্ট chapter = অধ্যায় part = অংশ - -# -- Other captions figure = চিত্ৰ table = তালিকা proof = প্ৰমাণ - -# -- TOC-like headers tableofcontents-title = সমল index = বিষয়সূচী listoffigures = চিত্ৰসূচী listoftables = তালিকাসূচী - -# -- Other usual headers abstract = মূলভাৱ bibliography = তথ্যসূত্ৰ glossary = অৰ্থকোষ preface = পাতনি references = প্ৰসংগ - -# -- Miscellaneous page = পৃষ্ঠা see = চাওক see-also = ও tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/bg.ftl b/i18n/bg.ftl index efbf26f6f..10ddc1a51 100644 --- a/i18n/bg.ftl +++ b/i18n/bg.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Приложение chapter = Глава part = Част - -# -- Other captions figure = Фигура table = Таблица proof = Доказателство - -# -- TOC-like headers tableofcontents-title = Съдържание index = Азбучен указател listoffigures = Списък на фигурите listoftables = Списък на таблиците - -# -- Other usual headers abstract = Абстракт bibliography = Библиография glossary = Притурка preface = Предговор references = Литература - -# -- Miscellaneous page = Стр. see = вж. see-also = вж. също и tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/bn.ftl b/i18n/bn.ftl index 25653ee2e..48314e25e 100644 --- a/i18n/bn.ftl +++ b/i18n/bn.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = পরিশিষ্ট chapter = অধ্যায় part = খন্ড - -# -- Other captions figure = ছবি/নকশা table = সারনী proof = প্রমাণ - -# -- TOC-like headers tableofcontents-title = সূচীপত্র index = সূচক/নির্দেশক listoffigures = ছবি/নকশা সমূহের তালিকা listoftables = তালিকাসারণী - -# -- Other usual headers abstract = সারসংক্ষেপ bibliography = তথ্যবিবরণ glossary = পরিভাষার শব্দসম্ভার preface = পূর্বকথা references = তথ্যসুত্রসমূহ - -# -- Miscellaneous page = পৃষ্ঠা see = দেখুন see-also = আরও দেখুন tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/bo.ftl b/i18n/bo.ftl index c191bd63d..5804b7e0b 100644 --- a/i18n/bo.ftl +++ b/i18n/bo.ftl @@ -1,39 +1,20 @@ -# -- Usual book sections appendix = ཞར་བྱུང་། chapter = ལེའུ་ part = ཆ་ཤས་ - -# -- Other captions figure = པར་རིས་ table = རེའུ་མིག་ proof = བདེན་དཔང་། - -# -- TOC-like headers tableofcontents-title = དཀར་ཆག། index = གསུལ་བྱང་། -# listoffigures = -# listoftables = - -# -- Other usual headers abstract = གནད་བསྡུས། bibliography = དཔེ་ཆའི་ཐོ་གཞུང་། glossary = མིང་ཚིག་རེའུ་མིག། preface = དཔེ་དེབ་ཀྱི་གླེང་བརྗོད། -# references = - -# -- Miscellaneous page = ཤོག་ -# see = -# see-also = tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/ca.ftl b/i18n/ca.ftl index 12ad28df6..642ec4c70 100644 --- a/i18n/ca.ftl +++ b/i18n/ca.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Apèndix chapter = Capítol part = Part - -# -- Other captions figure = Figura table = Taula proof = Demostració - -# -- TOC-like headers tableofcontents-title = Índex index = Índex alfabètic listoffigures = Índex de figures listoftables = Índex de taules - -# -- Other usual headers abstract = Resum bibliography = Bibliografia glossary = Glossari preface = Pròleg references = Referències - -# -- Miscellaneous page = Pàgina see = Vegeu see-also = Vegeu també tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/cs.ftl b/i18n/cs.ftl index aeda3eccb..3bffe2f07 100644 --- a/i18n/cs.ftl +++ b/i18n/cs.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Příloha chapter = Kapitola part = Část - -# -- Other captions figure = Obrázek table = Tabulka proof = Důkaz - -# -- TOC-like headers tableofcontents-title = Obsah index = Rejstřík listoffigures = Seznam obrázků listoftables = Seznam tabulek - -# -- Other usual headers abstract = Abstrakt bibliography = Literatura glossary = Slovník preface = Předmluva references = Reference - -# -- Miscellaneous page = Strana see = viz see-also = viz také tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/cy.ftl b/i18n/cy.ftl index ba5c5c8ed..8dd67f0e6 100644 --- a/i18n/cy.ftl +++ b/i18n/cy.ftl @@ -1,33 +1,22 @@ -# -- Usual book sections appendix = Atodiad chapter = Pennod part = Rhan - -# -- Other captions figure = Darlun table = Taflen proof = Prawf - -# -- TOC-like headers tableofcontents-title = Cynnwys index = Mynegai listoffigures = Rhestr Ddarluniau listoftables = Rhestr Dablau - -# -- Other usual headers abstract = Crynodeb bibliography = Llyfryddiaeth glossary = Rhestr termau preface = Rhagair references = Cyfeiriadau - -# -- Miscellaneous page = tudalen see = gweler see-also = gweler hefyd tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/da.ftl b/i18n/da.ftl index d63292f32..ede4fafcf 100644 --- a/i18n/da.ftl +++ b/i18n/da.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Bilag chapter = Kapitel part = Del - -# -- Other captions figure = Figur table = Tabel proof = Bevis - -# -- TOC-like headers tableofcontents-title = Indhold index = Indeks listoffigures = Figurer listoftables = Tabeller - -# -- Other usual headers abstract = Resumé bibliography = Litteratur glossary = Gloseliste preface = Forord references = Litteratur - -# -- Miscellaneous page = Side see = Se see-also = Se også tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/de.ftl b/i18n/de.ftl index 2e350b024..54f1b16e9 100644 --- a/i18n/de.ftl +++ b/i18n/de.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Anhang chapter = Kapitel part = Teil - -# -- Other captions figure = Abbildung table = Tabelle proof = Beweis - -# -- TOC-like headers tableofcontents-title = Inhaltsverzeichnis index = Index listoffigures = Abbildungsverzeichnis listoftables = Tabellenverzeichnis - -# -- Other usual headers abstract = Zusammenfassung bibliography = Literaturverzeichnis glossary = Glossar preface = Vorwort references = Literatur - -# -- Miscellaneous page = Seite see = siehe see-also = siehe auch tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/el-monoton.ftl b/i18n/el-monoton.ftl index fd43d839a..826dc5ba3 100644 --- a/i18n/el-monoton.ftl +++ b/i18n/el-monoton.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Παράρτημα chapter = Κεφάλαιο part = Μέρος - -# -- Other captions figure = Σχήμα table = Πίνακας proof = Απόδειξη - -# -- TOC-like headers tableofcontents-title = Περιεχόμενα index = Ευρετήριο listoffigures = Κατάλογος Σχημάτων listoftables = Κατάλογος Πινάκων - -# -- Other usual headers abstract = Περίληψη bibliography = Βιβλιογραφία glossary = Γλωσσάρι preface = Πρόλογος references = Αναφορές - -# -- Miscellaneous page = Σελίδα see = βλέπε see-also = βλέπε επίσης tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/el-polyton.ftl b/i18n/el-polyton.ftl index f2da4efa6..6e367d488 100644 --- a/i18n/el-polyton.ftl +++ b/i18n/el-polyton.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Παράρτημα chapter = Κεφάλαιο part = Μέρος - -# -- Other captions figure = Σχῆμα table = Πίνακας proof = Ἀπόδειξη - -# -- TOC-like headers tableofcontents-title = Περιεχόμενα index = Εὑρετήριο listoffigures = Κατάλογος Σχημάτων listoftables = Κατάλογος Πινάκων - -# -- Other usual headers abstract = Περίληψη bibliography = Βιβλιογραφία glossary = Γλωσσάρι preface = Πρόλογος references = Ἀναφορές - -# -- Miscellaneous page = Σελίδα see = βλέπε see-also = βλέπε ἐπίσης tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/el.ftl b/i18n/el.ftl index fd43d839a..826dc5ba3 100644 --- a/i18n/el.ftl +++ b/i18n/el.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Παράρτημα chapter = Κεφάλαιο part = Μέρος - -# -- Other captions figure = Σχήμα table = Πίνακας proof = Απόδειξη - -# -- TOC-like headers tableofcontents-title = Περιεχόμενα index = Ευρετήριο listoffigures = Κατάλογος Σχημάτων listoftables = Κατάλογος Πινάκων - -# -- Other usual headers abstract = Περίληψη bibliography = Βιβλιογραφία glossary = Γλωσσάρι preface = Πρόλογος references = Αναφορές - -# -- Miscellaneous page = Σελίδα see = βλέπε see-also = βλέπε επίσης tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/en.ftl b/i18n/en.ftl index e435cefdc..171b8d52e 100644 --- a/i18n/en.ftl +++ b/i18n/en.ftl @@ -1,46 +1,29 @@ -# Tests and examples hello = Hello { $name }! - -# -- Usual book sections appendix = Appendix chapter = Chapter part = Part - -# -- Other captions figure = Figure table = Table proof = Proof - -# -- TOC-like headers tableofcontents-title = Table of Contents index = Index listoffigures = List of Figures listoftables = List of Tables - -# -- Other usual headers abstract = Abstract bibliography = Bibliography glossary = Glossary preface = Preface references = References - -# -- Miscellaneous page = Page see = see see-also = see also tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff bibliography-and = and bibliography-edited-by = Edited by { $name } bibliography-et-al = et al. bibliography-translated-by = Translated by { $name } - -# -- Assembling rules chapter-template = { chapter } { $number } part-template = { part } { $number } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/eo.ftl b/i18n/eo.ftl index 0a62bc895..292d1c453 100644 --- a/i18n/eo.ftl +++ b/i18n/eo.ftl @@ -1,48 +1,30 @@ -# Tests and examples hello = Saluton { $name }! - -# -- Usual book sections appendix = Apendico chapter = Ĉapitro part = Parto - -# -- Other captions figure = Figuro table = Tabelo proof = Pruvo - -# -- TOC-like headers tableofcontents-title = Enhavoj index = Indekso listoffigures = Listo de figuroj listoftables = Listo de tabeloj - -# -- Other usual headers abstract = Resumo bibliography = Bibliografio glossary = Glosaro preface = Antaŭparolo references = Citaĵoj - -# -- Miscellaneous page = Paĝo see = vidu see-also = vidu ankaŭ tableofcontents-not-generated = Reruli na SILE por trakti la enhavan tabelon! - -# -- Bibliography stuff bibliography-and = kaj bibliography-edited-by = Redaktita por { $name } bibliography-et-al = kaj aliaj bibliography-translated-by = Tradukita por { $name } - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/es.ftl b/i18n/es.ftl index b12a0149c..a088901f6 100644 --- a/i18n/es.ftl +++ b/i18n/es.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Apéndice chapter = Capítulo part = Parte - -# -- Other captions figure = Figura table = Cuadro proof = Demostración - -# -- TOC-like headers tableofcontents-title = Índice index = Índice alfabético listoffigures = Índice de figuras listoftables = Índice de cuadros - -# -- Other usual headers abstract = Resumen bibliography = Bibliografía glossary = Glosario preface = Prefacio references = Referencias - -# -- Miscellaneous page = página see = véase see-also = véase también tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/et.ftl b/i18n/et.ftl index eabb4257d..f864d2b10 100644 --- a/i18n/et.ftl +++ b/i18n/et.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Lisa chapter = Peatükk part = Osa - -# -- Other captions figure = Joonis table = Tabel proof = Tõestus - -# -- TOC-like headers tableofcontents-title = Sisukord index = Indeks listoffigures = Joonised listoftables = Tabelid - -# -- Other usual headers abstract = Kokkuvõte bibliography = Kirjandus glossary = Sõnastik preface = Sissejuhatus references = Viited - -# -- Miscellaneous page = Lk. see = vt. see-also = vt. ka tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/eu.ftl b/i18n/eu.ftl index 49af05a68..35d0284ec 100644 --- a/i18n/eu.ftl +++ b/i18n/eu.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Eranskina chapter = Kapitulua part = Atala - -# -- Other captions figure = Irudia table = Taula proof = Frogapena - -# -- TOC-like headers tableofcontents-title = Gaien Aurkibidea index = Kontzeptuen Aurkibidea listoffigures = Irudien Zerrenda listoftables = Taulen Zerrenda - -# -- Other usual headers abstract = Laburpena bibliography = Bibliografia glossary = Glosarioa preface = Hitzaurrea references = Erreferentziak - -# -- Miscellaneous page = Orria see = Ikusi see-also = Ikusi, halaber tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { $number }. { appendix } chapter-template = { $number }. { chapter } part-template = { $number }. { chapter } diff --git a/i18n/fi.ftl b/i18n/fi.ftl index da6191197..41bb9dfb5 100644 --- a/i18n/fi.ftl +++ b/i18n/fi.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Liite chapter = Luku part = Osa - -# -- Other captions figure = Kuva table = Taulukko proof = Todistus - -# -- TOC-like headers tableofcontents-title = Sisällys index = Hakemisto listoffigures = Kuvat listoftables = Taulukot - -# -- Other usual headers abstract = Tiivistelmä bibliography = Kirjallisuutta glossary = Sanasto preface = Esipuhe references = Viitteet - -# -- Miscellaneous page = Sivu see = katso see-also = katso myös tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/fr.ftl b/i18n/fr.ftl index 80ea659a1..37f7fe50a 100644 --- a/i18n/fr.ftl +++ b/i18n/fr.ftl @@ -1,39 +1,27 @@ -# -- Usual book sections appendix = Annexe chapter = Chapitre part = Partie - -# -- Other captions figure = Figure table = Table proof = Démonstration - -# -- TOC-like headers tableofcontents-title = Table des matières index = Index listoffigures = Table des figures listoftables = Liste des tableaux - -# -- Other usual headers abstract = Résumé bibliography = Bibliographie glossary = Glossaire preface = Préface references = Références - -# -- Miscellaneous page = page see = voir see-also = voir aussi tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff bibliography-and = et bibliography-edited-by = Édité par { $name } bibliography-et-al = et al. bibliography-translated-by = Traduit par { $name } -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/ga.ftl b/i18n/ga.ftl index c409933de..d02780ced 100644 --- a/i18n/ga.ftl +++ b/i18n/ga.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Aguisín chapter = Caibidil part = Cuid - -# -- Other captions figure = Léaráid table = Tábla proof = Cruthúnas - -# -- TOC-like headers tableofcontents-title = Clár Ábhair index = Innéacs listoffigures = Léaráidí listoftables = Táblaí - -# -- Other usual headers abstract = Achoimre bibliography = Leabharliosta glossary = Glossary preface = Réamhrá references = Tagairtí - -# -- Miscellaneous page = Leathanach see = féach see-also = féach freisin tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/gu.ftl b/i18n/gu.ftl index 50fb816f1..4f2ecfad4 100644 --- a/i18n/gu.ftl +++ b/i18n/gu.ftl @@ -1,39 +1,7 @@ -# -- Usual book sections -# appendix = -# chapter = -# part = - -# -- Other captions -# figure = -# table = -# proof = - -# -- TOC-like headers -# tableofcontents-title = -# index = -# listoffigures = -# listoftables = - -# -- Other usual headers -# abstract = -# bibliography = -# glossary = -# preface = -# references = - -# -- Miscellaneous -# page = -# see = -# see-also = tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { $number } chapter-template = { $number } part-template = { $number } diff --git a/i18n/hi.ftl b/i18n/hi.ftl index f5e52990f..696e85957 100644 --- a/i18n/hi.ftl +++ b/i18n/hi.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = परिशिष्ट chapter = अध्याय part = खण्ड - -# -- Other captions figure = चित्र table = तालिका proof = प्रमाण - -# -- TOC-like headers tableofcontents-title = अनुक्रम index = सूची listoffigures = चित्रों की सूची listoftables = तालिकाओं की सूची - -# -- Other usual headers abstract = सारांश bibliography = संदर्भ-ग्रन्थ glossary = शब्दार्थ सूची preface = प्रस्तावना references = हवाले - -# -- Miscellaneous page = पृष्ठ see = देखिए see-also = और देखिए tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/hr.ftl b/i18n/hr.ftl index 32b25d0ca..c01c36b93 100644 --- a/i18n/hr.ftl +++ b/i18n/hr.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Dodatak chapter = Poglavlje part = Dio - -# -- Other captions figure = Slika table = Tablica proof = Dokaz - -# -- TOC-like headers tableofcontents-title = Sadržaj index = Kazalo listoffigures = Popis slika listoftables = Popis tablica - -# -- Other usual headers abstract = Sažetak bibliography = Bibliografija glossary = Pojmovnik preface = Predgovor references = Literatura - -# -- Miscellaneous page = Stranica see = Vidjeti see-also = Također vidjeti tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/hu.ftl b/i18n/hu.ftl index a71bdc29e..6fd0b5283 100644 --- a/i18n/hu.ftl +++ b/i18n/hu.ftl @@ -1,42 +1,25 @@ -# -- Usual book sections appendix = függelék chapter = fejezet part = rész - -# -- Other captions figure = ábra table = táblázat proof = Bizonyítás - -# -- TOC-like headers tableofcontents-title = Tartalomjegyzék index = Tárgymutató listoffigures = Ábrák jegyzéke listoftables = Táblázatok jegyzéke - -# -- Other usual headers abstract = Kivonat bibliography = Irodalomjegyzék glossary = Szójegyzék preface = Előszó references = Hivatkozások - -# -- Miscellaneous page = oldal see = lásd see-also = lásd még tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { $number }. { appendix } chapter-template = { $number }. { chapter } part-template = { $number }. { part } - - - diff --git a/i18n/hy.ftl b/i18n/hy.ftl index fad4f9c60..98dbacf06 100644 --- a/i18n/hy.ftl +++ b/i18n/hy.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Հավելված chapter = Գլուխ part = Մաս - -# -- Other captions figure = Նկար table = Աղյուսակ proof = Ապացույց - -# -- TOC-like headers tableofcontents-title = Բովանդակություն index = Առարկայական ցանկ listoffigures = Նկարների ցանկ listoftables = Աղյուսակների ցանկ - -# -- Other usual headers abstract = Սեղմագիր bibliography = Գրականություն glossary = Տերմինների ցանկ preface = Նախաբան references = Հղումներ - -# -- Miscellaneous page = էջ see = տե՛ս see-also = տե՛ս նաև tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/id.ftl b/i18n/id.ftl index da2b5e333..0e71ef503 100644 --- a/i18n/id.ftl +++ b/i18n/id.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Lampiran chapter = Bab part = Bagian - -# -- Other captions figure = Gambar table = Tabel proof = Bukti - -# -- TOC-like headers tableofcontents-title = Daftar Isi index = Indeks listoffigures = Daftar Gambar listoftables = Daftar Tabel - -# -- Other usual headers abstract = Ringkasan bibliography = Bibliografi glossary = Daftar Istilah preface = Pendahuluan references = Pustaka - -# -- Miscellaneous page = Halaman see = lihat see-also = lihat juga tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/is.ftl b/i18n/is.ftl index bd01c7bbf..ebb9d0f1b 100644 --- a/i18n/is.ftl +++ b/i18n/is.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Viðauki chapter = Kafli part = Hluti - -# -- Other captions figure = Mynd table = Tafla proof = Sönnun - -# -- TOC-like headers tableofcontents-title = Efnisyfirlit index = Atriðisorðaskrá listoffigures = Myndaskrá listoftables = Töfluskrá - -# -- Other usual headers abstract = Útdráttur bibliography = Heimildir glossary = Orðalisti preface = Formáli references = Heimildir - -# -- Miscellaneous page = Blaðsíða see = Sjá see-also = Sjá einnig tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/it.ftl b/i18n/it.ftl index 902a21e3b..abd387ab6 100644 --- a/i18n/it.ftl +++ b/i18n/it.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Appendice chapter = Capitolo part = Parte - -# -- Other captions figure = Figura table = Tabella proof = Dimostrazione - -# -- TOC-like headers tableofcontents-title = Indice index = Indice analitico listoffigures = Elenco delle figure listoftables = Elenco delle tabelle - -# -- Other usual headers abstract = Sommario bibliography = Bibliografia glossary = Glossario preface = Prefazione references = Riferimenti bibliografici - -# -- Miscellaneous page = Pag. see = vedi see-also = vedi anche tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/ja.ftl b/i18n/ja.ftl index cb8fbd1a4..412dd0c94 100644 --- a/i18n/ja.ftl +++ b/i18n/ja.ftl @@ -1,44 +1,24 @@ -# some translations are likely tentative - -# -- Usual book sections appendix = 付録 prechapter = 第 postchapter = 章 prepart = 第 postpart = 部 - -# -- Other captions figure = 図 table = 表 proof = 証明 - -# -- TOC-like headers tableofcontents-title = 目次 index = 索引 listoffigures = 図目次 listoftables = 表目次 - -# -- Other usual headers abstract = 概要 bibliography = 参考文献 glossary = 用語集 preface = 前書き references = 参考文献 - -# -- Miscellaneous -# page = -# see = -# see-also = tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } -# N.B. Contain thin nonbreaking space (U+202F) around the number chapter-template = { prechapter } { $number } { postchapter } part-template = { prepart } { $number } { postpart } diff --git a/i18n/jv.ftl b/i18n/jv.ftl index 50fb816f1..4f2ecfad4 100644 --- a/i18n/jv.ftl +++ b/i18n/jv.ftl @@ -1,39 +1,7 @@ -# -- Usual book sections -# appendix = -# chapter = -# part = - -# -- Other captions -# figure = -# table = -# proof = - -# -- TOC-like headers -# tableofcontents-title = -# index = -# listoffigures = -# listoftables = - -# -- Other usual headers -# abstract = -# bibliography = -# glossary = -# preface = -# references = - -# -- Miscellaneous -# page = -# see = -# see-also = tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { $number } chapter-template = { $number } part-template = { $number } diff --git a/i18n/ka.ftl b/i18n/ka.ftl index 75c518c1e..53dfb7764 100644 --- a/i18n/ka.ftl +++ b/i18n/ka.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = დანართი chapter = თავი part = ნაწილი - -# -- Other captions figure = სურ. table = ცხრ. proof = დამტკიცება - -# -- TOC-like headers tableofcontents-title = შინაარსი index = საძიებელი listoffigures = სურათი listoftables = ცხრილი - -# -- Other usual headers abstract = ანოტაცია bibliography = ლიტერატურა glossary = ტერმინები preface = წინასიტყვაობა references = ლიტერატურა - -# -- Miscellaneous page = გვ. see = იხ. see-also = იხ. ასევე tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/kn.ftl b/i18n/kn.ftl index 585b7cea9..9545cfcf0 100644 --- a/i18n/kn.ftl +++ b/i18n/kn.ftl @@ -1,39 +1,24 @@ -# -- Usual book sections appendix = ಅನುಬಂಧ chapter = ಅಧ್ಯಾಯ part = ಭಾಗ - -# -- Other captions figure = ಚಿತ್ರ table = ಕೋಷ್ಟಕ proof = ಕರಡುಪ್ರತಿ - -# -- TOC-like headers tableofcontents-title = ವಿಷಯಗಳು index = ಸೂಚಿ listoffigures = ಚಿತ್ರಗಳ ಪಟ್ಟಿ listoftables = ಕೋಷ್ಟಕಗಳ ಪಟ್ಟಿ - -# -- Other usual headers abstract = ಸಾರಾಂಶ bibliography = ಗ್ರಂಥಸೂಚಿ -# glossary = preface = ಮುನ್ನುಡಿ references = ಉಲ್ಲೇಖಗಳು - -# -- Miscellaneous page = ಪುಟ see = ನೋಡು see-also = ಇದನ್ನೂ ಸಹ ನೋಡು tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/la.ftl b/i18n/la.ftl index 288cec004..1b47b041c 100644 --- a/i18n/la.ftl +++ b/i18n/la.ftl @@ -1,42 +1,27 @@ -# Tests and examples hello = Salve { $name }! - -# -- Usual book sections appendix = Additamentum chapter = Caput part = Pars - -# -- Other captions figure = Descriptio table = Tabula proof = Demonstratio - -# -- TOC-like headers tableofcontents-title = Tabula contentorum index = Index rerum notabilium listoffigures = Conspectus descriptionum listoftables = Conspectus tabularum - -# -- Other usual headers abstract = Summarium bibliography = Conspectus librorum glossary = Glossarium preface = Praefatio references = Conspectus librorum - -# -- Miscellaneous page = charta see = cfr. see-also = cfr. tableofcontents-not-generated = Curre SILE iterum ad mensam contentorum computetur! - -# -- Bibliography stuff bibliography-and = et bibliography-edited-by = Conpositor erat { $name } bibliography-et-al = et al. bibliography-translated-by = Interpres fuit { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/lt.ftl b/i18n/lt.ftl index d5f75e455..58f12f51f 100644 --- a/i18n/lt.ftl +++ b/i18n/lt.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = priedas chapter = skyrius part = dalis - -# -- Other captions figure = pav. table = lentelė proof = Įrodymas - -# -- TOC-like headers tableofcontents-title = Turinys listoffigures = Iliustracijų sąrašas listoftables = Lentelių sąrašas - -# -- Other usual headers abstract = Santrauka bibliography = Literatūra glossary = Glosarijus index = Rodyklė preface = Pratarmė references = Literatūra - -# -- Miscellaneous page = puslapis see = žiūrėk see-also = taip pat tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { $number } { appendix } chapter-template = { $number } { chapter } part-template = { $number } { part } diff --git a/i18n/lv.ftl b/i18n/lv.ftl index 138597d0b..ed4a1b859 100644 --- a/i18n/lv.ftl +++ b/i18n/lv.ftl @@ -1,39 +1,23 @@ -# -- Usual book sections appendix = Pielikums chapter = Nodaļa part = Daļa - -# -- Other captions figure = Zīm. table = Tabula -# proof = - -# -- TOC-like headers tableofcontents-title = Saturs listoffigures = Attēlu rādītājs listoftables = Tabulu rādītājs - -# -- Other usual headers abstract = Anotācija bibliography = Bibliogrāfija -# glossary = index = Priekšmetu rādītājs preface = Priekšvārds references = Literatūra - -# -- Miscellaneous page = lpp. see = skat. see-also = skat. arī tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/ml.ftl b/i18n/ml.ftl index 8508bb931..85a5d9d5a 100644 --- a/i18n/ml.ftl +++ b/i18n/ml.ftl @@ -1,39 +1,19 @@ -# -- Usual book sections appendix = ശിഷ്ടം chapter = അദ്ധ്യായം part = ഭാഗം - -# -- Other captions figure = ചിത്രം table = പട്ടിക -# proof = - -# -- TOC-like headers tableofcontents-title = ഉള്ളടക്കം listoffigures = ചിത്രസൂചിക listoftables = പട്ടികകളുടെ സൂചിക - -# -- Other usual headers bstract = സാരാംശം -# bibliography = glossary = -# index = സൂചിക -# preface = -# references = - -# -- Miscellaneous -# page = see = കാണുക see-also = ഇതും കാണുക tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/mr.ftl b/i18n/mr.ftl index 3c2689dcb..386d37a8f 100644 --- a/i18n/mr.ftl +++ b/i18n/mr.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = परिशिष्ट chapter = प्रकरण part = खंड - -# -- Other captions figure = आकृती table = कोष्टक proof = सिद्धता - -# -- TOC-like headers tableofcontents-title = अनुक्रमणिका listoffigures = आकृत्यांची सूची listoftables = कोष्टकसूची - -# -- Other usual headers abstract = सारांश bibliography = संदर्भसूची glossary = संज्ञासूची index = सूची preface = प्रस्तावना references = संदर्भ - -# -- Miscellaneous page = पृष्ठ see = पाहा see-also = हेदेखील पाहा tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/my.ftl b/i18n/my.ftl index 50fb816f1..4f2ecfad4 100644 --- a/i18n/my.ftl +++ b/i18n/my.ftl @@ -1,39 +1,7 @@ -# -- Usual book sections -# appendix = -# chapter = -# part = - -# -- Other captions -# figure = -# table = -# proof = - -# -- TOC-like headers -# tableofcontents-title = -# index = -# listoffigures = -# listoftables = - -# -- Other usual headers -# abstract = -# bibliography = -# glossary = -# preface = -# references = - -# -- Miscellaneous -# page = -# see = -# see-also = tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { $number } chapter-template = { $number } part-template = { $number } diff --git a/i18n/nb.ftl b/i18n/nb.ftl index 536d46153..a88e8185c 100644 --- a/i18n/nb.ftl +++ b/i18n/nb.ftl @@ -1,39 +1,26 @@ -# -- Usual book sections appendix = Tillegg chapter = Kapittel part = Del - -# -- Other captions figure = Figur table = Tabell proof = Bevis - -# -- TOC-like headers tableofcontents-title = Innhold index = Register listoffigures = Figurer listoftables = Tabeller - -# -- Other usual headers abstract = Sammendrag bibliography = Bibliografi glossary = Ordliste preface = Forord references = Referanser - -# -- Miscellaneous page = Side see = Se see-also = Se også tableofcontents-not-generated = Kjør SILE om igjen slik at innholdsfortegnelsen blir behandlet! - -# -- Bibliography stuff bibliography-and = og bibliography-edited-by = Redigert av { $name } bibliography-et-al = et al. bibliography-translated-by = Oversatt av { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/nl.ftl b/i18n/nl.ftl index d3c7e1adc..f8c1b7cc2 100644 --- a/i18n/nl.ftl +++ b/i18n/nl.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Bijlage chapter = Hoofdstuk part = Deel - -# -- Other captions figure = Figuur table = Tabel proof = Bewijs - -# -- TOC-like headers tableofcontents-title = Inhoudsopgave index = Index listoffigures = Lijst van figuren listoftables = Lijst van tabellen - -# -- Other usual headers abstract = Samenvatting bibliography = Bibliografie glossary = Verklarende Woordenlijst preface = Voorwoord references = Referenties - -# -- Miscellaneous page = Pagina see = zie see-also = zie ook tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/nn.ftl b/i18n/nn.ftl index 0d8e0c0a8..0991cd895 100644 --- a/i18n/nn.ftl +++ b/i18n/nn.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Tillegg chapter = Kapittel part = Del - -# -- Other captions figure = Figur table = Tabell proof = Bevis - -# -- TOC-like headers tableofcontents-title = Innhald index = Register listoffigures = Figurar listoftables = Tabellar - -# -- Other usual headers abstract = Samandrag bibliography = Litteratur glossary = Ordliste preface = Forord references = Referansar - -# -- Miscellaneous page = Side see = Sjå see-also = Sjå òg tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/no.ftl b/i18n/no.ftl index be3054471..45928da9e 100644 --- a/i18n/no.ftl +++ b/i18n/no.ftl @@ -1,42 +1,27 @@ -# Tests and examples hello = Hei { $name }! - -# -- Usual book sections appendix = Tillegg chapter = Kapittel part = Del - -# -- Other captions figure = Figur table = Tabell proof = Bevis - -# -- TOC-like headers tableofcontents-title = Innhold index = Register listoffigures = Figurer listoftables = Tabeller - -# -- Other usual headers abstract = Sammendrag bibliography = Bibliografi glossary = Ordliste preface = Forord references = Referanser - -# -- Miscellaneous page = Side see = Se see-also = Se også tableofcontents-not-generated = Kjør SILE om igjen slik at innholdsfortegnelsen blir behandlet! - -# -- Bibliography stuff bibliography-and = og bibliography-edited-by = Redigert av { $name } bibliography-et-al = et al. bibliography-translated-by = Oversatt av { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/or.ftl b/i18n/or.ftl index 50fb816f1..4f2ecfad4 100644 --- a/i18n/or.ftl +++ b/i18n/or.ftl @@ -1,39 +1,7 @@ -# -- Usual book sections -# appendix = -# chapter = -# part = - -# -- Other captions -# figure = -# table = -# proof = - -# -- TOC-like headers -# tableofcontents-title = -# index = -# listoffigures = -# listoftables = - -# -- Other usual headers -# abstract = -# bibliography = -# glossary = -# preface = -# references = - -# -- Miscellaneous -# page = -# see = -# see-also = tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { $number } chapter-template = { $number } part-template = { $number } diff --git a/i18n/pa.ftl b/i18n/pa.ftl index 50fb816f1..4f2ecfad4 100644 --- a/i18n/pa.ftl +++ b/i18n/pa.ftl @@ -1,39 +1,7 @@ -# -- Usual book sections -# appendix = -# chapter = -# part = - -# -- Other captions -# figure = -# table = -# proof = - -# -- TOC-like headers -# tableofcontents-title = -# index = -# listoffigures = -# listoftables = - -# -- Other usual headers -# abstract = -# bibliography = -# glossary = -# preface = -# references = - -# -- Miscellaneous -# page = -# see = -# see-also = tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { $number } chapter-template = { $number } part-template = { $number } diff --git a/i18n/pl.ftl b/i18n/pl.ftl index e79da3c43..df7851204 100644 --- a/i18n/pl.ftl +++ b/i18n/pl.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Dodatek chapter = Rozdział part = Cześć - -# -- Other captions figure = Rysunek table = Tablica proof = Dowód - -# -- TOC-like headers tableofcontents-title = Spis treści index = Indeks listoffigures = Spis rysunków listoftables = Spis tablic - -# -- Other usual headers abstract = Streszczenie bibliography = Bibliografia glossary = Glossary preface = Przedmowa references = Literatura - -# -- Miscellaneous page = Strona see = Porównaj see-also = Porównaj także tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/pt.ftl b/i18n/pt.ftl index e10481167..7a26545a9 100644 --- a/i18n/pt.ftl +++ b/i18n/pt.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Apêndice chapter = Capítulo part = Parte - -# -- Other captions figure = Figura table = Tabela proof = Demonstração - -# -- TOC-like headers tableofcontents-title = Conteúdo index = Índice listoffigures = Lista de Figuras listoftables = Lista de Tabelas - -# -- Other usual headers abstract = Resumo bibliography = Bibliografia glossary = Glossário preface = Prefácio references = Referências - -# -- Miscellaneous page = Página see = ver see-also = ver também tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/rm.ftl b/i18n/rm.ftl index 1420d8b38..f8a805173 100644 --- a/i18n/rm.ftl +++ b/i18n/rm.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Appendix chapter = Chapitel part = Part - -# -- Other captions figure = Figura table = Tabella proof = Demonstraziun - -# -- TOC-like headers tableofcontents-title = Tavla dal cuntegn index = Register da materias listoffigures = Tavla da las figuras listoftables = Tavla da las tabellas - -# -- Other usual headers abstract = Recapitulaziun bibliography = Index bibliografic glossary = Glossari preface = Prefaziun references = Bibliografia - -# -- Miscellaneous page = pagina see = vesair see-also = vesair era tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/ro.ftl b/i18n/ro.ftl index edb57f512..c32ef25ba 100644 --- a/i18n/ro.ftl +++ b/i18n/ro.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Anexa chapter = Capitolul part = Partea - -# -- Other captions figure = Figura table = Tabela proof = Demonstraţie - -# -- TOC-like headers tableofcontents-title = Cuprins index = Index listoffigures = Listă de figuri listoftables = Listă de tabele - -# -- Other usual headers abstract = Rezumat bibliography = Bibliografie glossary = Glosar preface = Prefaţă references = Bibliografie - -# -- Miscellaneous page = Pagina see = vezi see-also = vezi de asemenea tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/ru.ftl b/i18n/ru.ftl index 35150416a..28e777731 100644 --- a/i18n/ru.ftl +++ b/i18n/ru.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Приложение chapter = Глава part = Часть - -# -- Other captions figure = Рис. table = Таблица proof = Доказательство - -# -- TOC-like headers tableofcontents-title = Содержание index = Предметный указатель listoffigures = Список иллюстраций listoftables = Список таблиц - -# -- Other usual headers abstract = Аннотация bibliography = Литература glossary = Словарь терминов preface = Предисловие references = Список литературы - -# -- Miscellaneous page = с. see = см. see-also = см. также tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/sa.ftl b/i18n/sa.ftl index 50fb816f1..4f2ecfad4 100644 --- a/i18n/sa.ftl +++ b/i18n/sa.ftl @@ -1,39 +1,7 @@ -# -- Usual book sections -# appendix = -# chapter = -# part = - -# -- Other captions -# figure = -# table = -# proof = - -# -- TOC-like headers -# tableofcontents-title = -# index = -# listoffigures = -# listoftables = - -# -- Other usual headers -# abstract = -# bibliography = -# glossary = -# preface = -# references = - -# -- Miscellaneous -# page = -# see = -# see-also = tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { $number } chapter-template = { $number } part-template = { $number } diff --git a/i18n/sk.ftl b/i18n/sk.ftl index c588a41c0..52ed6f8af 100644 --- a/i18n/sk.ftl +++ b/i18n/sk.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Dodatok chapter = Kapitola part = Časť - -# -- Other captions figure = Obr. table = Tabuľka proof = Dôkaz - -# -- TOC-like headers tableofcontents-title = Obsah index = Register listoffigures = Zoznam obrázkov listoftables = Zoznam tabuliek - -# -- Other usual headers abstract = Abstrakt bibliography = Literatúra glossary = Slovník preface = Predhovor references = Literatúra - -# -- Miscellaneous page = Str. see = viď see-also = viď tiež tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/sl.ftl b/i18n/sl.ftl index 72a4bf8ad..6420702dd 100644 --- a/i18n/sl.ftl +++ b/i18n/sl.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Dodatek chapter = Poglavje part = Del - -# -- Other captions figure = Slika table = Tabela proof = Dokaz - -# -- TOC-like headers tableofcontents-title = Kazalo index = Stvarno kazalo listoffigures = Slike listoftables = Tabele - -# -- Other usual headers abstract = Povzetek bibliography = Literatura glossary = Glossary preface = Predgovor references = Literatura - -# -- Miscellaneous page = Stran see = glej see-also = glej tudi tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/sr.ftl b/i18n/sr.ftl index ce84b4097..4ec6e86ca 100644 --- a/i18n/sr.ftl +++ b/i18n/sr.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Додатак chapter = Глава part = Део - -# -- Other captions figure = Слика table = Табела proof = Доказ - -# -- TOC-like headers tableofcontents-title = Садржаj index = Индекспоjмова listoffigures = Листаслика listoftables = Листатабела - -# -- Other usual headers abstract = Абстракт bibliography = Библиографиjа glossary = Речник preface = Предговор references = Литература - -# -- Miscellaneous page = страна see = види see-also = видитакође tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/sv.ftl b/i18n/sv.ftl index cabab79ea..5435bad7c 100644 --- a/i18n/sv.ftl +++ b/i18n/sv.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Bilaga chapter = Kapitel part = Del - -# -- Other captions figure = Figur table = Tabell proof = Bevis - -# -- TOC-like headers tableofcontents-title = Innehåll index = Sakregister listoffigures = Figurer listoftables = Tabeller - -# -- Other usual headers abstract = Sammanfattning bibliography = Litteraturförteckning glossary = Ordlista preface = Förord references = Referenser - -# -- Miscellaneous page = Sida see = se see-also = se även tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/ta.ftl b/i18n/ta.ftl index 5594f24be..2470d310e 100644 --- a/i18n/ta.ftl +++ b/i18n/ta.ftl @@ -1,39 +1,18 @@ -# -- Usual book sections appendix = பிற்சேர்க்கை chapter = அத்தியாயம் part = பகுதி - -# -- Other captions figure = படம் table = அட்டவணை -# proof = - -# -- TOC-like headers tableofcontents-title = உள்ளே index = சுட்டி listoffigures = படங்களின் பட்டியல் listoftables = அட்டவணை பட்டியல் - -# -- Other usual headers abstract = சாராம்சம் -# bibliography = -# glossary = -# preface = -# references = - -# -- Miscellaneous -# page = see = பார்க்க -# see-also = tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/th.ftl b/i18n/th.ftl index 6034c16e3..3cfdbcb06 100644 --- a/i18n/th.ftl +++ b/i18n/th.ftl @@ -1,39 +1,24 @@ -# -- Usual book sections appendix = ภาคผนวก chapter = บทที่ part = ภาค - -# -- Other captions figure = รูปที่ table = ตารางที่ proof = พิสูจน์ - -# -- TOC-like headers tableofcontents-title = สารบัญ index = ดรรชนี listoffigures = สารบัญรูป listoftables = สารบัญตาราง - -# -- Other usual headers abstract = บทคัดย่อ bibliography = บรรณานุกรม -# glossary = preface = บทนำ references = หนังสืออ้างอิง - -# -- Miscellaneous page = หน้า see = ดู see-also = ดูเพิ่มเติม tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/tk.ftl b/i18n/tk.ftl index cc48d0a47..9ec741858 100644 --- a/i18n/tk.ftl +++ b/i18n/tk.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Goşmaça chapter = Bap part = Bölüm - -# -- Other captions figure = Surat table = Tablisa proof = Delil - -# -- TOC-like headers tableofcontents-title = Mazmuny index = Indeks listoffigures = Suratlaryň sanawy listoftables = Tablisalaryň sanawy - -# -- Other usual headers abstract = Gysgaça manysy bibliography = Çeşmeler glossary = Sözlük preface = Sözbaşy references = Çeşmeler - -# -- Miscellaneous page = Sahypa see = ser. see-also = şuňa-da ser. tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/tr.ftl b/i18n/tr.ftl index da8626bac..97a3f48e6 100644 --- a/i18n/tr.ftl +++ b/i18n/tr.ftl @@ -1,42 +1,26 @@ -# Tests and examples hello = Merhaba { $name }! - -# -- Usual book sections appendix = Ek chapter = Bölüm part = Kısım - -# -- Other captions figure = Şekil table = Tablo proof = Kanıt - -# -- TOC-like headers tableofcontents-title = İçindekiler index = Dizin listoffigures = Şekil Listesi listoftables = Tablo Listesi - -# -- Other usual headers abstract = Özet bibliography = Kaynakça glossary = Lügatçe preface = Önsöz references = Kaynaklar - -# -- Miscellaneous page = Sayfa see = bkz. see-also = ayrıca bkz. tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/ug.ftl b/i18n/ug.ftl index 7e083d43f..4828f5927 100644 --- a/i18n/ug.ftl +++ b/i18n/ug.ftl @@ -1,39 +1,24 @@ -# -- Usual book sections appendix = قوشۇمچە chapter = باب part = قىسىم - -# -- Other captions figure = رەسىم table = جەدۋەل proof = ئىسپات - -# -- TOC-like headers tableofcontents-title = مۇندەرىجە index = ئىندېكىس listoffigures = رەسىملەر listoftables = جەدۋەللەر - -# -- Other usual headers abstract = ئابستراكت bibliography = پايدىلانما glossary = لۇغەت preface = كىرىش سۆز references = پايدىلانما - -# -- Miscellaneous page = بەت see = قاراڭ see-also = ئايرىم قاراڭ tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } -# bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/uk.ftl b/i18n/uk.ftl index b5db3ec24..eba13ec31 100644 --- a/i18n/uk.ftl +++ b/i18n/uk.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = Додаток chapter = Розділ part = Частина - -# -- Other captions figure = Рис. table = Табл. proof = Доведення - -# -- TOC-like headers tableofcontents-title = Зміст index = Покажчик listoffigures = Перелік ілюстрацій listoftables = Перелік таблиць - -# -- Other usual headers abstract = Анотація bibliography = Бібліоґрафія glossary = Словник термінів preface = Вступ references = Література - -# -- Miscellaneous page = с. see = див. see-also = див. також tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/und.ftl b/i18n/und.ftl index 526e218f3..586351c8b 100644 --- a/i18n/und.ftl +++ b/i18n/und.ftl @@ -1,2 +1 @@ -# Tests and examples hello = Namárië { $name }! diff --git a/i18n/ur.ftl b/i18n/ur.ftl index 103d6e163..e071cc7bd 100644 --- a/i18n/ur.ftl +++ b/i18n/ur.ftl @@ -1,39 +1,25 @@ -# -- Usual book sections appendix = ضمیمہ chapter = باب part = حصّہ - -# -- Other captions figure = شكل table = جدول proof = ثبوت - -# -- TOC-like headers tableofcontents-title = فہرست عنوانات index = اشاریہ listoffigures = فہرست اشکال listoftables = فہرست جداول - -# -- Other usual headers abstract = ملخّص bibliography = کتابیات glossary = لغت preface = دیباچہ references = حوالہ جات - -# -- Miscellaneous page = صفحہ see = ملاحظہ ہو see-also = ایضاً tableofcontents-not-generated = Rerun SILE to process the table of contents! - -# -- Bibliography stuff -# bibliography-and = bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } - -# -- Assembling rules appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } From 4879a9e7dbb78db284425b499ac18ec198bb6a95 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Sat, 30 Jul 2022 16:08:00 +0300 Subject: [PATCH 08/10] chore(i18n): Drop untranslated en keys from other languages ```console sed -i -e '/Rerun SILE/d' *.ftl git checkout -- i18n/en.ftl ``` --- i18n/af.ftl | 1 - i18n/am.ftl | 1 - i18n/ar.ftl | 1 - i18n/as.ftl | 1 - i18n/bg.ftl | 1 - i18n/bn.ftl | 1 - i18n/bo.ftl | 1 - i18n/ca.ftl | 1 - i18n/cs.ftl | 1 - i18n/cy.ftl | 1 - i18n/da.ftl | 1 - i18n/de.ftl | 1 - i18n/el-monoton.ftl | 1 - i18n/el-polyton.ftl | 1 - i18n/el.ftl | 1 - i18n/es.ftl | 1 - i18n/et.ftl | 1 - i18n/eu.ftl | 1 - i18n/fi.ftl | 1 - i18n/fr.ftl | 1 - i18n/ga.ftl | 1 - i18n/gu.ftl | 1 - i18n/hi.ftl | 1 - i18n/hr.ftl | 1 - i18n/hu.ftl | 1 - i18n/hy.ftl | 1 - i18n/id.ftl | 1 - i18n/is.ftl | 1 - i18n/it.ftl | 1 - i18n/ja.ftl | 1 - i18n/jv.ftl | 1 - i18n/ka.ftl | 1 - i18n/kn.ftl | 1 - i18n/lt.ftl | 1 - i18n/lv.ftl | 1 - i18n/ml.ftl | 1 - i18n/mr.ftl | 1 - i18n/my.ftl | 1 - i18n/nl.ftl | 1 - i18n/nn.ftl | 1 - i18n/or.ftl | 1 - i18n/pa.ftl | 1 - i18n/pl.ftl | 1 - i18n/pt.ftl | 1 - i18n/rm.ftl | 1 - i18n/ro.ftl | 1 - i18n/ru.ftl | 1 - i18n/sa.ftl | 1 - i18n/sk.ftl | 1 - i18n/sl.ftl | 1 - i18n/sr.ftl | 1 - i18n/sv.ftl | 1 - i18n/ta.ftl | 1 - i18n/th.ftl | 1 - i18n/tk.ftl | 1 - i18n/tr.ftl | 1 - i18n/ug.ftl | 1 - i18n/uk.ftl | 1 - i18n/ur.ftl | 1 - 59 files changed, 59 deletions(-) diff --git a/i18n/af.ftl b/i18n/af.ftl index 535c98eae..74ce2e484 100644 --- a/i18n/af.ftl +++ b/i18n/af.ftl @@ -15,7 +15,6 @@ references = Verwysings page = Bladsy see = sien see-also = sien ook -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/am.ftl b/i18n/am.ftl index c36f58fea..d3ca87a41 100644 --- a/i18n/am.ftl +++ b/i18n/am.ftl @@ -15,7 +15,6 @@ references = የነሥ ጹሁፍ ምንጭ page = ገጽ see = ይመልከቱ see-also = ይህምን ይመልከቱ -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/ar.ftl b/i18n/ar.ftl index 7f549e120..50a8c7ec7 100644 --- a/i18n/ar.ftl +++ b/i18n/ar.ftl @@ -16,7 +16,6 @@ references = المراجع page = صفحة see = راجع see-also = راجع أيضًا -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/as.ftl b/i18n/as.ftl index f82a539f0..7300424e4 100644 --- a/i18n/as.ftl +++ b/i18n/as.ftl @@ -16,7 +16,6 @@ references = প্ৰসংগ page = পৃষ্ঠা see = চাওক see-also = ও -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/bg.ftl b/i18n/bg.ftl index 10ddc1a51..df8f73522 100644 --- a/i18n/bg.ftl +++ b/i18n/bg.ftl @@ -16,7 +16,6 @@ references = Литература page = Стр. see = вж. see-also = вж. също и -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/bn.ftl b/i18n/bn.ftl index 48314e25e..5a11e7b0c 100644 --- a/i18n/bn.ftl +++ b/i18n/bn.ftl @@ -16,7 +16,6 @@ references = তথ্যসুত্রসমূহ page = পৃষ্ঠা see = দেখুন see-also = আরও দেখুন -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/bo.ftl b/i18n/bo.ftl index 5804b7e0b..558491893 100644 --- a/i18n/bo.ftl +++ b/i18n/bo.ftl @@ -11,7 +11,6 @@ bibliography = དཔེ་ཆའི་ཐོ་གཞུང་། glossary = མིང་ཚིག་རེའུ་མིག། preface = དཔེ་དེབ་ཀྱི་གླེང་བརྗོད། page = ཤོག་ -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/ca.ftl b/i18n/ca.ftl index 642ec4c70..3c40902a4 100644 --- a/i18n/ca.ftl +++ b/i18n/ca.ftl @@ -16,7 +16,6 @@ references = Referències page = Pàgina see = Vegeu see-also = Vegeu també -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/cs.ftl b/i18n/cs.ftl index 3bffe2f07..9ef61537b 100644 --- a/i18n/cs.ftl +++ b/i18n/cs.ftl @@ -16,7 +16,6 @@ references = Reference page = Strana see = viz see-also = viz také -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/cy.ftl b/i18n/cy.ftl index 8dd67f0e6..f61b26ef4 100644 --- a/i18n/cy.ftl +++ b/i18n/cy.ftl @@ -16,7 +16,6 @@ references = Cyfeiriadau page = tudalen see = gweler see-also = gweler hefyd -tableofcontents-not-generated = Rerun SILE to process the table of contents! appendix-template = { appendix } { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/da.ftl b/i18n/da.ftl index ede4fafcf..294e2f8a9 100644 --- a/i18n/da.ftl +++ b/i18n/da.ftl @@ -16,7 +16,6 @@ references = Litteratur page = Side see = Se see-also = Se også -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/de.ftl b/i18n/de.ftl index 54f1b16e9..2014ef83f 100644 --- a/i18n/de.ftl +++ b/i18n/de.ftl @@ -16,7 +16,6 @@ references = Literatur page = Seite see = siehe see-also = siehe auch -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/el-monoton.ftl b/i18n/el-monoton.ftl index 826dc5ba3..cc903070b 100644 --- a/i18n/el-monoton.ftl +++ b/i18n/el-monoton.ftl @@ -16,7 +16,6 @@ references = Αναφορές page = Σελίδα see = βλέπε see-also = βλέπε επίσης -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/el-polyton.ftl b/i18n/el-polyton.ftl index 6e367d488..4e6be9212 100644 --- a/i18n/el-polyton.ftl +++ b/i18n/el-polyton.ftl @@ -16,7 +16,6 @@ references = Ἀναφορές page = Σελίδα see = βλέπε see-also = βλέπε ἐπίσης -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/el.ftl b/i18n/el.ftl index 826dc5ba3..cc903070b 100644 --- a/i18n/el.ftl +++ b/i18n/el.ftl @@ -16,7 +16,6 @@ references = Αναφορές page = Σελίδα see = βλέπε see-also = βλέπε επίσης -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/es.ftl b/i18n/es.ftl index a088901f6..c080a6225 100644 --- a/i18n/es.ftl +++ b/i18n/es.ftl @@ -16,7 +16,6 @@ references = Referencias page = página see = véase see-also = véase también -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/et.ftl b/i18n/et.ftl index f864d2b10..27a746f14 100644 --- a/i18n/et.ftl +++ b/i18n/et.ftl @@ -16,7 +16,6 @@ references = Viited page = Lk. see = vt. see-also = vt. ka -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/eu.ftl b/i18n/eu.ftl index 35d0284ec..1232565e6 100644 --- a/i18n/eu.ftl +++ b/i18n/eu.ftl @@ -16,7 +16,6 @@ references = Erreferentziak page = Orria see = Ikusi see-also = Ikusi, halaber -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/fi.ftl b/i18n/fi.ftl index 41bb9dfb5..fea4243ca 100644 --- a/i18n/fi.ftl +++ b/i18n/fi.ftl @@ -16,7 +16,6 @@ references = Viitteet page = Sivu see = katso see-also = katso myös -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/fr.ftl b/i18n/fr.ftl index 37f7fe50a..4fb0a71c1 100644 --- a/i18n/fr.ftl +++ b/i18n/fr.ftl @@ -16,7 +16,6 @@ references = Références page = page see = voir see-also = voir aussi -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-and = et bibliography-edited-by = Édité par { $name } bibliography-et-al = et al. diff --git a/i18n/ga.ftl b/i18n/ga.ftl index d02780ced..eeccd5074 100644 --- a/i18n/ga.ftl +++ b/i18n/ga.ftl @@ -16,7 +16,6 @@ references = Tagairtí page = Leathanach see = féach see-also = féach freisin -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/gu.ftl b/i18n/gu.ftl index 4f2ecfad4..c87143f00 100644 --- a/i18n/gu.ftl +++ b/i18n/gu.ftl @@ -1,4 +1,3 @@ -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/hi.ftl b/i18n/hi.ftl index 696e85957..74d3242d5 100644 --- a/i18n/hi.ftl +++ b/i18n/hi.ftl @@ -16,7 +16,6 @@ references = हवाले page = पृष्ठ see = देखिए see-also = और देखिए -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/hr.ftl b/i18n/hr.ftl index c01c36b93..11392450a 100644 --- a/i18n/hr.ftl +++ b/i18n/hr.ftl @@ -16,7 +16,6 @@ references = Literatura page = Stranica see = Vidjeti see-also = Također vidjeti -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/hu.ftl b/i18n/hu.ftl index 6fd0b5283..e5edb4796 100644 --- a/i18n/hu.ftl +++ b/i18n/hu.ftl @@ -16,7 +16,6 @@ references = Hivatkozások page = oldal see = lásd see-also = lásd még -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/hy.ftl b/i18n/hy.ftl index 98dbacf06..010a95852 100644 --- a/i18n/hy.ftl +++ b/i18n/hy.ftl @@ -16,7 +16,6 @@ references = Հղումներ page = էջ see = տե՛ս see-also = տե՛ս նաև -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/id.ftl b/i18n/id.ftl index 0e71ef503..31264c804 100644 --- a/i18n/id.ftl +++ b/i18n/id.ftl @@ -16,7 +16,6 @@ references = Pustaka page = Halaman see = lihat see-also = lihat juga -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/is.ftl b/i18n/is.ftl index ebb9d0f1b..3f74f3644 100644 --- a/i18n/is.ftl +++ b/i18n/is.ftl @@ -16,7 +16,6 @@ references = Heimildir page = Blaðsíða see = Sjá see-also = Sjá einnig -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/it.ftl b/i18n/it.ftl index abd387ab6..ea766122b 100644 --- a/i18n/it.ftl +++ b/i18n/it.ftl @@ -16,7 +16,6 @@ references = Riferimenti bibliografici page = Pag. see = vedi see-also = vedi anche -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/ja.ftl b/i18n/ja.ftl index 412dd0c94..926bd07ae 100644 --- a/i18n/ja.ftl +++ b/i18n/ja.ftl @@ -15,7 +15,6 @@ bibliography = 参考文献 glossary = 用語集 preface = 前書き references = 参考文献 -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/jv.ftl b/i18n/jv.ftl index 4f2ecfad4..c87143f00 100644 --- a/i18n/jv.ftl +++ b/i18n/jv.ftl @@ -1,4 +1,3 @@ -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/ka.ftl b/i18n/ka.ftl index 53dfb7764..729d26220 100644 --- a/i18n/ka.ftl +++ b/i18n/ka.ftl @@ -16,7 +16,6 @@ references = ლიტერატურა page = გვ. see = იხ. see-also = იხ. ასევე -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/kn.ftl b/i18n/kn.ftl index 9545cfcf0..9597a6fd5 100644 --- a/i18n/kn.ftl +++ b/i18n/kn.ftl @@ -15,7 +15,6 @@ references = ಉಲ್ಲೇಖಗಳು page = ಪುಟ see = ನೋಡು see-also = ಇದನ್ನೂ ಸಹ ನೋಡು -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/lt.ftl b/i18n/lt.ftl index 58f12f51f..bce9c07b4 100644 --- a/i18n/lt.ftl +++ b/i18n/lt.ftl @@ -16,7 +16,6 @@ references = Literatūra page = puslapis see = žiūrėk see-also = taip pat -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/lv.ftl b/i18n/lv.ftl index ed4a1b859..404ed06fb 100644 --- a/i18n/lv.ftl +++ b/i18n/lv.ftl @@ -14,7 +14,6 @@ references = Literatūra page = lpp. see = skat. see-also = skat. arī -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/ml.ftl b/i18n/ml.ftl index 85a5d9d5a..9cd837f1a 100644 --- a/i18n/ml.ftl +++ b/i18n/ml.ftl @@ -10,7 +10,6 @@ bstract = സാരാംശം glossary = see = കാണുക see-also = ഇതും കാണുക -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/mr.ftl b/i18n/mr.ftl index 386d37a8f..4f54487b8 100644 --- a/i18n/mr.ftl +++ b/i18n/mr.ftl @@ -16,7 +16,6 @@ references = संदर्भ page = पृष्ठ see = पाहा see-also = हेदेखील पाहा -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/my.ftl b/i18n/my.ftl index 4f2ecfad4..c87143f00 100644 --- a/i18n/my.ftl +++ b/i18n/my.ftl @@ -1,4 +1,3 @@ -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/nl.ftl b/i18n/nl.ftl index f8c1b7cc2..091715ad4 100644 --- a/i18n/nl.ftl +++ b/i18n/nl.ftl @@ -16,7 +16,6 @@ references = Referenties page = Pagina see = zie see-also = zie ook -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/nn.ftl b/i18n/nn.ftl index 0991cd895..2b3e271d9 100644 --- a/i18n/nn.ftl +++ b/i18n/nn.ftl @@ -16,7 +16,6 @@ references = Referansar page = Side see = Sjå see-also = Sjå òg -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/or.ftl b/i18n/or.ftl index 4f2ecfad4..c87143f00 100644 --- a/i18n/or.ftl +++ b/i18n/or.ftl @@ -1,4 +1,3 @@ -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/pa.ftl b/i18n/pa.ftl index 4f2ecfad4..c87143f00 100644 --- a/i18n/pa.ftl +++ b/i18n/pa.ftl @@ -1,4 +1,3 @@ -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/pl.ftl b/i18n/pl.ftl index df7851204..0799b3ea7 100644 --- a/i18n/pl.ftl +++ b/i18n/pl.ftl @@ -16,7 +16,6 @@ references = Literatura page = Strona see = Porównaj see-also = Porównaj także -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/pt.ftl b/i18n/pt.ftl index 7a26545a9..4a84a5625 100644 --- a/i18n/pt.ftl +++ b/i18n/pt.ftl @@ -16,7 +16,6 @@ references = Referências page = Página see = ver see-also = ver também -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/rm.ftl b/i18n/rm.ftl index f8a805173..120cacc78 100644 --- a/i18n/rm.ftl +++ b/i18n/rm.ftl @@ -16,7 +16,6 @@ references = Bibliografia page = pagina see = vesair see-also = vesair era -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/ro.ftl b/i18n/ro.ftl index c32ef25ba..f43463511 100644 --- a/i18n/ro.ftl +++ b/i18n/ro.ftl @@ -16,7 +16,6 @@ references = Bibliografie page = Pagina see = vezi see-also = vezi de asemenea -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/ru.ftl b/i18n/ru.ftl index 28e777731..e7fc87fac 100644 --- a/i18n/ru.ftl +++ b/i18n/ru.ftl @@ -16,7 +16,6 @@ references = Список литературы page = с. see = см. see-also = см. также -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/sa.ftl b/i18n/sa.ftl index 4f2ecfad4..c87143f00 100644 --- a/i18n/sa.ftl +++ b/i18n/sa.ftl @@ -1,4 +1,3 @@ -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/sk.ftl b/i18n/sk.ftl index 52ed6f8af..05a41765b 100644 --- a/i18n/sk.ftl +++ b/i18n/sk.ftl @@ -16,7 +16,6 @@ references = Literatúra page = Str. see = viď see-also = viď tiež -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/sl.ftl b/i18n/sl.ftl index 6420702dd..210d559d1 100644 --- a/i18n/sl.ftl +++ b/i18n/sl.ftl @@ -16,7 +16,6 @@ references = Literatura page = Stran see = glej see-also = glej tudi -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/sr.ftl b/i18n/sr.ftl index 4ec6e86ca..197ed8bf1 100644 --- a/i18n/sr.ftl +++ b/i18n/sr.ftl @@ -16,7 +16,6 @@ references = Литература page = страна see = види see-also = видитакође -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/sv.ftl b/i18n/sv.ftl index 5435bad7c..7b35e0d54 100644 --- a/i18n/sv.ftl +++ b/i18n/sv.ftl @@ -16,7 +16,6 @@ references = Referenser page = Sida see = se see-also = se även -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/ta.ftl b/i18n/ta.ftl index 2470d310e..26f3e99b2 100644 --- a/i18n/ta.ftl +++ b/i18n/ta.ftl @@ -9,7 +9,6 @@ listoffigures = படங்களின் பட்டியல் listoftables = அட்டவணை பட்டியல் abstract = சாராம்சம் see = பார்க்க -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/th.ftl b/i18n/th.ftl index 3cfdbcb06..7ee51d37e 100644 --- a/i18n/th.ftl +++ b/i18n/th.ftl @@ -15,7 +15,6 @@ references = หนังสืออ้างอิง page = หน้า see = ดู see-also = ดูเพิ่มเติม -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/tk.ftl b/i18n/tk.ftl index 9ec741858..f96a05db9 100644 --- a/i18n/tk.ftl +++ b/i18n/tk.ftl @@ -16,7 +16,6 @@ references = Çeşmeler page = Sahypa see = ser. see-also = şuňa-da ser. -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/tr.ftl b/i18n/tr.ftl index 97a3f48e6..12fecfc49 100644 --- a/i18n/tr.ftl +++ b/i18n/tr.ftl @@ -17,7 +17,6 @@ references = Kaynaklar page = Sayfa see = bkz. see-also = ayrıca bkz. -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/ug.ftl b/i18n/ug.ftl index 4828f5927..2094a3b1c 100644 --- a/i18n/ug.ftl +++ b/i18n/ug.ftl @@ -16,7 +16,6 @@ references = پايدىلانما page = بەت see = قاراڭ see-also = ئايرىم قاراڭ -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-translated-by = { $name } appendix-template = { appendix } { $number } diff --git a/i18n/uk.ftl b/i18n/uk.ftl index eba13ec31..b27b93f44 100644 --- a/i18n/uk.ftl +++ b/i18n/uk.ftl @@ -16,7 +16,6 @@ references = Література page = с. see = див. see-also = див. також -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } diff --git a/i18n/ur.ftl b/i18n/ur.ftl index e071cc7bd..74d74ebf0 100644 --- a/i18n/ur.ftl +++ b/i18n/ur.ftl @@ -16,7 +16,6 @@ references = حوالہ جات page = صفحہ see = ملاحظہ ہو see-also = ایضاً -tableofcontents-not-generated = Rerun SILE to process the table of contents! bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } From 706d8e027e0afb00b428043555cf17e8557a91f2 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Sat, 30 Jul 2022 16:31:10 +0300 Subject: [PATCH 09/10] chore(i18n): Drop use of messages as terms In the future on an as-needed basis these could be converted to terms, but so far there is no use case and doing this should be a translators implementation choice not something SILE suggests. Prepend something to all files, then: ```vim silent normal! 0gg/^appendix df=xd$nf{v%p silent normal! 0gg/^part df=xd$nf{v%p silent normal! 0gg/^chapter df=xd$nf{v%p ``` Then touchoup eu, hr, lt --- i18n/af.ftl | 9 +++------ i18n/am.ftl | 9 +++------ i18n/ar.ftl | 9 +++------ i18n/as.ftl | 9 +++------ i18n/bg.ftl | 9 +++------ i18n/bn.ftl | 9 +++------ i18n/bo.ftl | 9 +++------ i18n/ca.ftl | 9 +++------ i18n/cs.ftl | 9 +++------ i18n/cy.ftl | 9 +++------ i18n/da.ftl | 9 +++------ i18n/de.ftl | 9 +++------ i18n/el-monoton.ftl | 9 +++------ i18n/el-polyton.ftl | 9 +++------ i18n/el.ftl | 9 +++------ i18n/en.ftl | 9 +++------ i18n/eo.ftl | 9 +++------ i18n/es.ftl | 9 +++------ i18n/et.ftl | 9 +++------ i18n/eu.ftl | 9 +++------ i18n/fi.ftl | 9 +++------ i18n/fr.ftl | 10 +++------- i18n/ga.ftl | 9 +++------ i18n/gu.ftl | 3 --- i18n/hi.ftl | 9 +++------ i18n/hr.ftl | 9 +++------ i18n/hu.ftl | 9 +++------ i18n/hy.ftl | 9 +++------ i18n/id.ftl | 9 +++------ i18n/is.ftl | 9 +++------ i18n/it.ftl | 9 +++------ i18n/ja.ftl | 5 +---- i18n/jv.ftl | 3 --- i18n/ka.ftl | 9 +++------ i18n/kn.ftl | 9 +++------ i18n/la.ftl | 9 +++------ i18n/lt.ftl | 9 +++------ i18n/lv.ftl | 9 +++------ i18n/ml.ftl | 11 ++++------- i18n/mr.ftl | 9 +++------ i18n/my.ftl | 3 --- i18n/nb.ftl | 9 +++------ i18n/nl.ftl | 9 +++------ i18n/nn.ftl | 9 +++------ i18n/no.ftl | 9 +++------ i18n/or.ftl | 3 --- i18n/pa.ftl | 3 --- i18n/pl.ftl | 9 +++------ i18n/pt.ftl | 9 +++------ i18n/rm.ftl | 9 +++------ i18n/ro.ftl | 9 +++------ i18n/ru.ftl | 9 +++------ i18n/sa.ftl | 3 --- i18n/sk.ftl | 9 +++------ i18n/sl.ftl | 9 +++------ i18n/sr.ftl | 9 +++------ i18n/sv.ftl | 9 +++------ i18n/ta.ftl | 9 +++------ i18n/th.ftl | 9 +++------ i18n/tk.ftl | 9 +++------ i18n/tr.ftl | 9 +++------ i18n/ug.ftl | 9 +++------ i18n/uk.ftl | 9 +++------ i18n/ur.ftl | 9 +++------ 64 files changed, 173 insertions(+), 366 deletions(-) diff --git a/i18n/af.ftl b/i18n/af.ftl index 74ce2e484..a2b4c6f8e 100644 --- a/i18n/af.ftl +++ b/i18n/af.ftl @@ -1,6 +1,3 @@ -appendix = Bylae -chapter = Hoofstuk -part = Deel figure = Figuur table = Tabel proof = Bewys @@ -18,6 +15,6 @@ see-also = sien ook bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Bylae { $number } +chapter-template = Hoofstuk { $number } +part-template = Deel { $number } diff --git a/i18n/am.ftl b/i18n/am.ftl index d3ca87a41..f8fa6ead3 100644 --- a/i18n/am.ftl +++ b/i18n/am.ftl @@ -1,6 +1,3 @@ -appendix = መድበል -chapter = ክፍል -part = ንዑስ ክፍል figure = ሥዕል table = ሰንጠረዥ proof = ማረጋገጫ @@ -18,6 +15,6 @@ see-also = ይህምን ይመልከቱ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = መድበል { $number } +chapter-template = ክፍል { $number } +part-template = ንዑስ ክፍል { $number } diff --git a/i18n/ar.ftl b/i18n/ar.ftl index 50a8c7ec7..3ee123e2b 100644 --- a/i18n/ar.ftl +++ b/i18n/ar.ftl @@ -1,6 +1,3 @@ -appendix = الملاحق -chapter = باب -part = القسم figure = شكل table = جدول proof = برهان @@ -19,6 +16,6 @@ see-also = راجع أيضًا bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = الملاحق { $number } +chapter-template = باب { $number } +part-template = القسم { $number } diff --git a/i18n/as.ftl b/i18n/as.ftl index 7300424e4..92c5c758c 100644 --- a/i18n/as.ftl +++ b/i18n/as.ftl @@ -1,6 +1,3 @@ -appendix = পৰিশিষ্ট -chapter = অধ্যায় -part = অংশ figure = চিত্ৰ table = তালিকা proof = প্ৰমাণ @@ -19,6 +16,6 @@ see-also = ও bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = পৰিশিষ্ট { $number } +chapter-template = অধ্যায় { $number } +part-template = অংশ { $number } diff --git a/i18n/bg.ftl b/i18n/bg.ftl index df8f73522..2645e2bbe 100644 --- a/i18n/bg.ftl +++ b/i18n/bg.ftl @@ -1,6 +1,3 @@ -appendix = Приложение -chapter = Глава -part = Част figure = Фигура table = Таблица proof = Доказателство @@ -19,6 +16,6 @@ see-also = вж. също и bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Приложение { $number } +chapter-template = Глава { $number } +part-template = Част { $number } diff --git a/i18n/bn.ftl b/i18n/bn.ftl index 5a11e7b0c..ed8026e0e 100644 --- a/i18n/bn.ftl +++ b/i18n/bn.ftl @@ -1,6 +1,3 @@ -appendix = পরিশিষ্ট -chapter = অধ্যায় -part = খন্ড figure = ছবি/নকশা table = সারনী proof = প্রমাণ @@ -19,6 +16,6 @@ see-also = আরও দেখুন bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = পরিশিষ্ট { $number } +chapter-template = অধ্যায় { $number } +part-template = খন্ড { $number } diff --git a/i18n/bo.ftl b/i18n/bo.ftl index 558491893..c766264c0 100644 --- a/i18n/bo.ftl +++ b/i18n/bo.ftl @@ -1,6 +1,3 @@ -appendix = ཞར་བྱུང་། -chapter = ལེའུ་ -part = ཆ་ཤས་ figure = པར་རིས་ table = རེའུ་མིག་ proof = བདེན་དཔང་། @@ -14,6 +11,6 @@ page = ཤོག་ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = ཞར་བྱུང་། { $number } +chapter-template = ལེའུ་ { $number } +part-template = ཆ་ཤས་ { $number } diff --git a/i18n/ca.ftl b/i18n/ca.ftl index 3c40902a4..7039cb7ec 100644 --- a/i18n/ca.ftl +++ b/i18n/ca.ftl @@ -1,6 +1,3 @@ -appendix = Apèndix -chapter = Capítol -part = Part figure = Figura table = Taula proof = Demostració @@ -19,6 +16,6 @@ see-also = Vegeu també bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Apèndix { $number } +chapter-template = Capítol { $number } +part-template = Part { $number } diff --git a/i18n/cs.ftl b/i18n/cs.ftl index 9ef61537b..4fc4a0854 100644 --- a/i18n/cs.ftl +++ b/i18n/cs.ftl @@ -1,6 +1,3 @@ -appendix = Příloha -chapter = Kapitola -part = Část figure = Obrázek table = Tabulka proof = Důkaz @@ -19,6 +16,6 @@ see-also = viz také bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Příloha { $number } +chapter-template = Kapitola { $number } +part-template = Část { $number } diff --git a/i18n/cy.ftl b/i18n/cy.ftl index f61b26ef4..965479d92 100644 --- a/i18n/cy.ftl +++ b/i18n/cy.ftl @@ -1,6 +1,3 @@ -appendix = Atodiad -chapter = Pennod -part = Rhan figure = Darlun table = Taflen proof = Prawf @@ -16,6 +13,6 @@ references = Cyfeiriadau page = tudalen see = gweler see-also = gweler hefyd -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Atodiad { $number } +chapter-template = Pennod { $number } +part-template = Rhan { $number } diff --git a/i18n/da.ftl b/i18n/da.ftl index 294e2f8a9..0ca9ddcc1 100644 --- a/i18n/da.ftl +++ b/i18n/da.ftl @@ -1,6 +1,3 @@ -appendix = Bilag -chapter = Kapitel -part = Del figure = Figur table = Tabel proof = Bevis @@ -19,6 +16,6 @@ see-also = Se også bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Bilag { $number } +chapter-template = Kapitel { $number } +part-template = Del { $number } diff --git a/i18n/de.ftl b/i18n/de.ftl index 2014ef83f..64e397b6d 100644 --- a/i18n/de.ftl +++ b/i18n/de.ftl @@ -1,6 +1,3 @@ -appendix = Anhang -chapter = Kapitel -part = Teil figure = Abbildung table = Tabelle proof = Beweis @@ -19,6 +16,6 @@ see-also = siehe auch bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Anhang { $number } +chapter-template = Kapitel { $number } +part-template = Teil { $number } diff --git a/i18n/el-monoton.ftl b/i18n/el-monoton.ftl index cc903070b..c073c2f54 100644 --- a/i18n/el-monoton.ftl +++ b/i18n/el-monoton.ftl @@ -1,6 +1,3 @@ -appendix = Παράρτημα -chapter = Κεφάλαιο -part = Μέρος figure = Σχήμα table = Πίνακας proof = Απόδειξη @@ -19,6 +16,6 @@ see-also = βλέπε επίσης bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Παράρτημα { $number } +chapter-template = Κεφάλαιο { $number } +part-template = Μέρος { $number } diff --git a/i18n/el-polyton.ftl b/i18n/el-polyton.ftl index 4e6be9212..665e4b877 100644 --- a/i18n/el-polyton.ftl +++ b/i18n/el-polyton.ftl @@ -1,6 +1,3 @@ -appendix = Παράρτημα -chapter = Κεφάλαιο -part = Μέρος figure = Σχῆμα table = Πίνακας proof = Ἀπόδειξη @@ -19,6 +16,6 @@ see-also = βλέπε ἐπίσης bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Παράρτημα { $number } +chapter-template = Κεφάλαιο { $number } +part-template = Μέρος { $number } diff --git a/i18n/el.ftl b/i18n/el.ftl index cc903070b..c073c2f54 100644 --- a/i18n/el.ftl +++ b/i18n/el.ftl @@ -1,6 +1,3 @@ -appendix = Παράρτημα -chapter = Κεφάλαιο -part = Μέρος figure = Σχήμα table = Πίνακας proof = Απόδειξη @@ -19,6 +16,6 @@ see-also = βλέπε επίσης bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Παράρτημα { $number } +chapter-template = Κεφάλαιο { $number } +part-template = Μέρος { $number } diff --git a/i18n/en.ftl b/i18n/en.ftl index 171b8d52e..f3bfa1ca6 100644 --- a/i18n/en.ftl +++ b/i18n/en.ftl @@ -1,7 +1,4 @@ hello = Hello { $name }! -appendix = Appendix -chapter = Chapter -part = Part figure = Figure table = Table proof = Proof @@ -22,8 +19,8 @@ bibliography-and = and bibliography-edited-by = Edited by { $name } bibliography-et-al = et al. bibliography-translated-by = Translated by { $name } -chapter-template = { chapter } { $number } -part-template = { part } { $number } -appendix-template = { appendix } { $number } +chapter-template = Chapter { $number } +part-template = Part { $number } +appendix-template = Appendix { $number } chapter-template = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/eo.ftl b/i18n/eo.ftl index 292d1c453..a7c54ef37 100644 --- a/i18n/eo.ftl +++ b/i18n/eo.ftl @@ -1,7 +1,4 @@ hello = Saluton { $name }! -appendix = Apendico -chapter = Ĉapitro -part = Parto figure = Figuro table = Tabelo proof = Pruvo @@ -25,6 +22,6 @@ bibliography-translated-by = Tradukita por { $name } bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Apendico { $number } +chapter-template = Ĉapitro { $number } +part-template = Parto { $number } diff --git a/i18n/es.ftl b/i18n/es.ftl index c080a6225..8229392df 100644 --- a/i18n/es.ftl +++ b/i18n/es.ftl @@ -1,6 +1,3 @@ -appendix = Apéndice -chapter = Capítulo -part = Parte figure = Figura table = Cuadro proof = Demostración @@ -19,6 +16,6 @@ see-also = véase también bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Apéndice { $number } +chapter-template = Capítulo { $number } +part-template = Parte { $number } diff --git a/i18n/et.ftl b/i18n/et.ftl index 27a746f14..eae5d3ea6 100644 --- a/i18n/et.ftl +++ b/i18n/et.ftl @@ -1,6 +1,3 @@ -appendix = Lisa -chapter = Peatükk -part = Osa figure = Joonis table = Tabel proof = Tõestus @@ -19,6 +16,6 @@ see-also = vt. ka bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Lisa { $number } +chapter-template = Peatükk { $number } +part-template = Osa { $number } diff --git a/i18n/eu.ftl b/i18n/eu.ftl index 1232565e6..1483b2ec9 100644 --- a/i18n/eu.ftl +++ b/i18n/eu.ftl @@ -1,6 +1,3 @@ -appendix = Eranskina -chapter = Kapitulua -part = Atala figure = Irudia table = Taula proof = Frogapena @@ -19,6 +16,6 @@ see-also = Ikusi, halaber bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { $number }. { appendix } -chapter-template = { $number }. { chapter } -part-template = { $number }. { chapter } +appendix-template = { $number }. Eranskina +chapter-template ={ $number }. Kapitulua +part-template = { $number }. Atala diff --git a/i18n/fi.ftl b/i18n/fi.ftl index fea4243ca..246445683 100644 --- a/i18n/fi.ftl +++ b/i18n/fi.ftl @@ -1,6 +1,3 @@ -appendix = Liite -chapter = Luku -part = Osa figure = Kuva table = Taulukko proof = Todistus @@ -19,6 +16,6 @@ see-also = katso myös bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Liite { $number } +chapter-template = Luku { $number } +part-template = Osa { $number } diff --git a/i18n/fr.ftl b/i18n/fr.ftl index 4fb0a71c1..311c340a1 100644 --- a/i18n/fr.ftl +++ b/i18n/fr.ftl @@ -1,6 +1,3 @@ -appendix = Annexe -chapter = Chapitre -part = Partie figure = Figure table = Table proof = Démonstration @@ -20,7 +17,6 @@ bibliography-and = et bibliography-edited-by = Édité par { $name } bibliography-et-al = et al. bibliography-translated-by = Traduit par { $name } - -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Annexe { $number } +chapter-template = Chapitre { $number } +part-template = Partie { $number } diff --git a/i18n/ga.ftl b/i18n/ga.ftl index eeccd5074..532f83154 100644 --- a/i18n/ga.ftl +++ b/i18n/ga.ftl @@ -1,6 +1,3 @@ -appendix = Aguisín -chapter = Caibidil -part = Cuid figure = Léaráid table = Tábla proof = Cruthúnas @@ -19,6 +16,6 @@ see-also = féach freisin bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Aguisín { $number } +chapter-template = Caibidil { $number } +part-template = Cuid { $number } diff --git a/i18n/gu.ftl b/i18n/gu.ftl index c87143f00..276d94800 100644 --- a/i18n/gu.ftl +++ b/i18n/gu.ftl @@ -1,6 +1,3 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { $number } -chapter-template = { $number } -part-template = { $number } diff --git a/i18n/hi.ftl b/i18n/hi.ftl index 74d3242d5..93c2c6198 100644 --- a/i18n/hi.ftl +++ b/i18n/hi.ftl @@ -1,6 +1,3 @@ -appendix = परिशिष्ट -chapter = अध्याय -part = खण्ड figure = चित्र table = तालिका proof = प्रमाण @@ -19,6 +16,6 @@ see-also = और देखिए bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = परिशिष्ट { $number } +chapter-template = अध्याय { $number } +part-template = खण्ड { $number } diff --git a/i18n/hr.ftl b/i18n/hr.ftl index 11392450a..aaa3ea363 100644 --- a/i18n/hr.ftl +++ b/i18n/hr.ftl @@ -1,6 +1,3 @@ -appendix = Dodatak -chapter = Poglavlje -part = Dio figure = Slika table = Tablica proof = Dokaz @@ -19,6 +16,6 @@ see-also = Također vidjeti bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Dodatak { $number } +chapter-template = Poglavlje { $number } +part-template = Dio { $number } diff --git a/i18n/hu.ftl b/i18n/hu.ftl index e5edb4796..f807def02 100644 --- a/i18n/hu.ftl +++ b/i18n/hu.ftl @@ -1,6 +1,3 @@ -appendix = függelék -chapter = fejezet -part = rész figure = ábra table = táblázat proof = Bizonyítás @@ -19,6 +16,6 @@ see-also = lásd még bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { $number }. { appendix } -chapter-template = { $number }. { chapter } -part-template = { $number }. { part } +appendix-template = { number }. függelék +chapter-template = { number }. fejezet +part-template = { number }. rész diff --git a/i18n/hy.ftl b/i18n/hy.ftl index 010a95852..985d61281 100644 --- a/i18n/hy.ftl +++ b/i18n/hy.ftl @@ -1,6 +1,3 @@ -appendix = Հավելված -chapter = Գլուխ -part = Մաս figure = Նկար table = Աղյուսակ proof = Ապացույց @@ -19,6 +16,6 @@ see-also = տե՛ս նաև bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Հավելված { $number } +chapter-template = Գլուխ { $number } +part-template = Մաս { $number } diff --git a/i18n/id.ftl b/i18n/id.ftl index 31264c804..dac9dc69e 100644 --- a/i18n/id.ftl +++ b/i18n/id.ftl @@ -1,6 +1,3 @@ -appendix = Lampiran -chapter = Bab -part = Bagian figure = Gambar table = Tabel proof = Bukti @@ -19,6 +16,6 @@ see-also = lihat juga bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Lampiran { $number } +chapter-template = Bab { $number } +part-template = Bagian { $number } diff --git a/i18n/is.ftl b/i18n/is.ftl index 3f74f3644..3e89b055c 100644 --- a/i18n/is.ftl +++ b/i18n/is.ftl @@ -1,6 +1,3 @@ -appendix = Viðauki -chapter = Kafli -part = Hluti figure = Mynd table = Tafla proof = Sönnun @@ -19,6 +16,6 @@ see-also = Sjá einnig bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Viðauki { $number } +chapter-template = Kafli { $number } +part-template = Hluti { $number } diff --git a/i18n/it.ftl b/i18n/it.ftl index ea766122b..29fdd4663 100644 --- a/i18n/it.ftl +++ b/i18n/it.ftl @@ -1,6 +1,3 @@ -appendix = Appendice -chapter = Capitolo -part = Parte figure = Figura table = Tabella proof = Dimostrazione @@ -19,6 +16,6 @@ see-also = vedi anche bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Appendice { $number } +chapter-template = Capitolo { $number } +part-template = Parte { $number } diff --git a/i18n/ja.ftl b/i18n/ja.ftl index 926bd07ae..fd345a344 100644 --- a/i18n/ja.ftl +++ b/i18n/ja.ftl @@ -1,4 +1,3 @@ -appendix = 付録 prechapter = 第 postchapter = 章 prepart = 第 @@ -18,6 +17,4 @@ references = 参考文献 bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { prechapter } { $number } { postchapter } -part-template = { prepart } { $number } { postpart } +appendix-template = 付録 { $number } diff --git a/i18n/jv.ftl b/i18n/jv.ftl index c87143f00..276d94800 100644 --- a/i18n/jv.ftl +++ b/i18n/jv.ftl @@ -1,6 +1,3 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { $number } -chapter-template = { $number } -part-template = { $number } diff --git a/i18n/ka.ftl b/i18n/ka.ftl index 729d26220..25563b3aa 100644 --- a/i18n/ka.ftl +++ b/i18n/ka.ftl @@ -1,6 +1,3 @@ -appendix = დანართი -chapter = თავი -part = ნაწილი figure = სურ. table = ცხრ. proof = დამტკიცება @@ -19,6 +16,6 @@ see-also = იხ. ასევე bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = დანართი { $number } +chapter-template = თავი { $number } +part-template = ნაწილი { $number } diff --git a/i18n/kn.ftl b/i18n/kn.ftl index 9597a6fd5..cc775c676 100644 --- a/i18n/kn.ftl +++ b/i18n/kn.ftl @@ -1,6 +1,3 @@ -appendix = ಅನುಬಂಧ -chapter = ಅಧ್ಯಾಯ -part = ಭಾಗ figure = ಚಿತ್ರ table = ಕೋಷ್ಟಕ proof = ಕರಡುಪ್ರತಿ @@ -18,6 +15,6 @@ see-also = ಇದನ್ನೂ ಸಹ ನೋಡು bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = ಅನುಬಂಧ { $number } +chapter-template = ಅಧ್ಯಾಯ { $number } +part-template = ಭಾಗ { $number } diff --git a/i18n/la.ftl b/i18n/la.ftl index 1b47b041c..68ebe1842 100644 --- a/i18n/la.ftl +++ b/i18n/la.ftl @@ -1,7 +1,4 @@ hello = Salve { $name }! -appendix = Additamentum -chapter = Caput -part = Pars figure = Descriptio table = Tabula proof = Demonstratio @@ -22,6 +19,6 @@ bibliography-and = et bibliography-edited-by = Conpositor erat { $name } bibliography-et-al = et al. bibliography-translated-by = Interpres fuit { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Additamentum { $number } +chapter-template = Caput { $number } +part-template = Pars { $number } diff --git a/i18n/lt.ftl b/i18n/lt.ftl index bce9c07b4..052c565da 100644 --- a/i18n/lt.ftl +++ b/i18n/lt.ftl @@ -1,6 +1,3 @@ -appendix = priedas -chapter = skyrius -part = dalis figure = pav. table = lentelė proof = Įrodymas @@ -19,6 +16,6 @@ see-also = taip pat bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { $number } { appendix } -chapter-template = { $number } { chapter } -part-template = { $number } { part } +appendix-template = { number } priedas +chapter-template = { number } skyrius +part-template = { number } dalis diff --git a/i18n/lv.ftl b/i18n/lv.ftl index 404ed06fb..a7a6b6d78 100644 --- a/i18n/lv.ftl +++ b/i18n/lv.ftl @@ -1,6 +1,3 @@ -appendix = Pielikums -chapter = Nodaļa -part = Daļa figure = Zīm. table = Tabula tableofcontents-title = Saturs @@ -17,6 +14,6 @@ see-also = skat. arī bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Pielikums { $number } +chapter-template = Nodaļa { $number } +part-template = Daļa { $number } diff --git a/i18n/ml.ftl b/i18n/ml.ftl index 9cd837f1a..02cf887a8 100644 --- a/i18n/ml.ftl +++ b/i18n/ml.ftl @@ -1,18 +1,15 @@ -appendix = ശിഷ്ടം -chapter = അദ്ധ്യായം -part = ഭാഗം figure = ചിത്രം table = പട്ടിക tableofcontents-title = ഉള്ളടക്കം listoffigures = ചിത്രസൂചിക listoftables = പട്ടികകളുടെ സൂചിക bstract = സാരാംശം -glossary = +glossary = see = കാണുക see-also = ഇതും കാണുക bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = ശിഷ്ടം { $number } +chapter-template = അദ്ധ്യായം { $number } +part-template = ഭാഗം { $number } diff --git a/i18n/mr.ftl b/i18n/mr.ftl index 4f54487b8..62dcff63a 100644 --- a/i18n/mr.ftl +++ b/i18n/mr.ftl @@ -1,6 +1,3 @@ -appendix = परिशिष्ट -chapter = प्रकरण -part = खंड figure = आकृती table = कोष्टक proof = सिद्धता @@ -19,6 +16,6 @@ see-also = हेदेखील पाहा bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = परिशिष्ट { $number } +chapter-template = प्रकरण { $number } +part-template = खंड { $number } diff --git a/i18n/my.ftl b/i18n/my.ftl index c87143f00..276d94800 100644 --- a/i18n/my.ftl +++ b/i18n/my.ftl @@ -1,6 +1,3 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { $number } -chapter-template = { $number } -part-template = { $number } diff --git a/i18n/nb.ftl b/i18n/nb.ftl index a88e8185c..0e3c8dea9 100644 --- a/i18n/nb.ftl +++ b/i18n/nb.ftl @@ -1,6 +1,3 @@ -appendix = Tillegg -chapter = Kapittel -part = Del figure = Figur table = Tabell proof = Bevis @@ -21,6 +18,6 @@ bibliography-and = og bibliography-edited-by = Redigert av { $name } bibliography-et-al = et al. bibliography-translated-by = Oversatt av { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Tillegg { $number } +chapter-template = Kapittel { $number } +part-template = Del { $number } diff --git a/i18n/nl.ftl b/i18n/nl.ftl index 091715ad4..3fb89ac25 100644 --- a/i18n/nl.ftl +++ b/i18n/nl.ftl @@ -1,6 +1,3 @@ -appendix = Bijlage -chapter = Hoofdstuk -part = Deel figure = Figuur table = Tabel proof = Bewijs @@ -19,6 +16,6 @@ see-also = zie ook bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Bijlage { $number } +chapter-template = Hoofdstuk { $number } +part-template = Deel { $number } diff --git a/i18n/nn.ftl b/i18n/nn.ftl index 2b3e271d9..7ecfa9390 100644 --- a/i18n/nn.ftl +++ b/i18n/nn.ftl @@ -1,6 +1,3 @@ -appendix = Tillegg -chapter = Kapittel -part = Del figure = Figur table = Tabell proof = Bevis @@ -19,6 +16,6 @@ see-also = Sjå òg bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Tillegg { $number } +chapter-template = Kapittel { $number } +part-template = Del { $number } diff --git a/i18n/no.ftl b/i18n/no.ftl index 45928da9e..1ea6b3725 100644 --- a/i18n/no.ftl +++ b/i18n/no.ftl @@ -1,7 +1,4 @@ hello = Hei { $name }! -appendix = Tillegg -chapter = Kapittel -part = Del figure = Figur table = Tabell proof = Bevis @@ -22,6 +19,6 @@ bibliography-and = og bibliography-edited-by = Redigert av { $name } bibliography-et-al = et al. bibliography-translated-by = Oversatt av { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Tillegg { $number } +chapter-template = Kapittel { $number } +part-template = Del { $number } diff --git a/i18n/or.ftl b/i18n/or.ftl index c87143f00..276d94800 100644 --- a/i18n/or.ftl +++ b/i18n/or.ftl @@ -1,6 +1,3 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { $number } -chapter-template = { $number } -part-template = { $number } diff --git a/i18n/pa.ftl b/i18n/pa.ftl index c87143f00..276d94800 100644 --- a/i18n/pa.ftl +++ b/i18n/pa.ftl @@ -1,6 +1,3 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { $number } -chapter-template = { $number } -part-template = { $number } diff --git a/i18n/pl.ftl b/i18n/pl.ftl index 0799b3ea7..249054077 100644 --- a/i18n/pl.ftl +++ b/i18n/pl.ftl @@ -1,6 +1,3 @@ -appendix = Dodatek -chapter = Rozdział -part = Cześć figure = Rysunek table = Tablica proof = Dowód @@ -19,6 +16,6 @@ see-also = Porównaj także bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Dodatek { $number } +chapter-template = Rozdział { $number } +part-template = Cześć { $number } diff --git a/i18n/pt.ftl b/i18n/pt.ftl index 4a84a5625..7ddd91d8d 100644 --- a/i18n/pt.ftl +++ b/i18n/pt.ftl @@ -1,6 +1,3 @@ -appendix = Apêndice -chapter = Capítulo -part = Parte figure = Figura table = Tabela proof = Demonstração @@ -19,6 +16,6 @@ see-also = ver também bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Apêndice { $number } +chapter-template = Capítulo { $number } +part-template = Parte { $number } diff --git a/i18n/rm.ftl b/i18n/rm.ftl index 120cacc78..de8fdbf81 100644 --- a/i18n/rm.ftl +++ b/i18n/rm.ftl @@ -1,6 +1,3 @@ -appendix = Appendix -chapter = Chapitel -part = Part figure = Figura table = Tabella proof = Demonstraziun @@ -19,6 +16,6 @@ see-also = vesair era bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Appendix { $number } +chapter-template = Chapitel { $number } +part-template = Part { $number } diff --git a/i18n/ro.ftl b/i18n/ro.ftl index f43463511..c19fd4a87 100644 --- a/i18n/ro.ftl +++ b/i18n/ro.ftl @@ -1,6 +1,3 @@ -appendix = Anexa -chapter = Capitolul -part = Partea figure = Figura table = Tabela proof = Demonstraţie @@ -19,6 +16,6 @@ see-also = vezi de asemenea bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Anexa { $number } +chapter-template = Capitolul { $number } +part-template = Partea { $number } diff --git a/i18n/ru.ftl b/i18n/ru.ftl index e7fc87fac..beccd01f4 100644 --- a/i18n/ru.ftl +++ b/i18n/ru.ftl @@ -1,6 +1,3 @@ -appendix = Приложение -chapter = Глава -part = Часть figure = Рис. table = Таблица proof = Доказательство @@ -19,6 +16,6 @@ see-also = см. также bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Приложение { $number } +chapter-template = Глава { $number } +part-template = Часть { $number } diff --git a/i18n/sa.ftl b/i18n/sa.ftl index c87143f00..276d94800 100644 --- a/i18n/sa.ftl +++ b/i18n/sa.ftl @@ -1,6 +1,3 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { $number } -chapter-template = { $number } -part-template = { $number } diff --git a/i18n/sk.ftl b/i18n/sk.ftl index 05a41765b..38a6bc4bf 100644 --- a/i18n/sk.ftl +++ b/i18n/sk.ftl @@ -1,6 +1,3 @@ -appendix = Dodatok -chapter = Kapitola -part = Časť figure = Obr. table = Tabuľka proof = Dôkaz @@ -19,6 +16,6 @@ see-also = viď tiež bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Dodatok { $number } +chapter-template = Kapitola { $number } +part-template = Časť { $number } diff --git a/i18n/sl.ftl b/i18n/sl.ftl index 210d559d1..9c3120138 100644 --- a/i18n/sl.ftl +++ b/i18n/sl.ftl @@ -1,6 +1,3 @@ -appendix = Dodatek -chapter = Poglavje -part = Del figure = Slika table = Tabela proof = Dokaz @@ -19,6 +16,6 @@ see-also = glej tudi bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Dodatek { $number } +chapter-template = Poglavje { $number } +part-template = Del { $number } diff --git a/i18n/sr.ftl b/i18n/sr.ftl index 197ed8bf1..98ec19280 100644 --- a/i18n/sr.ftl +++ b/i18n/sr.ftl @@ -1,6 +1,3 @@ -appendix = Додатак -chapter = Глава -part = Део figure = Слика table = Табела proof = Доказ @@ -19,6 +16,6 @@ see-also = видитакође bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Додатак { $number } +chapter-template = Глава { $number } +part-template = Део { $number } diff --git a/i18n/sv.ftl b/i18n/sv.ftl index 7b35e0d54..c1538795b 100644 --- a/i18n/sv.ftl +++ b/i18n/sv.ftl @@ -1,6 +1,3 @@ -appendix = Bilaga -chapter = Kapitel -part = Del figure = Figur table = Tabell proof = Bevis @@ -19,6 +16,6 @@ see-also = se även bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Bilaga { $number } +chapter-template = Kapitel { $number } +part-template = Del { $number } diff --git a/i18n/ta.ftl b/i18n/ta.ftl index 26f3e99b2..2aee178dd 100644 --- a/i18n/ta.ftl +++ b/i18n/ta.ftl @@ -1,6 +1,3 @@ -appendix = பிற்சேர்க்கை -chapter = அத்தியாயம் -part = பகுதி figure = படம் table = அட்டவணை tableofcontents-title = உள்ளே @@ -12,6 +9,6 @@ see = பார்க்க bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = பிற்சேர்க்கை { $number } +chapter-template = அத்தியாயம் { $number } +part-template = பகுதி { $number } diff --git a/i18n/th.ftl b/i18n/th.ftl index 7ee51d37e..17f90ccec 100644 --- a/i18n/th.ftl +++ b/i18n/th.ftl @@ -1,6 +1,3 @@ -appendix = ภาคผนวก -chapter = บทที่ -part = ภาค figure = รูปที่ table = ตารางที่ proof = พิสูจน์ @@ -18,6 +15,6 @@ see-also = ดูเพิ่มเติม bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = ภาคผนวก { $number } +chapter-template = บทที่ { $number } +part-template = ภาค { $number } diff --git a/i18n/tk.ftl b/i18n/tk.ftl index f96a05db9..20500ff88 100644 --- a/i18n/tk.ftl +++ b/i18n/tk.ftl @@ -1,6 +1,3 @@ -appendix = Goşmaça -chapter = Bap -part = Bölüm figure = Surat table = Tablisa proof = Delil @@ -19,6 +16,6 @@ see-also = şuňa-da ser. bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Goşmaça { $number } +chapter-template = Bap { $number } +part-template = Bölüm { $number } diff --git a/i18n/tr.ftl b/i18n/tr.ftl index 12fecfc49..b25a5a66d 100644 --- a/i18n/tr.ftl +++ b/i18n/tr.ftl @@ -1,7 +1,4 @@ hello = Merhaba { $name }! -appendix = Ek -chapter = Bölüm -part = Kısım figure = Şekil table = Tablo proof = Kanıt @@ -20,6 +17,6 @@ see-also = ayrıca bkz. bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Ek { $number } +chapter-template = Bölüm { $number } +part-template = Kısım { $number } diff --git a/i18n/ug.ftl b/i18n/ug.ftl index 2094a3b1c..285a37089 100644 --- a/i18n/ug.ftl +++ b/i18n/ug.ftl @@ -1,6 +1,3 @@ -appendix = قوشۇمچە -chapter = باب -part = قىسىم figure = رەسىم table = جەدۋەل proof = ئىسپات @@ -18,6 +15,6 @@ see = قاراڭ see-also = ئايرىم قاراڭ bibliography-edited-by = { $name } bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = قوشۇمچە { $number } +chapter-template = باب { $number } +part-template = قىسىم { $number } diff --git a/i18n/uk.ftl b/i18n/uk.ftl index b27b93f44..ed358aef4 100644 --- a/i18n/uk.ftl +++ b/i18n/uk.ftl @@ -1,6 +1,3 @@ -appendix = Додаток -chapter = Розділ -part = Частина figure = Рис. table = Табл. proof = Доведення @@ -19,6 +16,6 @@ see-also = див. також bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = Додаток { $number } +chapter-template = Розділ { $number } +part-template = Частина { $number } diff --git a/i18n/ur.ftl b/i18n/ur.ftl index 74d74ebf0..4a62e3fb3 100644 --- a/i18n/ur.ftl +++ b/i18n/ur.ftl @@ -1,6 +1,3 @@ -appendix = ضمیمہ -chapter = باب -part = حصّہ figure = شكل table = جدول proof = ثبوت @@ -19,6 +16,6 @@ see-also = ایضاً bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } -appendix-template = { appendix } { $number } -chapter-template = { chapter } { $number } -part-template = { part } { $number } +appendix-template = ضمیمہ { $number } +chapter-template = باب { $number } +part-template = حصّہ { $number } From f21adfbbe373bca87a4fb4757a0264440af4a37e Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Thu, 4 Aug 2022 01:30:33 +0300 Subject: [PATCH 10/10] chore(i18n): Rename keys for current refactor --- i18n/af.ftl | 2 +- i18n/am.ftl | 2 +- i18n/ar.ftl | 2 +- i18n/as.ftl | 2 +- i18n/bg.ftl | 2 +- i18n/bn.ftl | 2 +- i18n/bo.ftl | 2 +- i18n/ca.ftl | 2 +- i18n/cs.ftl | 2 +- i18n/cy.ftl | 2 +- i18n/da.ftl | 2 +- i18n/de.ftl | 2 +- i18n/el-monoton.ftl | 2 +- i18n/el-polyton.ftl | 2 +- i18n/el.ftl | 2 +- i18n/en.ftl | 4 ++-- i18n/eo.ftl | 2 +- i18n/es.ftl | 2 +- i18n/et.ftl | 2 +- i18n/eu.ftl | 2 +- i18n/fi.ftl | 2 +- i18n/fr.ftl | 2 +- i18n/ga.ftl | 2 +- i18n/hi.ftl | 2 +- i18n/hr.ftl | 2 +- i18n/hu.ftl | 2 +- i18n/hy.ftl | 2 +- i18n/id.ftl | 2 +- i18n/is.ftl | 2 +- i18n/it.ftl | 2 +- i18n/ka.ftl | 2 +- i18n/kn.ftl | 2 +- i18n/la.ftl | 2 +- i18n/lt.ftl | 2 +- i18n/lv.ftl | 2 +- i18n/ml.ftl | 2 +- i18n/mr.ftl | 2 +- i18n/nb.ftl | 2 +- i18n/nl.ftl | 2 +- i18n/nn.ftl | 2 +- i18n/no.ftl | 2 +- i18n/pl.ftl | 2 +- i18n/pt.ftl | 2 +- i18n/rm.ftl | 2 +- i18n/ro.ftl | 2 +- i18n/ru.ftl | 2 +- i18n/sk.ftl | 2 +- i18n/sl.ftl | 2 +- i18n/sr.ftl | 2 +- i18n/sv.ftl | 2 +- i18n/ta.ftl | 2 +- i18n/th.ftl | 2 +- i18n/tk.ftl | 2 +- i18n/tr.ftl | 2 +- i18n/ug.ftl | 2 +- i18n/uk.ftl | 2 +- i18n/ur.ftl | 2 +- 57 files changed, 58 insertions(+), 58 deletions(-) diff --git a/i18n/af.ftl b/i18n/af.ftl index a2b4c6f8e..e6bddf101 100644 --- a/i18n/af.ftl +++ b/i18n/af.ftl @@ -16,5 +16,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Bylae { $number } -chapter-template = Hoofstuk { $number } +book-chapter-title = Hoofstuk { $number } part-template = Deel { $number } diff --git a/i18n/am.ftl b/i18n/am.ftl index f8fa6ead3..e9d7cd990 100644 --- a/i18n/am.ftl +++ b/i18n/am.ftl @@ -16,5 +16,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = መድበል { $number } -chapter-template = ክፍል { $number } +book-chapter-title = ክፍል { $number } part-template = ንዑስ ክፍል { $number } diff --git a/i18n/ar.ftl b/i18n/ar.ftl index 3ee123e2b..e88f61715 100644 --- a/i18n/ar.ftl +++ b/i18n/ar.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = الملاحق { $number } -chapter-template = باب { $number } +book-chapter-title = باب { $number } part-template = القسم { $number } diff --git a/i18n/as.ftl b/i18n/as.ftl index 92c5c758c..1eaea9634 100644 --- a/i18n/as.ftl +++ b/i18n/as.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = পৰিশিষ্ট { $number } -chapter-template = অধ্যায় { $number } +book-chapter-title = অধ্যায় { $number } part-template = অংশ { $number } diff --git a/i18n/bg.ftl b/i18n/bg.ftl index 2645e2bbe..8bbaedf33 100644 --- a/i18n/bg.ftl +++ b/i18n/bg.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Приложение { $number } -chapter-template = Глава { $number } +book-chapter-title = Глава { $number } part-template = Част { $number } diff --git a/i18n/bn.ftl b/i18n/bn.ftl index ed8026e0e..e6d09d7a2 100644 --- a/i18n/bn.ftl +++ b/i18n/bn.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = পরিশিষ্ট { $number } -chapter-template = অধ্যায় { $number } +book-chapter-title = অধ্যায় { $number } part-template = খন্ড { $number } diff --git a/i18n/bo.ftl b/i18n/bo.ftl index c766264c0..13b9c0bed 100644 --- a/i18n/bo.ftl +++ b/i18n/bo.ftl @@ -12,5 +12,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = ཞར་བྱུང་། { $number } -chapter-template = ལེའུ་ { $number } +book-chapter-title = ལེའུ་ { $number } part-template = ཆ་ཤས་ { $number } diff --git a/i18n/ca.ftl b/i18n/ca.ftl index 7039cb7ec..f073d6f88 100644 --- a/i18n/ca.ftl +++ b/i18n/ca.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Apèndix { $number } -chapter-template = Capítol { $number } +book-chapter-title = Capítol { $number } part-template = Part { $number } diff --git a/i18n/cs.ftl b/i18n/cs.ftl index 4fc4a0854..fcd0d7116 100644 --- a/i18n/cs.ftl +++ b/i18n/cs.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Příloha { $number } -chapter-template = Kapitola { $number } +book-chapter-title = Kapitola { $number } part-template = Část { $number } diff --git a/i18n/cy.ftl b/i18n/cy.ftl index 965479d92..1fa6fbe96 100644 --- a/i18n/cy.ftl +++ b/i18n/cy.ftl @@ -14,5 +14,5 @@ page = tudalen see = gweler see-also = gweler hefyd appendix-template = Atodiad { $number } -chapter-template = Pennod { $number } +book-chapter-title = Pennod { $number } part-template = Rhan { $number } diff --git a/i18n/da.ftl b/i18n/da.ftl index 0ca9ddcc1..07d2fc64a 100644 --- a/i18n/da.ftl +++ b/i18n/da.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Bilag { $number } -chapter-template = Kapitel { $number } +book-chapter-title = Kapitel { $number } part-template = Del { $number } diff --git a/i18n/de.ftl b/i18n/de.ftl index 64e397b6d..6ed6ad119 100644 --- a/i18n/de.ftl +++ b/i18n/de.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Anhang { $number } -chapter-template = Kapitel { $number } +book-chapter-title = Kapitel { $number } part-template = Teil { $number } diff --git a/i18n/el-monoton.ftl b/i18n/el-monoton.ftl index c073c2f54..ccd101fd8 100644 --- a/i18n/el-monoton.ftl +++ b/i18n/el-monoton.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Παράρτημα { $number } -chapter-template = Κεφάλαιο { $number } +book-chapter-title = Κεφάλαιο { $number } part-template = Μέρος { $number } diff --git a/i18n/el-polyton.ftl b/i18n/el-polyton.ftl index 665e4b877..52eb72b7d 100644 --- a/i18n/el-polyton.ftl +++ b/i18n/el-polyton.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Παράρτημα { $number } -chapter-template = Κεφάλαιο { $number } +book-chapter-title = Κεφάλαιο { $number } part-template = Μέρος { $number } diff --git a/i18n/el.ftl b/i18n/el.ftl index c073c2f54..ccd101fd8 100644 --- a/i18n/el.ftl +++ b/i18n/el.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Παράρτημα { $number } -chapter-template = Κεφάλαιο { $number } +book-chapter-title = Κεφάλαιο { $number } part-template = Μέρος { $number } diff --git a/i18n/en.ftl b/i18n/en.ftl index f3bfa1ca6..ee61dc329 100644 --- a/i18n/en.ftl +++ b/i18n/en.ftl @@ -19,8 +19,8 @@ bibliography-and = and bibliography-edited-by = Edited by { $name } bibliography-et-al = et al. bibliography-translated-by = Translated by { $name } -chapter-template = Chapter { $number } +book-chapter-title = Chapter { $number } part-template = Part { $number } appendix-template = Appendix { $number } -chapter-template = { chapter } { $number } +book-chapter-title = { chapter } { $number } part-template = { part } { $number } diff --git a/i18n/eo.ftl b/i18n/eo.ftl index a7c54ef37..ae6b562e0 100644 --- a/i18n/eo.ftl +++ b/i18n/eo.ftl @@ -23,5 +23,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Apendico { $number } -chapter-template = Ĉapitro { $number } +book-chapter-title = Ĉapitro { $number } part-template = Parto { $number } diff --git a/i18n/es.ftl b/i18n/es.ftl index 8229392df..6ab95178f 100644 --- a/i18n/es.ftl +++ b/i18n/es.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Apéndice { $number } -chapter-template = Capítulo { $number } +book-chapter-title = Capítulo { $number } part-template = Parte { $number } diff --git a/i18n/et.ftl b/i18n/et.ftl index eae5d3ea6..9bcf548d2 100644 --- a/i18n/et.ftl +++ b/i18n/et.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Lisa { $number } -chapter-template = Peatükk { $number } +book-chapter-title = Peatükk { $number } part-template = Osa { $number } diff --git a/i18n/eu.ftl b/i18n/eu.ftl index 1483b2ec9..01b2fe760 100644 --- a/i18n/eu.ftl +++ b/i18n/eu.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = { $number }. Eranskina -chapter-template ={ $number }. Kapitulua +book-chapter-title ={ $number }. Kapitulua part-template = { $number }. Atala diff --git a/i18n/fi.ftl b/i18n/fi.ftl index 246445683..70306ca6a 100644 --- a/i18n/fi.ftl +++ b/i18n/fi.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Liite { $number } -chapter-template = Luku { $number } +book-chapter-title = Luku { $number } part-template = Osa { $number } diff --git a/i18n/fr.ftl b/i18n/fr.ftl index 311c340a1..598014b21 100644 --- a/i18n/fr.ftl +++ b/i18n/fr.ftl @@ -18,5 +18,5 @@ bibliography-edited-by = Édité par { $name } bibliography-et-al = et al. bibliography-translated-by = Traduit par { $name } appendix-template = Annexe { $number } -chapter-template = Chapitre { $number } +book-chapter-title = Chapitre { $number } part-template = Partie { $number } diff --git a/i18n/ga.ftl b/i18n/ga.ftl index 532f83154..6db3874db 100644 --- a/i18n/ga.ftl +++ b/i18n/ga.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Aguisín { $number } -chapter-template = Caibidil { $number } +book-chapter-title = Caibidil { $number } part-template = Cuid { $number } diff --git a/i18n/hi.ftl b/i18n/hi.ftl index 93c2c6198..ce06c0d7d 100644 --- a/i18n/hi.ftl +++ b/i18n/hi.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = परिशिष्ट { $number } -chapter-template = अध्याय { $number } +book-chapter-title = अध्याय { $number } part-template = खण्ड { $number } diff --git a/i18n/hr.ftl b/i18n/hr.ftl index aaa3ea363..e71291809 100644 --- a/i18n/hr.ftl +++ b/i18n/hr.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Dodatak { $number } -chapter-template = Poglavlje { $number } +book-chapter-title = Poglavlje { $number } part-template = Dio { $number } diff --git a/i18n/hu.ftl b/i18n/hu.ftl index f807def02..914f746cc 100644 --- a/i18n/hu.ftl +++ b/i18n/hu.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = { number }. függelék -chapter-template = { number }. fejezet +book-chapter-title = { number }. fejezet part-template = { number }. rész diff --git a/i18n/hy.ftl b/i18n/hy.ftl index 985d61281..94d2be031 100644 --- a/i18n/hy.ftl +++ b/i18n/hy.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Հավելված { $number } -chapter-template = Գլուխ { $number } +book-chapter-title = Գլուխ { $number } part-template = Մաս { $number } diff --git a/i18n/id.ftl b/i18n/id.ftl index dac9dc69e..78defbfbf 100644 --- a/i18n/id.ftl +++ b/i18n/id.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Lampiran { $number } -chapter-template = Bab { $number } +book-chapter-title = Bab { $number } part-template = Bagian { $number } diff --git a/i18n/is.ftl b/i18n/is.ftl index 3e89b055c..c01c59942 100644 --- a/i18n/is.ftl +++ b/i18n/is.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Viðauki { $number } -chapter-template = Kafli { $number } +book-chapter-title = Kafli { $number } part-template = Hluti { $number } diff --git a/i18n/it.ftl b/i18n/it.ftl index 29fdd4663..21d039d69 100644 --- a/i18n/it.ftl +++ b/i18n/it.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Appendice { $number } -chapter-template = Capitolo { $number } +book-chapter-title = Capitolo { $number } part-template = Parte { $number } diff --git a/i18n/ka.ftl b/i18n/ka.ftl index 25563b3aa..9b1c7de2b 100644 --- a/i18n/ka.ftl +++ b/i18n/ka.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = დანართი { $number } -chapter-template = თავი { $number } +book-chapter-title = თავი { $number } part-template = ნაწილი { $number } diff --git a/i18n/kn.ftl b/i18n/kn.ftl index cc775c676..9e4cd32a0 100644 --- a/i18n/kn.ftl +++ b/i18n/kn.ftl @@ -16,5 +16,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = ಅನುಬಂಧ { $number } -chapter-template = ಅಧ್ಯಾಯ { $number } +book-chapter-title = ಅಧ್ಯಾಯ { $number } part-template = ಭಾಗ { $number } diff --git a/i18n/la.ftl b/i18n/la.ftl index 68ebe1842..59303ed5d 100644 --- a/i18n/la.ftl +++ b/i18n/la.ftl @@ -20,5 +20,5 @@ bibliography-edited-by = Conpositor erat { $name } bibliography-et-al = et al. bibliography-translated-by = Interpres fuit { $name } appendix-template = Additamentum { $number } -chapter-template = Caput { $number } +book-chapter-title = Caput { $number } part-template = Pars { $number } diff --git a/i18n/lt.ftl b/i18n/lt.ftl index 052c565da..af4a4cbee 100644 --- a/i18n/lt.ftl +++ b/i18n/lt.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = { number } priedas -chapter-template = { number } skyrius +book-chapter-title = { number } skyrius part-template = { number } dalis diff --git a/i18n/lv.ftl b/i18n/lv.ftl index a7a6b6d78..a62ca2938 100644 --- a/i18n/lv.ftl +++ b/i18n/lv.ftl @@ -15,5 +15,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Pielikums { $number } -chapter-template = Nodaļa { $number } +book-chapter-title = Nodaļa { $number } part-template = Daļa { $number } diff --git a/i18n/ml.ftl b/i18n/ml.ftl index 02cf887a8..5fb5e1404 100644 --- a/i18n/ml.ftl +++ b/i18n/ml.ftl @@ -11,5 +11,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = ശിഷ്ടം { $number } -chapter-template = അദ്ധ്യായം { $number } +book-chapter-title = അദ്ധ്യായം { $number } part-template = ഭാഗം { $number } diff --git a/i18n/mr.ftl b/i18n/mr.ftl index 62dcff63a..cd89e8330 100644 --- a/i18n/mr.ftl +++ b/i18n/mr.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = परिशिष्ट { $number } -chapter-template = प्रकरण { $number } +book-chapter-title = प्रकरण { $number } part-template = खंड { $number } diff --git a/i18n/nb.ftl b/i18n/nb.ftl index 0e3c8dea9..b270ade66 100644 --- a/i18n/nb.ftl +++ b/i18n/nb.ftl @@ -19,5 +19,5 @@ bibliography-edited-by = Redigert av { $name } bibliography-et-al = et al. bibliography-translated-by = Oversatt av { $name } appendix-template = Tillegg { $number } -chapter-template = Kapittel { $number } +book-chapter-title = Kapittel { $number } part-template = Del { $number } diff --git a/i18n/nl.ftl b/i18n/nl.ftl index 3fb89ac25..0ce912b44 100644 --- a/i18n/nl.ftl +++ b/i18n/nl.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Bijlage { $number } -chapter-template = Hoofdstuk { $number } +book-chapter-title = Hoofdstuk { $number } part-template = Deel { $number } diff --git a/i18n/nn.ftl b/i18n/nn.ftl index 7ecfa9390..22501abb4 100644 --- a/i18n/nn.ftl +++ b/i18n/nn.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Tillegg { $number } -chapter-template = Kapittel { $number } +book-chapter-title = Kapittel { $number } part-template = Del { $number } diff --git a/i18n/no.ftl b/i18n/no.ftl index 1ea6b3725..5945cc76c 100644 --- a/i18n/no.ftl +++ b/i18n/no.ftl @@ -20,5 +20,5 @@ bibliography-edited-by = Redigert av { $name } bibliography-et-al = et al. bibliography-translated-by = Oversatt av { $name } appendix-template = Tillegg { $number } -chapter-template = Kapittel { $number } +book-chapter-title = Kapittel { $number } part-template = Del { $number } diff --git a/i18n/pl.ftl b/i18n/pl.ftl index 249054077..aa4b2b128 100644 --- a/i18n/pl.ftl +++ b/i18n/pl.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Dodatek { $number } -chapter-template = Rozdział { $number } +book-chapter-title = Rozdział { $number } part-template = Cześć { $number } diff --git a/i18n/pt.ftl b/i18n/pt.ftl index 7ddd91d8d..572a5a648 100644 --- a/i18n/pt.ftl +++ b/i18n/pt.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Apêndice { $number } -chapter-template = Capítulo { $number } +book-chapter-title = Capítulo { $number } part-template = Parte { $number } diff --git a/i18n/rm.ftl b/i18n/rm.ftl index de8fdbf81..c6409e07c 100644 --- a/i18n/rm.ftl +++ b/i18n/rm.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Appendix { $number } -chapter-template = Chapitel { $number } +book-chapter-title = Chapitel { $number } part-template = Part { $number } diff --git a/i18n/ro.ftl b/i18n/ro.ftl index c19fd4a87..b43a7d27c 100644 --- a/i18n/ro.ftl +++ b/i18n/ro.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Anexa { $number } -chapter-template = Capitolul { $number } +book-chapter-title = Capitolul { $number } part-template = Partea { $number } diff --git a/i18n/ru.ftl b/i18n/ru.ftl index beccd01f4..6be2a0ab5 100644 --- a/i18n/ru.ftl +++ b/i18n/ru.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Приложение { $number } -chapter-template = Глава { $number } +book-chapter-title = Глава { $number } part-template = Часть { $number } diff --git a/i18n/sk.ftl b/i18n/sk.ftl index 38a6bc4bf..eca74fcfd 100644 --- a/i18n/sk.ftl +++ b/i18n/sk.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Dodatok { $number } -chapter-template = Kapitola { $number } +book-chapter-title = Kapitola { $number } part-template = Časť { $number } diff --git a/i18n/sl.ftl b/i18n/sl.ftl index 9c3120138..2819f28e4 100644 --- a/i18n/sl.ftl +++ b/i18n/sl.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Dodatek { $number } -chapter-template = Poglavje { $number } +book-chapter-title = Poglavje { $number } part-template = Del { $number } diff --git a/i18n/sr.ftl b/i18n/sr.ftl index 98ec19280..ee5446a27 100644 --- a/i18n/sr.ftl +++ b/i18n/sr.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Додатак { $number } -chapter-template = Глава { $number } +book-chapter-title = Глава { $number } part-template = Део { $number } diff --git a/i18n/sv.ftl b/i18n/sv.ftl index c1538795b..8183e9415 100644 --- a/i18n/sv.ftl +++ b/i18n/sv.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Bilaga { $number } -chapter-template = Kapitel { $number } +book-chapter-title = Kapitel { $number } part-template = Del { $number } diff --git a/i18n/ta.ftl b/i18n/ta.ftl index 2aee178dd..c37bea15e 100644 --- a/i18n/ta.ftl +++ b/i18n/ta.ftl @@ -10,5 +10,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = பிற்சேர்க்கை { $number } -chapter-template = அத்தியாயம் { $number } +book-chapter-title = அத்தியாயம் { $number } part-template = பகுதி { $number } diff --git a/i18n/th.ftl b/i18n/th.ftl index 17f90ccec..a5f24215a 100644 --- a/i18n/th.ftl +++ b/i18n/th.ftl @@ -16,5 +16,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = ภาคผนวก { $number } -chapter-template = บทที่ { $number } +book-chapter-title = บทที่ { $number } part-template = ภาค { $number } diff --git a/i18n/tk.ftl b/i18n/tk.ftl index 20500ff88..eab645e3e 100644 --- a/i18n/tk.ftl +++ b/i18n/tk.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Goşmaça { $number } -chapter-template = Bap { $number } +book-chapter-title = Bap { $number } part-template = Bölüm { $number } diff --git a/i18n/tr.ftl b/i18n/tr.ftl index b25a5a66d..fbc63874d 100644 --- a/i18n/tr.ftl +++ b/i18n/tr.ftl @@ -18,5 +18,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Ek { $number } -chapter-template = Bölüm { $number } +book-chapter-title = Bölüm { $number } part-template = Kısım { $number } diff --git a/i18n/ug.ftl b/i18n/ug.ftl index 285a37089..d0af34012 100644 --- a/i18n/ug.ftl +++ b/i18n/ug.ftl @@ -16,5 +16,5 @@ see-also = ئايرىم قاراڭ bibliography-edited-by = { $name } bibliography-translated-by = { $name } appendix-template = قوشۇمچە { $number } -chapter-template = باب { $number } +book-chapter-title = باب { $number } part-template = قىسىم { $number } diff --git a/i18n/uk.ftl b/i18n/uk.ftl index ed358aef4..73475288a 100644 --- a/i18n/uk.ftl +++ b/i18n/uk.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = Додаток { $number } -chapter-template = Розділ { $number } +book-chapter-title = Розділ { $number } part-template = Частина { $number } diff --git a/i18n/ur.ftl b/i18n/ur.ftl index 4a62e3fb3..9fc98e46a 100644 --- a/i18n/ur.ftl +++ b/i18n/ur.ftl @@ -17,5 +17,5 @@ bibliography-edited-by = { $name } bibliography-et-al = et al. bibliography-translated-by = { $name } appendix-template = ضمیمہ { $number } -chapter-template = باب { $number } +book-chapter-title = باب { $number } part-template = حصّہ { $number }