Skip to content

Commit

Permalink
added catalan translation contributed by Topi
Browse files Browse the repository at this point in the history
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@329 ea778897-0a13-0410-b9d1-a72fbfd435f5
  • Loading branch information
eht16 committed May 14, 2006
1 parent 873639a commit 77b3e93
Show file tree
Hide file tree
Showing 4 changed files with 1,821 additions and 22 deletions.
3 changes: 1 addition & 2 deletions THANKS
Expand Up @@ -3,7 +3,6 @@ What's this file about?
This file lists all external people that have contributed to this project.



Testers and contributors:
--------------------------
These people have contributed to Geany by testing the software,
Expand All @@ -23,4 +22,4 @@ Kevin Ellwood <kellwood@ameritech.net>
Translators:
----------------------------------
These people have translated Geany to foreign languages.

Topi <topi@phreaker.net>
27 changes: 18 additions & 9 deletions configure.in
Expand Up @@ -5,7 +5,6 @@ AC_INIT(configure.in)
AM_INIT_AUTOMAKE(geany, 0.7)

AM_CONFIG_HEADER(config.h)
dnl AM_MAINTAINER_MODE

AC_ISC_POSIX
AC_PROG_CC
Expand Down Expand Up @@ -61,9 +60,8 @@ AC_SUBST(PACKAGE_LIBS)

# fifo support
AC_CHECK_FUNC([mkfifo], [have_mkfifo="1"])
want_pipe=yes
AC_ARG_ENABLE(pipe, [ --enable-pipe enable if you want to detect a running instance [[default=yes]]],
[want_pipe="$enableval"])
AC_ARG_ENABLE(pipe, AC_HELP_STRING([--enable-pipe],[enable if you want to detect a running instance [[default=yes]]]),
[want_pipe="$enableval"], [want_pipe="yes"])

if test "x$want_pipe" = "xyes"; then
if test "x$have_mkfifo" = "x1"; then
Expand All @@ -74,9 +72,8 @@ if test "x$want_pipe" = "xyes"; then
fi

# VTE support
want_vte=yes
AC_ARG_ENABLE(vte, [ --enable-vte enable if you want virtual termninal support [[default=yes]]],
[want_vte="$enableval"])
AC_ARG_ENABLE(vte, AC_HELP_STRING([--enable-vte],[enable if you want virtual termninal support [[default=yes]]]),
[want_vte="$enableval"], [want_vte="yes"])

if test "x$want_vte" = "xyes"; then
AC_DEFINE(HAVE_VTE, 1, [Define if you want VTE support])
Expand All @@ -95,17 +92,29 @@ fi
AC_CHECK_FILE([/dev/urandom], AC_DEFINE([HAVE_DEVURANDOM], [1], [Define that you found /dev/urandom]))
AC_CHECK_FILE([/dev/random], AC_DEFINE([HAVE_DEVRANDOM], [1], [Define that you found /dev/random]))


GTK_VERSION=`$PKG_CONFIG --modversion gtk+-2.0`

# just for a laugh (it has absolutely no effect)
AC_ARG_ENABLE(the-force, AC_HELP_STRING([--enable-the-force],
[enable if you are Luke Skywalker and the force is with you [[default=no]]]), [be_luke="$enableval"], [be_luke="no"])
AC_MSG_CHECKING([whether the force is with you])
if test "x$be_luke" = "xyes"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi

# i18n
GETTEXT_PACKAGE=geany
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.])

# Add the languages which your application supports here.
ALL_LINGUAS="de"
ALL_LINGUAS="ca de"

AM_GLIB_GNU_GETTEXT


# Set ${datadir}
if test "x${datadir}" = 'x${prefix}/share'; then
if test "x${prefix}" = "xNONE"; then
Expand Down

0 comments on commit 77b3e93

Please sign in to comment.