mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-11 13:10:07 +00:00
acinclude.m4 ltconfig upgrade to libtool 1.2d (with fixes for irix6 and
* acinclude.m4 * ltconfig * ltmain.sh: upgrade to libtool 1.2d (with fixes for irix6 and osf) -Yosh
This commit is contained in:
parent
9da0be6730
commit
6790905309
@ -1,3 +1,9 @@
|
||||
Tue Jan 12 22:50:44 PST 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* acinclude.m4
|
||||
* ltconfig
|
||||
* ltmain.sh: upgrade to libtool 1.2d (with fixes for irix6 and osf)
|
||||
|
||||
Tue Jan 12 18:30:51 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/testdnd.c (label_drag_data_received): Add
|
||||
|
@ -1,3 +1,9 @@
|
||||
Tue Jan 12 22:50:44 PST 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* acinclude.m4
|
||||
* ltconfig
|
||||
* ltmain.sh: upgrade to libtool 1.2d (with fixes for irix6 and osf)
|
||||
|
||||
Tue Jan 12 18:30:51 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/testdnd.c (label_drag_data_received): Add
|
||||
|
@ -1,3 +1,9 @@
|
||||
Tue Jan 12 22:50:44 PST 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* acinclude.m4
|
||||
* ltconfig
|
||||
* ltmain.sh: upgrade to libtool 1.2d (with fixes for irix6 and osf)
|
||||
|
||||
Tue Jan 12 18:30:51 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/testdnd.c (label_drag_data_received): Add
|
||||
|
@ -1,3 +1,9 @@
|
||||
Tue Jan 12 22:50:44 PST 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* acinclude.m4
|
||||
* ltconfig
|
||||
* ltmain.sh: upgrade to libtool 1.2d (with fixes for irix6 and osf)
|
||||
|
||||
Tue Jan 12 18:30:51 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/testdnd.c (label_drag_data_received): Add
|
||||
|
@ -1,3 +1,9 @@
|
||||
Tue Jan 12 22:50:44 PST 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* acinclude.m4
|
||||
* ltconfig
|
||||
* ltmain.sh: upgrade to libtool 1.2d (with fixes for irix6 and osf)
|
||||
|
||||
Tue Jan 12 18:30:51 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/testdnd.c (label_drag_data_received): Add
|
||||
|
@ -1,3 +1,9 @@
|
||||
Tue Jan 12 22:50:44 PST 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* acinclude.m4
|
||||
* ltconfig
|
||||
* ltmain.sh: upgrade to libtool 1.2d (with fixes for irix6 and osf)
|
||||
|
||||
Tue Jan 12 18:30:51 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/testdnd.c (label_drag_data_received): Add
|
||||
|
@ -1,3 +1,9 @@
|
||||
Tue Jan 12 22:50:44 PST 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* acinclude.m4
|
||||
* ltconfig
|
||||
* ltmain.sh: upgrade to libtool 1.2d (with fixes for irix6 and osf)
|
||||
|
||||
Tue Jan 12 18:30:51 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/testdnd.c (label_drag_data_received): Add
|
||||
|
612
acinclude.m4
612
acinclude.m4
@ -21,15 +21,18 @@
|
||||
## configuration script generated by Autoconf, you may include it under
|
||||
## the same distribution terms that you use for the rest of that program.
|
||||
|
||||
# serial 24 AM_PROG_LIBTOOL
|
||||
# serial 29 AM_PROG_LIBTOOL
|
||||
AC_DEFUN(AM_PROG_LIBTOOL,
|
||||
[AC_REQUIRE([AM_ENABLE_SHARED])dnl
|
||||
AC_REQUIRE([AM_ENABLE_STATIC])dnl
|
||||
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
||||
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
|
||||
AC_REQUIRE([AC_PROG_RANLIB])dnl
|
||||
AC_REQUIRE([AC_PROG_CC])dnl
|
||||
AC_REQUIRE([AM_PROG_LD])dnl
|
||||
AC_REQUIRE([AM_PROG_NM])dnl
|
||||
AC_REQUIRE([AM_SYS_NM_PARSE])dnl
|
||||
AC_REQUIRE([AM_SYS_SYMBOL_UNDERSCORE])dnl
|
||||
AC_REQUIRE([AC_PROG_LN_S])dnl
|
||||
dnl
|
||||
# Always use our own libtool.
|
||||
@ -68,16 +71,45 @@ case "$host" in
|
||||
|
||||
*-*-sco3.2v5*)
|
||||
# On SCO OpenServer 5, we need -belf to get full-featured binaries.
|
||||
SAVE_CFLAGS="$CFLAGS"
|
||||
CFLAGS="$CFLAGS -belf"
|
||||
AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
|
||||
[AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])])
|
||||
if test x"$lt_cv_cc_needs_belf" != x"yes"; then
|
||||
# this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
|
||||
CFLAGS="$SAVE_CFLAGS"
|
||||
fi
|
||||
;;
|
||||
|
||||
*-*-cygwin32*)
|
||||
AM_SYS_LIBTOOL_CYGWIN32
|
||||
;;
|
||||
|
||||
esac
|
||||
|
||||
# enable the --disable-libtool-lock switch
|
||||
|
||||
AC_ARG_ENABLE(libtool-lock,
|
||||
[ --disable-libtool-lock force libtool not to do file locking],
|
||||
need_locks=$enableval,
|
||||
need_locks=yes)
|
||||
|
||||
if test x"$need_locks" = xno; then
|
||||
libtool_flags="$libtool_flags --disable-lock"
|
||||
fi
|
||||
|
||||
|
||||
# Actually configure libtool. ac_aux_dir is where install-sh is found.
|
||||
CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
|
||||
LD="$LD" NM="$NM" RANLIB="$RANLIB" LN_S="$LN_S" \
|
||||
${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig \
|
||||
DLLTOOL="$DLLTOOL" AS="$AS" \
|
||||
${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
|
||||
$libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \
|
||||
|| AC_MSG_ERROR([libtool configure failed])
|
||||
|
||||
# Redirect the config.log output again, so that the ltconfig log is not
|
||||
# clobbered by the next message.
|
||||
exec 5>>./config.log
|
||||
])
|
||||
|
||||
# AM_ENABLE_SHARED - implement the --enable-shared flag
|
||||
@ -88,10 +120,8 @@ AC_DEFUN(AM_ENABLE_SHARED,
|
||||
[define([AM_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
|
||||
AC_ARG_ENABLE(shared,
|
||||
changequote(<<, >>)dnl
|
||||
<< --enable-shared build shared libraries [default=>>AM_ENABLE_SHARED_DEFAULT]
|
||||
<< --enable-shared[=PKGS] build shared libraries [default=>>AM_ENABLE_SHARED_DEFAULT],
|
||||
changequote([, ])dnl
|
||||
[ --enable-shared=PKGS only build shared libraries if the current package
|
||||
appears as an element in the PKGS list],
|
||||
[p=${PACKAGE-default}
|
||||
case "$enableval" in
|
||||
yes) enable_shared=yes ;;
|
||||
@ -127,10 +157,8 @@ AC_DEFUN(AM_ENABLE_STATIC,
|
||||
[define([AM_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
|
||||
AC_ARG_ENABLE(static,
|
||||
changequote(<<, >>)dnl
|
||||
<< --enable-static build static libraries [default=>>AM_ENABLE_STATIC_DEFAULT]
|
||||
<< --enable-static[=PKGS] build static libraries [default=>>AM_ENABLE_STATIC_DEFAULT],
|
||||
changequote([, ])dnl
|
||||
[ --enable-static=PKGS only build shared libraries if the current package
|
||||
appears as an element in the PKGS list],
|
||||
[p=${PACKAGE-default}
|
||||
case "$enableval" in
|
||||
yes) enable_static=yes ;;
|
||||
@ -156,17 +184,59 @@ AC_DEFUN(AM_PROG_LD,
|
||||
[AC_ARG_WITH(gnu-ld,
|
||||
[ --with-gnu-ld assume the C compiler uses GNU ld [default=no]],
|
||||
test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)
|
||||
AC_REQUIRE([AC_PROG_CC])
|
||||
AC_REQUIRE([AC_PROG_CC])dnl
|
||||
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
||||
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
|
||||
ac_prog=ld
|
||||
if test "$ac_cv_prog_gcc" = yes; then
|
||||
# Check if gcc -print-prog-name=ld gives a path.
|
||||
AC_MSG_CHECKING([for ld used by GCC])
|
||||
ac_prog=`($CC -print-prog-name=ld) 2>&5`
|
||||
case "$ac_prog" in
|
||||
# Accept absolute paths.
|
||||
/* | [A-Za-z]:\\*)
|
||||
test -z "$LD" && LD="$ac_prog"
|
||||
;;
|
||||
# Accept absolute paths.
|
||||
changequote(,)dnl
|
||||
/* | [A-Za-z]:/*)
|
||||
# Canonicalize the path of ld
|
||||
re_direlt='/[^/][^/]*/\.\./'
|
||||
sub_uncdrive='s%^\([A-Za-z]\):/%//\1/%'
|
||||
changequote([,])dnl
|
||||
while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
|
||||
ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
|
||||
done
|
||||
case "$host_os" in
|
||||
cygwin*)
|
||||
# Convert to a UNC path for cygwin
|
||||
test -z "$LD" && LD=`echo X$ac_prog | $Xsed -e "$sub_uncdrive"`
|
||||
;;
|
||||
*)
|
||||
test -z "$LD" && LD="$ac_prog"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
##
|
||||
## FIXME: The code fails later on if we try to use an $LD with
|
||||
## '\\' path separators.
|
||||
##
|
||||
changequote(,)dnl
|
||||
[A-Za-z]:[\\]*)
|
||||
# Canonicalize the path of ld
|
||||
re_direlt='\\[^\\][^\\]*\\\.\.\(\\\)'
|
||||
sub_uncdrive='s%^\([A-Za-z]\):\\%//\1/%'
|
||||
changequote([,])dnl
|
||||
sub_uncdir='s%\\%/%g'
|
||||
while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
|
||||
ac_prog=`echo $ac_prog| sed "s%$re_direlt%\1%"`
|
||||
done
|
||||
case "$host_os" in
|
||||
cygwin*)
|
||||
# Convert to a UNC path for cygwin
|
||||
test -z "$LD" && LD=`echo X$ac_prog | sed -e 's%^X%%' -e "$sub_uncdrive" -e "$sub_uncdir"`
|
||||
;;
|
||||
*)
|
||||
test -z "$LD" && LD="$ac_prog"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
"")
|
||||
# If it fails, then pretend we aren't using GCC.
|
||||
ac_prog=ld
|
||||
@ -227,11 +297,10 @@ fi])
|
||||
AC_DEFUN(AM_PROG_NM,
|
||||
[AC_MSG_CHECKING([for BSD-compatible nm])
|
||||
AC_CACHE_VAL(ac_cv_path_NM,
|
||||
[case "$NM" in
|
||||
/* | [A-Za-z]:\\*)
|
||||
ac_cv_path_NM="$NM" # Let the user override the test with a path.
|
||||
;;
|
||||
*)
|
||||
[if test -n "$NM"; then
|
||||
# Let the user override the test.
|
||||
ac_cv_path_NM="$NM"
|
||||
else
|
||||
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
|
||||
for ac_dir in /usr/ucb /usr/ccs/bin $PATH /bin; do
|
||||
test -z "$ac_dir" && ac_dir=.
|
||||
@ -251,341 +320,224 @@ AC_CACHE_VAL(ac_cv_path_NM,
|
||||
done
|
||||
IFS="$ac_save_ifs"
|
||||
test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm
|
||||
;;
|
||||
esac])
|
||||
fi])
|
||||
NM="$ac_cv_path_NM"
|
||||
AC_MSG_RESULT([$NM])
|
||||
AC_SUBST(NM)
|
||||
])
|
||||
|
||||
# Macro to add for using GNU gettext.
|
||||
# Ulrich Drepper <drepper@cygnus.com>, 1995.
|
||||
#
|
||||
# Modified to never use included libintl.
|
||||
# Owen Taylor <otaylor@redhat.com>, 12/15/1998
|
||||
#
|
||||
#
|
||||
# This file can be copied and used freely without restrictions. It can
|
||||
# be used in projects which are not available under the GNU Public License
|
||||
# but which still want to provide support for the GNU gettext functionality.
|
||||
# Please note that the actual code is *not* freely available.
|
||||
# AM_SYS_NM_PARSE - Check for command ro grab the raw symbol name followed
|
||||
# by C symbol name from nm.
|
||||
AC_DEFUN(AM_SYS_NM_PARSE,
|
||||
[AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
||||
AC_REQUIRE([AM_PROG_NM])dnl
|
||||
# Check for command to grab the raw symbol name followed by C symbol from nm.
|
||||
AC_MSG_CHECKING([command to parse $NM output])
|
||||
AC_CACHE_VAL(ac_cv_sys_global_symbol_pipe,
|
||||
[# These are sane defaults that work on at least a few old systems.
|
||||
# {They come from Ultrix. What could be older than Ultrix?!! ;)}
|
||||
|
||||
# serial 5
|
||||
changequote(,)dnl
|
||||
# Character class describing NM global symbol codes.
|
||||
ac_symcode='[BCDEGRSTU]'
|
||||
|
||||
AC_DEFUN(AM_GTK_WITH_NLS,
|
||||
[AC_MSG_CHECKING([whether NLS is requested])
|
||||
dnl Default is enabled NLS
|
||||
AC_ARG_ENABLE(nls,
|
||||
[ --disable-nls do not use Native Language Support],
|
||||
USE_NLS=$enableval, USE_NLS=yes)
|
||||
AC_MSG_RESULT($USE_NLS)
|
||||
AC_SUBST(USE_NLS)
|
||||
# Regexp to match symbols that can be accessed directly from C.
|
||||
ac_sympat='\([_A-Za-z][_A-Za-z0-9]*\)'
|
||||
|
||||
USE_INCLUDED_LIBINTL=no
|
||||
# Transform the above into a raw symbol and a C symbol.
|
||||
ac_symxfrm='\1 \1'
|
||||
|
||||
dnl If we use NLS figure out what method
|
||||
if test "$USE_NLS" = "yes"; then
|
||||
AC_DEFINE(ENABLE_NLS)
|
||||
# AC_MSG_CHECKING([whether included gettext is requested])
|
||||
# AC_ARG_WITH(included-gettext,
|
||||
# [ --with-included-gettext use the GNU gettext library included here],
|
||||
# nls_cv_force_use_gnu_gettext=$withval,
|
||||
# nls_cv_force_use_gnu_gettext=no)
|
||||
# AC_MSG_RESULT($nls_cv_force_use_gnu_gettext)
|
||||
nls_cv_force_use_gnu_gettext="no"
|
||||
# Define system-specific variables.
|
||||
case "$host_os" in
|
||||
aix*)
|
||||
ac_symcode='[BCDTU]'
|
||||
;;
|
||||
sunos* | cygwin32* | mingw32*)
|
||||
ac_sympat='_\([_A-Za-z][_A-Za-z0-9]*\)'
|
||||
ac_symxfrm='_\1 \1'
|
||||
;;
|
||||
irix*)
|
||||
# Cannot use undefined symbols on IRIX because inlined functions mess us up.
|
||||
ac_symcode='[BCDEGRST]'
|
||||
;;
|
||||
solaris*)
|
||||
ac_symcode='[BDTU]'
|
||||
;;
|
||||
esac
|
||||
|
||||
nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
|
||||
if test "$nls_cv_force_use_gnu_gettext" != "yes"; then
|
||||
dnl User does not insist on using GNU NLS library. Figure out what
|
||||
dnl to use. If gettext or catgets are available (in this order) we
|
||||
dnl use this. Else we have to fall back to GNU NLS library.
|
||||
dnl catgets is only used if permitted by option --with-catgets.
|
||||
nls_cv_header_intl=
|
||||
nls_cv_header_libgt=
|
||||
CATOBJEXT=NONE
|
||||
# If we're using GNU nm, then use its standard symbol codes.
|
||||
if $NM -V 2>&1 | egrep '(GNU|with BFD)' > /dev/null; then
|
||||
ac_symcode='[ABCDGISTUW]'
|
||||
fi
|
||||
|
||||
AC_CHECK_HEADER(libintl.h,
|
||||
[AC_CACHE_CHECK([for gettext in libc], gt_cv_func_gettext_libc,
|
||||
[AC_TRY_LINK([#include <libintl.h>], [return (int) gettext ("")],
|
||||
gt_cv_func_gettext_libc=yes, gt_cv_func_gettext_libc=no)])
|
||||
case "$host_os" in
|
||||
cygwin32* | mingw32*)
|
||||
# We do not want undefined symbols on cygwin32. The user must
|
||||
# arrange to define them via -l arguments.
|
||||
ac_symcode='[ABCDGISTW]'
|
||||
;;
|
||||
esac
|
||||
changequote([,])dnl
|
||||
|
||||
if test "$gt_cv_func_gettext_libc" != "yes"; then
|
||||
AC_CHECK_LIB(intl, bindtextdomain,
|
||||
[AC_CACHE_CHECK([for gettext in libintl],
|
||||
gt_cv_func_gettext_libintl,
|
||||
[AC_CHECK_LIB(intl, gettext,
|
||||
gt_cv_func_gettext_libintl=yes,
|
||||
gt_cv_func_gettext_libintl=no)],
|
||||
gt_cv_func_gettext_libintl=no)])
|
||||
fi
|
||||
# Write the raw and C identifiers.
|
||||
ac_cv_sys_global_symbol_pipe="sed -n -e 's/^.* $ac_symcode $ac_sympat$/$ac_symxfrm/p'"
|
||||
|
||||
if test "$gt_cv_func_gettext_libc" = "yes" \
|
||||
|| test "$gt_cv_func_gettext_libintl" = "yes"; then
|
||||
AC_DEFINE(HAVE_GETTEXT)
|
||||
AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt,
|
||||
[test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl
|
||||
if test "$MSGFMT" != "no"; then
|
||||
AC_CHECK_FUNCS(dcgettext)
|
||||
AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
|
||||
AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
|
||||
[test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :)
|
||||
AC_TRY_LINK(, [extern int _nl_msg_cat_cntr;
|
||||
return _nl_msg_cat_cntr],
|
||||
[CATOBJEXT=.gmo
|
||||
DATADIRNAME=share],
|
||||
[CATOBJEXT=.mo
|
||||
DATADIRNAME=lib])
|
||||
INSTOBJEXT=.mo
|
||||
fi
|
||||
fi
|
||||
# Check to see that the pipe works correctly.
|
||||
ac_pipe_works=no
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
char nm_test_var;
|
||||
void nm_test_func(){}
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
int main(){nm_test_var='a';nm_test_func;return 0;}
|
||||
EOF
|
||||
if AC_TRY_EVAL(ac_compile); then
|
||||
# Now try to grab the symbols.
|
||||
ac_nlist=conftest.nm
|
||||
if AC_TRY_EVAL(NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
|
||||
|
||||
# Added by Martin Baulig 12/15/98 for libc5 systems
|
||||
if test "$gt_cv_func_gettext_libc" != "yes" \
|
||||
&& test "$gt_cv_func_gettext_libintl" = "yes"; then
|
||||
INTLLIBS=-lintl
|
||||
LIBS=`echo $LIBS | sed -e 's/-lintl//'`
|
||||
fi
|
||||
])
|
||||
|
||||
if test "$CATOBJEXT" = "NONE"; then
|
||||
AC_MSG_CHECKING([whether catgets can be used])
|
||||
AC_ARG_WITH(catgets,
|
||||
[ --with-catgets use catgets functions if available],
|
||||
nls_cv_use_catgets=$withval, nls_cv_use_catgets=no)
|
||||
AC_MSG_RESULT($nls_cv_use_catgets)
|
||||
|
||||
if test "$nls_cv_use_catgets" = "yes"; then
|
||||
dnl No gettext in C library. Try catgets next.
|
||||
AC_CHECK_LIB(i, main)
|
||||
AC_CHECK_FUNC(catgets,
|
||||
[AC_DEFINE(HAVE_CATGETS)
|
||||
INTLOBJS="\$(CATOBJS)"
|
||||
AC_PATH_PROG(GENCAT, gencat, no)dnl
|
||||
# if test "$GENCAT" != "no"; then
|
||||
# AC_PATH_PROG(GMSGFMT, gmsgfmt, no)
|
||||
# if test "$GMSGFMT" = "no"; then
|
||||
# AM_PATH_PROG_WITH_TEST(GMSGFMT, msgfmt,
|
||||
# [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)
|
||||
# fi
|
||||
# AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
|
||||
# [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :)
|
||||
# USE_INCLUDED_LIBINTL=yes
|
||||
# CATOBJEXT=.cat
|
||||
# INSTOBJEXT=.cat
|
||||
# DATADIRNAME=lib
|
||||
# INTLDEPS='$(top_builddir)/intl/libintl.a'
|
||||
# INTLLIBS=$INTLDEPS
|
||||
# LIBS=`echo $LIBS | sed -e 's/-lintl//'`
|
||||
# nls_cv_header_intl=intl/libintl.h
|
||||
# nls_cv_header_libgt=intl/libgettext.h
|
||||
# fi
|
||||
])
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$CATOBJEXT" = "NONE"; then
|
||||
dnl Neither gettext nor catgets in included in the C library.
|
||||
dnl Fall back on GNU gettext library.
|
||||
nls_cv_use_gnu_gettext=yes
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$nls_cv_use_gnu_gettext" != "yes"; then
|
||||
AC_DEFINE(ENABLE_NLS)
|
||||
# else
|
||||
# dnl Mark actions used to generate GNU NLS library.
|
||||
# INTLOBJS="\$(GETTOBJS)"
|
||||
# AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt,
|
||||
# [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], msgfmt)
|
||||
# AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
|
||||
# AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
|
||||
# [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :)
|
||||
# AC_SUBST(MSGFMT)
|
||||
# USE_INCLUDED_LIBINTL=yes
|
||||
# CATOBJEXT=.gmo
|
||||
# INSTOBJEXT=.mo
|
||||
# DATADIRNAME=share
|
||||
# INTLDEPS='$(top_builddir)/intl/libintl.a'
|
||||
# INTLLIBS=$INTLDEPS
|
||||
# LIBS=`echo $LIBS | sed -e 's/-lintl//'`
|
||||
# nls_cv_header_intl=intl/libintl.h
|
||||
# nls_cv_header_libgt=intl/libgettext.h
|
||||
fi
|
||||
|
||||
dnl Test whether we really found GNU xgettext.
|
||||
if test "$XGETTEXT" != ":"; then
|
||||
dnl If it is no GNU xgettext we define it as : so that the
|
||||
dnl Makefiles still can work.
|
||||
if $XGETTEXT --omit-header /dev/null 2> /dev/null; then
|
||||
: ;
|
||||
else
|
||||
AC_MSG_RESULT(
|
||||
[found xgettext program is not GNU xgettext; ignore it])
|
||||
XGETTEXT=":"
|
||||
fi
|
||||
fi
|
||||
|
||||
# We need to process the po/ directory.
|
||||
POSUB=po
|
||||
# Try sorting and uniquifying the output.
|
||||
if sort "$ac_nlist" | uniq > "$ac_nlist"T; then
|
||||
mv -f "$ac_nlist"T "$ac_nlist"
|
||||
ac_wcout=`wc "$ac_nlist" 2>/dev/null`
|
||||
changequote(,)dnl
|
||||
ac_count=`echo "X$ac_wcout" | sed -e 's,^X,,' -e 's/^[ ]*\([0-9][0-9]*\).*$/\1/'`
|
||||
changequote([,])dnl
|
||||
(test "$ac_count" -ge 0) 2>/dev/null || ac_count=-1
|
||||
else
|
||||
DATADIRNAME=share
|
||||
nls_cv_header_intl=intl/libintl.h
|
||||
nls_cv_header_libgt=intl/libgettext.h
|
||||
rm -f "$ac_nlist"T
|
||||
ac_count=-1
|
||||
fi
|
||||
AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl)
|
||||
AC_OUTPUT_COMMANDS(
|
||||
[case "$CONFIG_FILES" in *po/Makefile.in*)
|
||||
sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
|
||||
esac])
|
||||
|
||||
# Make sure that we snagged all the symbols we need.
|
||||
if egrep ' nm_test_var$' "$ac_nlist" >/dev/null; then
|
||||
if egrep ' nm_test_func$' "$ac_nlist" >/dev/null; then
|
||||
cat <<EOF > conftest.c
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
# # If this is used in GNU gettext we have to set USE_NLS to `yes'
|
||||
# # because some of the sources are only built for this goal.
|
||||
# if test "$PACKAGE" = gettext; then
|
||||
# USE_NLS=yes
|
||||
# USE_INCLUDED_LIBINTL=yes
|
||||
# fi
|
||||
EOF
|
||||
# Now generate the symbol file.
|
||||
sed 's/^.* \(.*\)$/extern char \1;/' < "$ac_nlist" >> conftest.c
|
||||
|
||||
dnl These rules are solely for the distribution goal. While doing this
|
||||
dnl we only have to keep exactly one list of the available catalogs
|
||||
dnl in configure.in.
|
||||
for lang in $ALL_LINGUAS; do
|
||||
GMOFILES="$GMOFILES $lang.gmo"
|
||||
POFILES="$POFILES $lang.po"
|
||||
done
|
||||
cat <<EOF >> conftest.c
|
||||
#if defined (__STDC__) && __STDC__
|
||||
# define __ptr_t void *
|
||||
#else
|
||||
# define __ptr_t char *
|
||||
#endif
|
||||
|
||||
dnl Make all variables we use known to autoconf.
|
||||
AC_SUBST(USE_INCLUDED_LIBINTL)
|
||||
AC_SUBST(CATALOGS)
|
||||
AC_SUBST(CATOBJEXT)
|
||||
AC_SUBST(DATADIRNAME)
|
||||
AC_SUBST(GMOFILES)
|
||||
AC_SUBST(INSTOBJEXT)
|
||||
AC_SUBST(INTLDEPS)
|
||||
AC_SUBST(INTLLIBS)
|
||||
AC_SUBST(INTLOBJS)
|
||||
AC_SUBST(POFILES)
|
||||
AC_SUBST(POSUB)
|
||||
])
|
||||
/* The number of symbols in dld_preloaded_symbols, -1 if unsorted. */
|
||||
int dld_preloaded_symbol_count = $ac_count;
|
||||
|
||||
AC_DEFUN(AM_GTK_GNU_GETTEXT,
|
||||
[AC_REQUIRE([AC_PROG_MAKE_SET])dnl
|
||||
AC_REQUIRE([AC_PROG_CC])dnl
|
||||
AC_REQUIRE([AC_PROG_RANLIB])dnl
|
||||
AC_REQUIRE([AC_ISC_POSIX])dnl
|
||||
AC_REQUIRE([AC_HEADER_STDC])dnl
|
||||
AC_REQUIRE([AC_C_CONST])dnl
|
||||
AC_REQUIRE([AC_C_INLINE])dnl
|
||||
AC_REQUIRE([AC_TYPE_OFF_T])dnl
|
||||
AC_REQUIRE([AC_TYPE_SIZE_T])dnl
|
||||
AC_REQUIRE([AC_FUNC_ALLOCA])dnl
|
||||
AC_REQUIRE([AC_FUNC_MMAP])dnl
|
||||
/* The mapping between symbol names and symbols. */
|
||||
struct {
|
||||
char *name;
|
||||
__ptr_t address;
|
||||
}
|
||||
changequote(,)dnl
|
||||
dld_preloaded_symbols[] =
|
||||
changequote([,])dnl
|
||||
{
|
||||
EOF
|
||||
sed 's/^\(.*\) \(.*\)$/ {"\1", (__ptr_t) \&\2},/' < "$ac_nlist" >> conftest.c
|
||||
cat <<\EOF >> conftest.c
|
||||
{0, (__ptr_t) 0}
|
||||
};
|
||||
|
||||
AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h string.h \
|
||||
unistd.h sys/param.h])
|
||||
AC_CHECK_FUNCS([getcwd munmap putenv setenv setlocale strchr strcasecmp \
|
||||
strdup __argz_count __argz_stringify __argz_next])
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
EOF
|
||||
# Now try linking the two files.
|
||||
mv conftest.$ac_objext conftestm.$ac_objext
|
||||
ac_save_LIBS="$LIBS"
|
||||
ac_save_CFLAGS="$CFLAGS"
|
||||
LIBS="conftestm.$ac_objext"
|
||||
CFLAGS="$CFLAGS$no_builtin_flag"
|
||||
if AC_TRY_EVAL(ac_link) && test -s conftest; then
|
||||
ac_pipe_works=yes
|
||||
else
|
||||
echo "configure: failed program was:" >&AC_FD_CC
|
||||
cat conftest.c >&AC_FD_CC
|
||||
fi
|
||||
LIBS="$ac_save_LIBS"
|
||||
CFLAGS="$ac_save_CFLAGS"
|
||||
else
|
||||
echo "cannot find nm_test_func in $ac_nlist" >&AC_FD_CC
|
||||
fi
|
||||
else
|
||||
echo "cannot find nm_test_var in $ac_nlist" >&AC_FD_CC
|
||||
fi
|
||||
else
|
||||
echo "cannot run $ac_cv_sys_global_symbol_pipe" >&AC_FD_CC
|
||||
fi
|
||||
else
|
||||
echo "$progname: failed program was:" >&AC_FD_CC
|
||||
cat conftest.c >&AC_FD_CC
|
||||
fi
|
||||
rm -rf conftest*
|
||||
|
||||
if test "${ac_cv_func_stpcpy+set}" != "set"; then
|
||||
AC_CHECK_FUNCS(stpcpy)
|
||||
fi
|
||||
if test "${ac_cv_func_stpcpy}" = "yes"; then
|
||||
AC_DEFINE(HAVE_STPCPY)
|
||||
fi
|
||||
# Do not use the global_symbol_pipe unless it works.
|
||||
test "$ac_pipe_works" = yes || ac_cv_sys_global_symbol_pipe=
|
||||
])
|
||||
|
||||
AM_LC_MESSAGES
|
||||
AM_GTK_WITH_NLS
|
||||
ac_result=yes
|
||||
if test -z "$ac_cv_sys_global_symbol_pipe"; then
|
||||
ac_result=no
|
||||
fi
|
||||
AC_MSG_RESULT($ac_result)
|
||||
])
|
||||
|
||||
if test "x$CATOBJEXT" != "x"; then
|
||||
if test "x$ALL_LINGUAS" = "x"; then
|
||||
LINGUAS=
|
||||
else
|
||||
AC_MSG_CHECKING(for catalogs to be installed)
|
||||
NEW_LINGUAS=
|
||||
for lang in ${LINGUAS=$ALL_LINGUAS}; do
|
||||
case "$ALL_LINGUAS" in
|
||||
*$lang*) NEW_LINGUAS="$NEW_LINGUAS $lang" ;;
|
||||
esac
|
||||
done
|
||||
LINGUAS=$NEW_LINGUAS
|
||||
AC_MSG_RESULT($LINGUAS)
|
||||
fi
|
||||
|
||||
dnl Construct list of names of catalog files to be constructed.
|
||||
if test -n "$LINGUAS"; then
|
||||
for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done
|
||||
fi
|
||||
fi
|
||||
|
||||
dnl The reference to <locale.h> in the installed <libintl.h> file
|
||||
dnl must be resolved because we cannot expect the users of this
|
||||
dnl to define HAVE_LOCALE_H.
|
||||
if test $ac_cv_header_locale_h = yes; then
|
||||
INCLUDE_LOCALE_H="#include <locale.h>"
|
||||
else
|
||||
INCLUDE_LOCALE_H="\
|
||||
/* The system does not provide the header <locale.h>. Take care yourself. */"
|
||||
fi
|
||||
AC_SUBST(INCLUDE_LOCALE_H)
|
||||
|
||||
dnl Determine which catalog format we have (if any is needed)
|
||||
dnl For now we know about two different formats:
|
||||
dnl Linux libc-5 and the normal X/Open format
|
||||
test -d intl || mkdir intl
|
||||
if test "$CATOBJEXT" = ".cat"; then
|
||||
AC_CHECK_HEADER(linux/version.h, msgformat=linux, msgformat=xopen)
|
||||
|
||||
dnl Transform the SED scripts while copying because some dumb SEDs
|
||||
dnl cannot handle comments.
|
||||
sed -e '/^#/d' $srcdir/intl/$msgformat-msg.sed > intl/po2msg.sed
|
||||
fi
|
||||
dnl po2tbl.sed is always needed.
|
||||
sed -e '/^#.*[^\\]$/d' -e '/^#$/d' \
|
||||
$srcdir/intl/po2tbl.sed.in > intl/po2tbl.sed
|
||||
|
||||
dnl In the intl/Makefile.in we have a special dependency which makes
|
||||
dnl only sense for gettext. We comment this out for non-gettext
|
||||
dnl packages.
|
||||
if test "$PACKAGE" = "gettext"; then
|
||||
GT_NO="#NO#"
|
||||
GT_YES=
|
||||
else
|
||||
GT_NO=
|
||||
GT_YES="#YES#"
|
||||
fi
|
||||
AC_SUBST(GT_NO)
|
||||
AC_SUBST(GT_YES)
|
||||
|
||||
dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly
|
||||
dnl find the mkinstalldirs script in another subdir but ($top_srcdir).
|
||||
dnl Try to locate is.
|
||||
MKINSTALLDIRS=
|
||||
if test -n "$ac_aux_dir"; then
|
||||
MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs"
|
||||
fi
|
||||
if test -z "$MKINSTALLDIRS"; then
|
||||
MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
|
||||
fi
|
||||
AC_SUBST(MKINSTALLDIRS)
|
||||
|
||||
dnl *** For now the libtool support in intl/Makefile is not for real.
|
||||
l=
|
||||
AC_SUBST(l)
|
||||
|
||||
dnl Generate list of files to be processed by xgettext which will
|
||||
dnl be included in po/Makefile.
|
||||
test -d po || mkdir po
|
||||
if test "x$srcdir" != "x."; then
|
||||
if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then
|
||||
posrcprefix="$srcdir/"
|
||||
else
|
||||
posrcprefix="../$srcdir/"
|
||||
fi
|
||||
else
|
||||
posrcprefix="../"
|
||||
fi
|
||||
rm -f po/POTFILES
|
||||
sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \
|
||||
< $srcdir/po/POTFILES.in > po/POTFILES
|
||||
])
|
||||
# AM_SYS_LIBTOOL_CYGWIN32 - find tools needed on cygwin32
|
||||
AC_DEFUN(AM_SYS_LIBTOOL_CYGWIN32,
|
||||
[AC_CHECK_TOOL(DLLTOOL, dlltool, false)
|
||||
AC_CHECK_TOOL(AS, as, false)
|
||||
])
|
||||
|
||||
# AM_SYS_SYMBOL_UNDERSCORE - does the compiler prefix global symbols
|
||||
# with an underscore?
|
||||
AC_DEFUN(AM_SYS_SYMBOL_UNDERSCORE,
|
||||
[AC_REQUIRE([AM_PROG_NM])dnl
|
||||
AC_REQUIRE([AM_SYS_NM_PARSE])dnl
|
||||
AC_MSG_CHECKING([for _ prefix in compiled symbols])
|
||||
AC_CACHE_VAL(ac_cv_sys_symbol_underscore,
|
||||
[ac_cv_sys_symbol_underscore=no
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
void nm_test_func(){}
|
||||
int main(){nm_test_func;return 0;}
|
||||
EOF
|
||||
if AC_TRY_EVAL(ac_compile); then
|
||||
# Now try to grab the symbols.
|
||||
ac_nlist=conftest.nm
|
||||
if AC_TRY_EVAL(NM conftest.$ac_objext \| $ac_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
|
||||
# See whether the symbols have a leading underscore.
|
||||
if egrep '^_nm_test_func' "$ac_nlist" >/dev/null; then
|
||||
ac_cv_sys_symbol_underscore=yes
|
||||
else
|
||||
if egrep '^nm_test_func ' "$ac_nlist" >/dev/null; then
|
||||
:
|
||||
else
|
||||
echo "configure: cannot find nm_test_func in $ac_nlist" >&AC_FD_CC
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "configure: cannot run $ac_cv_sys_global_symbol_pipe" >&AC_FD_CC
|
||||
fi
|
||||
else
|
||||
echo "configure: failed program was:" >&AC_FD_CC
|
||||
cat conftest.c >&AC_FD_CC
|
||||
fi
|
||||
rm -rf conftest*
|
||||
])
|
||||
AC_MSG_RESULT($ac_cv_sys_symbol_underscore)
|
||||
if test x$ac_cv_sys_symbol_underscore = xyes; then
|
||||
AC_DEFINE(WITH_SYMBOL_UNDERSCORE,1,
|
||||
[define if compiled symbols have a leading underscore])
|
||||
fi
|
||||
])
|
||||
|
73
config.guess
vendored
73
config.guess
vendored
@ -112,6 +112,9 @@ EOF
|
||||
amiga:OpenBSD:*:*)
|
||||
echo m68k-unknown-openbsd${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
*:[Aa]miga[Oo][Ss]:*:*)
|
||||
echo ${UNAME_MACHINE}-unknown-amigaos
|
||||
exit 0 ;;
|
||||
arc64:OpenBSD:*:*)
|
||||
echo mips64el-unknown-openbsd${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
@ -139,7 +142,7 @@ EOF
|
||||
SR2?01:HI-UX/MPP:*:*)
|
||||
echo hppa1.1-hitachi-hiuxmpp
|
||||
exit 0;;
|
||||
Pyramid*:OSx*:*:*|MIS*:OSx*:*:*)
|
||||
Pyramid*:OSx*:*:*|MIS*:OSx*:*:*|MIS*:SMP_DC-OSx*:*:*)
|
||||
# akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
|
||||
if test "`(/bin/universe) 2>/dev/null`" = att ; then
|
||||
echo pyramid-pyramid-sysv3
|
||||
@ -150,6 +153,9 @@ EOF
|
||||
NILE:*:*:dcosx)
|
||||
echo pyramid-pyramid-svr4
|
||||
exit 0 ;;
|
||||
sun4H:SunOS:5.*:*)
|
||||
echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
|
||||
exit 0 ;;
|
||||
sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
|
||||
echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
|
||||
exit 0 ;;
|
||||
@ -216,6 +222,9 @@ EOF
|
||||
powerpc:machten:*:*)
|
||||
echo powerpc-apple-machten${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
macppc:NetBSD:*:*)
|
||||
echo powerpc-apple-netbsd${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
RISC*:Mach:*:*)
|
||||
echo mips-dec-mach_bsd4.3
|
||||
exit 0 ;;
|
||||
@ -321,7 +330,8 @@ EOF
|
||||
fi
|
||||
exit 0 ;;
|
||||
*:AIX:*:4)
|
||||
if /usr/sbin/lsattr -EHl proc0 | grep POWER >/dev/null 2>&1; then
|
||||
IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'`
|
||||
if /usr/sbin/lsattr -EHl ${IBM_CPU_ID} | grep POWER >/dev/null 2>&1; then
|
||||
IBM_ARCH=rs6000
|
||||
else
|
||||
IBM_ARCH=powerpc
|
||||
@ -354,12 +364,44 @@ EOF
|
||||
hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
|
||||
echo m68k-hp-bsd4.4
|
||||
exit 0 ;;
|
||||
9000/[3478]??:HP-UX:*:*)
|
||||
9000/[34678]??:HP-UX:*:*)
|
||||
case "${UNAME_MACHINE}" in
|
||||
9000/31? ) HP_ARCH=m68000 ;;
|
||||
9000/[34]?? ) HP_ARCH=m68k ;;
|
||||
9000/7?? | 9000/8?[1679] ) HP_ARCH=hppa1.1 ;;
|
||||
9000/8?? ) HP_ARCH=hppa1.0 ;;
|
||||
9000/6?? | 9000/7?? | 9000/80[24] | 9000/8?[13679] | 9000/892 )
|
||||
sed 's/^ //' << EOF >dummy.c
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int main ()
|
||||
{
|
||||
#if defined(_SC_KERNEL_BITS)
|
||||
long bits = sysconf(_SC_KERNEL_BITS);
|
||||
#endif
|
||||
long cpu = sysconf (_SC_CPU_VERSION);
|
||||
|
||||
switch (cpu)
|
||||
{
|
||||
case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
|
||||
case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
|
||||
case CPU_PA_RISC2_0:
|
||||
#if defined(_SC_KERNEL_BITS)
|
||||
switch (bits)
|
||||
{
|
||||
case 64: puts ("hppa2.0w"); break;
|
||||
case 32: puts ("hppa2.0n"); break;
|
||||
default: puts ("hppa2.0"); break;
|
||||
} break;
|
||||
#else /* !defined(_SC_KERNEL_BITS) */
|
||||
puts ("hppa2.0"); break;
|
||||
#endif
|
||||
default: puts ("hppa1.0"); break;
|
||||
}
|
||||
exit (0);
|
||||
}
|
||||
EOF
|
||||
(${CC-cc} dummy.c -o dummy 2>/dev/null ) && HP_ARCH=`./dummy`
|
||||
rm -f dummy.c dummy
|
||||
esac
|
||||
HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
|
||||
echo ${HP_ARCH}-hp-hpux${HPUX_REV}
|
||||
@ -465,6 +507,9 @@ EOF
|
||||
hp300:OpenBSD:*:*)
|
||||
echo m68k-unknown-openbsd${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
sparc*:BSD/OS:*:*)
|
||||
echo sparc-unknown-bsdi${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
i?86:BSD/386:*:* | *:BSD/OS:*:*)
|
||||
echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
@ -659,6 +704,13 @@ EOF
|
||||
echo ${UNAME_MACHINE}-pc-sysv32
|
||||
fi
|
||||
exit 0 ;;
|
||||
i?86:UnixWare:*:*)
|
||||
if /bin/uname -X 2>/dev/null >/dev/null ; then
|
||||
(/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \
|
||||
&& UNAME_MACHINE=i586
|
||||
fi
|
||||
echo ${UNAME_MACHINE}-unixware-${UNAME_RELEASE}-${UNAME_VERSION}
|
||||
exit 0 ;;
|
||||
pc:*:*:*)
|
||||
# uname -m prints for DJGPP always 'pc', but it prints nothing about
|
||||
# the processor, so we play safe by assuming i386.
|
||||
@ -742,13 +794,22 @@ EOF
|
||||
news*:NEWS-OS:*:6*)
|
||||
echo mips-sony-newsos6
|
||||
exit 0 ;;
|
||||
R3000:*System_V*:*:* | R4000:UNIX_SYSV:*:*)
|
||||
R3000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R4000:UNIX_SV:*:*)
|
||||
if [ -d /usr/nec ]; then
|
||||
echo mips-nec-sysv${UNAME_RELEASE}
|
||||
else
|
||||
echo mips-unknown-sysv${UNAME_RELEASE}
|
||||
fi
|
||||
exit 0 ;;
|
||||
BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
|
||||
echo powerpc-be-beos
|
||||
exit 0 ;;
|
||||
BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
|
||||
echo powerpc-apple-beos
|
||||
exit 0 ;;
|
||||
BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
|
||||
echo i586-pc-beos
|
||||
exit 0 ;;
|
||||
esac
|
||||
|
||||
#echo '(No uname command or uname output not recognized.)' 1>&2
|
||||
|
11
config.sub
vendored
11
config.sub
vendored
@ -150,8 +150,8 @@ case $basic_machine in
|
||||
# Recognize the basic CPU types without company name.
|
||||
# Some are omitted here because they have special meanings below.
|
||||
tahoe | i860 | m32r | m68k | m68000 | m88k | ns32k | arc | arm \
|
||||
| arme[lb] | pyramid | mn10200 | mn10300 \
|
||||
| tron | a29k | 580 | i960 | h8300 | hppa | hppa1.0 | hppa1.1 \
|
||||
| arme[lb] | pyramid | mn10200 | mn10300 | tron | a29k \
|
||||
| 580 | i960 | h8300 | hppa | hppa1.0 | hppa1.1 | hppa2.0 \
|
||||
| alpha | alphaev5 | alphaev56 | we32k | ns16k | clipper \
|
||||
| i370 | sh | powerpc | powerpcle | 1750a | dsp16xx | pdp11 \
|
||||
| mips64 | mipsel | mips64el | mips64orion | mips64orionel \
|
||||
@ -175,7 +175,7 @@ case $basic_machine in
|
||||
| m88k-* | sparc-* | ns32k-* | fx80-* | arc-* | arm-* | c[123]* \
|
||||
| mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \
|
||||
| power-* | none-* | 580-* | cray2-* | h8300-* | i960-* \
|
||||
| xmp-* | ymp-* | hppa-* | hppa1.0-* | hppa1.1-* \
|
||||
| xmp-* | ymp-* | hppa-* | hppa1.0-* | hppa1.1-* | hppa2.0-* \
|
||||
| alpha-* | alphaev5-* | alphaev56-* | we32k-* | cydra-* \
|
||||
| ns16k-* | pn-* | np1-* | xps100-* | clipper-* | orion-* \
|
||||
| sparclite-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \
|
||||
@ -714,7 +714,7 @@ case $os in
|
||||
| -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
|
||||
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
|
||||
| -cygwin32* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
|
||||
| -mingw32* | -linux-gnu* | -uxpv*)
|
||||
| -mingw32* | -linux-gnu* | -uxpv* | -beos*)
|
||||
# Remember, each alternative MUST END IN *, to match a version number.
|
||||
;;
|
||||
-linux*)
|
||||
@ -827,6 +827,9 @@ case $basic_machine in
|
||||
sparc-* | *-sun)
|
||||
os=-sunos4.1.1
|
||||
;;
|
||||
*-be)
|
||||
os=-beos
|
||||
;;
|
||||
*-ibm)
|
||||
os=-aix
|
||||
;;
|
||||
|
14
po/cs.po
14
po/cs.po
@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.1.12\n"
|
||||
"POT-Creation-Date: 1999-01-04 03:55-0600\n"
|
||||
"POT-Creation-Date: 1999-01-12 10:38-0800\n"
|
||||
"PO-Revision-Date: 1999-01-06 13:55+01:00\n"
|
||||
"Last-Translator: Stanislav Brabec <utx@k332.feld.cvut.cz>\n"
|
||||
"Language-Team: Czech <cs@li.org>\n"
|
||||
@ -42,19 +42,19 @@ msgid "Opacity:"
|
||||
msgstr "Neprùhlednost:"
|
||||
|
||||
#. The OK button
|
||||
#: gtk/gtkcolorsel.c:1637 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkcolorsel.c:1640 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkgamma.c:408
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#. The Cancel button
|
||||
#: gtk/gtkcolorsel.c:1643 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkcolorsel.c:1646 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkfilesel.c:944 gtk/gtkfilesel.c:1059 gtk/gtkfontsel.c:3478
|
||||
#: gtk/gtkgamma.c:416
|
||||
msgid "Cancel"
|
||||
msgstr "Zru¹it"
|
||||
|
||||
#: gtk/gtkcolorsel.c:1648
|
||||
#: gtk/gtkcolorsel.c:1651
|
||||
msgid "Help"
|
||||
msgstr "Pomoc"
|
||||
|
||||
@ -68,7 +68,7 @@ msgstr "Adres
|
||||
msgid "Files"
|
||||
msgstr "Soubory"
|
||||
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1455
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1454
|
||||
#, c-format
|
||||
msgid "Directory unreadable: %s"
|
||||
msgstr "Neèitelný adresáø: %s"
|
||||
@ -122,7 +122,7 @@ msgstr "Smazat"
|
||||
msgid "Rename"
|
||||
msgstr "Pøejmenovat"
|
||||
|
||||
#: gtk/gtkfilesel.c:1434 gtk/gtkfilesel.c:1435
|
||||
#: gtk/gtkfilesel.c:1433
|
||||
msgid "Selection: "
|
||||
msgstr "Výbìr: "
|
||||
|
||||
@ -433,7 +433,7 @@ msgstr "(vypnuto)"
|
||||
msgid "clear"
|
||||
msgstr "smazat"
|
||||
|
||||
#: gtk/gtknotebook.c:1946 gtk/gtknotebook.c:3966
|
||||
#: gtk/gtknotebook.c:1966 gtk/gtknotebook.c:3985
|
||||
#, c-format
|
||||
msgid "Page %u"
|
||||
msgstr "Strana %u"
|
||||
|
17
po/de.po
17
po/de.po
@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.1.9\n"
|
||||
"POT-Creation-Date: 1999-01-04 03:55-0600\n"
|
||||
"POT-Creation-Date: 1999-01-12 10:38-0800\n"
|
||||
"PO-Revision-Date: 1998-12-18 12:15+0100\n"
|
||||
"Last-Translator: Sven Neumann <sven@gimp.org>\n"
|
||||
"Language-Team: German <de@li.org>\n"
|
||||
@ -42,19 +42,19 @@ msgid "Opacity:"
|
||||
msgstr "Deckkraft:"
|
||||
|
||||
#. The OK button
|
||||
#: gtk/gtkcolorsel.c:1637 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkcolorsel.c:1640 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkgamma.c:408
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#. The Cancel button
|
||||
#: gtk/gtkcolorsel.c:1643 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkcolorsel.c:1646 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkfilesel.c:944 gtk/gtkfilesel.c:1059 gtk/gtkfontsel.c:3478
|
||||
#: gtk/gtkgamma.c:416
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#: gtk/gtkcolorsel.c:1648
|
||||
#: gtk/gtkcolorsel.c:1651
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
||||
@ -68,7 +68,7 @@ msgstr "Verzeichnisse"
|
||||
msgid "Files"
|
||||
msgstr "Dateien"
|
||||
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1455
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1454
|
||||
#, c-format
|
||||
msgid "Directory unreadable: %s"
|
||||
msgstr "Verzeichnis unlesbar: %s"
|
||||
@ -122,6 +122,11 @@ msgstr "L
|
||||
msgid "Rename"
|
||||
msgstr "Umbenennen"
|
||||
|
||||
#: gtk/gtkfilesel.c:1433
|
||||
#, fuzzy
|
||||
msgid "Selection: "
|
||||
msgstr "Schriftauswahl"
|
||||
|
||||
#: gtk/gtkfontsel.c:203
|
||||
msgid "Foundry:"
|
||||
msgstr "Ursprung:"
|
||||
@ -429,7 +434,7 @@ msgstr "(ausgeschaltet)"
|
||||
msgid "clear"
|
||||
msgstr "gelöscht"
|
||||
|
||||
#: gtk/gtknotebook.c:1946 gtk/gtknotebook.c:3966
|
||||
#: gtk/gtknotebook.c:1966 gtk/gtknotebook.c:3985
|
||||
#, c-format
|
||||
msgid "Page %u"
|
||||
msgstr "Seite %u"
|
||||
|
17
po/es.po
17
po/es.po
@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.1.12\n"
|
||||
"POT-Creation-Date: 1999-01-10 02:52+0100\n"
|
||||
"POT-Creation-Date: 1999-01-12 10:38-0800\n"
|
||||
"PO-Revision-Date: 1999-01-10 17:37+0100\n"
|
||||
"Last-Translator: Pablo Saratxaga <srtxg@chanae.alphanet.ch>\n"
|
||||
"Language-Team: \n"
|
||||
@ -70,7 +70,7 @@ msgstr "Directorios"
|
||||
msgid "Files"
|
||||
msgstr "Archivos"
|
||||
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1455
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1454
|
||||
#, c-format
|
||||
msgid "Directory unreadable: %s"
|
||||
msgstr "Directorio ilegible: %s"
|
||||
@ -124,6 +124,11 @@ msgstr "Borrar"
|
||||
msgid "Rename"
|
||||
msgstr "Renombrar"
|
||||
|
||||
#: gtk/gtkfilesel.c:1433
|
||||
#, fuzzy
|
||||
msgid "Selection: "
|
||||
msgstr "Selección de Fuentes"
|
||||
|
||||
#: gtk/gtkfontsel.c:203
|
||||
msgid "Foundry:"
|
||||
msgstr "Fundición:"
|
||||
@ -307,7 +312,8 @@ msgstr "La fuente seleccionada no es una fuente v
|
||||
|
||||
#: gtk/gtkfontsel.c:1834
|
||||
msgid "This is a 2-byte font and may not be displayed correctly."
|
||||
msgstr "Esta es una fuente de 2-bytes y es posible que no se visualize correctamente."
|
||||
msgstr ""
|
||||
"Esta es una fuente de 2-bytes y es posible que no se visualize correctamente."
|
||||
|
||||
#: gtk/gtkfontsel.c:1926 gtk/gtkinputdialog.c:599
|
||||
msgid "(unknown)"
|
||||
@ -431,7 +437,7 @@ msgstr "(desactivado)"
|
||||
msgid "clear"
|
||||
msgstr "limpiar"
|
||||
|
||||
#: gtk/gtknotebook.c:1946 gtk/gtknotebook.c:3966
|
||||
#: gtk/gtknotebook.c:1966 gtk/gtknotebook.c:3985
|
||||
#, c-format
|
||||
msgid "Page %u"
|
||||
msgstr "Página %u"
|
||||
@ -439,7 +445,8 @@ msgstr "P
|
||||
#: gtk/gtkrc.c:1507
|
||||
#, c-format
|
||||
msgid "Unable to locate image file in pixmap_path: \"%s\" line %d"
|
||||
msgstr "Imposible de encontrar un archivo imágen en pixmap_path: \"%s\" línea %s"
|
||||
msgstr ""
|
||||
"Imposible de encontrar un archivo imágen en pixmap_path: \"%s\" línea %s"
|
||||
|
||||
#: gtk/gtkrc.c:1510
|
||||
#, c-format
|
||||
|
17
po/fr.po
17
po/fr.po
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ VERSION\n"
|
||||
"POT-Creation-Date: 1999-01-04 03:55-0600\n"
|
||||
"POT-Creation-Date: 1999-01-12 10:38-0800\n"
|
||||
"PO-Revision-Date: 1998-12-18 20:32+0100\n"
|
||||
"Last-Translator: Vincent Renardias <vincent@debian.org>\n"
|
||||
"Language-Team: Vincent Renardias <vincent@debian.org>\n"
|
||||
@ -43,19 +43,19 @@ msgid "Opacity:"
|
||||
msgstr "Opacité:"
|
||||
|
||||
#. The OK button
|
||||
#: gtk/gtkcolorsel.c:1637 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkcolorsel.c:1640 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkgamma.c:408
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#. The Cancel button
|
||||
#: gtk/gtkcolorsel.c:1643 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkcolorsel.c:1646 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkfilesel.c:944 gtk/gtkfilesel.c:1059 gtk/gtkfontsel.c:3478
|
||||
#: gtk/gtkgamma.c:416
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: gtk/gtkcolorsel.c:1648
|
||||
#: gtk/gtkcolorsel.c:1651
|
||||
msgid "Help"
|
||||
msgstr "Aide"
|
||||
|
||||
@ -69,7 +69,7 @@ msgstr "R
|
||||
msgid "Files"
|
||||
msgstr "Fichiers"
|
||||
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1455
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1454
|
||||
#, c-format
|
||||
msgid "Directory unreadable: %s"
|
||||
msgstr "Répertoire illisible: %s"
|
||||
@ -123,6 +123,11 @@ msgstr "Effacer"
|
||||
msgid "Rename"
|
||||
msgstr "Renommer"
|
||||
|
||||
#: gtk/gtkfilesel.c:1433
|
||||
#, fuzzy
|
||||
msgid "Selection: "
|
||||
msgstr "Sélection de police"
|
||||
|
||||
#: gtk/gtkfontsel.c:203
|
||||
msgid "Foundry:"
|
||||
msgstr "Fonderie:"
|
||||
@ -430,7 +435,7 @@ msgstr "(d
|
||||
msgid "clear"
|
||||
msgstr "affacer"
|
||||
|
||||
#: gtk/gtknotebook.c:1946 gtk/gtknotebook.c:3966
|
||||
#: gtk/gtknotebook.c:1966 gtk/gtknotebook.c:3985
|
||||
#, c-format
|
||||
msgid "Page %u"
|
||||
msgstr "Page %u"
|
||||
|
122
po/it.po
122
po/it.po
@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.1.12\n"
|
||||
"POT-Creation-Date: 1998-12-28 18:22-0600\n"
|
||||
"POT-Creation-Date: 1999-01-12 10:38-0800\n"
|
||||
"PO-Revision-Date: 1998-12-18 12:15+0100\n"
|
||||
"Last-Translator: Tristan Tarrant <ttarrant@etnoteam.it>\n"
|
||||
"Language-Team: German <it@li.org>\n"
|
||||
@ -42,19 +42,19 @@ msgid "Opacity:"
|
||||
msgstr "Opacita':"
|
||||
|
||||
#. The OK button
|
||||
#: gtk/gtkcolorsel.c:1637 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3459
|
||||
#: gtk/gtkcolorsel.c:1640 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkgamma.c:408
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#. The Cancel button
|
||||
#: gtk/gtkcolorsel.c:1643 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkfilesel.c:944 gtk/gtkfilesel.c:1059 gtk/gtkfontsel.c:3472
|
||||
#: gtk/gtkcolorsel.c:1646 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkfilesel.c:944 gtk/gtkfilesel.c:1059 gtk/gtkfontsel.c:3478
|
||||
#: gtk/gtkgamma.c:416
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#: gtk/gtkcolorsel.c:1648
|
||||
#: gtk/gtkcolorsel.c:1651
|
||||
msgid "Help"
|
||||
msgstr "Aiuto"
|
||||
|
||||
@ -68,7 +68,7 @@ msgstr "Cartelle"
|
||||
msgid "Files"
|
||||
msgstr "File"
|
||||
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1455
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1454
|
||||
#, c-format
|
||||
msgid "Directory unreadable: %s"
|
||||
msgstr "Cartella illeggibile: %s"
|
||||
@ -122,6 +122,11 @@ msgstr "Cancella"
|
||||
msgid "Rename"
|
||||
msgstr "Rinomina"
|
||||
|
||||
#: gtk/gtkfilesel.c:1433
|
||||
#, fuzzy
|
||||
msgid "Selection: "
|
||||
msgstr "Schriftauswahl"
|
||||
|
||||
#: gtk/gtkfontsel.c:203
|
||||
msgid "Foundry:"
|
||||
msgstr "Fornitore:"
|
||||
@ -174,170 +179,175 @@ msgstr "Larghezza media:"
|
||||
msgid "Charset:"
|
||||
msgstr "Gruppo di caratteri:"
|
||||
|
||||
#: gtk/gtkfontsel.c:442
|
||||
#. Number of internationalized titles here must match number
|
||||
#. of NULL initializers above
|
||||
#: gtk/gtkfontsel.c:452
|
||||
msgid "Font Property"
|
||||
msgstr "Proprieta' Font"
|
||||
|
||||
#: gtk/gtkfontsel.c:442
|
||||
#: gtk/gtkfontsel.c:453
|
||||
msgid "Requested Value"
|
||||
msgstr "Valore richiesto"
|
||||
|
||||
#: gtk/gtkfontsel.c:442
|
||||
#: gtk/gtkfontsel.c:454
|
||||
msgid "Actual Value"
|
||||
msgstr "Valore effettivo"
|
||||
|
||||
#: gtk/gtkfontsel.c:481
|
||||
#: gtk/gtkfontsel.c:487
|
||||
msgid "Font"
|
||||
msgstr "Font"
|
||||
|
||||
#: gtk/gtkfontsel.c:491 gtk/gtkfontsel.c:2140 gtk/gtkfontsel.c:2370
|
||||
#: gtk/gtkfontsel.c:497 gtk/gtkfontsel.c:2146 gtk/gtkfontsel.c:2376
|
||||
msgid "Font:"
|
||||
msgstr "Font:"
|
||||
|
||||
#: gtk/gtkfontsel.c:496
|
||||
#: gtk/gtkfontsel.c:502
|
||||
msgid "Font Style:"
|
||||
msgstr "Stile Font:"
|
||||
|
||||
#: gtk/gtkfontsel.c:501
|
||||
#: gtk/gtkfontsel.c:507
|
||||
msgid "Size:"
|
||||
msgstr "Dimensione:"
|
||||
|
||||
#: gtk/gtkfontsel.c:633 gtk/gtkfontsel.c:855
|
||||
#: gtk/gtkfontsel.c:639 gtk/gtkfontsel.c:861
|
||||
msgid "Reset Filter"
|
||||
msgstr "Azzera filtro"
|
||||
|
||||
#: gtk/gtkfontsel.c:647
|
||||
#: gtk/gtkfontsel.c:653
|
||||
msgid "Metric:"
|
||||
msgstr "Metrica:"
|
||||
|
||||
#: gtk/gtkfontsel.c:651
|
||||
#: gtk/gtkfontsel.c:657
|
||||
msgid "Points"
|
||||
msgstr "Punti"
|
||||
|
||||
#: gtk/gtkfontsel.c:658
|
||||
#: gtk/gtkfontsel.c:664
|
||||
msgid "Pixels"
|
||||
msgstr "Pixel"
|
||||
|
||||
#. create the text entry widget
|
||||
#: gtk/gtkfontsel.c:674
|
||||
#: gtk/gtkfontsel.c:680
|
||||
msgid "Preview:"
|
||||
msgstr "Anteprima:"
|
||||
|
||||
#: gtk/gtkfontsel.c:703
|
||||
#: gtk/gtkfontsel.c:709
|
||||
msgid "Font Information"
|
||||
msgstr "Informazioni Font"
|
||||
|
||||
#: gtk/gtkfontsel.c:736
|
||||
#: gtk/gtkfontsel.c:742
|
||||
msgid "Requested Font Name:"
|
||||
msgstr "Nome del font richiesto:"
|
||||
|
||||
#: gtk/gtkfontsel.c:747
|
||||
#: gtk/gtkfontsel.c:753
|
||||
msgid "Actual Font Name:"
|
||||
msgstr "Nome effettivo del font:"
|
||||
|
||||
#: gtk/gtkfontsel.c:758
|
||||
#: gtk/gtkfontsel.c:764
|
||||
#, c-format
|
||||
msgid "%i fonts available with a total of %i styles."
|
||||
msgstr "%i font disponibili per un totale di %i stili."
|
||||
|
||||
#: gtk/gtkfontsel.c:773
|
||||
#: gtk/gtkfontsel.c:779
|
||||
msgid "Filter"
|
||||
msgstr "Filtro"
|
||||
|
||||
#: gtk/gtkfontsel.c:786
|
||||
#: gtk/gtkfontsel.c:792
|
||||
msgid "Font Types:"
|
||||
msgstr "Tipi di Font:"
|
||||
|
||||
#: gtk/gtkfontsel.c:794
|
||||
#: gtk/gtkfontsel.c:800
|
||||
msgid "Bitmap"
|
||||
msgstr "Bitmap"
|
||||
|
||||
#: gtk/gtkfontsel.c:800
|
||||
#: gtk/gtkfontsel.c:806
|
||||
msgid "Scalable"
|
||||
msgstr "Scalabili"
|
||||
|
||||
#: gtk/gtkfontsel.c:806
|
||||
#: gtk/gtkfontsel.c:812
|
||||
msgid "Scaled Bitmap"
|
||||
msgstr "Bitmap scalabile"
|
||||
|
||||
#. Convert '(nil)' weights to 'regular', since it looks nicer.
|
||||
#: gtk/gtkfontsel.c:1202
|
||||
#: gtk/gtkfontsel.c:1208
|
||||
msgid "regular"
|
||||
msgstr "regular"
|
||||
|
||||
#: gtk/gtkfontsel.c:1207 gtk/gtkfontsel.c:1932
|
||||
#: gtk/gtkfontsel.c:1213 gtk/gtkfontsel.c:1938
|
||||
msgid "italic"
|
||||
msgstr "italic"
|
||||
|
||||
#: gtk/gtkfontsel.c:1208 gtk/gtkfontsel.c:1933
|
||||
#: gtk/gtkfontsel.c:1214 gtk/gtkfontsel.c:1939
|
||||
msgid "oblique"
|
||||
msgstr "oblique"
|
||||
|
||||
#: gtk/gtkfontsel.c:1209 gtk/gtkfontsel.c:1934
|
||||
#: gtk/gtkfontsel.c:1215 gtk/gtkfontsel.c:1940
|
||||
msgid "reverse italic"
|
||||
msgstr "reverse italic"
|
||||
|
||||
#: gtk/gtkfontsel.c:1210 gtk/gtkfontsel.c:1935
|
||||
#: gtk/gtkfontsel.c:1216 gtk/gtkfontsel.c:1941
|
||||
msgid "reverse oblique"
|
||||
msgstr "reverse oblique"
|
||||
|
||||
#: gtk/gtkfontsel.c:1211 gtk/gtkfontsel.c:1936
|
||||
#: gtk/gtkfontsel.c:1217 gtk/gtkfontsel.c:1942
|
||||
msgid "other"
|
||||
msgstr "other"
|
||||
|
||||
#: gtk/gtkfontsel.c:1218
|
||||
#: gtk/gtkfontsel.c:1224
|
||||
msgid "[M]"
|
||||
msgstr "[M]"
|
||||
|
||||
#: gtk/gtkfontsel.c:1219
|
||||
#: gtk/gtkfontsel.c:1225
|
||||
msgid "[C]"
|
||||
msgstr "[C]"
|
||||
|
||||
#: gtk/gtkfontsel.c:1764
|
||||
#: gtk/gtkfontsel.c:1770
|
||||
msgid "The selected font is not available."
|
||||
msgstr "Il font selezionato non e' disponibile."
|
||||
|
||||
#: gtk/gtkfontsel.c:1770
|
||||
#: gtk/gtkfontsel.c:1776
|
||||
msgid "The selected font is not a valid font."
|
||||
msgstr "Il font selezionato non e' valido."
|
||||
|
||||
#: gtk/gtkfontsel.c:1828
|
||||
#: gtk/gtkfontsel.c:1834
|
||||
msgid "This is a 2-byte font and may not be displayed correctly."
|
||||
msgstr "Questo e' un font a 2 byte e potrebbe non essere visualizzato correttamente."
|
||||
msgstr ""
|
||||
"Questo e' un font a 2 byte e potrebbe non essere visualizzato correttamente."
|
||||
|
||||
#: gtk/gtkfontsel.c:1920 gtk/gtkinputdialog.c:599
|
||||
#: gtk/gtkfontsel.c:1926 gtk/gtkinputdialog.c:599
|
||||
msgid "(unknown)"
|
||||
msgstr "(sconosciuto)"
|
||||
|
||||
#: gtk/gtkfontsel.c:1931
|
||||
#: gtk/gtkfontsel.c:1937
|
||||
msgid "roman"
|
||||
msgstr "roman"
|
||||
|
||||
#: gtk/gtkfontsel.c:1943
|
||||
#: gtk/gtkfontsel.c:1949
|
||||
msgid "proportional"
|
||||
msgstr "proporzionale"
|
||||
|
||||
#: gtk/gtkfontsel.c:1944
|
||||
#: gtk/gtkfontsel.c:1950
|
||||
msgid "monospaced"
|
||||
msgstr "monospazio"
|
||||
|
||||
#: gtk/gtkfontsel.c:1945
|
||||
#: gtk/gtkfontsel.c:1951
|
||||
msgid "char cell"
|
||||
msgstr "cella carattere"
|
||||
|
||||
#: gtk/gtkfontsel.c:2145
|
||||
#: gtk/gtkfontsel.c:2151
|
||||
msgid "Font: (Filter Applied)"
|
||||
msgstr "Font: (con Filtro)"
|
||||
|
||||
#: gtk/gtkfontsel.c:2621
|
||||
#: gtk/gtkfontsel.c:2627
|
||||
msgid "MAX_FONTS exceeded. Some fonts may be missing."
|
||||
msgstr "E' stato superato il valore di MAX_FONTS. Alcuni fonts potrebbero non essere visualizzati"
|
||||
msgstr ""
|
||||
"E' stato superato il valore di MAX_FONTS. Alcuni fonts potrebbero non essere "
|
||||
"visualizzati"
|
||||
|
||||
#: gtk/gtkfontsel.c:3466
|
||||
#: gtk/gtkfontsel.c:3472
|
||||
msgid "Apply"
|
||||
msgstr "Applica"
|
||||
|
||||
#: gtk/gtkfontsel.c:3488
|
||||
#: gtk/gtkfontsel.c:3494
|
||||
msgid "Font Selection"
|
||||
msgstr "Schriftauswahl"
|
||||
|
||||
@ -427,20 +437,24 @@ msgstr "(disabilitato)"
|
||||
msgid "clear"
|
||||
msgstr "cancella"
|
||||
|
||||
#: gtk/gtknotebook.c:1946 gtk/gtknotebook.c:3966
|
||||
#: gtk/gtknotebook.c:1966 gtk/gtknotebook.c:3985
|
||||
#, c-format
|
||||
msgid "Page %u"
|
||||
msgstr "Pagina %u"
|
||||
|
||||
#: gtk/gtkrc.c:1533
|
||||
#: gtk/gtkrc.c:1507
|
||||
#, c-format
|
||||
msgid "Unable to locate image file in pixmap_path: \"%s\" line %d"
|
||||
msgstr "Impossibile trovare il file di immagine nella cartella immagini: \"%s\". Linea %d"
|
||||
msgstr ""
|
||||
"Impossibile trovare il file di immagine nella cartella immagini: \"%s\". "
|
||||
"Linea %d"
|
||||
|
||||
#: gtk/gtkrc.c:1536
|
||||
#: gtk/gtkrc.c:1510
|
||||
#, c-format
|
||||
msgid "Unable to locate image file in pixmap_path: \"%s\""
|
||||
msgstr "Impossibile trovare il file di immagine nella cartella immagini: \"%s\" nicht finden"
|
||||
msgstr ""
|
||||
"Impossibile trovare il file di immagine nella cartella immagini: \"%s\" "
|
||||
"nicht finden"
|
||||
|
||||
#: gtk/gtkthemes.c:71
|
||||
#, c-format
|
||||
|
17
po/ja.po
17
po/ja.po
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.1.7\n"
|
||||
"POT-Creation-Date: 1999-01-04 03:55-0600\n"
|
||||
"POT-Creation-Date: 1999-01-12 10:38-0800\n"
|
||||
"PO-Revision-Date: 1998-12-16 15:18+0900\n"
|
||||
"Last-Translator: 白崎 泰弘 <yasuhiro@awa.tohoku.ac.jp>\n"
|
||||
"Language-Team: Japanese <ja@li.org>\n"
|
||||
@ -43,19 +43,19 @@ msgid "Opacity:"
|
||||
msgstr "不透明度:"
|
||||
|
||||
#. The OK button
|
||||
#: gtk/gtkcolorsel.c:1637 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkcolorsel.c:1640 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkgamma.c:408
|
||||
msgid "OK"
|
||||
msgstr "了解"
|
||||
|
||||
#. The Cancel button
|
||||
#: gtk/gtkcolorsel.c:1643 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkcolorsel.c:1646 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkfilesel.c:944 gtk/gtkfilesel.c:1059 gtk/gtkfontsel.c:3478
|
||||
#: gtk/gtkgamma.c:416
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#: gtk/gtkcolorsel.c:1648
|
||||
#: gtk/gtkcolorsel.c:1651
|
||||
msgid "Help"
|
||||
msgstr "ヘルプ"
|
||||
|
||||
@ -69,7 +69,7 @@ msgstr "
|
||||
msgid "Files"
|
||||
msgstr "ファイル"
|
||||
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1455
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1454
|
||||
#, c-format
|
||||
msgid "Directory unreadable: %s"
|
||||
msgstr "ディレクトリが読めません: %s"
|
||||
@ -123,6 +123,11 @@ msgstr "
|
||||
msgid "Rename"
|
||||
msgstr "名前変更"
|
||||
|
||||
#: gtk/gtkfilesel.c:1433
|
||||
#, fuzzy
|
||||
msgid "Selection: "
|
||||
msgstr "フォント選択"
|
||||
|
||||
#: gtk/gtkfontsel.c:203
|
||||
msgid "Foundry:"
|
||||
msgstr "提供:"
|
||||
@ -430,7 +435,7 @@ msgstr "(̵
|
||||
msgid "clear"
|
||||
msgstr "クリア"
|
||||
|
||||
#: gtk/gtknotebook.c:1946 gtk/gtknotebook.c:3966
|
||||
#: gtk/gtknotebook.c:1966 gtk/gtknotebook.c:3985
|
||||
#, c-format
|
||||
msgid "Page %u"
|
||||
msgstr "ページ %u"
|
||||
|
17
po/ko.po
17
po/ko.po
@ -4,7 +4,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.1.10\n"
|
||||
"POT-Creation-Date: 1999-01-04 03:55-0600\n"
|
||||
"POT-Creation-Date: 1999-01-12 10:38-0800\n"
|
||||
"PO-Revision-Date: 1999-01-04 03:29:06+0900\n"
|
||||
"Last-Translator: Sung-Hyun Nam <namsh@lgic.co.kr>\n"
|
||||
"Language-Team: Korean <ko@li.org>\n"
|
||||
@ -41,19 +41,19 @@ msgid "Opacity:"
|
||||
msgstr "불투명:"
|
||||
|
||||
#. The OK button
|
||||
#: gtk/gtkcolorsel.c:1637 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkcolorsel.c:1640 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkgamma.c:408
|
||||
msgid "OK"
|
||||
msgstr "확인"
|
||||
|
||||
#. The Cancel button
|
||||
#: gtk/gtkcolorsel.c:1643 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkcolorsel.c:1646 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkfilesel.c:944 gtk/gtkfilesel.c:1059 gtk/gtkfontsel.c:3478
|
||||
#: gtk/gtkgamma.c:416
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
#: gtk/gtkcolorsel.c:1648
|
||||
#: gtk/gtkcolorsel.c:1651
|
||||
msgid "Help"
|
||||
msgstr "도움말"
|
||||
|
||||
@ -67,7 +67,7 @@ msgstr "
|
||||
msgid "Files"
|
||||
msgstr "파일"
|
||||
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1455
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1454
|
||||
#, c-format
|
||||
msgid "Directory unreadable: %s"
|
||||
msgstr "자료방을 읽을 수 없슴: %s"
|
||||
@ -121,6 +121,11 @@ msgstr "
|
||||
msgid "Rename"
|
||||
msgstr "새이름"
|
||||
|
||||
#: gtk/gtkfilesel.c:1433
|
||||
#, fuzzy
|
||||
msgid "Selection: "
|
||||
msgstr "±Û²Ã ¼±ÅÃ"
|
||||
|
||||
#: gtk/gtkfontsel.c:203
|
||||
msgid "Foundry:"
|
||||
msgstr ""
|
||||
@ -428,7 +433,7 @@ msgstr ""
|
||||
msgid "clear"
|
||||
msgstr ""
|
||||
|
||||
#: gtk/gtknotebook.c:1946 gtk/gtknotebook.c:3966
|
||||
#: gtk/gtknotebook.c:1966 gtk/gtknotebook.c:3985
|
||||
#, c-format
|
||||
msgid "Page %u"
|
||||
msgstr "페이지 %u"
|
||||
|
16
po/nl.po
16
po/nl.po
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 1999-01-04 03:55-0600\n"
|
||||
"POT-Creation-Date: 1999-01-12 10:38-0800\n"
|
||||
"PO-Revision-Date: 1998-12-18 01:13+0100\n"
|
||||
"Last-Translator: Paul Siegmann <pauls@euronet.nl>\n"
|
||||
"Language-Team: LANGUAGE <nl@li.org>\n"
|
||||
@ -43,19 +43,19 @@ msgid "Opacity:"
|
||||
msgstr ""
|
||||
|
||||
#. The OK button
|
||||
#: gtk/gtkcolorsel.c:1637 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkcolorsel.c:1640 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkgamma.c:408
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#. The Cancel button
|
||||
#: gtk/gtkcolorsel.c:1643 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkcolorsel.c:1646 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkfilesel.c:944 gtk/gtkfilesel.c:1059 gtk/gtkfontsel.c:3478
|
||||
#: gtk/gtkgamma.c:416
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#: gtk/gtkcolorsel.c:1648
|
||||
#: gtk/gtkcolorsel.c:1651
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
@ -69,7 +69,7 @@ msgstr "Directories"
|
||||
msgid "Files"
|
||||
msgstr "Bestanden"
|
||||
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1455
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1454
|
||||
#, c-format
|
||||
msgid "Directory unreadable: %s"
|
||||
msgstr "Directory onleesbaar: %s"
|
||||
@ -123,6 +123,10 @@ msgstr "Verwijder"
|
||||
msgid "Rename"
|
||||
msgstr "Hernoem"
|
||||
|
||||
#: gtk/gtkfilesel.c:1433
|
||||
msgid "Selection: "
|
||||
msgstr ""
|
||||
|
||||
#: gtk/gtkfontsel.c:203
|
||||
msgid "Foundry:"
|
||||
msgstr ""
|
||||
@ -432,7 +436,7 @@ msgstr ""
|
||||
msgid "clear"
|
||||
msgstr ""
|
||||
|
||||
#: gtk/gtknotebook.c:1946 gtk/gtknotebook.c:3966
|
||||
#: gtk/gtknotebook.c:1966 gtk/gtknotebook.c:3985
|
||||
#, c-format
|
||||
msgid "Page %u"
|
||||
msgstr ""
|
||||
|
17
po/no.po
17
po/no.po
@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.1.9\n"
|
||||
"POT-Creation-Date: 1999-01-04 03:55-0600\n"
|
||||
"POT-Creation-Date: 1999-01-12 10:38-0800\n"
|
||||
"PO-Revision-Date: 1998-12-18 22:15+0100\n"
|
||||
"Last-Translator: Kjartan Maraas <kmaraas@fib.hl.no>\n"
|
||||
"Language-Team: Norwegian <no@li.org>\n"
|
||||
@ -42,19 +42,19 @@ msgid "Opacity:"
|
||||
msgstr ""
|
||||
|
||||
#. The OK button
|
||||
#: gtk/gtkcolorsel.c:1637 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkcolorsel.c:1640 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkgamma.c:408
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#. The Cancel button
|
||||
#: gtk/gtkcolorsel.c:1643 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkcolorsel.c:1646 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkfilesel.c:944 gtk/gtkfilesel.c:1059 gtk/gtkfontsel.c:3478
|
||||
#: gtk/gtkgamma.c:416
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: gtk/gtkcolorsel.c:1648
|
||||
#: gtk/gtkcolorsel.c:1651
|
||||
msgid "Help"
|
||||
msgstr "Hjelp"
|
||||
|
||||
@ -68,7 +68,7 @@ msgstr "Kataloger"
|
||||
msgid "Files"
|
||||
msgstr "Filer"
|
||||
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1455
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1454
|
||||
#, c-format
|
||||
msgid "Directory unreadable: %s"
|
||||
msgstr "Uleselig katalog: %s"
|
||||
@ -122,6 +122,11 @@ msgstr "Slett"
|
||||
msgid "Rename"
|
||||
msgstr "Gi nytt navn"
|
||||
|
||||
#: gtk/gtkfilesel.c:1433
|
||||
#, fuzzy
|
||||
msgid "Selection: "
|
||||
msgstr "Valg av skrifttype"
|
||||
|
||||
#: gtk/gtkfontsel.c:203
|
||||
msgid "Foundry:"
|
||||
msgstr ""
|
||||
@ -429,7 +434,7 @@ msgstr "(sl
|
||||
msgid "clear"
|
||||
msgstr "tøm"
|
||||
|
||||
#: gtk/gtknotebook.c:1946 gtk/gtknotebook.c:3966
|
||||
#: gtk/gtknotebook.c:1966 gtk/gtknotebook.c:3985
|
||||
#, c-format
|
||||
msgid "Page %u"
|
||||
msgstr "Side %u"
|
||||
|
16
po/pl.po
16
po/pl.po
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.1.9\n"
|
||||
"POT-Creation-Date: 1999-01-04 03:55-0600\n"
|
||||
"POT-Creation-Date: 1999-01-12 10:38-0800\n"
|
||||
"PO-Revision-Date: 1998-12-18 02:21+0100\n"
|
||||
"Last-Translator: Krzysztof Krzy¿aniak <eloy@venco.com.pl>\n"
|
||||
"Language-Team: Polish <plug@poznan.linux.org.pl>\n"
|
||||
@ -43,19 +43,19 @@ msgid "Opacity:"
|
||||
msgstr ""
|
||||
|
||||
#. The OK button
|
||||
#: gtk/gtkcolorsel.c:1637 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkcolorsel.c:1640 gtk/gtkfilesel.c:462 gtk/gtkfontsel.c:3465
|
||||
#: gtk/gtkgamma.c:408
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#. The Cancel button
|
||||
#: gtk/gtkcolorsel.c:1643 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkcolorsel.c:1646 gtk/gtkfilesel.c:469 gtk/gtkfilesel.c:844
|
||||
#: gtk/gtkfilesel.c:944 gtk/gtkfilesel.c:1059 gtk/gtkfontsel.c:3478
|
||||
#: gtk/gtkgamma.c:416
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#: gtk/gtkcolorsel.c:1648
|
||||
#: gtk/gtkcolorsel.c:1651
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
@ -69,7 +69,7 @@ msgstr "Katalogi"
|
||||
msgid "Files"
|
||||
msgstr "Pliki"
|
||||
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1455
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1454
|
||||
#, c-format
|
||||
msgid "Directory unreadable: %s"
|
||||
msgstr "Nie mo¿na odczytaæ katalogu: %s"
|
||||
@ -123,6 +123,10 @@ msgstr "Skasuj"
|
||||
msgid "Rename"
|
||||
msgstr "Zmieñ nazwê"
|
||||
|
||||
#: gtk/gtkfilesel.c:1433
|
||||
msgid "Selection: "
|
||||
msgstr ""
|
||||
|
||||
#: gtk/gtkfontsel.c:203
|
||||
msgid "Foundry:"
|
||||
msgstr ""
|
||||
@ -432,7 +436,7 @@ msgstr ""
|
||||
msgid "clear"
|
||||
msgstr ""
|
||||
|
||||
#: gtk/gtknotebook.c:1946 gtk/gtknotebook.c:3966
|
||||
#: gtk/gtknotebook.c:1966 gtk/gtknotebook.c:3985
|
||||
#, c-format
|
||||
msgid "Page %u"
|
||||
msgstr ""
|
||||
|
11
po/pt.po
11
po/pt.po
@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.1.12\n"
|
||||
"POT-Creation-Date: 1999-01-08 01:16+0000\n"
|
||||
"POT-Creation-Date: 1999-01-12 10:38-0800\n"
|
||||
"PO-Revision-Date: 1999-01-09 12:09+00:00\n"
|
||||
"Last-Translator: Nuno Ferreira <nmrf@rnl.ist.utl.pt>\n"
|
||||
"Language-Team: Portuguese <pt@li.org>\n"
|
||||
@ -68,7 +68,7 @@ msgstr "Directorias"
|
||||
msgid "Files"
|
||||
msgstr "Ficheiros"
|
||||
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1455
|
||||
#: gtk/gtkfilesel.c:500 gtk/gtkfilesel.c:1454
|
||||
#, c-format
|
||||
msgid "Directory unreadable: %s"
|
||||
msgstr "Directoria ilegível: %s"
|
||||
@ -122,6 +122,11 @@ msgstr "Apagar"
|
||||
msgid "Rename"
|
||||
msgstr "Renomear"
|
||||
|
||||
#: gtk/gtkfilesel.c:1433
|
||||
#, fuzzy
|
||||
msgid "Selection: "
|
||||
msgstr "Selecção de Fonte"
|
||||
|
||||
#: gtk/gtkfontsel.c:203
|
||||
msgid "Foundry:"
|
||||
msgstr ""
|
||||
@ -429,7 +434,7 @@ msgstr ""
|
||||
msgid "clear"
|
||||
msgstr "limpar"
|
||||
|
||||
#: gtk/gtknotebook.c:1946 gtk/gtknotebook.c:3966
|
||||
#: gtk/gtknotebook.c:1966 gtk/gtknotebook.c:3985
|
||||
#, c-format
|
||||
msgid "Page %u"
|
||||
msgstr "Página %u"
|
||||
|
2
po/sv.po
2
po/sv.po
@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.1.12\n"
|
||||
"POT-Creation-Date: 1999-01-12 22:47+0100\n"
|
||||
"POT-Creation-Date: 1999-01-12 10:38-0800\n"
|
||||
"PO-Revision-Date: 1999-01-12 22:50+0100\n"
|
||||
"Last-Translator: Tomas Ögren <stric@ing.umu.se>\n"
|
||||
"Language-Team: Swedish <sv@li.org>\n"
|
||||
|
Loading…
Reference in New Issue
Block a user