• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build-aux/H26-Jul-2020-48,83639,308

gettext-runtime/H07-May-2022-243,765192,966

gettext-tools/H07-May-2022-1,403,2601,096,032

gnulib-local/H26-Jul-2020-225,069154,332

libtextstyle/H07-May-2022-615,734471,124

m4/H26-Jul-2020-9,1318,253

os2/H26-Jul-2020-520364

windows/H26-Jul-2020-11179

.tarball-versionH A D26-Jul-20205 21

.versionH A D11-Apr-202016 21

AUTHORSH A D11-May-20191.4 KiB5839

COPYINGH A D11-May-201934.3 KiB675553

ChangeLogH A D26-Jul-2020312 KiB7,5176,034

ChangeLog.0H A D11-May-201950.9 KiB1,7711,057

DEPENDENCIESH A D23-Dec-20196 KiB195170

HACKINGH A D06-Jun-20206.7 KiB248185

INSTALLH A D11-May-201913.3 KiB308236

INSTALL.windowsH A D11-May-201910.8 KiB270221

Makefile.amH A D26-Jul-202011.5 KiB180134

Makefile.inH A D26-Jul-202035.4 KiB941829

NEWSH A D26-Jul-202048.7 KiB1,349981

PACKAGINGH A D01-Jul-20195.9 KiB175142

READMEH A D01-Jul-20192.2 KiB6542

THANKSH A D11-May-201916.4 KiB381371

aclocal.m4H A D11-Apr-202028 KiB775696

autogen.shH A D08-Jul-202014.7 KiB497418

check-copyright-headersH A D01-Jul-201910.6 KiB288127

configureH A D26-Jul-2020131.7 KiB4,5773,562

configure.acH A D01-Jul-20192.5 KiB5944

README

1This is the GNU gettext package.  It is interesting for authors or
2maintainers of other packages or programs which they want to see
3internationalized.  As one step the handling of messages in different
4languages should be implemented.  For this task GNU gettext provides
5the needed tools and library functions.
6
7It is also interesting for translators, because GNU gettext provides
8the 'msgmerge' program, which prepares a message catalog before a
9translation update.
10
11Users of GNU packages should also install GNU gettext because some
12other GNU packages will use the gettext program included in this
13package to internationalize the messages given by shell scripts.
14
15
16The homepage of this package is at
17
18           https://www.gnu.org/software/gettext/
19
20The primary FTP site for its distribution is
21
22           https://ftp.gnu.org/pub/gnu/gettext/
23
24
25Report bugs
26  - in the bug tracker at <https://savannah.gnu.org/projects/gettext>
27  - or by email to <bug-gettext@gnu.org>.
28
29
30The configure script provides a non-standard option.  It is also
31available in other packages that use the functionality of GNU gettext.
32Use
33
34        --disable-nls
35
36if you absolutely don't want to have messages handling code.  You will
37always get the original messages (mostly English).  You could consider
38using NLS support even when you do not need other tongues.  If you do
39not install any messages catalogs or do not specify to use another but
40the C locale you will not get translations.
41
42The set of languages for which catalogs should be installed can also be
43specified while configuring.  Of course they must be available but the
44intersection of these two sets are computed automatically.  You could
45once and for all define in your profile/cshrc the variable LINGUAS:
46
47(Bourne Shell)          LINGUAS="de fr nl"; export LINGUAS
48
49(C Shell)               setenv LINGUAS "de fr nl"
50
51or specify it directly while configuring
52
53        env LINGUAS="de fr nl" ./configure
54
55Consult the manual for more information on language names.
56
57
58Other files you might look into:
59
60COPYING      - copying conditions
61DEPENDENCIES - list of prerequisite packages, to be installed before this one
62INSTALL      - general compilation and installation rules
63NEWS         - major changes in the current version
64THANKS       - list of contributors
65