• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/
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-java-qtjambi         Java              Qt
28    hello-csharp               C#
29    hello-csharp-forms         C#                Forms
30    hello-gawk                 awk
31    hello-pascal               Pascal
32    hello-ycp                  YCP               libyui
33    hello-tcl                  Tcl
34    hello-tcl-tk               Tcl               Tk
35    hello-perl                 Perl
36    hello-php                  PHP
37
38Before building an example, you need to
39  1. Build and install the GNU gettext package, as described in the INSTALL
40     file.
41  2. cd to the example and do
42        ./autogen.sh
43  3. Then you can build the example as usual:
44        ./configure --prefix=/some/prefix
45        make
46        make install
47     and see it work by executing
48        /some/prefix/bin/hello
49
50