gnu: nginx: Update to 1.17.2.
[guix.git] / guix / i18n.scm
blobf81e6b38ece8548456612a9dd3ba6629e28e13bb
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/>.
19 (define-module (guix i18n)
20   #:use-module (srfi srfi-26)
21   #:export (G_
22             N_
23             P_
24             %gettext-domain
25             %package-text-domain))
27 ;;; Commentary:
28 ;;;
29 ;;; Internationalization support.
30 ;;;
31 ;;; Code:
33 (define %gettext-domain
34   ;; Text domain for strings used in the tools.
35   "guix")
37 (define %package-text-domain
38   ;; Text domain for package synopses and descriptions.
39   "guix-packages")
41 (define G_ (cut gettext <> %gettext-domain))
42 (define N_ (cut ngettext <> <> <> %gettext-domain))
44 (define (P_ msgid)
45   "Return the translation of the package description or synopsis MSGID."
46   ;; Descriptions/synopses might occasionally be empty strings, even if that
47   ;; is something we try to avoid.  Since (gettext "") can return a non-empty
48   ;; string, explicitly check for that case.
49   (if (string-null? msgid)
50       msgid
51       (gettext msgid %package-text-domain)))