From aa11a5b1b793f254c327c15858f3bb5fd41b950c Mon Sep 17 00:00:00 2001 From: Omikhleia Date: Sun, 10 Jul 2022 14:37:49 +0200 Subject: [PATCH] feat(i18n): Add i18n support for as many languages as possible (Cherry picked from 556103e but content mixed with later commits from rebased i18n-for-all branch.) For fetching a key from the rebased source branch: function copykey () { sed -i -e "/^$1 = /d" *.ftl for ftl in *.ftl; do rg "^$1 =" ../i18n-for-all/i18n/$ftl >> $ftl done } --- classes/book.lua | 49 +++++++++++++++++++++++---------------------- 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 | 8 +++++++- i18n/cy.ftl | 3 +++ 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 | 4 +++- i18n/eo.ftl | 8 +++++++- i18n/es.ftl | 9 +++++++++ i18n/et.ftl | 9 +++++++++ i18n/eu.ftl | 9 +++++++++ i18n/fi.ftl | 9 +++++++++ i18n/fr.ftl | 9 +++++++++ i18n/ga.ftl | 9 +++++++++ i18n/gu.ftl | 5 +++++ 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 | 8 +++++++- i18n/jv.ftl | 5 +++++ i18n/ka.ftl | 9 +++++++++ i18n/kn.ftl | 9 +++++++++ i18n/la.ftl | 2 +- i18n/lt.ftl | 9 +++++++++ i18n/lv.ftl | 9 +++++++++ i18n/ml.ftl | 9 +++++++++ i18n/mr.ftl | 9 +++++++++ i18n/my.ftl | 5 +++++ i18n/nb.ftl | 4 ++-- i18n/nl.ftl | 9 +++++++++ i18n/nn.ftl | 4 ++-- i18n/no.ftl | 4 ++-- i18n/or.ftl | 5 +++++ i18n/pa.ftl | 5 +++++ i18n/pl.ftl | 9 +++++++++ i18n/pt.ftl | 9 +++++++++ i18n/rm.ftl | 9 +++++++++ i18n/ro.ftl | 9 +++++++++ i18n/ru.ftl | 9 +++++++++ i18n/sa.ftl | 5 +++++ 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 | 8 +++++++- i18n/ug.ftl | 7 +++++++ i18n/uk.ftl | 9 +++++++++ i18n/ur.ftl | 9 +++++++++ 65 files changed, 526 insertions(+), 36 deletions(-) diff --git a/classes/book.lua b/classes/book.lua index b56a1e239e..7539b897c5 100644 --- a/classes/book.lua +++ b/classes/book.lua @@ -104,30 +104,16 @@ function class:registerCommands () if SU.boolean(options.toc, true) then SILE.call("tocentry", { level = level, number = number }, SU.subContent(content)) 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) - end - SILE.call("show-multilevel-counter", { id = "sectioning" }) - if options.postnumber then - if SILE.Commands[options.postnumber .. ":" .. lang] then - options.postnumber = options.postnumber .. ":" .. lang - end - SILE.call(options.postnumber) + if options.msg then + SILE.call("fluent", { number = number }, { options.msg }) + else + SILE.call("show-multilevel-counter", { id = "sectioning" }) end end end) - self:registerCommand("book:chapter:pre", function (_, _) - SILE.call("fluent", {}, { "book-chapter-title-pre" }) - end) - self:registerCommand("book:chapter:post", function (_, _) - SILE.call("fluent", {}, { "book-chapter-post" }) SILE.call("par") end) @@ -157,10 +143,15 @@ function class:registerCommands () numbering = options.numbering, toc = options.toc, level = 1, - prenumber = "book:chapter:pre", - postnumber = "book:chapter:post" + msg = "book-chapter-title" }, content) end) + local lang = SILE.settings:get("document.language") + local postcmd = "book:chapter:post" + if SILE.Commands[postcmd .. ":" .. lang] then + postcmd = postcmd .. ":" .. lang + end + SILE.call(postcmd) SILE.call("book:chapterfont", {}, content) SILE.call("left-running-head", {}, function () SILE.settings:temporarily(function () @@ -180,9 +171,14 @@ function class:registerCommands () SILE.call("book:sectioning", { numbering = options.numbering, toc = options.toc, - level = 2, - postnumber = "book:section:post" + level = 2 }, content) + local lang = SILE.settings:get("document.language") + local postcmd = "book:section:post" + if SILE.Commands[postcmd .. ":" .. lang] then + postcmd = postcmd .. ":" .. lang + end + SILE.call(postcmd) SILE.process(content) end) if not SILE.scratch.counters.folio.off then @@ -215,11 +211,16 @@ function class:registerCommands () SILE.call("book:sectioning", { numbering = options.numbering, toc = options.toc, - level = 3, - postnumber = "book:subsection:post" + level = 3 }, content) SILE.process(content) end) + local lang = SILE.settings:get("document.language") + local postcmd = "book:subsection:post" + if SILE.Commands[postcmd .. ":" .. lang] then + postcmd = postcmd .. ":" .. lang + end + SILE.call(postcmd) SILE.typesetter:leaveHmode() SILE.call("novbreak") SILE.call("medskip") diff --git a/i18n/af.ftl b/i18n/af.ftl index e69de29bb2..0ecd0e1452 100644 --- a/i18n/af.ftl +++ b/i18n/af.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Hoofstuk { $number } + +tableofcontents-title = Inhoudsopgawe diff --git a/i18n/am.ftl b/i18n/am.ftl index e69de29bb2..34c93af069 100644 --- a/i18n/am.ftl +++ b/i18n/am.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = ክፍል { $number } + +tableofcontents-title = ይዘት diff --git a/i18n/ar.ftl b/i18n/ar.ftl index e69de29bb2..80692ded73 100644 --- a/i18n/ar.ftl +++ b/i18n/ar.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = باب { $number } + +tableofcontents-title = المحتويات diff --git a/i18n/as.ftl b/i18n/as.ftl index e69de29bb2..beb93387b9 100644 --- a/i18n/as.ftl +++ b/i18n/as.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = অধ্যায় { $number } + +tableofcontents-title = সমল diff --git a/i18n/bg.ftl b/i18n/bg.ftl index e69de29bb2..284a66322f 100644 --- a/i18n/bg.ftl +++ b/i18n/bg.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Глава { $number } + +tableofcontents-title = Съдържание diff --git a/i18n/bn.ftl b/i18n/bn.ftl index e69de29bb2..323c11fa66 100644 --- a/i18n/bn.ftl +++ b/i18n/bn.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = অধ্যায় { $number } + +tableofcontents-title = সূচীপত্র diff --git a/i18n/bo.ftl b/i18n/bo.ftl index e69de29bb2..2d757b1783 100644 --- a/i18n/bo.ftl +++ b/i18n/bo.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = ལེའུ་ { $number } + +tableofcontents-title = དཀར་ཆག། diff --git a/i18n/ca.ftl b/i18n/ca.ftl index e69de29bb2..4d25ab1674 100644 --- a/i18n/ca.ftl +++ b/i18n/ca.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Capítol { $number } + +tableofcontents-title = Índex diff --git a/i18n/cs.ftl b/i18n/cs.ftl index d41cb3c169..26182d59da 100644 --- a/i18n/cs.ftl +++ b/i18n/cs.ftl @@ -1,3 +1,9 @@ -book-chapter-title-pre = Kapitola{" "} +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Kapitola { $number } tableofcontents-title = Obsah diff --git a/i18n/cy.ftl b/i18n/cy.ftl index e69de29bb2..0b95d2b4bc 100644 --- a/i18n/cy.ftl +++ b/i18n/cy.ftl @@ -0,0 +1,3 @@ +book-chapter-title = Pennod { $number } + +tableofcontents-title = Cynnwys diff --git a/i18n/da.ftl b/i18n/da.ftl index e69de29bb2..a2d026a8b7 100644 --- a/i18n/da.ftl +++ b/i18n/da.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Kapitel { $number } + +tableofcontents-title = Indhold diff --git a/i18n/de.ftl b/i18n/de.ftl index e69de29bb2..750f38a774 100644 --- a/i18n/de.ftl +++ b/i18n/de.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Kapitel { $number } + +tableofcontents-title = Inhaltsverzeichnis diff --git a/i18n/el-monoton.ftl b/i18n/el-monoton.ftl index e69de29bb2..eb13b6b091 100644 --- a/i18n/el-monoton.ftl +++ b/i18n/el-monoton.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Κεφάλαιο { $number } + +tableofcontents-title = Περιεχόμενα diff --git a/i18n/el-polyton.ftl b/i18n/el-polyton.ftl index e69de29bb2..eb13b6b091 100644 --- a/i18n/el-polyton.ftl +++ b/i18n/el-polyton.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Κεφάλαιο { $number } + +tableofcontents-title = Περιεχόμενα diff --git a/i18n/el.ftl b/i18n/el.ftl index e69de29bb2..eb13b6b091 100644 --- a/i18n/el.ftl +++ b/i18n/el.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Κεφάλαιο { $number } + +tableofcontents-title = Περιεχόμενα diff --git a/i18n/en.ftl b/i18n/en.ftl index 303562604e..81d45994ee 100644 --- a/i18n/en.ftl +++ b/i18n/en.ftl @@ -6,7 +6,9 @@ bibliography-et-al = et al. bibliography-translated-by = Translated by { $name } -book-chapter-title-pre = Chapter{" "} +book-chapter-title = { chapter } { $number } + +book-chapter-title = Chapter { $number } hello = Hello { $name }! diff --git a/i18n/eo.ftl b/i18n/eo.ftl index e4acb36565..726e63a5a4 100644 --- a/i18n/eo.ftl +++ b/i18n/eo.ftl @@ -1,12 +1,18 @@ bibliography-and = kaj +bibliography-edited-by = { $name } + bibliography-edited-by = Redaktita por { $name } +bibliography-et-al = et al. + bibliography-et-al = kaj aliaj +bibliography-translated-by = { $name } + bibliography-translated-by = Tradukita por { $name } -book-chapter-title-pre = Ĉapitro{" "} +book-chapter-title = Ĉapitro { $number } hello = Saluton { $name }! diff --git a/i18n/es.ftl b/i18n/es.ftl index e69de29bb2..6f5d9ba838 100644 --- a/i18n/es.ftl +++ b/i18n/es.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Capítulo { $number } + +tableofcontents-title = Índice diff --git a/i18n/et.ftl b/i18n/et.ftl index e69de29bb2..5ba0031432 100644 --- a/i18n/et.ftl +++ b/i18n/et.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Peatükk { $number } + +tableofcontents-title = Sisukord diff --git a/i18n/eu.ftl b/i18n/eu.ftl index e69de29bb2..b29b6b4bdf 100644 --- a/i18n/eu.ftl +++ b/i18n/eu.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title ={ $number }. Kapitulua + +tableofcontents-title = Gaien Aurkibidea diff --git a/i18n/fi.ftl b/i18n/fi.ftl index e69de29bb2..e380510766 100644 --- a/i18n/fi.ftl +++ b/i18n/fi.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Luku { $number } + +tableofcontents-title = Sisällys diff --git a/i18n/fr.ftl b/i18n/fr.ftl index e69de29bb2..b6a110cf0c 100644 --- a/i18n/fr.ftl +++ b/i18n/fr.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = Édité par { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = Traduit par { $name } + +book-chapter-title = Chapitre { $number } + +tableofcontents-title = Table des matières diff --git a/i18n/ga.ftl b/i18n/ga.ftl index e69de29bb2..03442713f1 100644 --- a/i18n/ga.ftl +++ b/i18n/ga.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Caibidil { $number } + +tableofcontents-title = Clár Ábhair diff --git a/i18n/gu.ftl b/i18n/gu.ftl index e69de29bb2..1523646774 100644 --- a/i18n/gu.ftl +++ b/i18n/gu.ftl @@ -0,0 +1,5 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } diff --git a/i18n/hi.ftl b/i18n/hi.ftl index e69de29bb2..e2ede820f5 100644 --- a/i18n/hi.ftl +++ b/i18n/hi.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = अध्याय { $number } + +tableofcontents-title = अनुक्रम diff --git a/i18n/hr.ftl b/i18n/hr.ftl index e69de29bb2..7451a31b3d 100644 --- a/i18n/hr.ftl +++ b/i18n/hr.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Poglavlje { $number } + +tableofcontents-title = Sadržaj diff --git a/i18n/hu.ftl b/i18n/hu.ftl index e69de29bb2..74a4b083d9 100644 --- a/i18n/hu.ftl +++ b/i18n/hu.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = { number }. fejezet + +tableofcontents-title = Tartalomjegyzék diff --git a/i18n/hy.ftl b/i18n/hy.ftl index e69de29bb2..474e5deedc 100644 --- a/i18n/hy.ftl +++ b/i18n/hy.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Գլուխ { $number } + +tableofcontents-title = Բովանդակություն diff --git a/i18n/id.ftl b/i18n/id.ftl index e69de29bb2..5b5f53b23f 100644 --- a/i18n/id.ftl +++ b/i18n/id.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Bab { $number } + +tableofcontents-title = Daftar Isi diff --git a/i18n/is.ftl b/i18n/is.ftl index e69de29bb2..57dd9de0bd 100644 --- a/i18n/is.ftl +++ b/i18n/is.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Kafli { $number } + +tableofcontents-title = Efnisyfirlit diff --git a/i18n/it.ftl b/i18n/it.ftl index e69de29bb2..ec0157bd84 100644 --- a/i18n/it.ftl +++ b/i18n/it.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Capitolo { $number } + +tableofcontents-title = Indice diff --git a/i18n/ja.ftl b/i18n/ja.ftl index af7a693eec..d5955c6609 100644 --- a/i18n/ja.ftl +++ b/i18n/ja.ftl @@ -1,3 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + book-chapter-post =  章 -book-chapter-title-pre = 第  +tableofcontents-title = 目次 diff --git a/i18n/jv.ftl b/i18n/jv.ftl index e69de29bb2..1523646774 100644 --- a/i18n/jv.ftl +++ b/i18n/jv.ftl @@ -0,0 +1,5 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } diff --git a/i18n/ka.ftl b/i18n/ka.ftl index e69de29bb2..5fb6921e2d 100644 --- a/i18n/ka.ftl +++ b/i18n/ka.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = თავი { $number } + +tableofcontents-title = შინაარსი diff --git a/i18n/kn.ftl b/i18n/kn.ftl index e69de29bb2..1419f4014a 100644 --- a/i18n/kn.ftl +++ b/i18n/kn.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = ಅಧ್ಯಾಯ { $number } + +tableofcontents-title = ವಿಷಯಗಳು diff --git a/i18n/la.ftl b/i18n/la.ftl index a689e38682..3ef3a7c31b 100644 --- a/i18n/la.ftl +++ b/i18n/la.ftl @@ -6,7 +6,7 @@ bibliography-et-al = et al. bibliography-translated-by = Interpres fuit { $name } -book-chapter-title-pre = Caput{" "} +book-chapter-title = Caput { $number } hello = Salve { $name }! diff --git a/i18n/lt.ftl b/i18n/lt.ftl index e69de29bb2..eef8f1ae11 100644 --- a/i18n/lt.ftl +++ b/i18n/lt.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = { number } skyrius + +tableofcontents-title = Turinys diff --git a/i18n/lv.ftl b/i18n/lv.ftl index e69de29bb2..d2a2c9707b 100644 --- a/i18n/lv.ftl +++ b/i18n/lv.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Nodaļa { $number } + +tableofcontents-title = Saturs diff --git a/i18n/ml.ftl b/i18n/ml.ftl index e69de29bb2..71d42ecb07 100644 --- a/i18n/ml.ftl +++ b/i18n/ml.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = അദ്ധ്യായം { $number } + +tableofcontents-title = ഉള്ളടക്കം diff --git a/i18n/mr.ftl b/i18n/mr.ftl index e69de29bb2..74b08a87c8 100644 --- a/i18n/mr.ftl +++ b/i18n/mr.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = प्रकरण { $number } + +tableofcontents-title = अनुक्रमणिका diff --git a/i18n/my.ftl b/i18n/my.ftl index e69de29bb2..1523646774 100644 --- a/i18n/my.ftl +++ b/i18n/my.ftl @@ -0,0 +1,5 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } diff --git a/i18n/nb.ftl b/i18n/nb.ftl index 6219df07db..468faad0e0 100644 --- a/i18n/nb.ftl +++ b/i18n/nb.ftl @@ -4,9 +4,9 @@ bibliography-edited-by = Redigert av { $name } bibliography-et-al = et al. -bibliography-translated-by = Redigert av { $name } +bibliography-translated-by = Oversatt av { $name } -book-chapter-title-pre = Kapittel{" "} +book-chapter-title = Kapittel { $number } hello = Hei { $name }! diff --git a/i18n/nl.ftl b/i18n/nl.ftl index e69de29bb2..fc29fc6775 100644 --- a/i18n/nl.ftl +++ b/i18n/nl.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Hoofdstuk { $number } + +tableofcontents-title = Inhoudsopgave diff --git a/i18n/nn.ftl b/i18n/nn.ftl index 6219df07db..e35819754d 100644 --- a/i18n/nn.ftl +++ b/i18n/nn.ftl @@ -6,10 +6,10 @@ bibliography-et-al = et al. bibliography-translated-by = Redigert av { $name } -book-chapter-title-pre = Kapittel{" "} +book-chapter-title = Kapittel { $number } hello = Hei { $name }! tableofcontents-not-generated = Kjør SILE om igjen slik at innholdsfortegnelsen blir behandlet! -tableofcontents-title = Innhold +tableofcontents-title = Innhald diff --git a/i18n/no.ftl b/i18n/no.ftl index 6219df07db..468faad0e0 100644 --- a/i18n/no.ftl +++ b/i18n/no.ftl @@ -4,9 +4,9 @@ bibliography-edited-by = Redigert av { $name } bibliography-et-al = et al. -bibliography-translated-by = Redigert av { $name } +bibliography-translated-by = Oversatt av { $name } -book-chapter-title-pre = Kapittel{" "} +book-chapter-title = Kapittel { $number } hello = Hei { $name }! diff --git a/i18n/or.ftl b/i18n/or.ftl index e69de29bb2..1523646774 100644 --- a/i18n/or.ftl +++ b/i18n/or.ftl @@ -0,0 +1,5 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } diff --git a/i18n/pa.ftl b/i18n/pa.ftl index e69de29bb2..1523646774 100644 --- a/i18n/pa.ftl +++ b/i18n/pa.ftl @@ -0,0 +1,5 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } diff --git a/i18n/pl.ftl b/i18n/pl.ftl index e69de29bb2..f5c126aac4 100644 --- a/i18n/pl.ftl +++ b/i18n/pl.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Rozdział { $number } + +tableofcontents-title = Spis treści diff --git a/i18n/pt.ftl b/i18n/pt.ftl index e69de29bb2..4f4178a04e 100644 --- a/i18n/pt.ftl +++ b/i18n/pt.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Capítulo { $number } + +tableofcontents-title = Conteúdo diff --git a/i18n/rm.ftl b/i18n/rm.ftl index e69de29bb2..bda235b430 100644 --- a/i18n/rm.ftl +++ b/i18n/rm.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Chapitel { $number } + +tableofcontents-title = Tavla dal cuntegn diff --git a/i18n/ro.ftl b/i18n/ro.ftl index e69de29bb2..d09b037056 100644 --- a/i18n/ro.ftl +++ b/i18n/ro.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Capitolul { $number } + +tableofcontents-title = Cuprins diff --git a/i18n/ru.ftl b/i18n/ru.ftl index e69de29bb2..bc30362b5c 100644 --- a/i18n/ru.ftl +++ b/i18n/ru.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Глава { $number } + +tableofcontents-title = Содержание diff --git a/i18n/sa.ftl b/i18n/sa.ftl index e69de29bb2..1523646774 100644 --- a/i18n/sa.ftl +++ b/i18n/sa.ftl @@ -0,0 +1,5 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } diff --git a/i18n/sk.ftl b/i18n/sk.ftl index e69de29bb2..26182d59da 100644 --- a/i18n/sk.ftl +++ b/i18n/sk.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Kapitola { $number } + +tableofcontents-title = Obsah diff --git a/i18n/sl.ftl b/i18n/sl.ftl index e69de29bb2..75ed4da6ca 100644 --- a/i18n/sl.ftl +++ b/i18n/sl.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Poglavje { $number } + +tableofcontents-title = Kazalo diff --git a/i18n/sr.ftl b/i18n/sr.ftl index e69de29bb2..1741ff97f8 100644 --- a/i18n/sr.ftl +++ b/i18n/sr.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Глава { $number } + +tableofcontents-title = Садржаj diff --git a/i18n/sv.ftl b/i18n/sv.ftl index e69de29bb2..b3d856170d 100644 --- a/i18n/sv.ftl +++ b/i18n/sv.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Kapitel { $number } + +tableofcontents-title = Innehåll diff --git a/i18n/ta.ftl b/i18n/ta.ftl index e69de29bb2..6059c08f6e 100644 --- a/i18n/ta.ftl +++ b/i18n/ta.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = அத்தியாயம் { $number } + +tableofcontents-title = உள்ளே diff --git a/i18n/th.ftl b/i18n/th.ftl index e69de29bb2..754981de8b 100644 --- a/i18n/th.ftl +++ b/i18n/th.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = บทที่ { $number } + +tableofcontents-title = สารบัญ diff --git a/i18n/tk.ftl b/i18n/tk.ftl index e69de29bb2..365f243824 100644 --- a/i18n/tk.ftl +++ b/i18n/tk.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Bap { $number } + +tableofcontents-title = Mazmuny diff --git a/i18n/tr.ftl b/i18n/tr.ftl index 5a96c51b5a..de11ca33e4 100644 --- a/i18n/tr.ftl +++ b/i18n/tr.ftl @@ -1,4 +1,10 @@ -book-chapter-title-pre = Bölüm{" "} +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Bölüm { $number } hello = Merhaba { $name }! diff --git a/i18n/ug.ftl b/i18n/ug.ftl index e69de29bb2..be266d7823 100644 --- a/i18n/ug.ftl +++ b/i18n/ug.ftl @@ -0,0 +1,7 @@ +bibliography-edited-by = { $name } + +bibliography-translated-by = { $name } + +book-chapter-title = باب { $number } + +tableofcontents-title = مۇندەرىجە diff --git a/i18n/uk.ftl b/i18n/uk.ftl index e69de29bb2..91948f93fc 100644 --- a/i18n/uk.ftl +++ b/i18n/uk.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = Розділ { $number } + +tableofcontents-title = Зміст diff --git a/i18n/ur.ftl b/i18n/ur.ftl index e69de29bb2..d7badad0b3 100644 --- a/i18n/ur.ftl +++ b/i18n/ur.ftl @@ -0,0 +1,9 @@ +bibliography-edited-by = { $name } + +bibliography-et-al = et al. + +bibliography-translated-by = { $name } + +book-chapter-title = باب { $number } + +tableofcontents-title = فہرست عنوانات