Changeset 501 in MondoRescue for branches/stable/mondo/mondo/common


Ignore:
Timestamp:
Apr 29, 2006, 8:59:08 PM (18 years ago)
Author:
bcornec
Message:
  • Internationalization follow up
  • X11 remaining files suppressed
Location:
branches/stable/mondo/mondo/common
Files:
9 deleted
15 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/mondo/common/Makefile.am

    r424 r501  
    1414                       libmondo-archive.h libmondo-devices.h \
    1515                       libmondo-filelist.h libmondo-files.h libmondo-fork.h \
    16                        libmondo-gui.h libmondo-mountlist.h libmondo-raid.h \
     16                       libmondo-mountlist.h libmondo-raid.h \
    1717                       libmondo-stream.h libmondo-string.h libmondo-tools.h \
    1818                       libmondo-verify.h libmondo-fifo.h \
     
    2020                       libmondo-devices-EXT.h libmondo-fifo-EXT.h \
    2121                       libmondo-files-EXT.h libmondo-fork-EXT.h \
    22                        libmondo-gui-EXT.h libmondo-filelist-EXT.h \
     22                       libmondo-filelist-EXT.h \
    2323                       libmondo-mountlist-EXT.h libmondo-raid-EXT.h  \
    2424                       libmondo-string-EXT.h libmondo-tools-EXT.h \
  • branches/stable/mondo/mondo/common/libmondo-archive.c

    r424 r501  
    179179#include "libmondo-devices-EXT.h"
    180180#include "libmondo-tools-EXT.h"
    181 #include "libmondo-gui-EXT.h"
     181#include "newt-specific-EXT.h"
    182182#include "libmondo-fork-EXT.h"
    183183#include "libmondo-files-EXT.h"
     
    186186#include "libmondo-verify-EXT.h"
    187187#include "libmondo-archive.h"
    188 #include "lib-common-externs.h"
    189188#include <sys/sem.h>
    190189#include <sys/types.h>
     
    16201619    log_to_screen("Archiving regular files");
    16211620    log_msg(5, "Go, Shorty. It's your birthday.");
    1622     open_progress_form("Backing up filesystem",
    1623                        "I am backing up your live filesystem now.",
    1624                        "Please wait. This may take a couple of hours.",
    1625                        "Working...",
     1621    open_progress_form(_("Backing up filesystem"),
     1622                       _("I am backing up your live filesystem now."),
     1623                       _("Please wait. This may take a couple of hours."),
     1624                       _("Working..."),
    16261625                       get_last_filelist_number(bkpinfo) + 1);
    16271626
     
    18491848    tmp3 = NULL;
    18501849    if (bkpinfo->backup_media_type == iso && bkpinfo->manual_cd_tray) {
    1851         popup_and_OK("Please insert new media and press Enter.");
     1850        popup_and_OK(_("Please insert new media and press Enter."));
    18521851    }
    18531852
     
    23502349    log_to_screen("Archiving regular files");
    23512350
    2352     open_progress_form("Backing up filesystem",
    2353                        "I am backing up your live filesystem now.",
    2354                        "Please wait. This may take a couple of hours.",
    2355                        "Working...",
     2351    open_progress_form(_("Backing up filesystem"),
     2352                       _("I am backing up your live filesystem now."),
     2353                       _("Please wait. This may take a couple of hours."),
     2354                       _("Working..."),
    23562355                       get_last_filelist_number(bkpinfo) + 1);
    23572356
  • branches/stable/mondo/mondo/common/libmondo-devices.c

    r497 r501  
    232232#include "libmondo-files-EXT.h"
    233233#include "libmondo-devices.h"
    234 #include "lib-common-externs.h"
    235234#include "libmondo-string-EXT.h"
    236235#include "libmondo-tools-EXT.h"
    237 #include "libmondo-gui-EXT.h"
     236#include "newt-specific-EXT.h"
    238237#include "libmondo-fork-EXT.h"
    239238#include "libmondo-stream-EXT.h"
  • branches/stable/mondo/mondo/common/libmondo-fifo.c

    r128 r501  
    178178    if (!res) {
    179179        bufsize++;
    180         sprintf(tmp, "Negotiated max buffer of %d MB ", bufsize);
     180        sprintf(tmp, _("Negotiated max buffer of %d MB "), bufsize);
    181181        log_to_screen(tmp);
    182182    } else {
     
    184184        res = 0;
    185185        log_to_screen
    186             ("Cannot negotiate a buffer of ANY size. Using dd instead.");
     186            (_("Cannot negotiate a buffer of ANY size. Using dd instead."));
    187187    }
    188188    if (direction == 'r') {
     
    220220    if (run_program_and_log_output(command, 1)) {
    221221        fres = NULL;
    222         log_to_screen("Failed to open tape streamer. Buffer error.");
    223     } else {
    224         log_to_screen("Buffer successfully started.");
     222        log_to_screen(_("Failed to open tape streamer. Buffer error."));
     223    } else {
     224        log_to_screen(_("Buffer successfully started."));
    225225    }
    226226
  • branches/stable/mondo/mondo/common/libmondo-filelist.c

    r497 r501  
    110110#include "my-stuff.h"
    111111#include "mondostructures.h"
    112 #include "lib-common-externs.h"
    113112#include "libmondo-filelist.h"
    114113#include "libmondo-string-EXT.h"
    115114#include "libmondo-files-EXT.h"
    116115#include "libmondo-fork-EXT.h"
    117 #include "libmondo-gui-EXT.h"
     116#include "newt-specific-EXT.h"
    118117#include "libmondo-tools-EXT.h"
    119118
  • branches/stable/mondo/mondo/common/libmondo-files.c

    r497 r501  
    8888#include "libmondo-files.h"
    8989
    90 #include "lib-common-externs.h"
    91 
    9290#include "libmondo-tools-EXT.h"
    93 #include "libmondo-gui-EXT.h"
     91#include "newt-specific-EXT.h"
    9492#include "libmondo-devices-EXT.h"
    9593#include "libmondo-fork-EXT.h"
  • branches/stable/mondo/mondo/common/libmondo-fork.c

    r497 r501  
    106106#include "libmondo-fork.h"
    107107#include "libmondo-string-EXT.h"
    108 #include "libmondo-gui-EXT.h"
     108#include "newt-specific-EXT.h"
    109109#include "libmondo-files-EXT.h"
    110110#include "libmondo-tools-EXT.h"
    111 #include "lib-common-externs.h"
    112111
    113112/*@unused@*/
  • branches/stable/mondo/mondo/common/libmondo-mountlist.c

    r497 r501  
    5353#include "mondostructures.h"
    5454#include "libmondo-mountlist.h"
    55 #include "lib-common-externs.h"
    5655#include "libmondo-raid-EXT.h"
    5756#include "libmondo-devices-EXT.h"
    5857#include "libmondo-tools-EXT.h"
    5958#include "libmondo-string-EXT.h"
    60 #include "libmondo-gui-EXT.h"
     59#include "newt-specific-EXT.h"
    6160
    6261/*@unused@*/
  • branches/stable/mondo/mondo/common/libmondo-raid.c

    r497 r501  
    4242#include "my-stuff.h"
    4343#include "mondostructures.h"
    44 #include "libmondo-gui-EXT.h"
     44#include "newt-specific-EXT.h"
    4545#include "libmondo-files-EXT.h"
    4646#include "libmondo-tools-EXT.h"
    4747#include "libmondo-string-EXT.h"
    48 #include "lib-common-externs.h"
    4948#include "libmondo-raid.h"
    5049
  • branches/stable/mondo/mondo/common/libmondo-stream.c

    r497 r501  
    100100#include "mondostructures.h"
    101101#include "libmondo-devices.h"
    102 #include "lib-common-externs.h"
    103102#include "libmondo-stream.h"
    104103#include "libmondo-string-EXT.h"
    105104#include "libmondo-files-EXT.h"
    106 #include "libmondo-gui-EXT.h"
     105#include "newt-specific-EXT.h"
    107106#include "libmondo-fork-EXT.h"
    108107#include "libmondo-tools-EXT.h"
  • branches/stable/mondo/mondo/common/libmondo-string.c

    r497 r501  
    6565#include "mondostructures.h"
    6666#include "libmondo-string.h"
    67 #include "lib-common-externs.h"
    6867#include "libmondo-files-EXT.h"
    69 #include "libmondo-gui-EXT.h"
     68#include "newt-specific-EXT.h"
    7069#include "libmondo-tools-EXT.h"
    7170
  • branches/stable/mondo/mondo/common/libmondo-tools.c

    r497 r501  
    174174#include "my-stuff.h"
    175175#include "mondostructures.h"
    176 #include "lib-common-externs.h"
    177176#include "libmondo-tools.h"
    178 #include "libmondo-gui-EXT.h"
     177#include "newt-specific-EXT.h"
    179178#include "libmondo-files-EXT.h"
    180179#include "libmondo-fork-EXT.h"
  • branches/stable/mondo/mondo/common/libmondo-verify.c

    r497 r501  
    103103#include "mondostructures.h"
    104104#include "libmondo-verify.h"
    105 #include "libmondo-gui-EXT.h"
     105#include "newt-specific-EXT.h"
    106106#include "libmondo-files-EXT.h"
    107107#include "libmondo-fork-EXT.h"
     
    110110#include "libmondo-devices-EXT.h"
    111111#include "libmondo-tools-EXT.h"
    112 #include "lib-common-externs.h"
    113112
    114113/*@unused@*/
  • branches/stable/mondo/mondo/common/libmondo.h

    r128 r501  
    99#include "libmondo-files-EXT.h"
    1010#include "libmondo-fork-EXT.h"
    11 #include "libmondo-gui-EXT.h"
     11#include "newt-specific-EXT.h"
    1212#include "libmondo-mountlist-EXT.h"
    1313#include "libmondo-raid-EXT.h"
  • branches/stable/mondo/mondo/common/newt-specific.c

    r497 r501  
    118118#include "libmondo-tools-EXT.h"
    119119#include "libmondo-fork-EXT.h"
    120 #include "libmondo-gui-EXT.h"
    121 #include "lib-common-externs.h"
     120#include "newt-specific-EXT.h"
    122121
    123122/*@unused@*/
Note: See TracChangeset for help on using the changeset viewer.