Commit ceef7055 ceef705516748a4b766beeb85ac5a33440d9a52f by Wojciech Polak

Added NLS.

1 parent fc55b7c3
1 /* GNU mailutils - a suite of utilities for electronic mail 1 /* GNU Mailutils -- a suite of utilities for electronic mail
2 Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. 2 Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
3 3
4 This program is free software; you can redistribute it and/or modify 4 GNU Mailutils is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Library Public License as published by 5 it under the terms of the GNU General Library Public License as published by
6 the Free Software Foundation; either version 2, or (at your option) 6 the Free Software Foundation; either version 2, or (at your option)
7 any later version. 7 any later version.
8 8
9 This program is distributed in the hope that it will be useful, 9 GNU Mailutils is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Library General Public License for more details. 12 GNU Library General Public License for more details.
13 13
14 You should have received a copy of the GNU Library General Public License 14 You should have received a copy of the GNU Library General Public License
15 along with this program; if not, write to the Free Software 15 along with GNU Mailutils; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ 16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
17 17
18 #ifdef HAVE_CONFIG_H 18 #ifdef HAVE_CONFIG_H
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
32 32
33 #include <mailutils/stream.h> 33 #include <mailutils/stream.h>
34 #include <mailutils/error.h> 34 #include <mailutils/error.h>
35 #include <mailutils/nls.h>
35 36
36 struct _file_stream 37 struct _file_stream
37 { 38 {
...@@ -436,7 +437,7 @@ _file_open (stream_t stream) ...@@ -436,7 +437,7 @@ _file_open (stream_t stream)
436 || filebuf.st_nlink != 1 437 || filebuf.st_nlink != 1
437 || (fdbuf.st_mode & S_IFMT) != S_IFREG) 438 || (fdbuf.st_mode & S_IFMT) != S_IFREG)
438 { 439 {
439 mu_error ("%s must be a plain file with one link\n", filename); 440 mu_error (_("%s must be a plain file with one link\n"), filename);
440 close (fd); 441 close (fd);
441 return EINVAL; 442 return EINVAL;
442 } 443 }
......