i18n.scm 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ;;; GNU Guix --- Functional package management for GNU
  2. ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
  3. ;;;
  4. ;;; This file is part of GNU Guix.
  5. ;;;
  6. ;;; GNU Guix is free software; you can redistribute it and/or modify it
  7. ;;; under the terms of the GNU General Public License as published by
  8. ;;; the Free Software Foundation; either version 3 of the License, or (at
  9. ;;; your option) any later version.
  10. ;;;
  11. ;;; GNU Guix is distributed in the hope that it will be useful, but
  12. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ;;; GNU General Public License for more details.
  15. ;;;
  16. ;;; You should have received a copy of the GNU General Public License
  17. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
  18. (define-module (guix i18n)
  19. #:use-module (srfi srfi-26)
  20. #:export (G_
  21. N_
  22. P_
  23. %gettext-domain
  24. %package-text-domain))
  25. ;;; Commentary:
  26. ;;;
  27. ;;; Internationalization support.
  28. ;;;
  29. ;;; Code:
  30. (define %gettext-domain
  31. ;; Text domain for strings used in the tools.
  32. "guix")
  33. (define %package-text-domain
  34. ;; Text domain for package synopses and descriptions.
  35. "guix-packages")
  36. (define G_ (cut gettext <> %gettext-domain))
  37. (define N_ (cut ngettext <> <> <> %gettext-domain))
  38. (define (P_ msgid)
  39. "Return the translation of the package description or synopsis MSGID."
  40. ;; Descriptions/synopses might occasionally be empty strings, even if that
  41. ;; is something we try to avoid. Since (gettext "") can return a non-empty
  42. ;; string, explicitly check for that case.
  43. (if (string-null? msgid)
  44. msgid
  45. (gettext msgid %package-text-domain)))