bug-sourceinstall
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug-sourceinstall] [patch #6309] patch for libsrcinst/srcexport.c


From: Jorma Karvonen
Subject: [bug-sourceinstall] [patch #6309] patch for libsrcinst/srcexport.c
Date: Thu, 06 Dec 2007 20:27:54 +0000
User-agent: Mozilla/5.0 (X11; U; Linux i686; fi-FI; rv:1.8.1.8) Gecko/20071015 SUSE/2.0.0.8-1.2 Firefox/2.0.0.8

URL:
  <http://savannah.gnu.org/patch/?6309>

                 Summary: patch for libsrcinst/srcexport.c
                 Project: GNU Source Installer
            Submitted by: jormak
            Submitted on: Thursday 12/06/2007 at 22:27
                Category: None
                Priority: 5 - Normal
                  Status: None
                 Privacy: Public
             Assigned to: None
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any

    _______________________________________________________

Details:

23c23,25
< 
---
> #ifdef HAVE_NLS
> # include <locale.h>
> #endif
194c196
<                   lk, info->source_location ? "yes" : "no", lk);
---
>                   lk, info->source_location ? gettext ( "yes" ) : gettext ( 
> "no" ),
lk);
217c219
<                   fprintf(f, "<%s>%s</%s>\n", lk, b ? "yes" : "no", lk);
---
>                   fprintf(f, "<%s>%s</%s>\n", lk, b ? gettext ( "yes" ) : 
> gettext (
"no" ), lk);
280c282
<     fprintf(f, "PACKAGE %s\n", info->name);
---
>     fprintf(f, gettext ( "PACKAGE %s\n" ), info->name);
290c292
<       fprintf(f, "configured as: %s\n", info->configured);
---
>       fprintf(f, gettext ( "configured as: %s\n" ), info->configured);
293,294c295,296
<     fprintf(f, "source available: %s\n",
<           info->source_location ? "yes" : "no");
---
>     fprintf(f, gettext ( "source available: %s\n" ),
>           info->source_location ? gettext ( "yes" ) : gettext ( "no" ));
297c299
<       fprintf(f, "source location: %s\n", info->source_location);
---
>       fprintf(f, gettext ( "source location: %s\n" ), info->source_location);
300c302
<           fprintf(f, "compressed source size (KB): " OFF_FMT "\n",
---
>           fprintf(f, gettext ( "compressed source size (KB): " OFF_FMT "\n" ),
304c306
<           fprintf(f, "build subdirectory: %s\n", info->build_subdir);
---
>           fprintf(f, gettext ( "build subdirectory: %s\n" ),
info->build_subdir);
307c309
<     fprintf(f, "installed: %s\n", info->installed ? "yes" : "no");
---
>     fprintf(f, gettext ( "installed: %s\n" ), info->installed ? gettext (
"yes" ) : gettext ( "no" ));
312c314
<           fprintf(f, "installed size (KB): " OFF_FMT "\n",
---
>           fprintf(f, gettext ( "installed size (KB): " OFF_FMT "\n" ),
316c318
<           fprintf(f, "installation prefix: %s\n", info->prefix);
---
>           fprintf(f, gettext ( "installation prefix: %s\n" ), info->prefix);
320c322
<           fprintf(f, "\ninstalled files and directories:\n");
---
>           fprintf(f, gettext ( "\ninstalled files and directories:\n" ));
326c328
<           fprintf(f, "no info about installed files available\n");
---
>           fprintf(f, gettext ( "no info about installed files available\n" ));




    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/patch/?6309>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]