Skip to content

Commit

Permalink
Add explicit strings when there is no translation
Browse files Browse the repository at this point in the history
Signed-off-by: Miek Gieben <miek@miek.nl>
  • Loading branch information
miekg committed Nov 4, 2023
1 parent e461a13 commit 90b4dac
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions lang/lang.go
Expand Up @@ -29,6 +29,7 @@ func New(language string) Lang {
Bibliography: "Bibliografie",
Footnotes: "Voetnoten",
Index: "Index",
WrittenBy: "Geschreven door",
See: "zie",
Section: "sectie",
UseCounter: "gebruik nummer",
Expand All @@ -40,23 +41,47 @@ func New(language string) Lang {
Bibliography: "Literaturverzeichnis",
Footnotes: "Fußnoten",
Index: "Index",
WrittenBy: "(no translation!)",
See: "siehe",
Section: "abschnit",
UseCounter: "(no translation!)",
UseTitle: "(no translation!)",
},
"ja": {
And: "(no translation!)",
Of: "(no translation!)",
Bibliography: "参考文献",
Footnotes: "脚注",
Index: "索引",
WrittenBy: "(no translation!)",
See: "(no translation!)",
Section: "(no translation!)",
UseCounter: "(no translation!)",
UseTitle: "(no translation!)",
},
"zh-cn": {
And: "(no translation!)",
Of: "(no translation!)",
Bibliography: "参考文献",
Footnotes: "注释",
Index: "索引",
WrittenBy: "(no translation!)",
See: "(no translation!)",
Section: "(no translation!)",
UseCounter: "(no translation!)",
UseTitle: "(no translation!)",
},
"zh-tw": {
And: "(no translation!)",
Of: "(no translation!)",
Bibliography: "參考文獻",
Footnotes: "註釋",
Index: "索引",
WrittenBy: "(no translation!)",
See: "(no translation!)",
Section: "(no translation!)",
UseCounter: "(no translation!)",
UseTitle: "(no translation!)",
},
}

Expand Down

0 comments on commit 90b4dac

Please sign in to comment.