diff options
author | EuAndreh <eu@euandre.org> | 2025-05-15 06:07:10 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-15 06:07:10 -0300 |
commit | 5b795296eefee45acedad9841e912dee05c34a01 (patch) | |
tree | ec09fa834e58385b70937e1c632189f07314a820 /deps.mk | |
parent | Finish branches.html and setup i18n of manpages and HTML strings (diff) | |
download | gistatic-5b795296eefee45acedad9841e912dee05c34a01.tar.gz gistatic-5b795296eefee45acedad9841e912dee05c34a01.tar.xz |
Revamp setup of i18n, now with gotext(0)
Diffstat (limited to '')
-rw-r--r-- | deps.mk | 20 |
1 files changed, 15 insertions, 5 deletions
@@ -12,23 +12,33 @@ mains.go = \ tests/fuzz/internal-queue/main.go \ tests/main.go \ -manpages.N.adoc = \ +manpages.en.N.adoc = \ doc/gistatic.en.0.adoc \ + +manpages.XX.N.adoc = \ + doc/gistatic.de.0.adoc \ + doc/gistatic.eo.0.adoc \ + doc/gistatic.es.0.adoc \ + doc/gistatic.fr.0.adoc \ doc/gistatic.pt.0.adoc \ sources.po = \ + po/gistatic/de.po \ + po/gistatic/eo.po \ + po/gistatic/es.po \ + po/gistatic/fr.po \ po/gistatic/pt.po \ -functional-tests/lib.go = \ +functional/lib.go = \ tests/functional/empty-repository/gistatic.go \ -functional-tests/main.go = \ +functional/main.go = \ tests/functional/empty-repository/main.go \ -fuzz-targets/lib.go = \ +fuzz/lib.go = \ tests/fuzz/internal-queue/gistatic.go \ -fuzz-targets/main.go = \ +fuzz/main.go = \ tests/fuzz/internal-queue/main.go \ benchmarks/lib.go = \ |