Changeset 507 in MondoRescue for trunk/mondo/mondo/common/libmondo-fork.c


Ignore:
Timestamp:
Apr 30, 2006, 2:04:16 AM (18 years ago)
Author:
bcornec
Message:

merge -r489:506 $SVN_M/branches/stable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/mondo/mondo/common/libmondo-fork.c

    r412 r507  
    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@*/
     
    159158}
    160159
    161 #define MONDO_POPMSG  "Your PC will not retract the CD tray automatically. Please call mondoarchive with the -m (manual CD tray) flag."
     160#define MONDO_POPMSG  _("Your PC will not retract the CD tray automatically. Please call mondoarchive with the -m (manual CD tray) flag.")
    162161
    163162/**
     
    223222
    224223    log_to_screen
    225         ("Please be patient. Do not be alarmed by on-screen inactivity.");
     224        (_("Please be patient. Do not be alarmed by on-screen inactivity."));
    226225    log_msg(4, "Calling open_evalcall_form() with what_i_am_doing='%s'",
    227226            what_i_am_doing);
     
    252251        if (retval) {
    253252            log_msg(2, "Basic call '%s' returned an error.", basic_call);
    254             popup_and_OK("Press ENTER to continue.");
     253            popup_and_OK(_("Press ENTER to continue."));
    255254            popup_and_OK
    256                 ("mkisofs and/or cdrecord returned an error. CD was not created");
     255                (_("mkisofs and/or cdrecord returned an error. CD was not created"));
    257256        }
    258257    }
     
    426425    if (!(fin = popen(command, "r"))) {
    427426        log_OS_error("Unable to popen-in command");
    428         asprintf(&tmp, "Failed utterly to call '%s'", command);
     427        asprintf(&tmp, _("Failed utterly to call '%s'", command));
    429428        log_to_screen(tmp);
    430429        paranoid_free(tmp);
     
    436435
    437436    if (!does_file_exist(lockfile)) {
    438         log_to_screen("Waiting for external binary to start");
     437        log_to_screen(_("Waiting for external binary to start"));
    439438        for (i = 0; i < 60 && !does_file_exist(lockfile); sleep(1), i++) {
    440439            log_msg(3, "Waiting for lockfile %s to exist", lockfile);
     
    687686        if (pcno <= 5 && last_pcno > 40) {
    688687            close_evalcall_form();
    689             open_evalcall_form("Verifying...");
     688            open_evalcall_form("_(Verifying..."));
    690689        }
    691690        last_pcno = pcno;
     
    764763        if (pcno <= 5 && last_pcno >= 40) {
    765764            close_evalcall_form();
    766             open_evalcall_form("Verifying...");
     765            open_evalcall_form(_("Verifying..."));
    767766        }
    768767        if (counter++ >= 5) {
Note: See TracChangeset for help on using the changeset viewer.