branch: externals/emacs-lisp-intro-nl
commit bd5c5a0d8c8860b308591ee1029451e37025d466
Author: matto <[email protected]>
Commit: matto <[email protected]>
Instructions to use the po file
---
README.org | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/README.org b/README.org
index 90c80418ee..43baa84616 100644
--- a/README.org
+++ b/README.org
@@ -13,3 +13,33 @@ Date: Thu Jul 24 14:37:20 2025 -0700
; Fix file name in "Loading Files" doc.
#+end_example
+
+** Method
+
+*** Creating a po-file
+The po-file is created with:
+
+#+begin_src
+po4a-updatepo --format texinfo --master emacs-lisp-intro.texi --po
emacs-lisp-intro-nl.po
+#+end_src
+
+*** Generate a texinfo file
+To generate a texinfo file from the po-file:
+
+#+begin_src
+po4a-translate \
+ --format texinfo \
+ --master emacs-lisp-intro.texi \
+ --po emacs-lisp-intro-nl.po \
+ --addendum emacs-lisp-intro-nl.addendum \
+ --localized emacs-lisp-intro-nl.texi
+#+end_src
+
+This is what is in the Makefile, just run `make'.
+
+*** Generate a PDF file
+To generate a PDF from the texinfo file:
+
+#+begin_src
+makeinfo -D 'EMACSVER x' --pdf emacs-lisp-intro-nl.texi
+#+end_src