;;; GNU Guix web site ;;; Copyright © 2019 Florian Pelz ;;; ;;; This file is part of the GNU Guix web site. ;;; ;;; The GNU Guix web site is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU Affero General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; The GNU Guix web site is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU Affero General Public License for more details. ;;; ;;; You should have received a copy of the GNU Affero General Public License ;;; along with the GNU Guix web site. If not, see . (define-module (apps i18n) #:use-module (haunt page) #:use-module (haunt utils) #:use-module (ice-9 match) #:use-module (sexp-xgettext) #:use-module (srfi srfi-1) #:export (G_ N_ C_ NC_ %current-lingua %current-lang builder->localized-builder builders->localized-builders)) (define %gettext-domain "guix-website") (bindtextdomain %gettext-domain (getcwd)) (bind-textdomain-codeset %gettext-domain "UTF-8") (textdomain %gettext-domain) ;; NOTE: The sgettext macros have no hygiene because they use ;; datum->syntax and do not preserve the semantics of anything looking ;; like an sgettext macro. This is an exceptional use case; do not ;; try this at home. (define-syntax G_ sgettext) (set-simple-keywords! '(G_)) (define-syntax N_ ;like ngettext sngettext) (define-syntax C_ ;like pgettext spgettext) (define-syntax NC_ ;like npgettext snpgettext) (set-complex-keywords! '(N_ C_ NC_)) (define (@@ (haunt page) )) (define %current-lingua (car (string-split (setlocale LC_ALL) #\.))) (define %current-lang (car (string-split %current-lingua #\_))) (define (first-value arg) "For some reason the builder returned by static-directory returns multiple values. This procedure is used to retain only the first return value. TODO: This should not be necessary." arg) (define (builder->localized-builder builder) "Returns a Haunt builder procedure generated from an existing BUILDER with translations for the current system locale coming from sexp-xgettext." (compose (lambda (pages) (map (lambda (page) (match page (($ file-name contents writer) (let ((new-name (string-append %current-lang "/" file-name))) (make-page new-name contents writer))) (else page))) pages)) (lambda (site posts) (first-value (builder site posts))))) (define (builders->localized-builders builders) "Returns a list of new Haunt builder procedures generated from BUILDERS and localized via sexp-xgettext for the current system locale." (flatten (map-in-order builder->localized-builder builders)))