diff options
author | EuAndreh <eu@euandre.org> | 2025-05-15 07:42:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-15 07:42:58 -0300 |
commit | 8daf1aa26cd9808299f64c14816176a743e26698 (patch) | |
tree | ea7a1bf683981164dd5a2a9abe2411b2d3f540c6 /deps.mk | |
parent | Make: Use $< over $? (diff) | |
download | scrypt-8daf1aa26cd9808299f64c14816176a743e26698.tar.gz scrypt-8daf1aa26cd9808299f64c14816176a743e26698.tar.xz |
Setup i18n with gotext(0)
Diffstat (limited to 'deps.mk')
-rw-r--r-- | deps.mk | 25 |
1 files changed, 21 insertions, 4 deletions
@@ -14,18 +14,35 @@ mains.go = \ tests/fuzz/api/main.go \ tests/main.go \ -functional-tests/lib.go = \ +manpages.en.N.adoc = \ + doc/scrypt.en.0.adoc \ + +manpages.XX.N.adoc = \ + doc/scrypt.de.0.adoc \ + doc/scrypt.eo.0.adoc \ + doc/scrypt.es.0.adoc \ + doc/scrypt.fr.0.adoc \ + doc/scrypt.pt.0.adoc \ + +sources.po = \ + po/scrypt/de.po \ + po/scrypt/eo.po \ + po/scrypt/es.po \ + po/scrypt/fr.po \ + po/scrypt/pt.po \ + +functional/lib.go = \ tests/functional/hash-and-check/scrypt.go \ tests/functional/version/scrypt.go \ -functional-tests/main.go = \ +functional/main.go = \ tests/functional/hash-and-check/main.go \ tests/functional/version/main.go \ -fuzz-targets/lib.go = \ +fuzz/lib.go = \ tests/fuzz/api/scrypt.go \ -fuzz-targets/main.go = \ +fuzz/main.go = \ tests/fuzz/api/main.go \ benchmarks/lib.go = \ |