Changeset 501 in MondoRescue


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
Files:
1 added
10 deleted
21 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/configure.in

    r500 r501  
    123123AC_CHECK_FUNCS([bzero getcwd memmove memset mkdir mkfifo setenv strcasecmp strchr strerror strrchr strstr])
    124124
    125 AC_OUTPUT([Makefile mondo/Makefile mondo/common/Makefile mondo/mondoarchive/Makefile mondo/mondorestore/Makefile mondo/restore-scripts/Makefile mondo/restore-scripts/mondo/Makefile mondo/restore-scripts/usr/Makefile mondo/restore-scripts/usr/bin/Makefile mondo/post-nuke.sample/Makefile mondo/post-nuke.sample/usr/Makefile mondo/post-nuke.sample/usr/bin/Makefile m4/Makefile po/Makefile.in])
     125AC_OUTPUT([Makefile mondo/Makefile mondo/common/Makefile mondo/mondoarchive/Makefile mondo/mondorestore/Makefile mondo/restore-scripts/Makefile mondo/restore-scripts/mondo/Makefile mondo/restore-scripts/usr/Makefile mondo/restore-scripts/usr/bin/Makefile mondo/post-nuke.sample/Makefile mondo/post-nuke.sample/usr/Makefile mondo/post-nuke.sample/usr/bin/Makefile po/Makefile.in])
  • 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@*/
  • branches/stable/mondo/mondo/mondoarchive/mondo-cli.c

    r477 r501  
    378378    if (i == 0) {
    379379        retval++;
    380         log_to_screen("You must specify the media type\n");
     380        log_to_screen(_("You must specify the media type\n"));
    381381    }
    382382    if (i > 1) {
    383383        retval++;
    384         log_to_screen("Please specify only one media type\n");
     384        log_to_screen(_("Please specify only one media type\n"));
    385385    }
    386386    if (flag_set['K']) {
     
    392392    if (flag_set['L'] && flag_set['0']) {
    393393        retval++;
    394         log_to_screen("You cannot have 'no compression' _and_ LZOP.\n");
     394        log_to_screen(_("You cannot have 'no compression' _and_ LZOP.\n"));
    395395    }
    396396    bkpinfo->backup_data = flag_set['O'];
    397397    bkpinfo->verify_data = flag_set['V'];
    398398    if (flag_set['I'] && !bkpinfo->backup_data) {
    399         log_to_screen("-I switch is ignored if just verifying");
     399        log_to_screen(_("-I switch is ignored if just verifying"));
    400400    }
    401401    if (flag_set['E'] && !bkpinfo->backup_data) {
    402         log_to_screen("-E switch is ignored if just verifying");
     402        log_to_screen(_("-E switch is ignored if just verifying"));
    403403    }
    404404
     
    428428        if (flag_set['f'] || flag_set['l']) {
    429429            log_to_screen
    430                 ("You don't need to specify bootloader or bootdevice");
     430                (_("You don't need to specify bootloader or bootdevice"));
    431431        }
    432432    }
     
    473473        if (bkpinfo->include_paths[0] == '-') {
    474474            retval++;
    475             log_to_screen("Please supply a sensible value with '-I'\n");
     475            log_to_screen(_("Please supply a sensible value with '-I'\n"));
    476476        }
    477477    }
     
    488488            retval++;
    489489            log_to_screen
    490                 ("Please do not use -J in combination with -I. If you want to make a list of files to backup, that's fine, use -J <filename> but please don't muddy the waters by combining -J with -I. Thanks. :-)");
     490                (_("Please do not use -J in combination with -I. If you want to make a list of files to backup, that's fine, use -J <filename> but please don't combine -J with -I. Thanks. :-)"));
    491491        }
    492492        bkpinfo->make_filelist = FALSE;
     
    506506        if (g_kernel_version >= 2.6 && !strstr(flag_val['d'], "/dev/")) {
    507507            log_to_screen
    508                 ("Linus says 2.6 has a broken ide-scsi module. Proceed at your own risk...");
     508                (_("Linus says 2.6 has a broken ide-scsi module. Proceed at your own risk..."));
    509509        }
    510510
     
    522522            if (!flag_set['L']) {
    523523                log_to_screen
    524                     ("You must use -L with -C. Therefore I am setting it for you.");
     524                    (_("You must use -L with -C. Therefore I am setting it for you."));
    525525                flag_set['L'] = 1;
    526526                flag_val['L'][0] = '\0';
     
    552552        flag_set['d'] = TRUE;
    553553        sprintf(tmp,
    554                 "You didn't specify a tape streamer device. I'm assuming %s",
     554                _("You didn't specify a tape streamer device. I'm assuming %s"),
    555555                flag_val['d']);
    556556        log_to_screen(tmp);
     
    567567            if (!find_dvd_device(flag_val['d'], FALSE)) {
    568568                flag_set['d'] = TRUE;
    569                 log_to_screen("I guess DVD drive is at %s", flag_val['d']);
     569                log_to_screen(_("I guess DVD drive is at %s", flag_val['d']));
    570570            }
    571571        }
     
    586586            strcat(flag_val['s'], "m");
    587587            log_to_screen
    588                 ("You did not specify a size (-s) for DVD. I'm guessing %s.",
     588                (_("You did not specify a size (-s) for DVD. I'm guessing %s."),
    589589                 flag_val['s']);
    590590            flag_set['s'] = 1;
     
    642642        if (strlen(bkpinfo->isodir) < 3) {
    643643            retval++;
    644             log_to_screen("NFS share is not mounted. Please mount it.\n");
     644            log_to_screen(_("NFS share is not mounted. Please mount it.\n"));
    645645        }
    646646        log_msg(3, "mount = %s", bkpinfo->nfs_mount);
     
    767767            retval++;
    768768            sprintf(tmp,
    769                     "You specified kernel '%s', which does not exist\n",
     769                    _("You specified kernel '%s', which does not exist\n"),
    770770                    bkpinfo->kernel_path);
    771771            log_to_screen(tmp);
     
    799799            retval++;
    800800            sprintf(tmp,
    801                     "Are you sure directory '%s' exists in remote dir '%s'?\nIf so, do you have rights to write to it?\n",
     801                    _("Are you sure directory '%s' exists in remote dir '%s'?\nIf so, do you have rights to write to it?\n"),
    802802                    bkpinfo->nfs_remote_dir, bkpinfo->nfs_mount);
    803803            log_to_screen(tmp);
     
    809809        if (g_kernel_version >= 2.6) {
    810810            if (popup_and_get_string
    811                 ("Device", "Please specify the device",
     811                (_("Device", "Please specify the device"),
    812812                 bkpinfo->media_device, MAX_STR_LEN / 4)) {
    813813                retval++;
    814                 log_to_screen("User opted to cancel.");
     814                log_to_screen(_("User opted to cancel."));
    815815            }
    816816        } else if (find_cdrw_device(bkpinfo->media_device)) {
    817817            retval++;
    818818            log_to_screen
    819                 ("Tried and failed to find CD-R[W] drive automatically.\n");
     819                (_("Tried and failed to find CD-R[W] drive automatically.\n"));
    820820        } else {
    821821            flag_set['d'] = TRUE;
     
    826826    if (!flag_set['d'] && !flag_set['n'] && !flag_set['C']) {
    827827        retval++;
    828         log_to_screen("Please specify the backup device/directory.\n");
     828        log_to_screen(_("Please specify the backup device/directory.\n"));
    829829        fatal_error
    830830            ("You didn't use -d to specify the backup device/directory.");
     
    847847            retval++;
    848848            log_to_screen
    849                 ("Please specify a tempdir which I can write to. :)");
     849                (_("Please specify a tempdir which I can write to. :)"));
    850850            fatal_error("I cannot write to the tempdir you specified.");
    851851        }
     
    855855            retval++;
    856856            log_to_screen
    857                 ("Please don't specify a SAMBA or VFAT or NFS tmpdir.");
     857                (_("Please don't specify a SAMBA or VFAT or NFS tmpdir."));
    858858            fatal_error("I cannot write to the tempdir you specified.");
    859859        }
     
    903903        i = which_boot_loader(tmp);
    904904        log_msg(3, "boot loader is %c, residing at %s", i, tmp);
    905         printf("boot loader is %c, residing at %s\n", i, tmp);
     905        printf(_("boot loader is %c, residing at %s\n"), i, tmp);
    906906        finish(0);
    907907    }
     
    911911            retval++;
    912912            log_to_screen
    913                 ("Please install LZOP. You can't use '-L' until you do.\n");
     913                (_("Please install LZOP. You can't use '-L' until you do.\n"));
    914914        }
    915915    }
     
    921921        bkpinfo->make_cd_use_lilo = TRUE;
    922922        log_to_screen
    923             ("Forcing you to use LILO. SuSE 9.0 (64-bit) has a broken mkfs.vfat binary.");
     923            (_("Forcing you to use LILO. SuSE 9.0 (64-bit) has a broken mkfs.vfat binary."));
    924924    }
    925925    if (flag_set['o']) {
     
    931931            bkpinfo->make_cd_use_lilo = TRUE;
    932932            log_to_screen
    933                 ("Your kernel appears not to support vfat filesystems. I am therefore");
    934             log_to_screen
    935                 ("using LILO instead of SYSLINUX as the CD/floppy's boot loader.");
     933                (_("Your kernel appears not to support vfat filesystems. I am therefore"));
     934            log_to_screen
     935                (_("using LILO instead of SYSLINUX as the CD/floppy's boot loader."));
    936936        }
    937937        if (run_program_and_log_output("which mkfs.vfat", FALSE)) {
     
    939939#ifdef __IA32__
    940940            log_to_screen
    941                 ("Your filesystem is missing 'mkfs.vfat', so I cannot use SYSLINUX as");
    942             log_to_screen
    943                 ("your boot loader. I shall therefore use LILO instead.");
     941                (_("Your filesystem is missing 'mkfs.vfat', so I cannot use SYSLINUX as"));
     942            log_to_screen
     943                (_("your boot loader. I shall therefore use LILO instead."));
    944944#endif
    945945#ifdef __IA64__
    946946            log_to_screen
    947                 ("Your filesystem is missing 'mkfs.vfat', so I cannot prepare the EFI");
    948             log_to_screen("environment correctly. Please install it.");
     947                (_("Your filesystem is missing 'mkfs.vfat', so I cannot prepare the EFI"));
     948            log_to_screen(_("environment correctly. Please install it."));
    949949            fatal_error("Aborting");
    950950#endif
     
    964964    if (i == 0) {
    965965        retval++;
    966         log_to_screen("Specify backup (-O), verify (-V) or both (-OV).\n");
     966        log_to_screen(_("Specify backup (-O), verify (-V) or both (-OV).\n"));
    967967    }
    968968
     
    10181018            if (flag_set[optopt]) {
    10191019                bad_switches = TRUE;
    1020                 sprintf(tmp, "Switch -%c previously defined as %s\n", opt,
     1020                sprintf(tmp, _("Switch -%c previously defined as %s\n"), opt,
    10211021                        flag_val[i]);
    10221022                log_to_screen(tmp);
     
    10281028                        optarg[--len] = '\0';
    10291029                        log_to_screen
    1030                             ("Warning - param '%s' should not have trailing slash!",
     1030                            (_("Warning - param '%s' should not have trailing slash!"),
    10311031                             optarg);
    10321032                    }
     
    10351035                            && flag_val[opt][0] != '/') {
    10361036                            sprintf(tmp,
    1037                                     "-%c flag --- must be absolute path --- '%s' isn't absolute",
     1037                                    _("-%c flag --- must be absolute path --- '%s' isn't absolute"),
    10381038                                    opt, flag_val[opt]);
    10391039                            log_to_screen(tmp);
     
    10481048    for (i = optind; i < argc; i++) {
    10491049        bad_switches = TRUE;
    1050         sprintf(tmp, "Invalid arg -- %s\n", argv[i]);
     1050        sprintf(tmp, _("Invalid arg -- %s\n"), argv[i]);
    10511051        log_to_screen(tmp);
    10521052    }
     
    10811081    case SIGINT:
    10821082        sprintf(tmp, "SIGINT");
    1083         strcpy(tmp2, "You interrupted me :-)");
     1083        strcpy(tmp2, _("You interrupted me :-)"));
    10841084        break;
    10851085    case SIGKILL:
    10861086        sprintf(tmp, "SIGKILL");
    10871087        strcpy(tmp2,
    1088                "I seriously have no clue how this signal even got to me. Something's wrong with your system.");
     1088               _("I seriously have no clue how this signal even got to me. Something's wrong with your system."));
    10891089        break;
    10901090    case SIGTERM:
    10911091        sprintf(tmp, "SIGTERM");
    1092         strcpy(tmp2, "Got terminate signal");
     1092        strcpy(tmp2, _("Got terminate signal"));
    10931093        break;
    10941094    case SIGHUP:
    10951095        sprintf(tmp, "SIGHUP");
    1096         strcpy(tmp2, "Hangup on line");
     1096        strcpy(tmp2, _("Hangup on line"));
    10971097        break;
    10981098    case SIGSEGV:
    10991099        sprintf(tmp, "SIGSEGV");
    11001100        strcpy(tmp2,
    1101                "Internal programming error. Please send a backtrace as well as your log.");
     1101               _("Internal programming error. Please send a backtrace as well as your log."));
    11021102        break;
    11031103    case SIGPIPE:
    11041104        sprintf(tmp, "SIGPIPE");
    1105         strcpy(tmp2, "Pipe was broken");
     1105        strcpy(tmp2, _("Pipe was broken"));
    11061106        break;
    11071107    case SIGABRT:
    11081108        sprintf(tmp, "SIGABRT");
    11091109        sprintf(tmp2,
    1110                 "Abort - probably failed assertion. I'm sleeping for a few seconds so you can read the message.");
     1110                _("Abort - probably failed assertion. I'm sleeping for a few seconds so you can read the message."));
    11111111        break;
    11121112    default:
    1113         sprintf(tmp, "(Unknown)");
    1114     }
    1115 
    1116     strcat(tmp, " signal received from OS");
     1113        sprintf(tmp, _("(Unknown)"));
     1114    }
     1115
     1116    strcat(tmp, _(" signal received from OS"));
    11171117    log_to_screen(tmp);
    11181118    log_to_screen(tmp2);
  • branches/stable/mondo/mondo/mondorestore/mondo-rstr-compare.c

    r277 r501  
    135135    if (!(fin = fopen(slice_fname(bigfileno, 0, ARCHIVES_PATH, ""), "r"))) {
    136136        sprintf(tmp_ptr,
    137                 "Cannot open bigfile %ld (%s)'s info file",
     137                _("Cannot open bigfile %ld (%s)'s info file"),
    138138                bigfileno + 1, bigfile_fname_ptr);
    139139        log_to_screen(tmp_ptr);
     
    149149    log_msg(2, "biggiestruct.checksum = %s", biggiestruct.checksum);
    150150
    151     sprintf(tmp_ptr, "Comparing %s", bigfile_fname_ptr);
     151    sprintf(tmp_ptr, _("Comparing %s"), bigfile_fname_ptr);
    152152
    153153    if (!g_text_mode) {
     
    253253    mvaddstr_and_log_it(g_currentY, 0,
    254254                        "Comparing large files                                                  ");
    255     open_progress_form("Comparing large files",
    256                        "I am now comparing the large files",
    257                        "against the filesystem. Please wait.", "",
     255    open_progress_form(_("Comparing large files"),
     256                       _("I am now comparing the large files"),
     257                       _("against the filesystem. Please wait."), "",
    258258                       noof_biggiefiles);
    259259    for (bigfileno = 0; bigfileno < noof_biggiefiles; bigfileno++) {
     
    432432
    433433    max_val = atol(tmp);
    434     sprintf(progress_str, "Comparing with %s #%d ",
     434    sprintf(progress_str, _("Comparing with %s #%d "),
    435435            media_descriptor_string(bkpinfo->backup_media_type),
    436436            g_current_media_number);
    437437
    438     open_progress_form("Comparing files",
    439                        "Comparing tarballs against filesystem.",
    440                        "Please wait. This may take some time.",
     438    open_progress_form(_("Comparing files"),
     439                       _("Comparing tarballs against filesystem."),
     440                       _("Please wait. This may take some time."),
    441441                       progress_str, max_val);
    442442
     
    475475            log_msg(2, "OK, I think it's time for another CD...");
    476476            g_current_media_number++;
    477             sprintf(progress_str, "Comparing with %s #%d ",
     477            sprintf(progress_str, _("Comparing with %s #%d "),
    478478                    media_descriptor_string(bkpinfo->backup_media_type),
    479479                    g_current_media_number);
     
    541541    noof_changed_files = count_lines_in_file("/tmp/changed.txt");
    542542    if (noof_changed_files) {
    543         sprintf(tmp, "%ld files do not match the backup            ",
     543        sprintf(tmp, _("%ld files do not match the backup            "),
    544544                noof_changed_files);
    545545        //      mvaddstr_and_log_it( g_currentY++, 0, tmp );
     
    548548        paranoid_system(command);
    549549    } else {
    550         sprintf(tmp, "All files match the backup                     ");
     550        sprintf(tmp, _("All files match the backup                     "));
    551551        mvaddstr_and_log_it(g_currentY++, 0, tmp);
    552552        log_to_screen(tmp);
     
    598598    while (get_cfg_file_from_archive(bkpinfo)) {
    599599        if (!ask_me_yes_or_no
    600             ("Failed to find config file/archives. Choose another source?"))
     600            (_("Failed to find config file/archives. Choose another source?")))
    601601        {
    602602            fatal_error("Unable to find config file/archives. Aborting.");
     
    639639                                "...but they were logfiles and temporary files. Your archives are fine.");
    640640            log_to_screen
    641                 ("The differences were logfiles and temporary files. Your archives are fine.");
     641                (_("The differences were logfiles and temporary files. Your archives are fine."));
    642642        } else {
    643643            q = count_lines_in_file("/tmp/changed.files");
    644             sprintf(tmp, "%ld significant difference%s found.", q,
     644            sprintf(tmp, _("%ld significant difference%s found."), q,
    645645                    (q != 1) ? "s" : "");
    646646            mvaddstr_and_log_it(g_currentY++, 0, tmp);
     
    648648
    649649            strcpy(tmp,
    650                    "Type 'less /tmp/changed.files' for a list of non-matching files");
     650                   _("Type 'less /tmp/changed.files' for a list of non-matching files"));
    651651            mvaddstr_and_log_it(g_currentY++, 0, tmp);
    652652            log_to_screen(tmp);
     
    658658    } else {
    659659        log_to_screen
    660             ("No significant differences were found. Your backup is perfect.");
     660            (_("No significant differences were found. Your backup is perfect."));
    661661    }
    662662    kill_petris();
  • branches/stable/mondo/mondo/mondorestore/mondo-rstr-newt.h

    r128 r501  
    2525#endif /*__FreeBSD__*/
    2626
    27 #define NO_FLAWS_DETECTED "No flaws detected in mountlist at this time. Hit 'OK' to proceed."
     27#define NO_FLAWS_DETECTED _("No flaws detected in mountlist at this time. Hit 'OK' to proceed.")
    2828
    2929
  • branches/stable/mondo/po/POTFILES.in

    r497 r501  
    1 ./config.h
    2 ./mondo/common/config.h
    3 ./mondo/common/crcttt.h
    4 ./mondo/common/lib-common-externs.h
    51./mondo/common/libmondo-archive.c
    6 ./mondo/common/libmondo-archive-EXT.h
    7 ./mondo/common/libmondo-archive.h
    82./mondo/common/libmondo-devices.c
    9 ./mondo/common/libmondo-devices-EXT.h
    10 ./mondo/common/libmondo-devices.h
    113./mondo/common/libmondo-fifo.c
    12 ./mondo/common/libmondo-fifo-EXT.h
    13 ./mondo/common/libmondo-fifo.h
    144./mondo/common/libmondo-filelist.c
    15 ./mondo/common/libmondo-filelist-EXT.h
    16 ./mondo/common/libmondo-filelist.h
    175./mondo/common/libmondo-files.c
    18 ./mondo/common/libmondo-files-EXT.h
    19 ./mondo/common/libmondo-files.h
    206./mondo/common/libmondo-fork.c
    21 ./mondo/common/libmondo-fork-EXT.h
    22 ./mondo/common/libmondo-fork.h
    23 ./mondo/common/libmondo-gui.c
    24 ./mondo/common/libmondo-gui-EXT.h
    25 ./mondo/common/libmondo-gui.h
    26 ./mondo/common/libmondo.h
    277./mondo/common/libmondo-mountlist.c
    28 ./mondo/common/libmondo-mountlist-EXT.h
    29 ./mondo/common/libmondo-mountlist.h
    308./mondo/common/libmondo-raid.c
    31 ./mondo/common/libmondo-raid-EXT.h
    32 ./mondo/common/libmondo-raid.h
    339./mondo/common/libmondo-stream.c
    34 ./mondo/common/libmondo-stream-EXT.h
    35 ./mondo/common/libmondo-stream.h
    3610./mondo/common/libmondo-string.c
    37 ./mondo/common/libmondo-string-EXT.h
    38 ./mondo/common/libmondo-string.h
    3911./mondo/common/libmondo-tools.c
    40 ./mondo/common/libmondo-tools-EXT.h
    41 ./mondo/common/libmondo-tools.h
    4212./mondo/common/libmondo-verify.c
    43 ./mondo/common/libmondo-verify-EXT.h
    44 ./mondo/common/libmondo-verify.h
    45 ./mondo/common/mondostructures.h
    4613./mondo/common/my-stuff.h
    4714./mondo/common/newt-specific.c
    48 ./mondo/common/newt-specific-EXT.h
    49 ./mondo/common/newt-specific.h
    50 ./mondo/common/X-specific.c
    51 ./mondo/common/X-specific-EXT.h
    52 ./mondo/common/X-specific.h
    5315./mondo/mondoarchive/main.c
    5416./mondo/mondoarchive/mondo-cli.c
    55 ./mondo/mondoarchive/mondo-cli-EXT.h
    56 ./mondo/mondoarchive/mondo-cli.h
    5717./mondo/mondorestore/mondo-prep.c
    58 ./mondo/mondorestore/mondoprep.h
    5918./mondo/mondorestore/mondo-restore.c
    60 ./mondo/mondorestore/mondo-restore-EXT.h
    61 ./mondo/mondorestore/mondo-restore.h
    6219./mondo/mondorestore/mondo-rstr-compare.c
    63 ./mondo/mondorestore/mondo-rstr-compare-EXT.h
    64 ./mondo/mondorestore/mondo-rstr-compare.h
    6520./mondo/mondorestore/mondo-rstr-newt.c
    6621./mondo/mondorestore/mondo-rstr-newt.h
    6722./mondo/mondorestore/mondo-rstr-tools.c
    68 ./mondo/mondorestore/mondo-rstr-tools-EXT.h
    69 ./mondo/mondorestore/mondo-rstr-tools.h
    70 ./mondo/mondorestore/mr-externs.h
    71 ./mondo/xmondo/xmondobackup.h
    72 ./mondo/xmondo/xmondo.h
    73 ./mondo/xmondo/xmondorestore.h
  • branches/stable/mondo/po/fr.po

    r498 r501  
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: Mondo 2.06\n"
     9"Project-Id-Version: Mondo 2.0.7\n"
    1010"Report-Msgid-Bugs-To: \n"
    1111"POT-Creation-Date: 2006-04-24 18:04+0200\n"
Note: See TracChangeset for help on using the changeset viewer.