- Timestamp:
- May 5, 2006, 1:31:18 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/mondo/mondorestore/mondo-rstr-compare.c
r501 r522 252 252 } 253 253 mvaddstr_and_log_it(g_currentY, 0, 254 "Comparing large files ");254 _("Comparing large files ")); 255 255 open_progress_form(_("Comparing large files"), 256 256 _("I am now comparing the large files"), … … 268 268 return (0); 269 269 if (retval) { 270 mvaddstr_and_log_it(g_currentY++, 74, "Errors.");271 } else { 272 mvaddstr_and_log_it(g_currentY++, 74, "Done.");270 mvaddstr_and_log_it(g_currentY++, 74, _("Errors.")); 271 } else { 272 mvaddstr_and_log_it(g_currentY++, 74, _("Done.")); 273 273 } 274 274 return (retval); … … 428 428 429 429 assert(bkpinfo != NULL); 430 mvaddstr_and_log_it(g_currentY, 0, "Comparing archives");430 mvaddstr_and_log_it(g_currentY, 0, _("Comparing archives")); 431 431 read_cfg_var(g_mondo_cfg_file, "last-filelist-number", tmp); 432 432 … … 488 488 close_progress_form(); 489 489 if (retval) { 490 mvaddstr_and_log_it(g_currentY++, 74, "Errors.");491 } else { 492 mvaddstr_and_log_it(g_currentY++, 74, "Done.");490 mvaddstr_and_log_it(g_currentY++, 74, _("Errors.")); 491 } else { 492 mvaddstr_and_log_it(g_currentY++, 74, _("Done.")); 493 493 } 494 494 paranoid_free(tarball_fname); … … 607 607 read_cfg_file_into_bkpinfo(g_mondo_cfg_file, bkpinfo); 608 608 g_current_media_number = 1; 609 mvaddstr_and_log_it(1, 30, "Comparing Automatically");609 mvaddstr_and_log_it(1, 30, _("Comparing Automatically")); 610 610 iamhere("Pre-MAD"); 611 611 retval = mount_all_devices(mountlist, FALSE); … … 626 626 mvaddstr_and_log_it(g_currentY++, 627 627 0, 628 "Warning - differences found during the compare phase");628 _("Warning - differences found during the compare phase")); 629 629 } 630 630 … … 633 633 if (count_lines_in_file("/tmp/changed.txt") > 0) { 634 634 mvaddstr_and_log_it(g_currentY++, 0, 635 "Differences found while files were being compared.");635 _("Differences found while files were being compared.")); 636 636 streamline_changes_file("/tmp/changed.files", "/tmp/changed.txt"); 637 637 if (count_lines_in_file("/tmp/changed.files") <= 0) { 638 638 mvaddstr_and_log_it(g_currentY++, 0, 639 "...but they were logfiles and temporary files. Your archives are fine.");639 _("...but they were logfiles and temporary files. Your archives are fine.")); 640 640 log_to_screen 641 641 (_("The differences were logfiles and temporary files. Your archives are fine.")); … … 694 694 run_program_and_log_output(command, FALSE); 695 695 mvaddstr_and_log_it(g_currentY, 696 0, "Verifying archives against filesystem");696 0, _("Verifying archives against filesystem")); 697 697 698 698 if (bkpinfo->disaster_recovery … … 714 714 } 715 715 716 mvaddstr_and_log_it(g_currentY++, 74, "Done.");716 mvaddstr_and_log_it(g_currentY++, 74, _("Done.")); 717 717 paranoid_free(dir); 718 718 paranoid_free(command); … … 751 751 run_program_and_log_output(command, FALSE); 752 752 mvaddstr_and_log_it(g_currentY, 753 0, "Verifying archives against filesystem");753 0, _("Verifying archives against filesystem")); 754 754 res = verify_tape_backups(bkpinfo); 755 755 chdir(dir); 756 756 if (res) { 757 mvaddstr_and_log_it(g_currentY++, 74, "Failed.");758 } else { 759 mvaddstr_and_log_it(g_currentY++, 74, "Done.");757 mvaddstr_and_log_it(g_currentY++, 74, _("Failed.")); 758 } else { 759 mvaddstr_and_log_it(g_currentY++, 74, _("Done.")); 760 760 } 761 761 paranoid_free(dir);
Note:
See TracChangeset
for help on using the changeset viewer.