mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
389b55ae6f
For upload English hint-file to transifex, type: cd doc/hints/po && make to-transifex For download translation from Transifex type: cd doc/hints/po && make from-transifex && \ git add ../l10n/mc.hints.* && \ git commit -s -m 'Update hints files from Transifex' WARNING! For the functionality you should have installed 'tx' and 'po4a' utilities. These utilities isn't required for compile and install mc (you may install these utilities only if you want to interact with Transifex). Signed-off-by: Slava Zanko <slavazanko@gmail.com>
27 lines
825 B
Plaintext
27 lines
825 B
Plaintext
dnl @synopsis MC_DOC_LINGUAS
|
|
dnl
|
|
dnl Check if environment is ready for get translations of docs from transifex
|
|
dnl
|
|
dnl @author Slava Zanko <slavazanko@gmail.com>
|
|
dnl @version 2011-02-10
|
|
dnl @license GPL
|
|
dnl @copyright Free Software Foundation, Inc.
|
|
|
|
AC_DEFUN([MC_I18N],[
|
|
|
|
if test "x$USE_INCLUDED_LIBINTL" = xyes; then
|
|
CPPFLAGS="$CPPFLAGS -I\$(top_builddir)/intl -I\$(top_srcdir)/intl"
|
|
fi
|
|
|
|
dnl User visible support for charset conversion.
|
|
AC_ARG_ENABLE([charset],
|
|
AS_HELP_STRING([--enable-charset], [Support for charset selection and conversion @<:@yes@:>@]))
|
|
have_charset=
|
|
charset_msg="no"
|
|
if test "x$enable_charset" != "xno"; then
|
|
AC_DEFINE(HAVE_CHARSET, 1, [Define to enable charset selection and conversion])
|
|
have_charset=yes
|
|
charset_msg="yes"
|
|
fi
|
|
])
|