Name Date Size #Lines LOC

..--

hello-c/H09-Jul-2024-915746

hello-c++/H09-Jul-2024-923753

hello-c++-gnome/H09-Jul-2024-1,5631,347

hello-c++-kde/H09-Jul-2024-27,51922,660

hello-c++-qt/H09-Jul-2024-1,5901,255

hello-c++-wxwidgets/H09-Jul-2024-1,5531,228

hello-c-gnome/H09-Jul-2024-1,162968

hello-clisp/H09-Jul-2024-1,136888

hello-csharp/H09-Jul-2024-1,140871

hello-csharp-forms/H09-Jul-2024-1,286987

hello-gawk/H09-Jul-2024-1,124876

hello-guile/H09-Jul-2024-1,128880

hello-java/H09-Jul-2024-1,250947

hello-java-awt/H09-Jul-2024-1,297991

hello-java-swing/H09-Jul-2024-1,295989

hello-librep/H09-Jul-2024-1,137889

hello-objc/H09-Jul-2024-917757

hello-objc-gnome/H09-Jul-2024-1,176990

hello-objc-gnustep/H09-Jul-2024-1,6601,365

hello-pascal/H09-Jul-2024-1,168898

hello-perl/H09-Jul-2024-1,285999

hello-php/H09-Jul-2024-1,133885

hello-python/H09-Jul-2024-1,131883

hello-sh/H09-Jul-2024-1,119870

hello-smalltalk/H09-Jul-2024-1,176921

hello-tcl/H09-Jul-2024-1,042800

hello-tcl-tk/H09-Jul-2024-1,050808

hello-ycp/H09-Jul-2024-1,147900

po/H09-Jul-2024-3,5672,894

ChangeLogH A D09-Jul-202423.6 KiB699508

Makefile.amH A D09-Jul-202431.5 KiB1,1731,143

Makefile.inH A D09-Jul-202450.2 KiB1,7641,680

READMEH A D09-Jul-20241.9 KiB4944

aclocal.m4H A D09-Jul-202419.9 KiB553491

configureH A D09-Jul-2024110.4 KiB3,8423,032

configure.acH A D09-Jul-20241.4 KiB4133

installpaths.inH A D09-Jul-2024256 109

README

1This directory contains simple examples of the use of GNU gettext.
2Each example is a simple "hello world" program with a very small message
3catalog, written in a particular programming language for a particular
4environment.
5
6    Example                    Language          GUI Environment
7
8    hello-c                    C
9    hello-c-gnome              C                 GNOME
10    hello-c++                  C++
11    hello-c++-qt               C++               Qt
12    hello-c++-kde              C++               KDE
13    hello-c++-gnome            C++               GNOME
14    hello-c++-wxwidgets        C++               wxWidgets
15    hello-objc                 ObjectiveC
16    hello-objc-gnustep         ObjectiveC        GNUstep
17    hello-objc-gnome           ObjectiveC        GNOME
18    hello-sh                   Shell
19    hello-python               Python
20    hello-clisp                Lisp
21    hello-librep               librep
22    hello-guile                Scheme
23    hello-smalltalk            Smalltalk
24    hello-java                 Java
25    hello-java-awt             Java              AWT
26    hello-java-swing           Java              Swing
27    hello-csharp               C#
28    hello-csharp-forms         C#                Forms
29    hello-gawk                 awk
30    hello-pascal               Pascal
31    hello-ycp                  YCP               libyui
32    hello-tcl                  Tcl
33    hello-tcl-tk               Tcl               Tk
34    hello-perl                 Perl
35    hello-php                  PHP
36
37Before building an example, you need to
38  1. Build and install the GNU gettext package, as described in the INSTALL
39     file.
40  2. cd to the example and do
41        ./autogen.sh
42  3. Then you can build the example as usual:
43        ./configure --prefix=/some/prefix
44        make
45        make install
46     and see it work by executing
47        /some/prefix/bin/hello
48
49