Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
Corrected language list in NLS support.
Browse files Browse the repository at this point in the history
  • Loading branch information
a-j-wood committed Jul 28, 2023
1 parent 173de4f commit 38ddb5e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions autoconf/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ dnl Copyright 2002-2008, 2010, 2012-2015, 2017, 2021, 2023 Andrew Wood
dnl
dnl Distributed under the Artistic License v2.0; see `doc/COPYING'.

dnl Supported languages
ALL_LINGUAS="de fr pl pt"

AC_INIT
AC_CONFIG_SRCDIR([src/main/version.c])
AC_CONFIG_AUX_DIR(autoconf/scripts)
Expand Down Expand Up @@ -97,7 +94,7 @@ yes
#endif
], [LIBS="$LIBS -lc128"])

dnl Native Language Suppot
dnl Native Language Support
if test "$NLS_SUPPORT" = "yes"; then
AC_DEFINE([ENABLE_NLS], [1], [Enable native language support])
AC_PATH_PROG(MSGFMT, msgfmt, NOMSGFMT)
Expand All @@ -116,7 +113,7 @@ if test "$NLS_SUPPORT" = "yes"; then
fi
CATOBJEXT=.mo
INSTOBJEXT=.mo
for lang in $ALL_LINGUAS; do
for lang in de fr pl pt; do
GMOFILES="$GMOFILES $lang.gmo"
POFILES="$POFILES \$(srcdir)/src/nls/$lang.po"
CATALOGS="$CATALOGS src/nls/$lang$CATOBJEXT";
Expand Down

0 comments on commit 38ddb5e

Please sign in to comment.