1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
# Introduction to Po4a
[![Build Status](https://img.shields.io/github/actions/workflow/status/mquinson/po4a/linux.yml?style=flat-square&branch=main)](https://github.com/mquinson/po4a/actions/workflows/linux.yml)
[![First Timers Friendly](https://img.shields.io/badge/Beginners-Welcome-brightgreen?style=flat-square)](https://www.firsttimersonly.com)
The goal of po4a (PO for anything) project is to ease translations (and
more interestingly, the maintenance of translations) using gettext
tools on areas where they were not expected like documentation.
In po4a each documentation format is handled by a module. Presently, we have a
module for the following formats:
- asciidoc: AsciiDoc format.
- dia: uncompressed Dia diagrams.
- docbook: DocBook XML.
- guide: Gentoo Linux's XML documentation format.
- halibut: Simon Tatham's documentation production system.
- ini: INI format.
- kernelhelp: Help messages of each kernel compilation option.
- latex: LaTeX format.
- bibtex: bibtex format.
- man: Good old manual page format (either roff or mdoc).
- markdown: MD documents (using the txt module).
- pod: Perl Online Documentation format.
- rubydoc: RubyDoc (RD) documents.
- sgml: either DebianDoc or DocBook DTD.
- texinfo: The info page format (experimental).
- tex: generic TeX documents (see also latex).
- text: simple text document.
- wml: WML documents.
- xhtml: XHTML documents.
- xml: generic XML documents (see also docbook).
- yaml: YAML documents.
# Installation
To install this module type the following:
```bash
perl Build.PL
./Build
./Build install
```
# Contributing
po4a is particularly welcoming contributions from the community. If
you are new to Open Source, we'd love to mentor you for your first
contributions. Please see the
[CONTRIBUTING](https://github.com/mquinson/po4a/blob/master/CONTRIBUTING.md)
file to see how you could help.
# Use without installation
If you want to use a version without installing it (e.g. directly from
the git tree), use the PERLLIB environment variable as such:
```bash
PERLLIB=~/git-checkouts/po4a/lib ~/git-checkouts/po4a/po4a-gettextize [usual args]
```
# Po4a dependencies
* Locale::gettext (v1.01)
This module being itself internationalized, it needs the Locale::gettext
library to translate its own messages.
If it is not present, then po4a's messages won't be translated, but
po4a will remain fully functional.
* Text::WrapI18N
This module is used to format po4a's warnings and error messages. It
permits to wrap long error messages without splitting words.
If it is not present, the formatting of messages will be different,
but po4a will remain fully functional.
* Term::ReadKey
This module is used to retrieve the terminal's line width. It is not
used if Text::WrapI18N is not available.
If it is not present, the line width can be specified with the COLUMN
environment variable.
## SGML module specific dependencies
* SGMLS (1.03ii)
This is a set of Perl5 routines for processing the output from the onsgmls
SGML parser.
* opensp (1.5.2) OpenJade group's SGML parsing tools
This is the SGML parser we use.
* docbook: used in the tests. Without this package, the test fails with:
```
onsgmls:<OSFD>0:1:59:W: cannot generate system identifier for public text "-//OASIS//DTD DocBook V4.1//EN"
onsgmls:<OSFD>0:6:0:E: reference to entity "REFENTRY" for which no system identifier could be generated
onsgmls:<OSFD>0:1:0: entity was defined here
onsgmls:<OSFD>0:6:0:E: DTD did not contain element declaration for document type name
po4a::sgml: Error while running onsgmls -p. Please check if onsgmls and the DTD are installed.
```
You don't need it if you don't want to run the tests.
## Text module specific dependencies
* Unicode::GCString
This module is used to compute text width; it is needed by AsciiDoc to
determine two line titles in encodings different from ASCII.
https://github.com/hatukanezumi/Unicode-LineBreak
## YAML module specific dependencies
* YAML::Tiny
This module is used to parse and serialize the YAML file.
# Project hosting
- Webpage: https://po4a.org
- Source code: https://github.com/mquinson/po4a
- Bug tracker: https://github.com/mquinson/po4a/issues
- Source of the web pages: https://github.com/mquinson/po4a-website
# Copyright and license
This program is free software; you may redistribute it and/or modify it
under the terms of GPL v2.0 or later (GPL2+ -- see COPYING file).
Copyright © 2002-2023 by SPI, inc.
Authors:
- Denis Barbier <barbier@linuxfr.org>
- Martin Quinson (mquinson#debian.org)
|