Makevars 776 B

12345678910111213141516171819202122232425262728
  1. # Makefile variables for PO directory in any package using GNU gettext.
  2. DOMAIN = guix
  3. subdir = po/guix
  4. top_builddir = ../..
  5. # These options get passed to xgettext. We want to catch standard
  6. # gettext uses, and SRFI-35 error condition messages. In C++ code
  7. # we use 'n_' instead of the more usual 'N_' for no-ops.
  8. XGETTEXT_OPTIONS = \
  9. --from-code=UTF-8 \
  10. --keyword=G_ --keyword=N_:1,2 \
  11. --keyword=message \
  12. --keyword=description \
  13. --keyword=n_
  14. COPYRIGHT_HOLDER = Ludovic Courtès
  15. MSGID_BUGS_ADDRESS = ludo@gnu.org
  16. EXTRA_LOCALE_CATEGORIES =
  17. # Disable PO update upon "make dist", which sometimes fails when doing
  18. # "make distcheck -j4".
  19. # See <https://lists.gnu.org/archive/html/bug-gettext/2014-08/msg00005.html>.
  20. DIST_DEPENDS_ON_UPDATE_PO = no