* Various bug fixes.

* New Galician translation.
This commit is contained in:
Paul Smith 2000-10-05 16:27:06 +00:00
parent 50ba270762
commit d5a04ee984
7 changed files with 1957 additions and 21 deletions

View File

@ -1,9 +1,28 @@
2000-09-21 Paul D. Smith <paul@paulandlesley.org>
2000-10-05 Paul D. Smith <psmith@gnu.org>
* acinclude.m4 (AM_LC_MESSAGES): Remove undefined macro
AM_LC_MESSAGES; it doesn't seem to do anything anyway??
* i18n/gl.po, configure.in (ALL_LINGUAS): New Galician translation.
2000-09-22 Paul D. Smith <psmith@gnu.org>
* gettext.c: Don't #define _GETTEXT_H here; we only include some
parts of the real gettext.h here, and we expect to really include
the real gettext.h later. If we keep this #define, it's ignored.
2000-09-21 Paul D. Smith <psmith@gnu.org>
* main.c (log_working_directory): Rework the text to use complete
sentences, to make life simpler for the translators.
2000-08-21 Paul D. Smith <paul@paulandlesley.org>
2000-08-29 Paul D. Smith <psmith@gnu.org>
* file.c (remove_intermediates): Print a debug message before we
remove intermediate files, so the user (if she uses -d) knows
what's going on.
2000-08-21 Paul D. Smith <psmith@gnu.org>
* variable.c (try_variable_definition): Change how we handle
target-specific append variable defns: instead of just setting the
@ -12,6 +31,12 @@
variable is appended more than once within the current target
context. Fixes PR/1831.
2000-08-16 Paul D. Smith <psmith@gnu.org>
* function.c (func_shell): Nul-terminate the buffer before
printing an exec error message (just in case it's not!).
Fixes PR/1860, reported by Joey Hess <joey@valinux.com>.
2000-07-25 Paul D. Smith <psmith@gnu.org>
* job.c (construct_command_argv_internal): Add "~" to the list of

View File

@ -491,7 +491,6 @@ AC_DEFUN(pds_WITH_GETTEXT, [
AC_DEFINE(HAVE_DCGETTEXT, 1, [Define if you have the dcgettext function.])
AC_CHECK_FUNCS(getcwd setlocale stpcpy)
AM_LC_MESSAGES
if test -z "$ALL_LINGUAS"; then
AC_MSG_WARN(This package does not install translations yet.)

View File

@ -42,7 +42,7 @@ AC_HEADER_TIME
dnl Handle internationalization
ALL_LINGUAS="de es fr ja ko nl pl pt_BR ru"
ALL_LINGUAS="de es fr gl ja ko nl pl pt_BR ru"
pds_WITH_GETTEXT
jm_AC_TYPE_UINTMAX_T

30
file.c
View File

@ -26,6 +26,7 @@ Boston, MA 02111-1307, USA. */
#include "job.h"
#include "commands.h"
#include "variable.h"
#include "debug.h"
/* Hash table of files the makefile knows how to make. */
@ -410,18 +411,23 @@ remove_intermediates (sig)
{
if (sig)
error (NILF, _("*** Deleting intermediate file `%s'"), f->name);
else if (!silent_flag)
{
if (! doneany)
{
fputs ("rm ", stdout);
doneany = 1;
}
else
putchar (' ');
fputs (f->name, stdout);
fflush (stdout);
}
else
{
if (! doneany)
DB (DB_BASIC, (_("Removing intermediate files...\n")));
if (!silent_flag)
{
if (! doneany)
{
fputs ("rm ", stdout);
doneany = 1;
}
else
putchar (' ');
fputs (f->name, stdout);
fflush (stdout);
}
}
if (status < 0)
perror_with_name ("unlink: ", f->name);
}

View File

@ -1450,6 +1450,7 @@ func_shell (o, argv, funcname)
i += cc;
}
while (cc > 0 || EINTR_SET);
buffer[i] = '\0';
/* Close the read side of the pipe. */
#ifdef __MSDOS__

View File

@ -671,9 +671,6 @@ _nl_explode_name (name, language, modifier, territory, codeset,
/* Internal header for GNU gettext internationalization functions.
Copyright (C) 1995, 1997 Free Software Foundation, Inc. */
#ifndef _GETTEXT_H
#define _GETTEXT_H 1
#include <stdio.h>
#if HAVE_LIMITS_H || _LIBC
@ -752,8 +749,6 @@ struct string_desc
nls_uint32 offset;
};
#endif /* gettext.h */
/* End of gettext.h */
/* Resume of loadmsgcat.c */

1910
i18n/gl.po Normal file

File diff suppressed because it is too large Load Diff