- added gettext infrastructure to the gui
authorladanyi
Thu, 23 Mar 2006 19:57:14 +0000
changeset 2012224cd6aacfc1
parent 2011 1a1bffa615b8
child 2013 02e70e25aac5
- added gettext infrastructure to the gui
- the gui has a separate configure script now
- other minor changes
Makefile.am
bootstrap
config/lx_check_cplex.m4
config/lx_check_glpk.m4
configure.ac
gui/ABOUT-NLS
gui/Makefile.am
gui/bootstrap
gui/configure.ac
gui/gettext.h
gui/graph-displayer.cc
gui/main_win.cc
gui/po/LINGUAS
gui/po/Makevars
gui/po/POTFILES.in
gui/po/glemon.pot
gui/po/hu.po
m4/lx_check_cplex.m4
m4/lx_check_glpk.m4
     1.1 --- a/Makefile.am	Tue Mar 21 13:45:24 2006 +0000
     1.2 +++ b/Makefile.am	Thu Mar 23 19:57:14 2006 +0000
     1.3 @@ -1,11 +1,11 @@
     1.4 -ACLOCAL_AMFLAGS = -I config
     1.5 +ACLOCAL_AMFLAGS = -I m4
     1.6  
     1.7  EXTRA_DIST = \
     1.8  	LICENSE \
     1.9  	lemon.spec \
    1.10  	autopackage/default.apspec.in \
    1.11 -	config/lx_check_cplex.m4 \
    1.12 -	config/lx_check_glpk.m4
    1.13 +	m4/lx_check_cplex.m4 \
    1.14 +	m4/lx_check_glpk.m4
    1.15  
    1.16  if WANT_DOC
    1.17    MAYBE_DOC = doc
    1.18 @@ -28,13 +28,13 @@
    1.19  	config.h.in~ \
    1.20  	configure \
    1.21  	Makefile.in \
    1.22 -	config/depcomp \
    1.23 -	config/install-sh \
    1.24 -	config/config.guess \
    1.25 -	config/config.sub \
    1.26 -	config/ltmain.sh \
    1.27 -	config/missing \
    1.28 -	config/mkinstalldirs \
    1.29 +	build-aux/config.guess \
    1.30 +	build-aux/config.sub \
    1.31 +	build-aux/depcomp \
    1.32 +	build-aux/install-sh \
    1.33 +	build-aux/ltmain.sh \
    1.34 +	build-aux/missing \
    1.35 +	build-aux/mkinstalldirs \
    1.36  	doc/Makefile.in \
    1.37  	doc/doxygen.log \
    1.38  	Makefile.in \
     2.1 --- a/bootstrap	Tue Mar 21 13:45:24 2006 +0000
     2.2 +++ b/bootstrap	Thu Mar 23 19:57:14 2006 +0000
     2.3 @@ -67,9 +67,11 @@
     2.4    autoheader=autoheader-$acver
     2.5  fi
     2.6  
     2.7 +echo "Try using 'autoreconf -vi' instead of this."
     2.8 +
     2.9  set -x
    2.10 -$aclocal -I config \
    2.11 +$aclocal -I m4 \
    2.12  && libtoolize --force --copy \
    2.13 +&& $autoconf \
    2.14  && $autoheader \
    2.15 -&& $automake --add-missing --copy --gnu \
    2.16 -&& $autoconf
    2.17 +&& $automake --add-missing --copy --gnu
     3.1 --- a/config/lx_check_cplex.m4	Tue Mar 21 13:45:24 2006 +0000
     3.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.3 @@ -1,77 +0,0 @@
     3.4 -AC_DEFUN([LX_CHECK_CPLEX],
     3.5 -[
     3.6 -  AC_ARG_WITH([cplex],
     3.7 -AS_HELP_STRING([--with-cplex@<:@=PREFIX@:>@], [search for CPLEX under PREFIX or under the default search paths if PREFIX is not given @<:@default@:>@])
     3.8 -AS_HELP_STRING([--without-cplex], [disable checking for CPLEX]),
     3.9 -              [], [with_cplex=yes])
    3.10 -
    3.11 -  AC_ARG_WITH([cplex-includedir],
    3.12 -AS_HELP_STRING([--with-cplex-includedir=DIR], [search for CPLEX headers in DIR]),
    3.13 -              [], [with_cplex_includedir=no])
    3.14 -
    3.15 -  AC_ARG_WITH([cplex-libdir],
    3.16 -AS_HELP_STRING([--with-cplex-libdir=DIR], [search for CPLEX libraries in DIR]),
    3.17 -              [], [with_cplex_libdir=no])
    3.18 -
    3.19 -  lx_cplex_found=no
    3.20 -  if test x"$with_cplex" != x"no"; then
    3.21 -    AC_MSG_CHECKING([for CPLEX])
    3.22 -
    3.23 -    if test x"$with_cplex_includedir" != x"no"; then
    3.24 -      CPLEX_CFLAGS="-I$with_cplex_includedir"
    3.25 -    elif test x"$with_cplex" != x"yes"; then
    3.26 -      CPLEX_CFLAGS="-I$with_cplex/include"
    3.27 -    elif test x"$CPLEX_INCLUDEDIR" != x; then
    3.28 -      CPLEX_CFLAGS="-I$CPLEX_INCLUDEDIR"
    3.29 -    fi
    3.30 -
    3.31 -    if test x"$with_cplex_libdir" != x"no"; then
    3.32 -      CPLEX_LDFLAGS="-L$with_cplex_libdir"
    3.33 -    elif test x"$with_cplex" != x"yes"; then
    3.34 -      CPLEX_LDFLAGS="-L$with_cplex/lib"
    3.35 -    elif test x"$CPLEX_LIBDIR" != x; then
    3.36 -      CPLEX_LDFLAGS="-L$CPLEX_LIBDIR"
    3.37 -    fi
    3.38 -    CPLEX_LIBS="-lcplex -lm -lpthread"
    3.39 -
    3.40 -    lx_save_cxxflags="$CXXFLAGS"
    3.41 -    lx_save_ldflags="$LDFLAGS"
    3.42 -    lx_save_libs="$LIBS"
    3.43 -    CXXFLAGS="$CPLEX_CFLAGS"
    3.44 -    LDFLAGS="$CPLEX_LDFLAGS"
    3.45 -    LIBS="$CPLEX_LIBS"
    3.46 -
    3.47 -    lx_cplex_test_prog='
    3.48 -      extern "C" {
    3.49 -      #include <ilcplex/cplex.h>
    3.50 -      }
    3.51 -
    3.52 -      int main(int argc, char* argv[])
    3.53 -      {
    3.54 -        CPXENVptr env = NULL;
    3.55 -        return 0;
    3.56 -      }'
    3.57 -
    3.58 -    AC_LANG_PUSH(C++)
    3.59 -    AC_LINK_IFELSE([$lx_cplex_test_prog], [lx_cplex_found=yes], [lx_cplex_found=no])
    3.60 -    AC_LANG_POP(C++)
    3.61 -
    3.62 -    CXXFLAGS="$lx_save_cxxflags"
    3.63 -    LDFLAGS="$lx_save_ldflags"
    3.64 -    LIBS="$lx_save_libs"
    3.65 -
    3.66 -    if test x"$lx_cplex_found" = x"yes"; then
    3.67 -      AC_DEFINE([HAVE_CPLEX], [1], [Define to 1 if you have CPLEX.])
    3.68 -      AC_MSG_RESULT([yes])
    3.69 -    else
    3.70 -      CPLEX_CFLAGS=""
    3.71 -      CPLEX_LDFLAGS=""
    3.72 -      CPLEX_LIBS=""
    3.73 -      AC_MSG_RESULT([no])
    3.74 -    fi
    3.75 -  fi
    3.76 -  CPLEX_LIBS="$CPLEX_LDFLAGS $CPLEX_LIBS"
    3.77 -  AC_SUBST(CPLEX_CFLAGS)
    3.78 -  AC_SUBST(CPLEX_LIBS)
    3.79 -  AM_CONDITIONAL([HAVE_CPLEX], [test x"$lx_cplex_found" = x"yes"])
    3.80 -])
     4.1 --- a/config/lx_check_glpk.m4	Tue Mar 21 13:45:24 2006 +0000
     4.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.3 @@ -1,75 +0,0 @@
     4.4 -AC_DEFUN([LX_CHECK_GLPK],
     4.5 -[
     4.6 -  AC_ARG_WITH([glpk],
     4.7 -AS_HELP_STRING([--with-glpk@<:@=PREFIX@:>@], [search for GLPK under PREFIX or under the default search paths if PREFIX is not given @<:@default@:>@])
     4.8 -AS_HELP_STRING([--without-glpk], [disable checking for GLPK]),
     4.9 -              [], [with_glpk=yes])
    4.10 -
    4.11 -  AC_ARG_WITH([glpk-includedir],
    4.12 -AS_HELP_STRING([--with-glpk-includedir=DIR], [search for GLPK headers in DIR]),
    4.13 -              [], [with_glpk_includedir=no])
    4.14 -
    4.15 -  AC_ARG_WITH([glpk-libdir],
    4.16 -AS_HELP_STRING([--with-glpk-libdir=DIR], [search for GLPK libraries in DIR]),
    4.17 -              [], [with_glpk_libdir=no])
    4.18 -
    4.19 -  lx_glpk_found=no
    4.20 -  if test x"$with_glpk" != x"no"; then
    4.21 -    AC_MSG_CHECKING([for GLPK])
    4.22 -
    4.23 -    if test x"$with_glpk_includedir" != x"no"; then
    4.24 -      GLPK_CFLAGS="-I$with_glpk_includedir"
    4.25 -    elif test x"$with_glpk" != x"yes"; then
    4.26 -      GLPK_CFLAGS="-I$with_glpk/include"
    4.27 -    fi
    4.28 -
    4.29 -    if test x"$with_glpk_libdir" != x"no"; then
    4.30 -      GLPK_LDFLAGS="-L$with_glpk_libdir"
    4.31 -    elif test x"$with_glpk" != x"yes"; then
    4.32 -      GLPK_LDFLAGS="-L$with_glpk/lib"
    4.33 -    fi
    4.34 -    GLPK_LIBS="-lglpk"
    4.35 -
    4.36 -    lx_save_cxxflags="$CXXFLAGS"
    4.37 -    lx_save_ldflags="$LDFLAGS"
    4.38 -    lx_save_libs="$LIBS"
    4.39 -    CXXFLAGS="$GLPK_CFLAGS"
    4.40 -    LDFLAGS="$GLPK_LDFLAGS"
    4.41 -    LIBS="$GLPK_LIBS"
    4.42 -
    4.43 -    lx_glpk_test_prog='
    4.44 -      extern "C" {
    4.45 -      #include <glpk.h>
    4.46 -      }
    4.47 -
    4.48 -      int main(int argc, char* argv[])
    4.49 -      {
    4.50 -        LPX *lp;
    4.51 -        lp = lpx_create_prob();
    4.52 -        lpx_delete_prob(lp);
    4.53 -        return 0;
    4.54 -      }'
    4.55 -
    4.56 -    AC_LANG_PUSH(C++)
    4.57 -    AC_LINK_IFELSE([$lx_glpk_test_prog], [lx_glpk_found=yes], [lx_glpk_found=no])
    4.58 -    AC_LANG_POP(C++)
    4.59 -
    4.60 -    CXXFLAGS="$lx_save_cxxflags"
    4.61 -    LDFLAGS="$lx_save_ldflags"
    4.62 -    LIBS="$lx_save_libs"
    4.63 -
    4.64 -    if test x"$lx_glpk_found" = x"yes"; then
    4.65 -      AC_DEFINE([HAVE_GLPK], [1], [Define to 1 if you have GLPK.])
    4.66 -      AC_MSG_RESULT([yes])
    4.67 -    else
    4.68 -      GLPK_CFLAGS=""
    4.69 -      GLPK_LDFLAGS=""
    4.70 -      GLPK_LIBS=""
    4.71 -      AC_MSG_RESULT([no])
    4.72 -    fi
    4.73 -  fi
    4.74 -  GLPK_LIBS="$GLPK_LDFLAGS $GLPK_LIBS"
    4.75 -  AC_SUBST(GLPK_CFLAGS)
    4.76 -  AC_SUBST(GLPK_LIBS)
    4.77 -  AM_CONDITIONAL([HAVE_GLPK], [test x"$lx_glpk_found" = x"yes"])
    4.78 -])
     5.1 --- a/configure.ac	Tue Mar 21 13:45:24 2006 +0000
     5.2 +++ b/configure.ac	Thu Mar 23 19:57:14 2006 +0000
     5.3 @@ -1,10 +1,12 @@
     5.4  dnl Process this file with autoconf to produce a configure script.
     5.5 +AC_PREREQ([2.59])
     5.6  AC_INIT([LEMON], [svn-head], [etik-ol@cs.elte.hu], [lemon])
     5.7 -AC_CONFIG_AUX_DIR([config])
     5.8 -AM_INIT_AUTOMAKE([1.7])
     5.9 +AC_CONFIG_AUX_DIR([build-aux])
    5.10 +AC_CONFIG_MACRO_DIR([m4])
    5.11 +dnl AM_INIT_AUTOMAKE([-Wall -Werror foreign])
    5.12 +AM_INIT_AUTOMAKE([-Wall foreign])
    5.13  AC_CONFIG_SRCDIR([lemon/list_graph.h])
    5.14  AC_CONFIG_HEADERS([config.h lemon/config.h])
    5.15 -AC_PREREQ([2.59])
    5.16  
    5.17  lx_cmdline_cxxflags_set=${CXXFLAGS+set}
    5.18  
    5.19 @@ -64,7 +66,7 @@
    5.20    AC_MSG_RESULT([no])
    5.21  fi
    5.22  if test x"$enable_gui" != x"no"; then
    5.23 -  PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0])
    5.24 +  AC_CONFIG_SUBDIRS([gui])
    5.25  fi
    5.26  AM_CONDITIONAL([WANT_GUI], [test x"$enable_gui" != x"no"])
    5.27  
    5.28 @@ -122,7 +124,6 @@
    5.29  benchmark/Makefile
    5.30  demo/Makefile
    5.31  test/Makefile
    5.32 -gui/Makefile
    5.33  ])
    5.34  
    5.35  AC_OUTPUT
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/gui/ABOUT-NLS	Thu Mar 23 19:57:14 2006 +0000
     6.3 @@ -0,0 +1,996 @@
     6.4 +1 Notes on the Free Translation Project
     6.5 +***************************************
     6.6 +
     6.7 +Free software is going international!  The Free Translation Project is
     6.8 +a way to get maintainers of free software, translators, and users all
     6.9 +together, so that free software will gradually become able to speak many
    6.10 +languages.  A few packages already provide translations for their
    6.11 +messages.
    6.12 +
    6.13 +   If you found this `ABOUT-NLS' file inside a distribution, you may
    6.14 +assume that the distributed package does use GNU `gettext' internally,
    6.15 +itself available at your nearest GNU archive site.  But you do _not_
    6.16 +need to install GNU `gettext' prior to configuring, installing or using
    6.17 +this package with messages translated.
    6.18 +
    6.19 +   Installers will find here some useful hints.  These notes also
    6.20 +explain how users should proceed for getting the programs to use the
    6.21 +available translations.  They tell how people wanting to contribute and
    6.22 +work on translations can contact the appropriate team.
    6.23 +
    6.24 +   When reporting bugs in the `intl/' directory or bugs which may be
    6.25 +related to internationalization, you should tell about the version of
    6.26 +`gettext' which is used.  The information can be found in the
    6.27 +`intl/VERSION' file, in internationalized packages.
    6.28 +
    6.29 +1.1 Quick configuration advice
    6.30 +==============================
    6.31 +
    6.32 +If you want to exploit the full power of internationalization, you
    6.33 +should configure it using
    6.34 +
    6.35 +     ./configure --with-included-gettext
    6.36 +
    6.37 +to force usage of internationalizing routines provided within this
    6.38 +package, despite the existence of internationalizing capabilities in the
    6.39 +operating system where this package is being installed.  So far, only
    6.40 +the `gettext' implementation in the GNU C library version 2 provides as
    6.41 +many features (such as locale alias, message inheritance, automatic
    6.42 +charset conversion or plural form handling) as the implementation here.
    6.43 +It is also not possible to offer this additional functionality on top
    6.44 +of a `catgets' implementation.  Future versions of GNU `gettext' will
    6.45 +very likely convey even more functionality.  So it might be a good idea
    6.46 +to change to GNU `gettext' as soon as possible.
    6.47 +
    6.48 +   So you need _not_ provide this option if you are using GNU libc 2 or
    6.49 +you have installed a recent copy of the GNU gettext package with the
    6.50 +included `libintl'.
    6.51 +
    6.52 +1.2 INSTALL Matters
    6.53 +===================
    6.54 +
    6.55 +Some packages are "localizable" when properly installed; the programs
    6.56 +they contain can be made to speak your own native language.  Most such
    6.57 +packages use GNU `gettext'.  Other packages have their own ways to
    6.58 +internationalization, predating GNU `gettext'.
    6.59 +
    6.60 +   By default, this package will be installed to allow translation of
    6.61 +messages.  It will automatically detect whether the system already
    6.62 +provides the GNU `gettext' functions.  If not, the included GNU
    6.63 +`gettext' library will be used.  This library is wholly contained
    6.64 +within this package, usually in the `intl/' subdirectory, so prior
    6.65 +installation of the GNU `gettext' package is _not_ required.
    6.66 +Installers may use special options at configuration time for changing
    6.67 +the default behaviour.  The commands:
    6.68 +
    6.69 +     ./configure --with-included-gettext
    6.70 +     ./configure --disable-nls
    6.71 +
    6.72 +will, respectively, bypass any pre-existing `gettext' to use the
    6.73 +internationalizing routines provided within this package, or else,
    6.74 +_totally_ disable translation of messages.
    6.75 +
    6.76 +   When you already have GNU `gettext' installed on your system and run
    6.77 +configure without an option for your new package, `configure' will
    6.78 +probably detect the previously built and installed `libintl.a' file and
    6.79 +will decide to use this.  This might not be desirable.  You should use
    6.80 +the more recent version of the GNU `gettext' library.  I.e. if the file
    6.81 +`intl/VERSION' shows that the library which comes with this package is
    6.82 +more recent, you should use
    6.83 +
    6.84 +     ./configure --with-included-gettext
    6.85 +
    6.86 +to prevent auto-detection.
    6.87 +
    6.88 +   The configuration process will not test for the `catgets' function
    6.89 +and therefore it will not be used.  The reason is that even an
    6.90 +emulation of `gettext' on top of `catgets' could not provide all the
    6.91 +extensions of the GNU `gettext' library.
    6.92 +
    6.93 +   Internationalized packages usually have many `po/LL.po' files, where
    6.94 +LL gives an ISO 639 two-letter code identifying the language.  Unless
    6.95 +translations have been forbidden at `configure' time by using the
    6.96 +`--disable-nls' switch, all available translations are installed
    6.97 +together with the package.  However, the environment variable `LINGUAS'
    6.98 +may be set, prior to configuration, to limit the installed set.
    6.99 +`LINGUAS' should then contain a space separated list of two-letter
   6.100 +codes, stating which languages are allowed.
   6.101 +
   6.102 +1.3 Using This Package
   6.103 +======================
   6.104 +
   6.105 +As a user, if your language has been installed for this package, you
   6.106 +only have to set the `LANG' environment variable to the appropriate
   6.107 +`LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
   6.108 +and `CC' is an ISO 3166 two-letter country code.  For example, let's
   6.109 +suppose that you speak German and live in Germany.  At the shell
   6.110 +prompt, merely execute `setenv LANG de_DE' (in `csh'),
   6.111 +`export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
   6.112 +This can be done from your `.login' or `.profile' file, once and for
   6.113 +all.
   6.114 +
   6.115 +   You might think that the country code specification is redundant.
   6.116 +But in fact, some languages have dialects in different countries.  For
   6.117 +example, `de_AT' is used for Austria, and `pt_BR' for Brazil.  The
   6.118 +country code serves to distinguish the dialects.
   6.119 +
   6.120 +   The locale naming convention of `LL_CC', with `LL' denoting the
   6.121 +language and `CC' denoting the country, is the one use on systems based
   6.122 +on GNU libc.  On other systems, some variations of this scheme are
   6.123 +used, such as `LL' or `LL_CC.ENCODING'.  You can get the list of
   6.124 +locales supported by your system for your country by running the command
   6.125 +`locale -a | grep '^LL''.
   6.126 +
   6.127 +   Not all programs have translations for all languages.  By default, an
   6.128 +English message is shown in place of a nonexistent translation.  If you
   6.129 +understand other languages, you can set up a priority list of languages.
   6.130 +This is done through a different environment variable, called
   6.131 +`LANGUAGE'.  GNU `gettext' gives preference to `LANGUAGE' over `LANG'
   6.132 +for the purpose of message handling, but you still need to have `LANG'
   6.133 +set to the primary language; this is required by other parts of the
   6.134 +system libraries.  For example, some Swedish users who would rather
   6.135 +read translations in German than English for when Swedish is not
   6.136 +available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
   6.137 +
   6.138 +   Special advice for Norwegian users: The language code for Norwegian
   6.139 +bokma*l changed from `no' to `nb' recently (in 2003).  During the
   6.140 +transition period, while some message catalogs for this language are
   6.141 +installed under `nb' and some older ones under `no', it's recommended
   6.142 +for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
   6.143 +older translations are used.
   6.144 +
   6.145 +   In the `LANGUAGE' environment variable, but not in the `LANG'
   6.146 +environment variable, `LL_CC' combinations can be abbreviated as `LL'
   6.147 +to denote the language's main dialect.  For example, `de' is equivalent
   6.148 +to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
   6.149 +(Portuguese as spoken in Portugal) in this context.
   6.150 +
   6.151 +1.4 Translating Teams
   6.152 +=====================
   6.153 +
   6.154 +For the Free Translation Project to be a success, we need interested
   6.155 +people who like their own language and write it well, and who are also
   6.156 +able to synergize with other translators speaking the same language.
   6.157 +Each translation team has its own mailing list.  The up-to-date list of
   6.158 +teams can be found at the Free Translation Project's homepage,
   6.159 +`http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams"
   6.160 +area.
   6.161 +
   6.162 +   If you'd like to volunteer to _work_ at translating messages, you
   6.163 +should become a member of the translating team for your own language.
   6.164 +The subscribing address is _not_ the same as the list itself, it has
   6.165 +`-request' appended.  For example, speakers of Swedish can send a
   6.166 +message to `sv-request@li.org', having this message body:
   6.167 +
   6.168 +     subscribe
   6.169 +
   6.170 +   Keep in mind that team members are expected to participate
   6.171 +_actively_ in translations, or at solving translational difficulties,
   6.172 +rather than merely lurking around.  If your team does not exist yet and
   6.173 +you want to start one, or if you are unsure about what to do or how to
   6.174 +get started, please write to `translation@iro.umontreal.ca' to reach the
   6.175 +coordinator for all translator teams.
   6.176 +
   6.177 +   The English team is special.  It works at improving and uniformizing
   6.178 +the terminology in use.  Proven linguistic skill are praised more than
   6.179 +programming skill, here.
   6.180 +
   6.181 +1.5 Available Packages
   6.182 +======================
   6.183 +
   6.184 +Languages are not equally supported in all packages.  The following
   6.185 +matrix shows the current state of internationalization, as of May 2005.
   6.186 +The matrix shows, in regard of each package, for which languages PO
   6.187 +files have been submitted to translation coordination, with a
   6.188 +translation percentage of at least 50%.
   6.189 +
   6.190 +     Ready PO files       af am ar az be bg bs ca cs cy da de el en en_GB
   6.191 +                        +-------------------------------------------------+
   6.192 +     GNUnet             |                                                 |
   6.193 +     a2ps               |             []                [] [] []     []   |
   6.194 +     aegis              |                                  ()             |
   6.195 +     ant-phone          |                                  ()             |
   6.196 +     anubis             |                                  []             |
   6.197 +     ap-utils           |                                                 |
   6.198 +     aspell             |                         []    [] []        []   |
   6.199 +     bash               |                      []          []             |
   6.200 +     batchelor          |                                  []             |
   6.201 +     bfd                |                                                 |
   6.202 +     bibshelf           |                                  []             |
   6.203 +     binutils           |                               []                |
   6.204 +     bison              |                               [] []             |
   6.205 +     bluez-pin          | []                      []       [] []          |
   6.206 +     clisp              |                                  []    []       |
   6.207 +     console-tools      |                         []       []             |
   6.208 +     coreutils          |                []    []       [] []             |
   6.209 +     cpio               |                                                 |
   6.210 +     cpplib             |                      []       [] []             |
   6.211 +     darkstat           |                []             () []             |
   6.212 +     dialog             |                      [] [] [] [] [] []          |
   6.213 +     diffutils          |                      [] []    [] [] []          |
   6.214 +     doodle             |                                  []             |
   6.215 +     e2fsprogs          |                         []       []             |
   6.216 +     enscript           |                      []       [] []        []   |
   6.217 +     error              |                      []       [] []        []   |
   6.218 +     fetchmail          |                      []       [] () []          |
   6.219 +     fileutils          |                               [] []             |
   6.220 +     findutils          |                      []       []    []          |
   6.221 +     flex               |                      []       [] []             |
   6.222 +     fslint             |                                  []             |
   6.223 +     gas                |                                                 |
   6.224 +     gawk               |                      []       [] []             |
   6.225 +     gbiff              |                                  []             |
   6.226 +     gcal               |                      []                         |
   6.227 +     gcc                |                                  []             |
   6.228 +     gettext-examples   | []                   []          [] []          |
   6.229 +     gettext-runtime    |             []       []       [] []             |
   6.230 +     gettext-tools      |                      []          []             |
   6.231 +     gimp-print         |                         []    [] []        []   |
   6.232 +     gip                |                                                 |
   6.233 +     gliv               |                                  []             |
   6.234 +     glunarclock        |                                                 |
   6.235 +     gmult              | []                               []             |
   6.236 +     gnubiff            |                                  ()             |
   6.237 +     gnucash            |                         []       () ()     []   |
   6.238 +     gnucash-glossary   |                               [] ()             |
   6.239 +     gpe-aerial         |                         []       []             |
   6.240 +     gpe-beam           |                         []       []             |
   6.241 +     gpe-calendar       |                         []       []             |
   6.242 +     gpe-clock          |                         []       []             |
   6.243 +     gpe-conf           |                         []       []             |
   6.244 +     gpe-contacts       |                                                 |
   6.245 +     gpe-edit           |                         []                      |
   6.246 +     gpe-go             |                         []                      |
   6.247 +     gpe-login          |                         []       []             |
   6.248 +     gpe-ownerinfo      |                         []       []             |
   6.249 +     gpe-sketchbook     |                         []       []             |
   6.250 +     gpe-su             |                         []       []             |
   6.251 +     gpe-taskmanager    |                         []       []             |
   6.252 +     gpe-timesheet      |                         []                      |
   6.253 +     gpe-today          |                         []       []             |
   6.254 +     gpe-todo           |                         []       []             |
   6.255 +     gphoto2            |                         []    [] []        []   |
   6.256 +     gprof              |                               [] []             |
   6.257 +     gpsdrive           |                                  ()    ()       |
   6.258 +     gramadoir          | []                               []             |
   6.259 +     grep               | []          [] []    []          [] []          |
   6.260 +     gretl              |                                                 |
   6.261 +     gsasl              |                                  []             |
   6.262 +     gss                |                                                 |
   6.263 +     gst-plugins        | []       []          [] []       []        []   |
   6.264 +     gstreamer          | []                   [] []       []        []   |
   6.265 +     gtick              | []                               ()             |
   6.266 +     gtkspell           |             []                   [] []          |
   6.267 +     hello              |                      []       [] [] []          |
   6.268 +     id-utils           |                               [] []             |
   6.269 +     impost             |                                                 |
   6.270 +     indent             |                      []          []             |
   6.271 +     iso_3166           |                                                 |
   6.272 +     iso_3166_1         |                      [] []    [] [] []          |
   6.273 +     iso_3166_2         |                                                 |
   6.274 +     iso_3166_3         |                                  []             |
   6.275 +     iso_4217           |                                                 |
   6.276 +     iso_639            |                                                 |
   6.277 +     jpilot             |                         []                      |
   6.278 +     jtag               |                                                 |
   6.279 +     jwhois             |                                                 |
   6.280 +     kbd                |                         []    [] [] []          |
   6.281 +     latrine            |                                  ()             |
   6.282 +     ld                 |                               []                |
   6.283 +     libc               |                      [] []    [] [] []          |
   6.284 +     libextractor       |                                                 |
   6.285 +     libgpewidget       |                         []    [] []             |
   6.286 +     libgphoto2         |                                  []             |
   6.287 +     libgphoto2_port    |                                  []             |
   6.288 +     libgsasl           |                                                 |
   6.289 +     libiconv           | []                   []       [] [] []          |
   6.290 +     libidn             |                                                 |
   6.291 +     lifelines          |                               [] ()             |
   6.292 +     lilypond           |                                  []             |
   6.293 +     lingoteach         |                                                 |
   6.294 +     lynx               |                      [] []    [] []             |
   6.295 +     m4                 |                         []    [] [] []          |
   6.296 +     mailutils          |                      []                         |
   6.297 +     make               |                               [] []             |
   6.298 +     man-db             |                      [] ()    [] []             |
   6.299 +     minicom            |                         []       []             |
   6.300 +     mysecretdiary      |                               [] []             |
   6.301 +     nano               |                      [] ()       []             |
   6.302 +     nano_1_0           |                      [] ()    [] []             |
   6.303 +     opcodes            |                                  []             |
   6.304 +     parted             |                      [] []    [] []             |
   6.305 +     psmisc             |                                                 |
   6.306 +     ptx                |                      []       [] []             |
   6.307 +     pwdutils           |                                                 |
   6.308 +     python             |                                                 |
   6.309 +     radius             |                      []                         |
   6.310 +     recode             |             []       []       [] [] []          |
   6.311 +     rpm                |                         []    []                |
   6.312 +     screem             |                                                 |
   6.313 +     scrollkeeper       |          [] []       [] [] [] [] []        []   |
   6.314 +     sed                |                      []          []             |
   6.315 +     sh-utils           |                               [] []             |
   6.316 +     shared-mime-info   |                []       []                      |
   6.317 +     sharutils          |                      [] []    [] [] []          |
   6.318 +     silky              |                                                 |
   6.319 +     skencil            |                               [] ()             |
   6.320 +     sketch             |                               [] ()             |
   6.321 +     solfege            |                                  []             |
   6.322 +     soundtracker       |                               [] []             |
   6.323 +     sp                 |                                  []             |
   6.324 +     stardict           |                         []                      |
   6.325 +     tar                |                                                 |
   6.326 +     texinfo            |                               [] []             |
   6.327 +     textutils          |                      []       [] []             |
   6.328 +     tin                |                                  ()        ()   |
   6.329 +     tp-robot           |                                  []             |
   6.330 +     tuxpaint           | []                   [] []    [] [] []     []   |
   6.331 +     unicode-han-tra... |                                                 |
   6.332 +     unicode-transla... |                                                 |
   6.333 +     util-linux         |                      [] []    [] []             |
   6.334 +     vorbis-tools       |             []          []    []           []   |
   6.335 +     wastesedge         |                                  ()             |
   6.336 +     wdiff              |                      []       [] []        []   |
   6.337 +     wget               |                                                 |
   6.338 +     xchat              |                []    []          [] []     []   |
   6.339 +     xkeyboard-config   |                                                 |
   6.340 +     xpad               |                                                 |
   6.341 +                        +-------------------------------------------------+
   6.342 +                          af am ar az be bg bs ca cs cy da de el en en_GB
   6.343 +                          10  0  0  2  7  5  0 40 43  2 51 91 19  1  14
   6.344 +
   6.345 +                          eo es et eu fa fi fr  ga gl he hi hr hu id is
   6.346 +                        +-----------------------------------------------+
   6.347 +     GNUnet             |                                               |
   6.348 +     a2ps               |       []       [] []                          |
   6.349 +     aegis              |                                               |
   6.350 +     ant-phone          |                   []                          |
   6.351 +     anubis             |                   []                          |
   6.352 +     ap-utils           |                   []                          |
   6.353 +     aspell             |                   []  []                      |
   6.354 +     bash               | [] []             []                 []       |
   6.355 +     batchelor          |                   []  []                      |
   6.356 +     bfd                |    []                                         |
   6.357 +     bibshelf           |    []                 []                      |
   6.358 +     binutils           |    []             []                          |
   6.359 +     bison              |    [] []          []  []                []    |
   6.360 +     bluez-pin          | []             [] []  []             [] []    |
   6.361 +     clisp              |    []             []                          |
   6.362 +     console-tools      |                                               |
   6.363 +     coreutils          |    [] []       [] []  []                      |
   6.364 +     cpio               |    []             []                          |
   6.365 +     cpplib             |    []             []                          |
   6.366 +     darkstat           |    []             ()  []             [] []    |
   6.367 +     dialog             |    [] [] []    [] []  []             []       |
   6.368 +     diffutils          | [] []          [] []  [] [] []       [] []    |
   6.369 +     doodle             |                       []                      |
   6.370 +     e2fsprogs          |    []             []                          |
   6.371 +     enscript           |                   []              []          |
   6.372 +     error              |    []          [] []  []             []       |
   6.373 +     fetchmail          |    []                                         |
   6.374 +     fileutils          |    [] []          []  []             []       |
   6.375 +     findutils          |    [] []          []  []                      |
   6.376 +     flex               |    []             []  []                      |
   6.377 +     fslint             |                   []                          |
   6.378 +     gas                |    []             []                          |
   6.379 +     gawk               |    []             []  []    []                |
   6.380 +     gbiff              |                   []                          |
   6.381 +     gcal               |    []             []                          |
   6.382 +     gcc                |    []                                         |
   6.383 +     gettext-examples   |    []             []  []                      |
   6.384 +     gettext-runtime    |    []          [] []  []                []    |
   6.385 +     gettext-tools      |    []             []                          |
   6.386 +     gimp-print         |    []             []                          |
   6.387 +     gip                |    []    []       []                          |
   6.388 +     gliv               |                   ()                          |
   6.389 +     glunarclock        |                []     []             []       |
   6.390 +     gmult              |          []       []                          |
   6.391 +     gnubiff            |                   ()                          |
   6.392 +     gnucash            |    []                                ()       |
   6.393 +     gnucash-glossary   |    []                                         |
   6.394 +     gpe-aerial         |    []             []                          |
   6.395 +     gpe-beam           |    []             []                          |
   6.396 +     gpe-calendar       |    []             []                 [] []    |
   6.397 +     gpe-clock          |    []          [] []                          |
   6.398 +     gpe-conf           |                   []                          |
   6.399 +     gpe-contacts       |                   []                          |
   6.400 +     gpe-edit           |                   []                    []    |
   6.401 +     gpe-go             |    []             []                          |
   6.402 +     gpe-login          |    []             []                 []       |
   6.403 +     gpe-ownerinfo      |    []          [] []                 [] []    |
   6.404 +     gpe-sketchbook     |    []             []                          |
   6.405 +     gpe-su             |    []          [] []                          |
   6.406 +     gpe-taskmanager    |    []          [] []                          |
   6.407 +     gpe-timesheet      |    []             []  []                []    |
   6.408 +     gpe-today          |    []          [] []  []                      |
   6.409 +     gpe-todo           |    []             []                    []    |
   6.410 +     gphoto2            |    []          [] []                 []       |
   6.411 +     gprof              |    []             []                    []    |
   6.412 +     gpsdrive           |    ()             ()                 []       |
   6.413 +     gramadoir          |                   []  []                      |
   6.414 +     grep               |    [] [] []    [] []  [] [] []    [] [] []    |
   6.415 +     gretl              |    []             []                          |
   6.416 +     gsasl              |          []       []  []                      |
   6.417 +     gss                |                   []                          |
   6.418 +     gst-plugins        |                   []                 []       |
   6.419 +     gstreamer          |                                               |
   6.420 +     gtick              |          []    [] []  []                      |
   6.421 +     gtkspell           | [] []    []       []  []                      |
   6.422 +     hello              | [] [] [] [] [] [] []  [] [] []    [] [] []    |
   6.423 +     id-utils           |                   []                 [] []    |
   6.424 +     impost             |                   []  []                      |
   6.425 +     indent             | [] [] [] []    [] []  [] []          [] []    |
   6.426 +     iso_3166           | []             [] []                          |
   6.427 +     iso_3166_1         |    []    []    [] []  []             [] []    |
   6.428 +     iso_3166_2         |                   []                          |
   6.429 +     iso_3166_3         |                   []                          |
   6.430 +     iso_4217           |       []       []        []                   |
   6.431 +     iso_639            | []          [] [] []                          |
   6.432 +     jpilot             |    []             []                          |
   6.433 +     jtag               |                   []                          |
   6.434 +     jwhois             |    []             []                 [] []    |
   6.435 +     kbd                |    []             []                          |
   6.436 +     latrine            |                   []  []                      |
   6.437 +     ld                 |    []             []                          |
   6.438 +     libc               |    []          [] []     []          []       |
   6.439 +     libextractor       |                                               |
   6.440 +     libgpewidget       |    []             []  []             [] []    |
   6.441 +     libgphoto2         |    []             []                 []       |
   6.442 +     libgphoto2_port    |                   []                          |
   6.443 +     libgsasl           |                   []  []                      |
   6.444 +     libiconv           | [] [] []       [] []  [] []       [] [] []    |
   6.445 +     libidn             | []                []                          |
   6.446 +     lifelines          |                   ()                          |
   6.447 +     lilypond           |                                               |
   6.448 +     lingoteach         |                   []                    []    |
   6.449 +     lynx               |       []                             []       |
   6.450 +     m4                 |                   []  [] []             []    |
   6.451 +     mailutils          |    []             []                          |
   6.452 +     make               |    []          [] []  [] [] []    []          |
   6.453 +     man-db             |    ()                                         |
   6.454 +     minicom            |    []          [] []                 []       |
   6.455 +     mysecretdiary      |    []             []                    []    |
   6.456 +     nano               |    []    []    () []                          |
   6.457 +     nano_1_0           |    []             []     []             []    |
   6.458 +     opcodes            |    []          [] []                          |
   6.459 +     parted             |    []             []     []                   |
   6.460 +     psmisc             |          []                                   |
   6.461 +     ptx                | [] [] []       [] []  [] []          [] []    |
   6.462 +     pwdutils           |                                               |
   6.463 +     python             |                                               |
   6.464 +     radius             |    []             []                          |
   6.465 +     recode             | [] []             []     [] []       [] []    |
   6.466 +     rpm                |                   []                          |
   6.467 +     screem             |                                               |
   6.468 +     scrollkeeper       |    []          []                    []       |
   6.469 +     sed                | [] [] []          []  []             []       |
   6.470 +     sh-utils           |    [] []       [] []  []             []       |
   6.471 +     shared-mime-info   | [] []    []    [] []                 []       |
   6.472 +     sharutils          |    [] []       [] []     []          []       |
   6.473 +     silky              |                   []                          |
   6.474 +     skencil            |    []             []                          |
   6.475 +     sketch             |    []             []                          |
   6.476 +     solfege            |                                               |
   6.477 +     soundtracker       |    []             []                          |
   6.478 +     sp                 |                   []                          |
   6.479 +     stardict           |                                      []       |
   6.480 +     tar                |    [] []          []  []                      |
   6.481 +     texinfo            | []                []        []                |
   6.482 +     textutils          |    []             []  [] []          []       |
   6.483 +     tin                |       []          ()                          |
   6.484 +     tp-robot           |                   []                 []       |
   6.485 +     tuxpaint           |    []          [] []  []    []       [] [] [] |
   6.486 +     unicode-han-tra... |                                               |
   6.487 +     unicode-transla... |                   []  []                      |
   6.488 +     util-linux         |    [] []       [] []                 []       |
   6.489 +     vorbis-tools       |    []             []                          |
   6.490 +     wastesedge         |                   ()                          |
   6.491 +     wdiff              |    [] []          []  [] []          [] []    |
   6.492 +     wget               |       [] []           []          []          |
   6.493 +     xchat              |    []    []    [] []           []             |
   6.494 +     xkeyboard-config   |                                               |
   6.495 +     xpad               |    []                 []             []       |
   6.496 +                        +-----------------------------------------------+
   6.497 +                          eo es et eu fa fi fr  ga gl he hi hr hu id is
   6.498 +                          15 85 21 15  2 35 115 45 16  8  1  6 40 27  1
   6.499 +
   6.500 +                          it ja ko ku lg lt lv mk mn ms mt nb nl nn no nso
   6.501 +                        +--------------------------------------------------+
   6.502 +     GNUnet             |                                                  |
   6.503 +     a2ps               | ()    ()                   []       []    ()     |
   6.504 +     aegis              |                                     ()           |
   6.505 +     ant-phone          |                                     []           |
   6.506 +     anubis             |                            []    [] []           |
   6.507 +     ap-utils           |                                                  |
   6.508 +     aspell             |                         []          []           |
   6.509 +     bash               |                                     []           |
   6.510 +     batchelor          |                                     []           |
   6.511 +     bfd                |                                                  |
   6.512 +     bibshelf           | []                                               |
   6.513 +     binutils           |                                                  |
   6.514 +     bison              | []                         []    [] []           |
   6.515 +     bluez-pin          |          []                         []           |
   6.516 +     clisp              |                                     []           |
   6.517 +     console-tools      |                                                  |
   6.518 +     coreutils          |    []                               []           |
   6.519 +     cpio               |                                                  |
   6.520 +     cpplib             |                                     []           |
   6.521 +     darkstat           |                            []       []           |
   6.522 +     dialog             | []                                  []           |
   6.523 +     diffutils          | [] []                      []       []           |
   6.524 +     doodle             | []                                               |
   6.525 +     e2fsprogs          | []                                               |
   6.526 +     enscript           |                                     []           |
   6.527 +     error              |                                     []           |
   6.528 +     fetchmail          |    []                               []           |
   6.529 +     fileutils          | [] []       []                                   |
   6.530 +     findutils          | []                                  []           |
   6.531 +     flex               |       []                            []           |
   6.532 +     fslint             |                                     []           |
   6.533 +     gas                |                                                  |
   6.534 +     gawk               |    []                               []           |
   6.535 +     gbiff              |                                     []           |
   6.536 +     gcal               |                                                  |
   6.537 +     gcc                |                                                  |
   6.538 +     gettext-examples   | [] []                               []           |
   6.539 +     gettext-runtime    | [] [] []                            []           |
   6.540 +     gettext-tools      | [] [] []                                         |
   6.541 +     gimp-print         |    []                               []           |
   6.542 +     gip                |                                     []           |
   6.543 +     gliv               |                                     []           |
   6.544 +     glunarclock        |                            []       []           |
   6.545 +     gmult              | [] []                                            |
   6.546 +     gnubiff            | ()                                               |
   6.547 +     gnucash            | [] ()                            () []           |
   6.548 +     gnucash-glossary   | []                                  []           |
   6.549 +     gpe-aerial         |                                     []           |
   6.550 +     gpe-beam           |                                     []           |
   6.551 +     gpe-calendar       |                                     []           |
   6.552 +     gpe-clock          |                                     []           |
   6.553 +     gpe-conf           |                                     []           |
   6.554 +     gpe-contacts       |                                                  |
   6.555 +     gpe-edit           |                                     []           |
   6.556 +     gpe-go             |                                     []           |
   6.557 +     gpe-login          |                                     []           |
   6.558 +     gpe-ownerinfo      |                                     []           |
   6.559 +     gpe-sketchbook     |                                     []           |
   6.560 +     gpe-su             |                                     []           |
   6.561 +     gpe-taskmanager    |          []                         []           |
   6.562 +     gpe-timesheet      |                                     []           |
   6.563 +     gpe-today          |                                     []           |
   6.564 +     gpe-todo           |                                     []           |
   6.565 +     gphoto2            | [] []                               []           |
   6.566 +     gprof              |                                                  |
   6.567 +     gpsdrive           | () ()                               ()    ()     |
   6.568 +     gramadoir          |                                     ()           |
   6.569 +     grep               | [] []                            [] []           |
   6.570 +     gretl              | []                                               |
   6.571 +     gsasl              |                                     []           |
   6.572 +     gss                |                                                  |
   6.573 +     gst-plugins        | []                                  []           |
   6.574 +     gstreamer          | []                                  []           |
   6.575 +     gtick              | []                                  []           |
   6.576 +     gtkspell           | []                      []          []           |
   6.577 +     hello              | [] [] []          []       []    [] [] [] []     |
   6.578 +     id-utils           | []                                  []           |
   6.579 +     impost             |                                                  |
   6.580 +     indent             | [] []                               []           |
   6.581 +     iso_3166           |                                     []           |
   6.582 +     iso_3166_1         |                                     []    []     |
   6.583 +     iso_3166_2         |                                     []           |
   6.584 +     iso_3166_3         |                                     []           |
   6.585 +     iso_4217           |    []                   []          []           |
   6.586 +     iso_639            |    []                               [] []        |
   6.587 +     jpilot             |    ()                               ()    ()     |
   6.588 +     jtag               |                                                  |
   6.589 +     jwhois             | []                                  []           |
   6.590 +     kbd                |                                     []           |
   6.591 +     latrine            | []                                  []           |
   6.592 +     ld                 |                                                  |
   6.593 +     libc               |    [] []                         [] []    []     |
   6.594 +     libextractor       |                                                  |
   6.595 +     libgpewidget       |                                     []           |
   6.596 +     libgphoto2         | [] []                                            |
   6.597 +     libgphoto2_port    | [] []                                            |
   6.598 +     libgsasl           |                                     []           |
   6.599 +     libiconv           | []                                  []           |
   6.600 +     libidn             | []                                               |
   6.601 +     lifelines          |                                     []           |
   6.602 +     lilypond           |                                                  |
   6.603 +     lingoteach         | []                                  []           |
   6.604 +     lynx               | [] []                               []           |
   6.605 +     m4                 |    []                               []           |
   6.606 +     mailutils          |                                                  |
   6.607 +     make               |    [] []                            []           |
   6.608 +     man-db             |    ()                                            |
   6.609 +     minicom            |    []                                            |
   6.610 +     mysecretdiary      |                                     []           |
   6.611 +     nano               | []                         []    []              |
   6.612 +     nano_1_0           | []                         []    []    []        |
   6.613 +     opcodes            |                                     []           |
   6.614 +     parted             | [] []                               [] []        |
   6.615 +     psmisc             | []                               [] []           |
   6.616 +     ptx                |                                  [] []    []     |
   6.617 +     pwdutils           |                                                  |
   6.618 +     python             |                                                  |
   6.619 +     radius             |                                                  |
   6.620 +     recode             | []                                  []           |
   6.621 +     rpm                |    [] []                                         |
   6.622 +     screem             |    []                                            |
   6.623 +     scrollkeeper       |                                  [] [] []        |
   6.624 +     sed                |    []                               []           |
   6.625 +     sh-utils           | [] []                            []              |
   6.626 +     shared-mime-info   |       []                         [] [] []        |
   6.627 +     sharutils          | [] []                               []           |
   6.628 +     silky              |                                     []           |
   6.629 +     skencil            |                                                  |
   6.630 +     sketch             |                                                  |
   6.631 +     solfege            | []                                  []    []     |
   6.632 +     soundtracker       | []                                               |
   6.633 +     sp                 |    ()                                            |
   6.634 +     stardict           |                      []             []           |
   6.635 +     tar                | [] []                               []           |
   6.636 +     texinfo            |    []                            [] []           |
   6.637 +     textutils          |    [] []                         []              |
   6.638 +     tin                |                                                  |
   6.639 +     tp-robot           |                                     []           |
   6.640 +     tuxpaint           | [] [] []       []          []       [] []        |
   6.641 +     unicode-han-tra... |                                                  |
   6.642 +     unicode-transla... |                                                  |
   6.643 +     util-linux         | [] []                               []           |
   6.644 +     vorbis-tools       |                                     []           |
   6.645 +     wastesedge         |                                     []           |
   6.646 +     wdiff              | []                         []    []              |
   6.647 +     wget               |    []                                            |
   6.648 +     xchat              | []    []          [] []             []           |
   6.649 +     xkeyboard-config   |                                     []           |
   6.650 +     xpad               |                                     []           |
   6.651 +                        +--------------------------------------------------+
   6.652 +                          it ja ko ku lg lt lv mk mn ms mt nb nl nn no nso
   6.653 +                          46 35 11  2  1  1  2  2  3 11  0 15 96  7  5  0
   6.654 +
   6.655 +                          or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv
   6.656 +                        +----------------------------------------------+
   6.657 +     GNUnet             |                                              |
   6.658 +     a2ps               |       ()     []      [] []       []    [] [] |
   6.659 +     aegis              |                      () ()                   |
   6.660 +     ant-phone          |                      []                      |
   6.661 +     anubis             |       []             [] []                   |
   6.662 +     ap-utils           |       ()                                     |
   6.663 +     aspell             |                      [] []                   |
   6.664 +     bash               |              []      [] []                   |
   6.665 +     batchelor          |                      []                      |
   6.666 +     bfd                |                                              |
   6.667 +     bibshelf           |                                              |
   6.668 +     binutils           |                         []                [] |
   6.669 +     bison              |       []     []      [] []                [] |
   6.670 +     bluez-pin          |       []     []   [] [] []    []       [] [] |
   6.671 +     clisp              |                         []                   |
   6.672 +     console-tools      |                         []                   |
   6.673 +     coreutils          |       []                []       []       [] |
   6.674 +     cpio               |       []                                  [] |
   6.675 +     cpplib             |                                              |
   6.676 +     darkstat           |       []     []      []       []       [] [] |
   6.677 +     dialog             |       [] []  []   [] [] [] []                |
   6.678 +     diffutils          |       []     []      [] []             [] [] |
   6.679 +     doodle             |                                     []       |
   6.680 +     e2fsprogs          |       []                                  [] |
   6.681 +     enscript           |              []      [] []                [] |
   6.682 +     error              |              []      []       []             |
   6.683 +     fetchmail          |       []                []    []    []       |
   6.684 +     fileutils          |       []             [] []       []       [] |
   6.685 +     findutils          |       [] []          []       []       [] [] |
   6.686 +     flex               |       []     []      [] []                [] |
   6.687 +     fslint             |              []      []                []    |
   6.688 +     gas                |                                              |
   6.689 +     gawk               |       []     []      []                   [] |
   6.690 +     gbiff              |                      []                      |
   6.691 +     gcal               |                                           [] |
   6.692 +     gcc                |                                              |
   6.693 +     gettext-examples   |       []             [] []    []       [] [] |
   6.694 +     gettext-runtime    |       []             [] []    [] []    [] [] |
   6.695 +     gettext-tools      |       []             [] []    [] []    [] [] |
   6.696 +     gimp-print         |                               []          [] |
   6.697 +     gip                |                   []          []       []    |
   6.698 +     gliv               |              []      []       []             |
   6.699 +     glunarclock        |              []      [] []    []       [] [] |
   6.700 +     gmult              |              []   [] []                []    |
   6.701 +     gnubiff            |                      ()                   [] |
   6.702 +     gnucash            |       () []             []    []          [] |
   6.703 +     gnucash-glossary   |          []                   []          [] |
   6.704 +     gpe-aerial         |          []  []      [] []             [] [] |
   6.705 +     gpe-beam           |          []  []      [] []             [] [] |
   6.706 +     gpe-calendar       |          []  []      [] []    []       [] [] |
   6.707 +     gpe-clock          |          []  []      [] []    []       [] [] |
   6.708 +     gpe-conf           |          []  []      [] []    []          [] |
   6.709 +     gpe-contacts       |                      [] []             [] [] |
   6.710 +     gpe-edit           |          []  []      [] []    []       [] [] |
   6.711 +     gpe-go             |              []      [] []             [] [] |
   6.712 +     gpe-login          |          []  []      [] []    []       [] [] |
   6.713 +     gpe-ownerinfo      |          []  []      [] []    []       [] [] |
   6.714 +     gpe-sketchbook     |          []  []      [] []    []       [] [] |
   6.715 +     gpe-su             |          []  []      [] []    []       [] [] |
   6.716 +     gpe-taskmanager    |          []  []      [] []    []       [] [] |
   6.717 +     gpe-timesheet      |          []  []      [] []    []       [] [] |
   6.718 +     gpe-today          |          []  []      [] []    []       [] [] |
   6.719 +     gpe-todo           |    []    []  []      [] []    []       [] [] |
   6.720 +     gphoto2            |                      []       []       [] [] |
   6.721 +     gprof              |              []      []                   [] |
   6.722 +     gpsdrive           |    []                []                      |
   6.723 +     gramadoir          |                               []             |
   6.724 +     grep               |       [] []  []      [] []       []    []    |
   6.725 +     gretl              |       []                                     |
   6.726 +     gsasl              |       []             []             [] [] [] |
   6.727 +     gss                |       []             []                   [] |
   6.728 +     gst-plugins        | []                                  [] [] [] |
   6.729 +     gstreamer          |                         []          [] [] [] |
   6.730 +     gtick              |                      [] []                [] |
   6.731 +     gtkspell           |              []   [] [] []    []       []    |
   6.732 +     hello              |       []     []      [] []    []       [] [] |
   6.733 +     id-utils           |              []      [] []                [] |
   6.734 +     impost             |                                              |
   6.735 +     indent             |              []      [] []    []       [] [] |
   6.736 +     iso_3166           |          []                []       [] [] [] |
   6.737 +     iso_3166_1         |                               [] [] [] []    |
   6.738 +     iso_3166_2         |                                              |
   6.739 +     iso_3166_3         |                      []    []          []    |
   6.740 +     iso_4217           |                            []          []    |
   6.741 +     iso_639            |                            []          [] [] |
   6.742 +     jpilot             |                                              |
   6.743 +     jtag               |                               []             |
   6.744 +     jwhois             |       []     []      [] ()                () |
   6.745 +     kbd                |       []             []                   [] |
   6.746 +     latrine            |                      []                   [] |
   6.747 +     ld                 |                                           [] |
   6.748 +     libc               |       []     []         []    []          [] |
   6.749 +     libextractor       |                      []                      |
   6.750 +     libgpewidget       |          []  []      []       []       [] [] |
   6.751 +     libgphoto2         |                         []                [] |
   6.752 +     libgphoto2_port    |                         []                   |
   6.753 +     libgsasl           |       []             []                []    |
   6.754 +     libiconv           |       []     []   [] [] []    [] [] [] [] [] |
   6.755 +     libidn             |       []                                  () |
   6.756 +     lifelines          |       []                                  [] |
   6.757 +     lilypond           |                                              |
   6.758 +     lingoteach         |              []                              |
   6.759 +     lynx               |              []         []                [] |
   6.760 +     m4                 |       []     []      [] []                [] |
   6.761 +     mailutils          |       []             [] []                   |
   6.762 +     make               |       []     []         []                [] |
   6.763 +     man-db             |                      []                   [] |
   6.764 +     minicom            |       []     []      [] []                   |
   6.765 +     mysecretdiary      |              []      [] []                [] |
   6.766 +     nano               |              []      []                   [] |
   6.767 +     nano_1_0           |       []             [] []                [] |
   6.768 +     opcodes            |                      []                   [] |
   6.769 +     parted             |       [] []  []                           [] |
   6.770 +     psmisc             |       []             []                      |
   6.771 +     ptx                |       [] []  []      [] []                [] |
   6.772 +     pwdutils           |       []                                     |
   6.773 +     python             |                                              |
   6.774 +     radius             |       []                []                   |
   6.775 +     recode             |       []     []      [] []       []       [] |
   6.776 +     rpm                |       [] []             []                [] |
   6.777 +     screem             |                                              |
   6.778 +     scrollkeeper       |       []             [] []    []    [] [] [] |
   6.779 +     sed                |       [] []  []      [] []    []       [] [] |
   6.780 +     sh-utils           |                         []       []    []    |
   6.781 +     shared-mime-info   |          []  []         []          [] [] [] |
   6.782 +     sharutils          |                         []             [] [] |
   6.783 +     silky              |                               []             |
   6.784 +     skencil            |          []  []                           [] |
   6.785 +     sketch             |          []  []                           [] |
   6.786 +     solfege            |                                              |
   6.787 +     soundtracker       |                               []          [] |
   6.788 +     sp                 |                                              |
   6.789 +     stardict           |                         []    []             |
   6.790 +     tar                |       []             [] []                [] |
   6.791 +     texinfo            |       []             [] []                [] |
   6.792 +     textutils          |                         []       []       [] |
   6.793 +     tin                |                                              |
   6.794 +     tp-robot           |                         []                   |
   6.795 +     tuxpaint           |       [] []  []      []       []    [] [] [] |
   6.796 +     unicode-han-tra... |                                              |
   6.797 +     unicode-transla... |                                              |
   6.798 +     util-linux         |              []         []                [] |
   6.799 +     vorbis-tools       |                      [] []                   |
   6.800 +     wastesedge         |                                              |
   6.801 +     wdiff              |       []     []      [] []    []          [] |
   6.802 +     wget               |                                              |
   6.803 +     xchat              |    []                   []    [] [] [] [] [] |
   6.804 +     xkeyboard-config   |                                              |
   6.805 +     xpad               |                                              |
   6.806 +                        +----------------------------------------------+
   6.807 +                          or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv
   6.808 +                           1  3 47 29  57    6 78 73  5 44 12 12 50 85
   6.809 +
   6.810 +                          ta tg th tk tr uk ven vi wa xh zh_CN zh_TW zu
   6.811 +                        +-----------------------------------------------+
   6.812 +     GNUnet             |                                               |  0
   6.813 +     a2ps               |             [] []     []                      | 19
   6.814 +     aegis              |                                               |  0
   6.815 +     ant-phone          |             []        []                      |  5
   6.816 +     anubis             |             [] []     []                      | 11
   6.817 +     ap-utils           |                ()     []                      |  2
   6.818 +     aspell             |                []     [] []                   | 13
   6.819 +     bash               |                       []                      | 11
   6.820 +     batchelor          |             []        []                      |  7
   6.821 +     bfd                |                                               |  1
   6.822 +     bibshelf           |                       []                      |  5
   6.823 +     binutils           |             []                                |  6
   6.824 +     bison              |             []        []                      | 18
   6.825 +     bluez-pin          |             [] []     [] []     []            | 25
   6.826 +     clisp              |                                               |  7
   6.827 +     console-tools      |             []        []                      |  5
   6.828 +     coreutils          |             []        []                      | 17
   6.829 +     cpio               |             [] []     []                      |  7
   6.830 +     cpplib             |             []        []                      |  8
   6.831 +     darkstat           |                       []        ()    ()      | 15
   6.832 +     dialog             |             [] []     []                      | 25
   6.833 +     diffutils          |             []        []        []    []      | 28
   6.834 +     doodle             |                       []                      |  5
   6.835 +     e2fsprogs          |             []                                |  8
   6.836 +     enscript           |             []                                | 12
   6.837 +     error              |             []        []              []      | 16
   6.838 +     fetchmail          |             []                                | 12
   6.839 +     fileutils          |             []                  []    []      | 18
   6.840 +     findutils          |             []        []                      | 17
   6.841 +     flex               |             []        []                      | 15
   6.842 +     fslint             |                       []                      |  7
   6.843 +     gas                |             []                                |  3
   6.844 +     gawk               |             []                                | 14
   6.845 +     gbiff              |                       []                      |  5
   6.846 +     gcal               |             []                                |  5
   6.847 +     gcc                |             []                  []            |  4
   6.848 +     gettext-examples   |             [] []     []        []    []      | 21
   6.849 +     gettext-runtime    |             [] []     []        []    []      | 25
   6.850 +     gettext-tools      |             [] []     []        []    []      | 19
   6.851 +     gimp-print         |                []                             | 11
   6.852 +     gip                |                       []                      |  8
   6.853 +     gliv               |             []        []                      |  7
   6.854 +     glunarclock        |                       [] []                   | 13
   6.855 +     gmult              |             []        []        []            | 13
   6.856 +     gnubiff            |                       []                      |  3
   6.857 +     gnucash            |             ()                        []      | 10
   6.858 +     gnucash-glossary   |                       []              []      |  9
   6.859 +     gpe-aerial         |                       []        []            | 13
   6.860 +     gpe-beam           |                       []        []            | 13
   6.861 +     gpe-calendar       |                       [] []     []    []      | 18
   6.862 +     gpe-clock          |             []        [] []     []            | 17
   6.863 +     gpe-conf           |                       []        []            | 12
   6.864 +     gpe-contacts       |                       []        []            |  7
   6.865 +     gpe-edit           |             []        [] []           []      | 15
   6.866 +     gpe-go             |             []        []                      | 11
   6.867 +     gpe-login          |             []        [] []     []    []      | 18
   6.868 +     gpe-ownerinfo      |             []        []        []    []      | 19
   6.869 +     gpe-sketchbook     |             []        []                      | 14
   6.870 +     gpe-su             |             []        []        []            | 16
   6.871 +     gpe-taskmanager    |             []        []        []            | 17
   6.872 +     gpe-timesheet      |             []        []        []    []      | 17
   6.873 +     gpe-today          |             []        [] []     []    []      | 19
   6.874 +     gpe-todo           |                       [] []           []      | 17
   6.875 +     gphoto2            |                []               []    []      | 18
   6.876 +     gprof              |             []        []                      | 10
   6.877 +     gpsdrive           |                                               |  3
   6.878 +     gramadoir          |                       []                      |  6
   6.879 +     grep               |             [] []     []              []      | 32
   6.880 +     gretl              |                                               |  4
   6.881 +     gsasl              |                       []        []            | 12
   6.882 +     gss                |                       []                      |  5
   6.883 +     gst-plugins        |                []     []              []      | 17
   6.884 +     gstreamer          |             [] []     []              []      | 15
   6.885 +     gtick              |                       []                      | 11
   6.886 +     gtkspell           |                       [] []     []    []      | 21
   6.887 +     hello              |             [] []     []        []            | 37
   6.888 +     id-utils           |             []        []                      | 13
   6.889 +     impost             |                       []                      |  3
   6.890 +     indent             |             []        []        []    []      | 25
   6.891 +     iso_3166           |          [] []        []                      | 12
   6.892 +     iso_3166_1         |             []           []                   | 20
   6.893 +     iso_3166_2         |                                               |  2
   6.894 +     iso_3166_3         |                          []     []            |  8
   6.895 +     iso_4217           |             []        []                      | 10
   6.896 +     iso_639            |                       [] []                   | 12
   6.897 +     jpilot             |             [] []               []            |  6
   6.898 +     jtag               |                                               |  2
   6.899 +     jwhois             |             []        []              []      | 12
   6.900 +     kbd                |             []        []                      | 12
   6.901 +     latrine            |             []        []                      |  8
   6.902 +     ld                 |             []                                |  5
   6.903 +     libc               |             []                  []            | 22
   6.904 +     libextractor       |                                               |  1
   6.905 +     libgpewidget       |                       [] []                   | 17
   6.906 +     libgphoto2         |                                 []            |  9
   6.907 +     libgphoto2_port    |                                               |  5
   6.908 +     libgsasl           |                       []                      |  7
   6.909 +     libiconv           |             [] []     [] []     []            | 32
   6.910 +     libidn             |                       []        []            |  6
   6.911 +     lifelines          |                                               |  4
   6.912 +     lilypond           |                                               |  1
   6.913 +     lingoteach         |                       []                      |  6
   6.914 +     lynx               |             [] []     []                      | 15
   6.915 +     m4                 |                       []        []            | 17
   6.916 +     mailutils          |                []                             |  7
   6.917 +     make               |             []                  []            | 18
   6.918 +     man-db             |                                               |  5
   6.919 +     minicom            |                                               | 11
   6.920 +     mysecretdiary      |             []        []                      | 12
   6.921 +     nano               |                       []              []      | 13
   6.922 +     nano_1_0           |             [] []     []                      | 18
   6.923 +     opcodes            |             []        []                      |  9
   6.924 +     parted             |             [] []               []            | 18
   6.925 +     psmisc             |                       []                      |  7
   6.926 +     ptx                |             []                  []            | 23
   6.927 +     pwdutils           |                                               |  1
   6.928 +     python             |                                               |  0
   6.929 +     radius             |                []                             |  6
   6.930 +     recode             |             []        []                      | 22
   6.931 +     rpm                |             [] []                             | 11
   6.932 +     screem             |                                               |  1
   6.933 +     scrollkeeper       |             [] []                     []      | 24
   6.934 +     sed                |             []        []              []      | 21
   6.935 +     sh-utils           |             []                                | 15
   6.936 +     shared-mime-info   |                []               []    []      | 21
   6.937 +     sharutils          |             []        []              []      | 20
   6.938 +     silky              |                                               |  3
   6.939 +     skencil            |                                               |  6
   6.940 +     sketch             |                                               |  6
   6.941 +     solfege            |                                               |  4
   6.942 +     soundtracker       |             []                                |  8
   6.943 +     sp                 |             []                                |  3
   6.944 +     stardict           |                []     []        []    []      | 10
   6.945 +     tar                |             [] []     []              []      | 15
   6.946 +     texinfo            |             []                  []            | 14
   6.947 +     textutils          |             []                  []    []      | 17
   6.948 +     tin                |                                               |  1
   6.949 +     tp-robot           |                       []        []    []      |  8
   6.950 +     tuxpaint           |             []        [] []     []            | 34
   6.951 +     unicode-han-tra... |                                               |  0
   6.952 +     unicode-transla... |                                               |  2
   6.953 +     util-linux         |             [] []     []                      | 18
   6.954 +     vorbis-tools       |                []                             | 10
   6.955 +     wastesedge         |                                               |  1
   6.956 +     wdiff              |             []        []                      | 22
   6.957 +     wget               |             []        []                      |  7
   6.958 +     xchat              |                []     []        []    []      | 26
   6.959 +     xkeyboard-config   |                       []                      |  2
   6.960 +     xpad               |                       []                      |  5
   6.961 +                        +-----------------------------------------------+
   6.962 +       73 teams           ta tg th tk tr uk ven vi wa xh zh_CN zh_TW zu
   6.963 +      149 domains          0  0  0  1 77 30  0  92 16  0  42    32    0  1746
   6.964 +
   6.965 +   Some counters in the preceding matrix are higher than the number of
   6.966 +visible blocks let us expect.  This is because a few extra PO files are
   6.967 +used for implementing regional variants of languages, or language
   6.968 +dialects.
   6.969 +
   6.970 +   For a PO file in the matrix above to be effective, the package to
   6.971 +which it applies should also have been internationalized and
   6.972 +distributed as such by its maintainer.  There might be an observable
   6.973 +lag between the mere existence a PO file and its wide availability in a
   6.974 +distribution.
   6.975 +
   6.976 +   If May 2005 seems to be old, you may fetch a more recent copy of
   6.977 +this `ABOUT-NLS' file on most GNU archive sites.  The most up-to-date
   6.978 +matrix with full percentage details can be found at
   6.979 +`http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'.
   6.980 +
   6.981 +1.6 Using `gettext' in new packages
   6.982 +===================================
   6.983 +
   6.984 +If you are writing a freely available program and want to
   6.985 +internationalize it you are welcome to use GNU `gettext' in your
   6.986 +package.  Of course you have to respect the GNU Library General Public
   6.987 +License which covers the use of the GNU `gettext' library.  This means
   6.988 +in particular that even non-free programs can use `libintl' as a shared
   6.989 +library, whereas only free software can use `libintl' as a static
   6.990 +library or use modified versions of `libintl'.
   6.991 +
   6.992 +   Once the sources are changed appropriately and the setup can handle
   6.993 +the use of `gettext' the only thing missing are the translations.  The
   6.994 +Free Translation Project is also available for packages which are not
   6.995 +developed inside the GNU project.  Therefore the information given above
   6.996 +applies also for every other Free Software Project.  Contact
   6.997 +`translation@iro.umontreal.ca' to make the `.pot' files available to
   6.998 +the translation teams.
   6.999 +
     7.1 --- a/gui/Makefile.am	Tue Mar 21 13:45:24 2006 +0000
     7.2 +++ b/gui/Makefile.am	Thu Mar 23 19:57:14 2006 +0000
     7.3 @@ -1,5 +1,12 @@
     7.4 -AM_CPPFLAGS = -I$(top_srcdir)
     7.5 -LDADD = $(top_builddir)/lemon/libemon.la
     7.6 +AM_CPPFLAGS = -I$(top_srcdir) -DLOCALEDIR=\""$(datadir)/locale"\"
     7.7 +LDADD = ../lemon/libemon.la
     7.8 +
     7.9 +ACLOCAL_AMFLAGS = -I m4
    7.10 +
    7.11 +EXTRA_DIST = \
    7.12 +	build-aux/config.rpath
    7.13 +
    7.14 +SUBDIRS = po
    7.15  
    7.16  bin_PROGRAMS = glemon
    7.17  BUILT_SOURCES = guipixbufs.h
    7.18 @@ -39,10 +46,12 @@
    7.19  	gui_writer.h \
    7.20  	gui_writer.cc \
    7.21  	xml.h \
    7.22 -	guipixbufs.h
    7.23 +	guipixbufs.h \
    7.24 +	gettext.h
    7.25  
    7.26  glemon_CXXFLAGS = $(GTK_CFLAGS)
    7.27  glemon_LDFLAGS = $(GTK_LIBS)
    7.28 +#glemon_LDADD = $(LIBINTL)
    7.29  
    7.30  IMAGES = \
    7.31  	icons/addlink.png \
    7.32 @@ -67,4 +76,64 @@
    7.33  	--raw --build-list $(VARIABLES) > guipixbufs.h ||  \
    7.34  	( rm -f guipixbufs.h && false )
    7.35  
    7.36 -EXTRA_DIST = $(IMAGES) guipixbufs.h
    7.37 +EXTRA_DIST += $(IMAGES) guipixbufs.h
    7.38 +
    7.39 +MRPROPERFILES = \
    7.40 +	aclocal.m4 \
    7.41 +	config.h.in \
    7.42 +	config.h.in~ \
    7.43 +	configure \
    7.44 +	Makefile.in \
    7.45 +	build-aux/config.guess \
    7.46 +	build-aux/config.rpath \
    7.47 +	build-aux/config.sub \
    7.48 +	build-aux/depcomp \
    7.49 +	build-aux/install-sh \
    7.50 +	build-aux/ltmain.sh \
    7.51 +	build-aux/missing \
    7.52 +	build-aux/mkinstalldirs \
    7.53 +	Makefile.in \
    7.54 +	m4/intmax.m4 \
    7.55 +	m4/lib-link.m4 \
    7.56 +	m4/lib-prefix.m4 \
    7.57 +	m4/printf-posix.m4 \
    7.58 +	m4/xsize.m4 \
    7.59 +	m4/glibc2.m4 \
    7.60 +	m4/lib-ld.m4 \
    7.61 +	m4/lcmessage.m4 \
    7.62 +	m4/wint_t.m4 \
    7.63 +	m4/ulonglong.m4 \
    7.64 +	m4/inttypes-pri.m4 \
    7.65 +	m4/progtest.m4 \
    7.66 +	m4/uintmax_t.m4 \
    7.67 +	m4/signed.m4 \
    7.68 +	m4/stdint_h.m4 \
    7.69 +	m4/intdiv0.m4 \
    7.70 +	m4/iconv.m4 \
    7.71 +	m4/po.m4 \
    7.72 +	m4/isc-posix.m4 \
    7.73 +	m4/longlong.m4 \
    7.74 +	m4/inttypes.m4 \
    7.75 +	m4/size_max.m4 \
    7.76 +	m4/glibc21.m4 \
    7.77 +	m4/gettext.m4 \
    7.78 +	m4/codeset.m4 \
    7.79 +	m4/inttypes_h.m4 \
    7.80 +	m4/wchar_t.m4 \
    7.81 +	m4/longdouble.m4 \
    7.82 +	m4/nls.m4 \
    7.83 +	po/Rules-quot \
    7.84 +	po/en@quot.header \
    7.85 +	po/insert-header.sin \
    7.86 +	po/quot.sed \
    7.87 +	po/en@boldquot.header \
    7.88 +	po/boldquot.sed \
    7.89 +	po/Makevars.template \
    7.90 +	po/remove-potcdate.sin \
    7.91 +	po/Makefile.in.in
    7.92 +
    7.93 +mrproper:
    7.94 +	$(MAKE) $(AM_MAKEFLAGS) maintainer-clean
    7.95 +	-rm -f $(MRPROPERFILES)
    7.96 +
    7.97 +.PHONY: mrproper
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/gui/bootstrap	Thu Mar 23 19:57:14 2006 +0000
     8.3 @@ -0,0 +1,78 @@
     8.4 +#!/bin/bash
     8.5 +
     8.6 +prev=
     8.7 +for option
     8.8 +do
     8.9 +  if test -n "$prev"
    8.10 +  then
    8.11 +    eval "$prev=\$option"
    8.12 +    prev=
    8.13 +    continue
    8.14 +  fi
    8.15 +
    8.16 +  optarg=`expr "x$option" : 'x[^=]*=\(.*\)'`
    8.17 +
    8.18 +  case $option in
    8.19 +
    8.20 +  -amver | --amver)
    8.21 +    prev=amver ;;
    8.22 +  -amver=* | --amver=*)
    8.23 +    amver=$optarg ;;
    8.24 +
    8.25 +  -acver | --acver)
    8.26 +    prev=acver ;;
    8.27 +  -acver=* | --acver=*)
    8.28 +    acver=$optarg ;;
    8.29 +
    8.30 +  --help | -h)
    8.31 +    cat << EOF
    8.32 +Usage: $0 [OPTION]
    8.33 +
    8.34 +Options:
    8.35 +  -h, --help            display this help and exit
    8.36 +      --amver=VERSION   use VERSION version of automake
    8.37 +      --acver=VERSION   use VERSION version of autoconf
    8.38 +
    8.39 +Expamle:
    8.40 +  $0 --amver=1.8 --acver=2.59
    8.41 +EOF
    8.42 +    exit 0
    8.43 +    ;;
    8.44 +
    8.45 +  *)
    8.46 +    cat << EOF >&2
    8.47 +$0: unrecognized option: $option
    8.48 +Try \`$0 --help' for more information.
    8.49 +EOF
    8.50 +    exit 1
    8.51 +    ;;
    8.52 +
    8.53 +  esac
    8.54 +done
    8.55 +
    8.56 +automake=automake
    8.57 +aclocal=aclocal
    8.58 +autoconf=autoconf
    8.59 +autoheader=autoheader
    8.60 +
    8.61 +if test -n "$amver"
    8.62 +then
    8.63 +  automake=automake-$amver
    8.64 +  aclocal=aclocal-$amver
    8.65 +fi
    8.66 +
    8.67 +if test -n "$acver"
    8.68 +then
    8.69 +  autoconf=autoconf-$acver
    8.70 +  autoheader=autoheader-$acver
    8.71 +fi
    8.72 +
    8.73 +echo "Try using 'autoreconf -vi' instead of this."
    8.74 +
    8.75 +set -x
    8.76 +autopoint \
    8.77 +&& $aclocal -I m4 \
    8.78 +&& libtoolize --force --copy \
    8.79 +&& $autoconf \
    8.80 +&& $autoheader \
    8.81 +&& $automake --add-missing --copy --gnu
     9.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.2 +++ b/gui/configure.ac	Thu Mar 23 19:57:14 2006 +0000
     9.3 @@ -0,0 +1,33 @@
     9.4 +dnl Process this file with autoconf to produce a configure script.
     9.5 +AC_PREREQ([2.59])
     9.6 +AC_INIT([gLEMON], [0.1], [etik-ol@cs.elte.hu], [glemon])
     9.7 +AC_CONFIG_AUX_DIR([build-aux])
     9.8 +AC_CONFIG_MACRO_DIR([m4])
     9.9 +AM_INIT_AUTOMAKE([-Wall -Werror foreign])
    9.10 +AC_CONFIG_SRCDIR([main_win.h])
    9.11 +AC_CONFIG_HEADERS([config.h])
    9.12 +
    9.13 +dnl Checks for programs.
    9.14 +AC_PROG_CXX
    9.15 +AC_PROG_CXXCPP
    9.16 +AC_PROG_INSTALL
    9.17 +AC_PROG_LIBTOOL
    9.18 +
    9.19 +dnl i18n
    9.20 +AM_GNU_GETTEXT_VERSION([0.14.5])
    9.21 +AM_GNU_GETTEXT([external])
    9.22 +
    9.23 +dnl Checks for libraries.
    9.24 +PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0])
    9.25 +
    9.26 +dnl Checks for header files.
    9.27 +
    9.28 +dnl Checks for typedefs, structures, and compiler characteristics.
    9.29 +
    9.30 +dnl Checks for library functions.
    9.31 +
    9.32 +AC_CONFIG_FILES([
    9.33 +Makefile
    9.34 +po/Makefile.in
    9.35 +])
    9.36 +AC_OUTPUT
    10.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    10.2 +++ b/gui/gettext.h	Thu Mar 23 19:57:14 2006 +0000
    10.3 @@ -0,0 +1,79 @@
    10.4 +/* Convenience header for conditional use of GNU <libintl.h>.
    10.5 +   Copyright (C) 1995-1998, 2000-2002, 2004 Free Software Foundation, Inc.
    10.6 +
    10.7 +   This program is free software; you can redistribute it and/or modify it
    10.8 +   under the terms of the GNU Library General Public License as published
    10.9 +   by the Free Software Foundation; either version 2, or (at your option)
   10.10 +   any later version.
   10.11 +
   10.12 +   This program is distributed in the hope that it will be useful,
   10.13 +   but WITHOUT ANY WARRANTY; without even the implied warranty of
   10.14 +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   10.15 +   Library General Public License for more details.
   10.16 +
   10.17 +   You should have received a copy of the GNU Library General Public
   10.18 +   License along with this program; if not, write to the Free Software
   10.19 +   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
   10.20 +   USA.  */
   10.21 +
   10.22 +#ifndef _LIBGETTEXT_H
   10.23 +#define _LIBGETTEXT_H 1
   10.24 +
   10.25 +/* NLS can be disabled through the configure --disable-nls option.  */
   10.26 +#if ENABLE_NLS
   10.27 +
   10.28 +/* Get declarations of GNU message catalog functions.  */
   10.29 +# include <libintl.h>
   10.30 +
   10.31 +#else
   10.32 +
   10.33 +/* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which
   10.34 +   chokes if dcgettext is defined as a macro.  So include it now, to make
   10.35 +   later inclusions of <locale.h> a NOP.  We don't include <libintl.h>
   10.36 +   as well because people using "gettext.h" will not include <libintl.h>,
   10.37 +   and also including <libintl.h> would fail on SunOS 4, whereas <locale.h>
   10.38 +   is OK.  */
   10.39 +#if defined(__sun)
   10.40 +# include <locale.h>
   10.41 +#endif
   10.42 +
   10.43 +/* Many header files from the libstdc++ coming with g++ 3.3 or newer include
   10.44 +   <libintl.h>, which chokes if dcgettext is defined as a macro.  So include
   10.45 +   it now, to make later inclusions of <libintl.h> a NOP.  */
   10.46 +#if defined(__cplusplus) && defined(__GNUG__) && (__GNUC__ >= 3)
   10.47 +# include <cstdlib>
   10.48 +# if (__GLIBC__ >= 2) || _GLIBCXX_HAVE_LIBINTL_H
   10.49 +#  include <libintl.h>
   10.50 +# endif
   10.51 +#endif
   10.52 +
   10.53 +/* Disabled NLS.
   10.54 +   The casts to 'const char *' serve the purpose of producing warnings
   10.55 +   for invalid uses of the value returned from these functions.
   10.56 +   On pre-ANSI systems without 'const', the config.h file is supposed to
   10.57 +   contain "#define const".  */
   10.58 +# define gettext(Msgid) ((const char *) (Msgid))
   10.59 +# define dgettext(Domainname, Msgid) ((const char *) (Msgid))
   10.60 +# define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
   10.61 +# define ngettext(Msgid1, Msgid2, N) \
   10.62 +    ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
   10.63 +# define dngettext(Domainname, Msgid1, Msgid2, N) \
   10.64 +    ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
   10.65 +# define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
   10.66 +    ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
   10.67 +# define textdomain(Domainname) ((const char *) (Domainname))
   10.68 +# define bindtextdomain(Domainname, Dirname) ((const char *) (Dirname))
   10.69 +# define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset))
   10.70 +
   10.71 +#endif
   10.72 +
   10.73 +/* A pseudo function call that serves as a marker for the automated
   10.74 +   extraction of messages, but does not call gettext().  The run-time
   10.75 +   translation is done at a different place in the code.
   10.76 +   The argument, String, should be a literal string.  Concatenated strings
   10.77 +   and other string expressions won't work.
   10.78 +   The macro's expansion is not parenthesized, so that it is suitable as
   10.79 +   initializer for static 'char[]' or 'const char[]' variables.  */
   10.80 +#define gettext_noop(String) String
   10.81 +
   10.82 +#endif /* _LIBGETTEXT_H */
    11.1 --- a/gui/graph-displayer.cc	Tue Mar 21 13:45:24 2006 +0000
    11.2 +++ b/gui/graph-displayer.cc	Thu Mar 23 19:57:14 2006 +0000
    11.3 @@ -1,9 +1,16 @@
    11.4 +#ifdef HAVE_CONFIG_H
    11.5 +#include <config.h>
    11.6 +#endif
    11.7 +
    11.8  #include "all_include.h"
    11.9  #include "mapstorage.h"
   11.10  #include "main_win.h"
   11.11  #include <libgnomecanvasmm.h>
   11.12  #include <libgnomecanvasmm/polygon.h>
   11.13  
   11.14 +#include <locale.h>
   11.15 +#include "gettext.h"
   11.16 +
   11.17  #define MAIN_PART
   11.18  
   11.19  std::vector <std::string> edge_property_strings;
   11.20 @@ -14,6 +21,9 @@
   11.21  
   11.22  int main(int argc, char *argv[])
   11.23  {
   11.24 +  bindtextdomain(PACKAGE, LOCALEDIR);
   11.25 +  bind_textdomain_codeset(PACKAGE, "UTF-8");
   11.26 +  textdomain(PACKAGE);
   11.27  
   11.28    //initializing
   11.29  
    12.1 --- a/gui/main_win.cc	Tue Mar 21 13:45:24 2006 +0000
    12.2 +++ b/gui/main_win.cc	Thu Mar 23 19:57:14 2006 +0000
    12.3 @@ -1,6 +1,13 @@
    12.4 +#ifdef HAVE_CONFIG_H
    12.5 +#include <config.h>
    12.6 +#endif
    12.7 +
    12.8  #include "main_win.h"
    12.9  #include "guipixbufs.h"
   12.10  
   12.11 +#include "gettext.h"
   12.12 +#define _(string) gettext (string)
   12.13 +
   12.14  MainWin::MainWin()
   12.15  {
   12.16    set_title ("no file");
   12.17 @@ -71,12 +78,12 @@
   12.18    
   12.19    ag=Gtk::ActionGroup::create();
   12.20  
   12.21 -  ag->add( Gtk::Action::create("FileMenu", "_File") );
   12.22 +  ag->add( Gtk::Action::create("FileMenu", _("_File")) );
   12.23    ag->add( Gtk::Action::create("FileNew", Gtk::Stock::NEW),
   12.24        sigc::mem_fun(*this, &MainWin::newTab));
   12.25    ag->add( Gtk::Action::create("FileOpen", Gtk::Stock::OPEN),
   12.26        sigc::mem_fun(*this, &MainWin::openFile));
   12.27 -  ag->add( Gtk::Action::create("FileClearTab", "Clear Tab"),
   12.28 +  ag->add( Gtk::Action::create("FileClearTab", _("Clear Tab")),
   12.29        sigc::mem_fun(*this, &MainWin::newFile));
   12.30    ag->add( Gtk::Action::create("FileSave", Gtk::Stock::SAVE),
   12.31        sigc::mem_fun(*this, &MainWin::saveFile));
   12.32 @@ -87,7 +94,7 @@
   12.33    ag->add( Gtk::Action::create("Quit", Gtk::Stock::QUIT),
   12.34        sigc::mem_fun(*this, &MainWin::hide));
   12.35  
   12.36 -  ag->add( Gtk::Action::create("ViewMenu", "_View") );
   12.37 +  ag->add( Gtk::Action::create("ViewMenu", _("_View")) );
   12.38    ag->add( Gtk::Action::create("ViewZoomIn", Gtk::Stock::ZOOM_IN),
   12.39        sigc::mem_fun(*this, &MainWin::zoomIn));
   12.40    ag->add( Gtk::Action::create("ViewZoomOut", Gtk::Stock::ZOOM_OUT),
   12.41 @@ -97,29 +104,29 @@
   12.42    ag->add( Gtk::Action::create("ViewZoom100", Gtk::Stock::ZOOM_100),
   12.43        sigc::mem_fun(*this, &MainWin::zoom100));
   12.44    
   12.45 -  ag->add( Gtk::Action::create("ShowMenu", "_Show") );
   12.46 -  ag->add( Gtk::Action::create("ShowMaps", "_Maps"),
   12.47 +  ag->add( Gtk::Action::create("ShowMenu", _("_Show")) );
   12.48 +  ag->add( Gtk::Action::create("ShowMaps", _("_Maps")),
   12.49  	   sigc::mem_fun(*this, &MainWin::createMapWin));
   12.50  
   12.51 -  ag->add( Gtk::Action::create("AlgoMenu", "_Algorithms") );
   12.52 -  ag->add( Gtk::Action::create("AlgoGeneral", "_General"),
   12.53 +  ag->add( Gtk::Action::create("AlgoMenu", _("_Algorithms")) );
   12.54 +  ag->add( Gtk::Action::create("AlgoGeneral", _("_General")),
   12.55  	   sigc::bind( sigc::mem_fun ( *this, &MainWin::createAlgoWin ), 0) );
   12.56 -  ag->add( Gtk::Action::create("AlgoKruskal", "_Kruskal"),
   12.57 +  ag->add( Gtk::Action::create("AlgoKruskal", _("_Kruskal")),
   12.58  	   sigc::bind( sigc::mem_fun ( *this, &MainWin::createAlgoWin ), 1) );
   12.59  
   12.60    Gtk::RadioAction::Group tool_group;
   12.61 -  ag->add( Gtk::RadioAction::create(tool_group, "MoveItem", Gtk::StockID("gd-move"), "Move"),
   12.62 +  ag->add( Gtk::RadioAction::create(tool_group, "MoveItem", Gtk::StockID("gd-move"), _("Move")),
   12.63        sigc::bind( sigc::mem_fun ( *this, &MainWin::changeEditorialTool ), 0) );
   12.64 -  ag->add( Gtk::RadioAction::create(tool_group, "CreateNode", Gtk::StockID("gd-addnode"), "Create node"),
   12.65 +  ag->add( Gtk::RadioAction::create(tool_group, "CreateNode", Gtk::StockID("gd-addnode"), _("Create node")),
   12.66        sigc::bind( sigc::mem_fun ( *this, &MainWin::changeEditorialTool ), 1) );
   12.67 -  ag->add( Gtk::RadioAction::create(tool_group, "CreateEdge", Gtk::StockID("gd-addlink"), "Create edge"),
   12.68 +  ag->add( Gtk::RadioAction::create(tool_group, "CreateEdge", Gtk::StockID("gd-addlink"), _("Create edge")),
   12.69        sigc::bind( sigc::mem_fun ( *this, &MainWin::changeEditorialTool ), 2) );
   12.70 -  ag->add( Gtk::RadioAction::create(tool_group, "EraseItem", Gtk::StockID("gd-delete"), "Delete"),
   12.71 +  ag->add( Gtk::RadioAction::create(tool_group, "EraseItem", Gtk::StockID("gd-delete"), _("Delete")),
   12.72        sigc::bind( sigc::mem_fun ( *this, &MainWin::changeEditorialTool ), 3) );
   12.73  
   12.74 -  ag->add( Gtk::RadioAction::create(tool_group, "EditEdgeMap", Gtk::StockID("gd-editlink"), "Edit edge map"),
   12.75 +  ag->add( Gtk::RadioAction::create(tool_group, "EditEdgeMap", Gtk::StockID("gd-editlink"), _("Edit edge map")),
   12.76        sigc::bind( sigc::mem_fun ( *this, &MainWin::changeEditorialTool ), 4) );
   12.77 -  ag->add( Gtk::RadioAction::create(tool_group, "EditNodeMap", Gtk::StockID("gd-editnode"), "Edit node map"),
   12.78 +  ag->add( Gtk::RadioAction::create(tool_group, "EditNodeMap", Gtk::StockID("gd-editnode"), _("Edit node map")),
   12.79        sigc::bind( sigc::mem_fun ( *this, &MainWin::changeEditorialTool ), 5) );
   12.80  
   12.81    ag->add( Gtk::Action::create("AddMap", Gtk::StockID("gd-newmap")),
   12.82 @@ -250,7 +257,7 @@
   12.83    tabs[active_tab]->gd_canvas->changeEditorialTool(active_tool);
   12.84    notebook.append_page((Gtk::Widget&)(*(tabs[active_tab])));
   12.85    notebook.set_current_page(size);
   12.86 -  set_tabtitle("unsaved file");
   12.87 +  set_tabtitle(_("unsaved file"));
   12.88    updateAlgoWinTabs();
   12.89  }
   12.90  
   12.91 @@ -260,9 +267,9 @@
   12.92      {
   12.93        if (tabs[active_tab]->mapstorage.modified)
   12.94  	{
   12.95 -	  Gtk::MessageDialog mdialog("<b>Save changes before closing?</b>", true, 
   12.96 +	  Gtk::MessageDialog mdialog(_("<b>Save changes before closing?</b>"), true, 
   12.97  				     Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
   12.98 -	  mdialog.add_button("Close file _without Saving", Gtk::RESPONSE_REJECT);
   12.99 +	  mdialog.add_button(_("Close file _without Saving"), Gtk::RESPONSE_REJECT);
  12.100  	  mdialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
  12.101  	  mdialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT);
  12.102  	  switch (mdialog.run())
  12.103 @@ -449,7 +456,7 @@
  12.104  {
  12.105    if(active_tab!=-1)
  12.106      {
  12.107 -      NewMapWin * nmw=new NewMapWin("Create New Map - "+tabnames[active_tab], *(tabs[active_tab]));
  12.108 +      NewMapWin * nmw=new NewMapWin(_("Create New Map - ")+tabnames[active_tab], *(tabs[active_tab]));
  12.109        nmw->show();
  12.110      }
  12.111  }
  12.112 @@ -478,6 +485,6 @@
  12.113  	  continue;
  12.114  	}
  12.115      }
  12.116 -  NewMapWin * nmw=new NewMapWin("Create New Map - "+tabnames[i], *nbt, itisedge, false);
  12.117 +  NewMapWin * nmw=new NewMapWin(_("Create New Map - ")+tabnames[i], *nbt, itisedge, false);
  12.118    nmw->run();
  12.119  }
    13.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    13.2 +++ b/gui/po/LINGUAS	Thu Mar 23 19:57:14 2006 +0000
    13.3 @@ -0,0 +1,1 @@
    13.4 +hu
    14.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    14.2 +++ b/gui/po/Makevars	Thu Mar 23 19:57:14 2006 +0000
    14.3 @@ -0,0 +1,41 @@
    14.4 +# Makefile variables for PO directory in any package using GNU gettext.
    14.5 +
    14.6 +# Usually the message domain is the same as the package name.
    14.7 +DOMAIN = $(PACKAGE)
    14.8 +
    14.9 +# These two variables depend on the location of this directory.
   14.10 +subdir = po
   14.11 +top_builddir = ..
   14.12 +
   14.13 +# These options get passed to xgettext.
   14.14 +XGETTEXT_OPTIONS = --keyword=_ --keyword=N_
   14.15 +
   14.16 +# This is the copyright holder that gets inserted into the header of the
   14.17 +# $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding
   14.18 +# package.  (Note that the msgstr strings, extracted from the package's
   14.19 +# sources, belong to the copyright holder of the package.)  Translators are
   14.20 +# expected to transfer the copyright for their translations to this person
   14.21 +# or entity, or to disclaim their copyright.  The empty string stands for
   14.22 +# the public domain; in this case the translators are expected to disclaim
   14.23 +# their copyright.
   14.24 +COPYRIGHT_HOLDER = Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   14.25 +
   14.26 +# This is the email address or URL to which the translators shall report
   14.27 +# bugs in the untranslated strings:
   14.28 +# - Strings which are not entire sentences, see the maintainer guidelines
   14.29 +#   in the GNU gettext documentation, section 'Preparing Strings'.
   14.30 +# - Strings which use unclear terms or require additional context to be
   14.31 +#   understood.
   14.32 +# - Strings which make invalid assumptions about notation of date, time or
   14.33 +#   money.
   14.34 +# - Pluralisation problems.
   14.35 +# - Incorrect English spelling.
   14.36 +# - Incorrect formatting.
   14.37 +# It can be your email address, or a mailing list address where translators
   14.38 +# can write to without being subscribed, or the URL of a web page through
   14.39 +# which the translators can contact you.
   14.40 +MSGID_BUGS_ADDRESS = $(PACKAGE_BUGREPORT)
   14.41 +
   14.42 +# This is the list of locale categories, beyond LC_MESSAGES, for which the
   14.43 +# message catalogs shall be used.  It is usually empty.
   14.44 +EXTRA_LOCALE_CATEGORIES =
    15.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    15.2 +++ b/gui/po/POTFILES.in	Thu Mar 23 19:57:14 2006 +0000
    15.3 @@ -0,0 +1,36 @@
    15.4 +# List of source files which contain translatable strings.
    15.5 +algobox.cc
    15.6 +algobox.h
    15.7 +algowin.cc
    15.8 +algowin.h
    15.9 +all_include.h
   15.10 +gdc-broken_edge.cc
   15.11 +gettext.h
   15.12 +graph_displayer_canvas.cc
   15.13 +graph_displayer_canvas-edge.cc
   15.14 +graph_displayer_canvas-event.cc
   15.15 +graph_displayer_canvas.h
   15.16 +graph_displayer_canvas-node.cc
   15.17 +graph_displayer_canvas-zoom.cc
   15.18 +graph-displayer.cc
   15.19 +guipixbufs.h
   15.20 +gui_reader.cc
   15.21 +gui_reader.h
   15.22 +gui_writer.cc
   15.23 +gui_writer.h
   15.24 +kruskalbox.cc
   15.25 +kruskalbox.h
   15.26 +main_win.cc
   15.27 +main_win.h
   15.28 +mapselector.cc
   15.29 +mapselector.h
   15.30 +mapstorage.cc
   15.31 +mapstorage.h
   15.32 +map_win.cc
   15.33 +map_win.h
   15.34 +nbtab.cc
   15.35 +nbtab.h
   15.36 +new_map_win.cc
   15.37 +new_map_win.h
   15.38 +xml.h
   15.39 +xymap.h
    16.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    16.2 +++ b/gui/po/glemon.pot	Thu Mar 23 19:57:14 2006 +0000
    16.3 @@ -0,0 +1,89 @@
    16.4 +# SOME DESCRIPTIVE TITLE.
    16.5 +# Copyright (C) YEAR Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    16.6 +# This file is distributed under the same license as the PACKAGE package.
    16.7 +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
    16.8 +#
    16.9 +#, fuzzy
   16.10 +msgid ""
   16.11 +msgstr ""
   16.12 +"Project-Id-Version: PACKAGE VERSION\n"
   16.13 +"Report-Msgid-Bugs-To: etik-ol@cs.elte.hu\n"
   16.14 +"POT-Creation-Date: 2006-03-23 18:50+0100\n"
   16.15 +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
   16.16 +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
   16.17 +"Language-Team: LANGUAGE <LL@li.org>\n"
   16.18 +"MIME-Version: 1.0\n"
   16.19 +"Content-Type: text/plain; charset=CHARSET\n"
   16.20 +"Content-Transfer-Encoding: 8bit\n"
   16.21 +
   16.22 +#: main_win.cc:81
   16.23 +msgid "_File"
   16.24 +msgstr ""
   16.25 +
   16.26 +#: main_win.cc:86
   16.27 +msgid "Clear Tab"
   16.28 +msgstr ""
   16.29 +
   16.30 +#: main_win.cc:97
   16.31 +msgid "_View"
   16.32 +msgstr ""
   16.33 +
   16.34 +#: main_win.cc:107
   16.35 +msgid "_Show"
   16.36 +msgstr ""
   16.37 +
   16.38 +#: main_win.cc:108
   16.39 +msgid "_Maps"
   16.40 +msgstr ""
   16.41 +
   16.42 +#: main_win.cc:111
   16.43 +msgid "_Algorithms"
   16.44 +msgstr ""
   16.45 +
   16.46 +#: main_win.cc:112
   16.47 +msgid "_General"
   16.48 +msgstr ""
   16.49 +
   16.50 +#: main_win.cc:114
   16.51 +msgid "_Kruskal"
   16.52 +msgstr ""
   16.53 +
   16.54 +#: main_win.cc:118
   16.55 +msgid "Move"
   16.56 +msgstr ""
   16.57 +
   16.58 +#: main_win.cc:120
   16.59 +msgid "Create node"
   16.60 +msgstr ""
   16.61 +
   16.62 +#: main_win.cc:122
   16.63 +msgid "Create edge"
   16.64 +msgstr ""
   16.65 +
   16.66 +#: main_win.cc:124
   16.67 +msgid "Delete"
   16.68 +msgstr ""
   16.69 +
   16.70 +#: main_win.cc:127
   16.71 +msgid "Edit edge map"
   16.72 +msgstr ""
   16.73 +
   16.74 +#: main_win.cc:129
   16.75 +msgid "Edit node map"
   16.76 +msgstr ""
   16.77 +
   16.78 +#: main_win.cc:260
   16.79 +msgid "unsaved file"
   16.80 +msgstr ""
   16.81 +
   16.82 +#: main_win.cc:270
   16.83 +msgid "<b>Save changes before closing?</b>"
   16.84 +msgstr ""
   16.85 +
   16.86 +#: main_win.cc:272
   16.87 +msgid "Close file _without Saving"
   16.88 +msgstr ""
   16.89 +
   16.90 +#: main_win.cc:459 main_win.cc:488
   16.91 +msgid "Create New Map - "
   16.92 +msgstr ""
    17.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    17.2 +++ b/gui/po/hu.po	Thu Mar 23 19:57:14 2006 +0000
    17.3 @@ -0,0 +1,89 @@
    17.4 +# Hungarian translations for gLEMON package.
    17.5 +# Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    17.6 +# This file is distributed under the same license as the gLEMON package.
    17.7 +# Ladanyi Akos <ladanyi@tmit.bme.hu>, 2006.
    17.8 +#
    17.9 +msgid ""
   17.10 +msgstr ""
   17.11 +"Project-Id-Version: gLEMON 0.1\n"
   17.12 +"Report-Msgid-Bugs-To: etik-ol@cs.elte.hu\n"
   17.13 +"POT-Creation-Date: 2006-03-23 18:50+0100\n"
   17.14 +"PO-Revision-Date: 2006-03-22 15:55+0100\n"
   17.15 +"Last-Translator: Ladanyi Akos <ladanyi@tmit.bme.hu>\n"
   17.16 +"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
   17.17 +"MIME-Version: 1.0\n"
   17.18 +"Content-Type: text/plain; charset=UTF-8\n"
   17.19 +"Content-Transfer-Encoding: 8bit\n"
   17.20 +"Plural-Forms: nplurals=1; plural=0;\n"
   17.21 +
   17.22 +#: main_win.cc:81
   17.23 +msgid "_File"
   17.24 +msgstr "_Fájl"
   17.25 +
   17.26 +#: main_win.cc:86
   17.27 +msgid "Clear Tab"
   17.28 +msgstr "Lap törlése"
   17.29 +
   17.30 +#: main_win.cc:97
   17.31 +msgid "_View"
   17.32 +msgstr "_Nézet"
   17.33 +
   17.34 +#: main_win.cc:107
   17.35 +msgid "_Show"
   17.36 +msgstr "_Mutat"
   17.37 +
   17.38 +#: main_win.cc:108
   17.39 +msgid "_Maps"
   17.40 +msgstr "_Mapek"
   17.41 +
   17.42 +#: main_win.cc:111
   17.43 +msgid "_Algorithms"
   17.44 +msgstr "_Algoritmusok"
   17.45 +
   17.46 +#: main_win.cc:112
   17.47 +msgid "_General"
   17.48 +msgstr "_Általános"
   17.49 +
   17.50 +#: main_win.cc:114
   17.51 +msgid "_Kruskal"
   17.52 +msgstr "_Kruskal"
   17.53 +
   17.54 +#: main_win.cc:118
   17.55 +msgid "Move"
   17.56 +msgstr "Mozgat"
   17.57 +
   17.58 +#: main_win.cc:120
   17.59 +msgid "Create node"
   17.60 +msgstr "Csúcs létrehozása"
   17.61 +
   17.62 +#: main_win.cc:122
   17.63 +msgid "Create edge"
   17.64 +msgstr "Él létrehozása"
   17.65 +
   17.66 +#: main_win.cc:124
   17.67 +msgid "Delete"
   17.68 +msgstr "Törlés"
   17.69 +
   17.70 +#: main_win.cc:127
   17.71 +msgid "Edit edge map"
   17.72 +msgstr "Él map szerkesztése"
   17.73 +
   17.74 +#: main_win.cc:129
   17.75 +msgid "Edit node map"
   17.76 +msgstr "Csúcs map szerkesztése"
   17.77 +
   17.78 +#: main_win.cc:260
   17.79 +msgid "unsaved file"
   17.80 +msgstr "nem mentett fájl"
   17.81 +
   17.82 +#: main_win.cc:270
   17.83 +msgid "<b>Save changes before closing?</b>"
   17.84 +msgstr "Menti a változásokat mielőtt bezárja?"
   17.85 +
   17.86 +#: main_win.cc:272
   17.87 +msgid "Close file _without Saving"
   17.88 +msgstr "Bezárás mentés _nékül"
   17.89 +
   17.90 +#: main_win.cc:459 main_win.cc:488
   17.91 +msgid "Create New Map - "
   17.92 +msgstr "Új map létrehozása - "
    18.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    18.2 +++ b/m4/lx_check_cplex.m4	Thu Mar 23 19:57:14 2006 +0000
    18.3 @@ -0,0 +1,77 @@
    18.4 +AC_DEFUN([LX_CHECK_CPLEX],
    18.5 +[
    18.6 +  AC_ARG_WITH([cplex],
    18.7 +AS_HELP_STRING([--with-cplex@<:@=PREFIX@:>@], [search for CPLEX under PREFIX or under the default search paths if PREFIX is not given @<:@default@:>@])
    18.8 +AS_HELP_STRING([--without-cplex], [disable checking for CPLEX]),
    18.9 +              [], [with_cplex=yes])
   18.10 +
   18.11 +  AC_ARG_WITH([cplex-includedir],
   18.12 +AS_HELP_STRING([--with-cplex-includedir=DIR], [search for CPLEX headers in DIR]),
   18.13 +              [], [with_cplex_includedir=no])
   18.14 +
   18.15 +  AC_ARG_WITH([cplex-libdir],
   18.16 +AS_HELP_STRING([--with-cplex-libdir=DIR], [search for CPLEX libraries in DIR]),
   18.17 +              [], [with_cplex_libdir=no])
   18.18 +
   18.19 +  lx_cplex_found=no
   18.20 +  if test x"$with_cplex" != x"no"; then
   18.21 +    AC_MSG_CHECKING([for CPLEX])
   18.22 +
   18.23 +    if test x"$with_cplex_includedir" != x"no"; then
   18.24 +      CPLEX_CFLAGS="-I$with_cplex_includedir"
   18.25 +    elif test x"$with_cplex" != x"yes"; then
   18.26 +      CPLEX_CFLAGS="-I$with_cplex/include"
   18.27 +    elif test x"$CPLEX_INCLUDEDIR" != x; then
   18.28 +      CPLEX_CFLAGS="-I$CPLEX_INCLUDEDIR"
   18.29 +    fi
   18.30 +
   18.31 +    if test x"$with_cplex_libdir" != x"no"; then
   18.32 +      CPLEX_LDFLAGS="-L$with_cplex_libdir"
   18.33 +    elif test x"$with_cplex" != x"yes"; then
   18.34 +      CPLEX_LDFLAGS="-L$with_cplex/lib"
   18.35 +    elif test x"$CPLEX_LIBDIR" != x; then
   18.36 +      CPLEX_LDFLAGS="-L$CPLEX_LIBDIR"
   18.37 +    fi
   18.38 +    CPLEX_LIBS="-lcplex -lm -lpthread"
   18.39 +
   18.40 +    lx_save_cxxflags="$CXXFLAGS"
   18.41 +    lx_save_ldflags="$LDFLAGS"
   18.42 +    lx_save_libs="$LIBS"
   18.43 +    CXXFLAGS="$CPLEX_CFLAGS"
   18.44 +    LDFLAGS="$CPLEX_LDFLAGS"
   18.45 +    LIBS="$CPLEX_LIBS"
   18.46 +
   18.47 +    lx_cplex_test_prog='
   18.48 +      extern "C" {
   18.49 +      #include <ilcplex/cplex.h>
   18.50 +      }
   18.51 +
   18.52 +      int main(int argc, char* argv[])
   18.53 +      {
   18.54 +        CPXENVptr env = NULL;
   18.55 +        return 0;
   18.56 +      }'
   18.57 +
   18.58 +    AC_LANG_PUSH(C++)
   18.59 +    AC_LINK_IFELSE([$lx_cplex_test_prog], [lx_cplex_found=yes], [lx_cplex_found=no])
   18.60 +    AC_LANG_POP(C++)
   18.61 +
   18.62 +    CXXFLAGS="$lx_save_cxxflags"
   18.63 +    LDFLAGS="$lx_save_ldflags"
   18.64 +    LIBS="$lx_save_libs"
   18.65 +
   18.66 +    if test x"$lx_cplex_found" = x"yes"; then
   18.67 +      AC_DEFINE([HAVE_CPLEX], [1], [Define to 1 if you have CPLEX.])
   18.68 +      AC_MSG_RESULT([yes])
   18.69 +    else
   18.70 +      CPLEX_CFLAGS=""
   18.71 +      CPLEX_LDFLAGS=""
   18.72 +      CPLEX_LIBS=""
   18.73 +      AC_MSG_RESULT([no])
   18.74 +    fi
   18.75 +  fi
   18.76 +  CPLEX_LIBS="$CPLEX_LDFLAGS $CPLEX_LIBS"
   18.77 +  AC_SUBST(CPLEX_CFLAGS)
   18.78 +  AC_SUBST(CPLEX_LIBS)
   18.79 +  AM_CONDITIONAL([HAVE_CPLEX], [test x"$lx_cplex_found" = x"yes"])
   18.80 +])
    19.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    19.2 +++ b/m4/lx_check_glpk.m4	Thu Mar 23 19:57:14 2006 +0000
    19.3 @@ -0,0 +1,75 @@
    19.4 +AC_DEFUN([LX_CHECK_GLPK],
    19.5 +[
    19.6 +  AC_ARG_WITH([glpk],
    19.7 +AS_HELP_STRING([--with-glpk@<:@=PREFIX@:>@], [search for GLPK under PREFIX or under the default search paths if PREFIX is not given @<:@default@:>@])
    19.8 +AS_HELP_STRING([--without-glpk], [disable checking for GLPK]),
    19.9 +              [], [with_glpk=yes])
   19.10 +
   19.11 +  AC_ARG_WITH([glpk-includedir],
   19.12 +AS_HELP_STRING([--with-glpk-includedir=DIR], [search for GLPK headers in DIR]),
   19.13 +              [], [with_glpk_includedir=no])
   19.14 +
   19.15 +  AC_ARG_WITH([glpk-libdir],
   19.16 +AS_HELP_STRING([--with-glpk-libdir=DIR], [search for GLPK libraries in DIR]),
   19.17 +              [], [with_glpk_libdir=no])
   19.18 +
   19.19 +  lx_glpk_found=no
   19.20 +  if test x"$with_glpk" != x"no"; then
   19.21 +    AC_MSG_CHECKING([for GLPK])
   19.22 +
   19.23 +    if test x"$with_glpk_includedir" != x"no"; then
   19.24 +      GLPK_CFLAGS="-I$with_glpk_includedir"
   19.25 +    elif test x"$with_glpk" != x"yes"; then
   19.26 +      GLPK_CFLAGS="-I$with_glpk/include"
   19.27 +    fi
   19.28 +
   19.29 +    if test x"$with_glpk_libdir" != x"no"; then
   19.30 +      GLPK_LDFLAGS="-L$with_glpk_libdir"
   19.31 +    elif test x"$with_glpk" != x"yes"; then
   19.32 +      GLPK_LDFLAGS="-L$with_glpk/lib"
   19.33 +    fi
   19.34 +    GLPK_LIBS="-lglpk"
   19.35 +
   19.36 +    lx_save_cxxflags="$CXXFLAGS"
   19.37 +    lx_save_ldflags="$LDFLAGS"
   19.38 +    lx_save_libs="$LIBS"
   19.39 +    CXXFLAGS="$GLPK_CFLAGS"
   19.40 +    LDFLAGS="$GLPK_LDFLAGS"
   19.41 +    LIBS="$GLPK_LIBS"
   19.42 +
   19.43 +    lx_glpk_test_prog='
   19.44 +      extern "C" {
   19.45 +      #include <glpk.h>
   19.46 +      }
   19.47 +
   19.48 +      int main(int argc, char* argv[])
   19.49 +      {
   19.50 +        LPX *lp;
   19.51 +        lp = lpx_create_prob();
   19.52 +        lpx_delete_prob(lp);
   19.53 +        return 0;
   19.54 +      }'
   19.55 +
   19.56 +    AC_LANG_PUSH(C++)
   19.57 +    AC_LINK_IFELSE([$lx_glpk_test_prog], [lx_glpk_found=yes], [lx_glpk_found=no])
   19.58 +    AC_LANG_POP(C++)
   19.59 +
   19.60 +    CXXFLAGS="$lx_save_cxxflags"
   19.61 +    LDFLAGS="$lx_save_ldflags"
   19.62 +    LIBS="$lx_save_libs"
   19.63 +
   19.64 +    if test x"$lx_glpk_found" = x"yes"; then
   19.65 +      AC_DEFINE([HAVE_GLPK], [1], [Define to 1 if you have GLPK.])
   19.66 +      AC_MSG_RESULT([yes])
   19.67 +    else
   19.68 +      GLPK_CFLAGS=""
   19.69 +      GLPK_LDFLAGS=""
   19.70 +      GLPK_LIBS=""
   19.71 +      AC_MSG_RESULT([no])
   19.72 +    fi
   19.73 +  fi
   19.74 +  GLPK_LIBS="$GLPK_LDFLAGS $GLPK_LIBS"
   19.75 +  AC_SUBST(GLPK_CFLAGS)
   19.76 +  AC_SUBST(GLPK_LIBS)
   19.77 +  AM_CONDITIONAL([HAVE_GLPK], [test x"$lx_glpk_found" = x"yes"])
   19.78 +])