bug-sourceinstall
[Top][All Lists]
Advanced

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

[bug-sourceinstall] [patch #6324] patch for sourceinstall-gtk/package_in


From: Jorma Karvonen
Subject: [bug-sourceinstall] [patch #6324] patch for sourceinstall-gtk/package_info.c
Date: Thu, 06 Dec 2007 20:49:32 +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/?6324>

                 Summary: patch for sourceinstall-gtk/package_info.c
                 Project: GNU Source Installer
            Submitted by: jormak
            Submitted on: Thursday 12/06/2007 at 22:49
                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
176,177c178,179
<     info_create_editable(W_PACKAGE_INFO_NAME, "<b>Package name:</b>");
<     info_create_editable(W_PACKAGE_INFO_DESC, "<b>Description:</b>");
---
>     info_create_editable(W_PACKAGE_INFO_NAME, gettext ( "<b>Package
name:</b>" ));
>     info_create_editable(W_PACKAGE_INFO_DESC, gettext (
"<b>Description:</b>" ));
184,192c186,194
<     info_create(W_PACKAGE_INFO_PREFIX, "<b>Installation prefix:</b>");
<     info_create(W_PACKAGE_INFO_CONF, "<b>Configured as:</b>");
<     info_create(W_PACKAGE_INFO_SRC, "<b>Source available:</b>");
<     info_create(W_PACKAGE_INFO_SRC_LOC, "<b>Source location:</b>");
<     info_create(W_PACKAGE_INFO_SRC_SIZE, "<b>Source size(KB):</b>");
<     info_create(W_PACKAGE_INFO_SUBDIR, "<b>Build subdir:</b>");
<     info_create(W_PACKAGE_INFO_INST, "<b>Installed:</b>");
<     info_create(W_PACKAGE_INFO_INST_SIZE, "<b>Installed size(KB):</b>");
<     info_create(W_PACKAGE_INFO_CHECK, "<b>Installed files check:</b>");
---
>     info_create(W_PACKAGE_INFO_PREFIX, gettext ( "<b>Installation
prefix:</b>" ));
>     info_create(W_PACKAGE_INFO_CONF, gettext ( "<b>Configured as:</b>" ));
>     info_create(W_PACKAGE_INFO_SRC, gettext ( "<b>Source available:</b>"
));
>     info_create(W_PACKAGE_INFO_SRC_LOC, gettext ( "<b>Source location:</b>"
));
>     info_create(W_PACKAGE_INFO_SRC_SIZE, gettext ( "<b>Source
size(KB):</b>" ));
>     info_create(W_PACKAGE_INFO_SUBDIR, gettext ( "<b>Build subdir:</b>"
));
>     info_create(W_PACKAGE_INFO_INST, gettext ( "<b>Installed:</b>" ));
>     info_create(W_PACKAGE_INFO_INST_SIZE, gettext ( "<b>Installed
size(KB):</b>" ));
>     info_create(W_PACKAGE_INFO_CHECK, gettext ( "<b>Installed files
check:</b>" ));
230c232
<     info_set(W_PACKAGE_INFO_SRC, src_available ? "yes" : "no");
---
>     info_set(W_PACKAGE_INFO_SRC, src_available ? gettext ( "yes" ) :
gettext ( "no" ));
249c251
<     info_set(W_PACKAGE_INFO_INST, installed ? "yes" : "no");
---
>     info_set(W_PACKAGE_INFO_INST, installed ? gettext ( "yes" ) : gettext (
"no" ));
290,291c292,293
<     info_set(W_PACKAGE_INFO_CHECK, list->count == 0 ? "no information" :
<            check ? "all files ok" : "missing files detected");
---
>     info_set(W_PACKAGE_INFO_CHECK, list->count == 0 ? gettext ( "no
information" ) :
>            check ? gettext ( "all files ok" ) :  gettext ( "missing files
detected" ));




    _______________________________________________________

Reply to this item at:

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

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





reply via email to

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