Added Dutch translation, by Guus Sliepen <guus@nl.linux.org>.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@753 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
7dd1869713
commit
2cde0a24d4
|
@ -10,6 +10,8 @@ CVS code -
|
||||||
- Add David Lawrence Ramsey to credits.
|
- Add David Lawrence Ramsey to credits.
|
||||||
bottombars()
|
bottombars()
|
||||||
- Spread out the menu items, feedback definitely needed on this.
|
- Spread out the menu items, feedback definitely needed on this.
|
||||||
|
- po/nl.po:
|
||||||
|
- New Dutch translation, by Guus Sliepen <guus@nl.linux.org>.
|
||||||
|
|
||||||
nano-1.1.1 - 07/28/2001
|
nano-1.1.1 - 07/28/2001
|
||||||
- General
|
- General
|
||||||
|
|
|
@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
|
||||||
AC_INIT(nano.c)
|
AC_INIT(nano.c)
|
||||||
AM_INIT_AUTOMAKE(nano, 1.1.1-cvs)
|
AM_INIT_AUTOMAKE(nano, 1.1.1-cvs)
|
||||||
AM_CONFIG_HEADER(config.h:config.h.in)
|
AM_CONFIG_HEADER(config.h:config.h.in)
|
||||||
ALL_LINGUAS="es de fr it id fi hu ca cs gl uk ru sv no"
|
ALL_LINGUAS="es de fr it id fi hu ca cs gl uk ru sv no nl"
|
||||||
|
|
||||||
dnl Checks for programs.
|
dnl Checks for programs.
|
||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
|
@ -33,6 +33,13 @@ AC_ARG_ENABLE(extra,
|
||||||
[if test x$enableval = xyes; then
|
[if test x$enableval = xyes; then
|
||||||
AC_DEFINE(NANO_EXTRA) extra_support=yes
|
AC_DEFINE(NANO_EXTRA) extra_support=yes
|
||||||
AC_DEFINE(ENABLE_MULTIBUFFER) multibuffer_support=yes
|
AC_DEFINE(ENABLE_MULTIBUFFER) multibuffer_support=yes
|
||||||
|
AC_DEFINE(ENABLE_UNDO) undo_support=yes
|
||||||
|
fi])
|
||||||
|
|
||||||
|
AC_ARG_ENABLE(undo,
|
||||||
|
[ --enable-undo Enable undo support],
|
||||||
|
[if test x$enableval = xyes && test x$tiny_support != xyes; then
|
||||||
|
AC_DEFINE(ENABLE_UNDO) undo_support=yes
|
||||||
fi])
|
fi])
|
||||||
|
|
||||||
AC_ARG_ENABLE(multibuffer,
|
AC_ARG_ENABLE(multibuffer,
|
||||||
|
|
Loading…
Reference in New Issue