diff -ruN old/mc-4.5.32/Specfile new/mc-4.5.33/Specfile --- old/mc-4.5.32/Specfile Mon May 24 15:53:55 1999 +++ new/mc-4.5.33/Specfile Thu May 27 17:45:17 1999 @@ -1,5 +1,5 @@ # Note that this is NOT a relocatable package -%define ver 4.5.32 +%define ver 4.5.33 %define rel 1 %define prefix /usr @@ -73,7 +73,7 @@ # clean up this setuid problem for now -chmod 755 $RPM_BUILD_ROOT/usr/lib/mc/bin/cons.saver +chmod 755 $RPM_BUILD_ROOT%{prefix}/lib/mc/bin/cons.saver %clean rm -rf $RPM_BUILD_ROOT @@ -122,6 +122,10 @@ %config /etc/CORBA/servers/* %changelog +* Wed May 26 1999 Cody Russell +- chmod cons.saver at $RPM_BUILD_ROOT%{prefix}/lib rather than at + $RPM_BUILD_ROOT/usr/lib. We can now install to somewhere other than /usr. + * Sun Apr 18 1999 Gregory McLean - Updated the specfile, removed some kludges. diff -ruN old/mc-4.5.32/VERSION new/mc-4.5.33/VERSION --- old/mc-4.5.32/VERSION Mon May 24 15:53:55 1999 +++ new/mc-4.5.33/VERSION Thu May 27 17:45:17 1999 @@ -1 +1 @@ -#define VERSION "4.5.32" +#define VERSION "4.5.33" diff -ruN old/mc-4.5.32/configure new/mc-4.5.33/configure --- old/mc-4.5.32/configure Mon May 24 15:53:55 1999 +++ new/mc-4.5.33/configure Thu May 27 17:45:17 1999 @@ -586,7 +586,7 @@ PACKAGE=mc -VERSION=4.5.32 +VERSION=4.5.33 cat >> confdefs.h < + + * gpopup.c (panel_action_properties): Hanlde properly + gnome_dialog_run here. + + * gpopup2.c (handle_properties): ditto + + * gmain.c (gnome_check_super_user): Use dialog_run_and_close here. + + * gpopup.c (dicon_properties): Handle propery gnome_dialog_run + + * gdialogs.c (file_mask_dialog): Fix usage of gnome_dialog_run + here. Handle case == -1. + + * gcmd.c (gnome_select): Fix usage of gnome_dialog_run here + (handle case == -1) + + * gscreen.c (panel_fill_panel_icons): Add a hack to work around + gnome-libs/gnome-icon-list bug that did not reset the proper + values. A fix will be available in gnome-libs-1.0.10. + + Fixes bug #1338. + + * gcmd.c (gnome_close_panel): Remove filter_w + + * gscreen.c (x_filter_changed): Update nothing. + 1999-05-23 Miguel de Icaza * gnome-open-dialog.c (gnome_open_dialog_generate_tree_helper): diff -ruN old/mc-4.5.32/gnome/gcmd.c new/mc-4.5.33/gnome/gcmd.c --- old/mc-4.5.32/gnome/gcmd.c Mon May 24 15:53:58 1999 +++ new/mc-4.5.33/gnome/gcmd.c Thu May 27 17:45:28 1999 @@ -145,7 +145,6 @@ /* Remove the widgets from the dialog head */ remove_widget (h, panel->current_dir); - remove_widget (h, panel->filter_w); remove_widget (h, panel); /* Free our own internal stuff */ @@ -154,7 +153,6 @@ /* Kill the widgets */ destroy_widget (panel->current_dir); - destroy_widget (panel->filter_w); destroy_widget ((Widget *)panel); layout_panel_gone (panel); @@ -357,8 +355,9 @@ panel_set_sort_order (panel, sfn); break; case 1: - default: break; + default: + return; } gtk_widget_destroy (sort_box); } @@ -380,7 +379,8 @@ GtkWidget *entry; GtkWidget *label; gchar *retval = NULL; - + int destroy; + dlg = gnome_dialog_new (_("Enter name."), GNOME_STOCK_BUTTON_OK, GNOME_STOCK_BUTTON_CANCEL, NULL); gtk_window_set_position (GTK_WINDOW (dlg), GTK_WIN_POS_MOUSE); @@ -394,14 +394,20 @@ gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (dlg)->vbox), entry, FALSE, FALSE, 0); gtk_widget_show_all (GNOME_DIALOG (dlg)->vbox); + destroy = TRUE; switch (gnome_dialog_run (GNOME_DIALOG (dlg))) { + case -1: + destroy = FALSE; + break; case 0: retval = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry))); break; case 1: default: } - gtk_widget_destroy (dlg); + if (destroy) + gtk_widget_destroy (dlg); + return retval; } @@ -529,7 +535,8 @@ GtkWidget *hbox; gint i; gchar *row_data; - + int destroy; + data = g_new0 (ep_dlg_data, 1); data->setting_text = FALSE; data->selected = -1; @@ -578,6 +585,9 @@ gtk_box_pack_start (GTK_BOX (hbox), data->entry, TRUE, TRUE, 0); gtk_container_add (GTK_CONTAINER (frame), hbox); gtk_widget_show_all (GNOME_DIALOG (data->ep_dlg)->vbox); + + destroy = TRUE; + switch (gnome_dialog_run (GNOME_DIALOG (data->ep_dlg))) { case 0: gtk_widget_hide (data->ep_dlg); @@ -588,6 +598,10 @@ save_settings (GTK_CLIST (data->clist)); break; case 1: + break; + case -1: + destroy = FALSE; + break; default: } for (i = 0; i < GTK_CLIST (data->clist)->rows; i++) { @@ -595,7 +609,9 @@ if (row_data) g_free (row_data); } - gtk_widget_destroy (GTK_WIDGET (data->ep_dlg)); + + if (destroy) + gtk_widget_destroy (GTK_WIDGET (data->ep_dlg)); g_free (data); } @@ -703,9 +719,12 @@ gtk_label_set_text (GTK_LABEL (panel->status), panel->filter); gnome_entry_save_history (GNOME_ENTRY (entry)); - reread_cmd (); x_filter_changed (panel); + reread_cmd (); break; + + case -1: + return; } gtk_widget_destroy (filter_dlg); } @@ -817,6 +836,7 @@ GtkWidget *select_dialog; GtkWidget *entry; GtkWidget *label; + int run; select_dialog = gnome_dialog_new (_("Select File"), GNOME_STOCK_BUTTON_OK, GNOME_STOCK_BUTTON_CANCEL, NULL); @@ -838,11 +858,14 @@ gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (select_dialog)->vbox), entry, FALSE, FALSE, 0); gtk_widget_show_all (GNOME_DIALOG (select_dialog)->vbox); reg_exp = NULL; - if (gnome_dialog_run (GNOME_DIALOG (select_dialog)) == 0) { + run = gnome_dialog_run (GNOME_DIALOG (select_dialog)); + if (run == 0) { gtk_widget_hide (select_dialog); reg_exp = g_strdup (gtk_entry_get_text (GTK_ENTRY (gnome_entry_gtk_entry (GNOME_ENTRY (entry))))); } - gtk_widget_destroy (select_dialog); + if (run != -1) + gtk_widget_destroy (select_dialog); + if ((reg_exp == NULL) || (*reg_exp == '\000')) { g_free (reg_exp); return; diff -ruN old/mc-4.5.32/gnome/gdialogs.c new/mc-4.5.33/gnome/gdialogs.c --- old/mc-4.5.32/gnome/gdialogs.c Mon May 24 15:53:58 1999 +++ new/mc-4.5.33/gnome/gdialogs.c Thu May 27 17:45:28 1999 @@ -557,7 +557,8 @@ char *source_mask, *orig_mask, *dest_dir; const char *error; struct stat buf; - + int run; + g_return_val_if_fail (ctx != NULL, NULL); ctx->stable_symlinks = 0; @@ -665,11 +666,16 @@ gnome_dialog_close_hides (GNOME_DIALOG (fmd_win), TRUE); /* Off to the races!!! */ - if (gnome_dialog_run (GNOME_DIALOG (fmd_win)) == 1) { + run = gnome_dialog_run (GNOME_DIALOG (fmd_win)); + + if (run == 1) { gtk_widget_destroy (fmd_win); return NULL; } + if (run == -1) + return NULL; + dest_dir = gnome_file_entry_get_full_path(GNOME_FILE_ENTRY (fentry), FALSE); gtk_widget_destroy (fmd_win); easy_patterns = 1; @@ -1062,5 +1068,6 @@ *ret_new = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry2))); } - gtk_widget_destroy (dialog); + if (ret != -1) + gtk_widget_destroy (dialog); } diff -ruN old/mc-4.5.32/gnome/gmain.c new/mc-4.5.33/gnome/gmain.c --- old/mc-4.5.32/gnome/gmain.c Mon May 24 15:53:58 1999 +++ new/mc-4.5.33/gnome/gmain.c Thu May 27 17:45:28 1999 @@ -430,12 +430,6 @@ if (is_a_panel (dh->widget)){ WPanel *p = (WPanel *) dh->widget; - if (current_widget == p->filter_w){ - in = (WInput *) current_widget; - set_panel_filter_to (p, g_strdup (in->buffer)); - return MSG_HANDLED; - } - if (current_widget == p->current_dir){ WInput *in = p->current_dir; @@ -564,5 +558,5 @@ GNOME_MESSAGE_BOX_WARNING, GNOME_STOCK_BUTTON_OK, NULL); - gnome_dialog_run (GNOME_DIALOG (warning_dlg)); + gnome_dialog_run_and_close (GNOME_DIALOG (warning_dlg)); } diff -ruN old/mc-4.5.32/gnome/gpopup2.c new/mc-4.5.33/gnome/gpopup2.c --- old/mc-4.5.32/gnome/gpopup2.c Mon May 24 15:53:58 1999 +++ new/mc-4.5.33/gnome/gpopup2.c Thu May 27 17:45:28 1999 @@ -705,7 +705,8 @@ gint retval = 0; GtkWidget *dialog; gchar *full_name = NULL; - + int run; + full_name = get_full_filename (panel); dialog = gnome_file_property_dialog_new (full_name, (is_a_desktop_panel (panel) @@ -715,11 +716,14 @@ if (!is_a_desktop_panel (panel)) gnome_dialog_set_parent (GNOME_DIALOG (dialog), GTK_WINDOW (panel->xwindow)); - if (gnome_dialog_run (GNOME_DIALOG (dialog)) == 0) + run = gnome_dialog_run (GNOME_DIALOG (dialog)); + if (run == 0) retval = gnome_file_property_dialog_make_changes ( GNOME_FILE_PROPERTY_DIALOG (dialog)); - gtk_widget_destroy (dialog); + if (run != -1) + gtk_widget_destroy (dialog); + g_free (full_name); if (retval && !is_a_desktop_panel (panel)) reread_cmd (); diff -ruN old/mc-4.5.32/gnome/gscreen.c new/mc-4.5.33/gnome/gscreen.c --- old/mc-4.5.32/gnome/gscreen.c Mon May 24 15:53:59 1999 +++ new/mc-4.5.33/gnome/gscreen.c Thu May 27 17:45:29 1999 @@ -243,6 +243,18 @@ gnome_icon_list_freeze (icons); gnome_icon_list_clear (icons); + /* + * HACK_BEGIN: + * Temporary hack for pre-gnome-libs-1.0.10 + * + * Remove after wildely deployed + */ + icons->last_selected = 0; + icons->last_clicked = 0; + /* + * HACK_END: + */ + for (i = 0; i < top; i++){ file_entry *fe = &panel->dir.list [i]; int p; @@ -366,8 +378,6 @@ void x_filter_changed (WPanel *panel) { - assign_text (panel->filter_w, panel->filter ? panel->filter : ""); - update_input (panel->filter_w, 1); } void @@ -1837,54 +1847,6 @@ } } -static GtkWidget * -panel_create_filter (Dlg_head *h, WPanel *panel, void **filter_w) -{ - GtkWidget *fhbox; - GtkWidget *button; - GtkWidget *arrow; - GtkWidget *label; - GtkWidget *ihbox; - WInput *in; - - fhbox = gtk_hbox_new (FALSE, 0); - - /* Filter popup button */ - - button = gtk_button_new (); - gtk_signal_connect (GTK_OBJECT (button), "clicked", - (GtkSignalFunc) show_filter_popup, - panel); - GTK_WIDGET_UNSET_FLAGS (button, GTK_CAN_FOCUS); - gtk_box_pack_start (GTK_BOX (fhbox), button, FALSE, FALSE, 0); - gtk_widget_show (button); - - ihbox = gtk_hbox_new (FALSE, 3); - gtk_container_add (GTK_CONTAINER (button), ihbox); - gtk_widget_show (ihbox); - - arrow = gtk_arrow_new (GTK_ARROW_DOWN, GTK_SHADOW_OUT); - gtk_box_pack_start (GTK_BOX (ihbox), arrow, TRUE, TRUE, 0); - gtk_widget_show (arrow); - - label = gtk_label_new (_("Filter")); - gtk_box_pack_start (GTK_BOX (ihbox), label, TRUE, TRUE, 0); - gtk_widget_show (label); - - /* Filter input line */ - - in = input_new (0, 0, 0, 10, "", "filter"); - add_widget (h, in); - - /* Force the creation of the gtk widget */ - send_message_to (h, (Widget *) in, WIDGET_INIT, 0); - *filter_w = in; - - gtk_box_pack_start (GTK_BOX (fhbox), GTK_WIDGET (in->widget.wdata), TRUE, TRUE, 0); - - return fhbox; -} - /* Signal handler for DTree's "directory_changed" signal */ static void panel_chdir (GtkDTree *dtree, char *path, WPanel *panel) @@ -2465,11 +2427,6 @@ gtk_paned_add1 (GTK_PANED (panel->pane), panel->tree_scrolled_window); gtk_signal_connect (GTK_OBJECT (panel->tree_scrolled_window), "size_allocate", GTK_SIGNAL_FUNC (tree_size_allocate), panel); - - /* - * Filter - */ - filter = panel_create_filter (h, panel, &panel->filter_w); /* * Current Working directory diff -ruN old/mc-4.5.32/mc.spec new/mc-4.5.33/mc.spec --- old/mc-4.5.32/mc.spec Mon May 24 15:53:55 1999 +++ new/mc-4.5.33/mc.spec Thu May 27 17:45:17 1999 @@ -1,5 +1,5 @@ # Note that this is NOT a relocatable package -%define ver 4.5.32 +%define ver 4.5.33 %define rel 1 %define prefix /usr @@ -73,7 +73,7 @@ # clean up this setuid problem for now -chmod 755 $RPM_BUILD_ROOT/usr/lib/mc/bin/cons.saver +chmod 755 $RPM_BUILD_ROOT%{prefix}/lib/mc/bin/cons.saver %clean rm -rf $RPM_BUILD_ROOT @@ -122,6 +122,10 @@ %config /etc/CORBA/servers/* %changelog +* Wed May 26 1999 Cody Russell +- chmod cons.saver at $RPM_BUILD_ROOT%{prefix}/lib rather than at + $RPM_BUILD_ROOT/usr/lib. We can now install to somewhere other than /usr. + * Sun Apr 18 1999 Gregory McLean - Updated the specfile, removed some kludges. diff -ruN old/mc-4.5.32/mc.spec.in new/mc-4.5.33/mc.spec.in --- old/mc-4.5.32/mc.spec.in Mon May 24 15:53:55 1999 +++ new/mc-4.5.33/mc.spec.in Thu May 27 17:45:17 1999 @@ -73,7 +73,7 @@ # clean up this setuid problem for now -chmod 755 $RPM_BUILD_ROOT/usr/lib/mc/bin/cons.saver +chmod 755 $RPM_BUILD_ROOT%{prefix}/lib/mc/bin/cons.saver %clean rm -rf $RPM_BUILD_ROOT @@ -122,6 +122,10 @@ %config /etc/CORBA/servers/* %changelog +* Wed May 26 1999 Cody Russell +- chmod cons.saver at $RPM_BUILD_ROOT%{prefix}/lib rather than at + $RPM_BUILD_ROOT/usr/lib. We can now install to somewhere other than /usr. + * Sun Apr 18 1999 Gregory McLean - Updated the specfile, removed some kludges. diff -ruN old/mc-4.5.32/po/cat-id-tbl.c new/mc-4.5.33/po/cat-id-tbl.c --- old/mc-4.5.32/po/cat-id-tbl.c Mon May 24 15:54:09 1999 +++ new/mc-4.5.33/po/cat-id-tbl.c Thu May 27 17:45:45 1999 @@ -359,198 +359,197 @@ {"%s bytes in %d file", 314}, {"%s bytes in %d files", 315}, {"", 316}, - {"Filter", 317}, - {"Back", 318}, - {"Go to the previously visited directory", 319}, - {"Up", 320}, - {"Go up a level in the directory heirarchy", 321}, - {"Forward", 322}, - {"Go to the next directory", 323}, - {"Rescan", 324}, - {"Rescan the current directory", 325}, - {"Home", 326}, - {"Go to your home directory", 327}, - {"Location:", 328}, - {"&Ok", 329}, - {"Offset 0x%08x", 330}, - {"Col %d", 331}, - {"%s bytes", 332}, - {"_Goto line", 333}, - {"Jump to a specified line number", 334}, - {"_Monitor file", 335}, - {"Monitor file growing", 336}, - {"Regexp search", 337}, - {"Regular expression search", 338}, - {"_Wrap", 339}, - {"Wrap the text", 340}, - {"_Parsed view", 341}, - {"_Formatted", 342}, - {"_Hex", 343}, - {"_Search", 344}, - {"ok", 345}, - {"cancel", 346}, - {"help", 347}, - {"yes", 348}, - {"no", 349}, - {"exit", 350}, - {"abort", 351}, - {"Could not open the /etc/fstab file", 352}, - {"Could not symlink %s to %s; will not have such a desktop device icon.", 353}, - {"CD-ROM %d", 354}, - {"Floppy %d", 355}, - {"Disk %d", 356}, - {"NFS dir %s", 357}, - {"Device %d", 358}, - {" Error ", 359}, - {" Failed trying to open file for reading: ", 360}, - {" Cannot get size/permissions info on file: ", 361}, - {" Not an ordinary file: ", 362}, - {" File is too large: ", 363}, + {"Back", 317}, + {"Go to the previously visited directory", 318}, + {"Up", 319}, + {"Go up a level in the directory heirarchy", 320}, + {"Forward", 321}, + {"Go to the next directory", 322}, + {"Rescan", 323}, + {"Rescan the current directory", 324}, + {"Home", 325}, + {"Go to your home directory", 326}, + {"Location:", 327}, + {"&Ok", 328}, + {"Offset 0x%08x", 329}, + {"Col %d", 330}, + {"%s bytes", 331}, + {"_Goto line", 332}, + {"Jump to a specified line number", 333}, + {"_Monitor file", 334}, + {"Monitor file growing", 335}, + {"Regexp search", 336}, + {"Regular expression search", 337}, + {"_Wrap", 338}, + {"Wrap the text", 339}, + {"_Parsed view", 340}, + {"_Formatted", 341}, + {"_Hex", 342}, + {"_Search", 343}, + {"ok", 344}, + {"cancel", 345}, + {"help", 346}, + {"yes", 347}, + {"no", 348}, + {"exit", 349}, + {"abort", 350}, + {"Could not open the /etc/fstab file", 351}, + {"Could not symlink %s to %s; will not have such a desktop device icon.", 352}, + {"CD-ROM %d", 353}, + {"Floppy %d", 354}, + {"Disk %d", 355}, + {"NFS dir %s", 356}, + {"Device %d", 357}, + {" Error ", 358}, + {" Failed trying to open file for reading: ", 359}, + {" Cannot get size/permissions info on file: ", 360}, + {" Not an ordinary file: ", 361}, + {" File is too large: ", 362}, {"\ \n\ - Increase edit.h:MAXBUF and recompile the editor. ", 364}, - {" Error allocating memory ", 365}, - {"Quick save ", 366}, - {"Safe save ", 367}, - {"Do backups -->", 368}, - {"&Cancel", 369}, - {"Extension:", 370}, - {" Edit Save Mode ", 371}, - {" Save As ", 372}, - {" Warning ", 373}, - {" A file already exists with this name. ", 374}, - {"Overwrite", 375}, - {"Cancel", 376}, - {" Save as ", 377}, - {" Error trying to save file. ", 378}, - {" Delete macro ", 379}, - {" Error trying to open temp file ", 380}, - {" Error trying to open macro file ", 381}, - {"key '%d 0': ", 382}, - {" Error trying to overwrite macro file ", 383}, - {" Macro ", 384}, - {" Press the macro's new hotkey: ", 385}, - {" Save macro ", 386}, - {" Delete Macro ", 387}, - {" Load macro ", 388}, - {" Confirm save file? : ", 389}, - {" Save file ", 390}, - {"Save", 391}, + Increase edit.h:MAXBUF and recompile the editor. ", 363}, + {" Error allocating memory ", 364}, + {"Quick save ", 365}, + {"Safe save ", 366}, + {"Do backups -->", 367}, + {"&Cancel", 368}, + {"Extension:", 369}, + {" Edit Save Mode ", 370}, + {" Save As ", 371}, + {" Warning ", 372}, + {" A file already exists with this name. ", 373}, + {"Overwrite", 374}, + {"Cancel", 375}, + {" Save as ", 376}, + {" Error trying to save file. ", 377}, + {" Delete macro ", 378}, + {" Error trying to open temp file ", 379}, + {" Error trying to open macro file ", 380}, + {"key '%d 0': ", 381}, + {" Error trying to overwrite macro file ", 382}, + {" Macro ", 383}, + {" Press the macro's new hotkey: ", 384}, + {" Save macro ", 385}, + {" Delete Macro ", 386}, + {" Load macro ", 387}, + {" Confirm save file? : ", 388}, + {" Save file ", 389}, + {"Save", 390}, {"\ Current text was modified without a file save. \n\ - Continue discards these changes. ", 392}, - {"Continue", 393}, - {" Load ", 394}, - {" Error trying to open file for reading ", 395}, - {" Block is large, you may not be able to undo this action. ", 396}, - {" Continue ", 397}, - {" Cancel ", 398}, - {"al&L", 399}, - {"&Skip", 400}, - {"&Replace", 401}, - {" Replace with: ", 402}, - {" Confirm replace ", 403}, - {"scanf &Expression", 404}, - {"replace &All", 405}, - {"pr&Ompt on replace", 406}, - {"&Backwards", 407}, - {"&Regular expression", 408}, - {"&Whole words only", 409}, - {"case &Sensitive", 410}, - {" Enter replacement argument order eg. 3,2,1,4 ", 411}, - {" Enter replacement string:", 412}, - {" Enter search string:", 413}, - {" Replace ", 414}, - {" Search ", 415}, - {" Enter search text : ", 416}, - {" Enter replace text : ", 417}, + Continue discards these changes. ", 391}, + {"Continue", 392}, + {" Load ", 393}, + {" Error trying to open file for reading ", 394}, + {" Block is large, you may not be able to undo this action. ", 395}, + {" Continue ", 396}, + {" Cancel ", 397}, + {"al&L", 398}, + {"&Skip", 399}, + {"&Replace", 400}, + {" Replace with: ", 401}, + {" Confirm replace ", 402}, + {"scanf &Expression", 403}, + {"replace &All", 404}, + {"pr&Ompt on replace", 405}, + {"&Backwards", 406}, + {"&Regular expression", 407}, + {"&Whole words only", 408}, + {"case &Sensitive", 409}, + {" Enter replacement argument order eg. 3,2,1,4 ", 410}, + {" Enter replacement string:", 411}, + {" Enter search string:", 412}, + {" Replace ", 413}, + {" Search ", 414}, + {" Enter search text : ", 415}, + {" Enter replace text : ", 416}, {"\ You can enter regexp substrings with %s (not \\1, \\2 like sed) then use \ -\"Enter...order\"", 418}, - {" Enter argument (or substring) order : ", 419}, +\"Enter...order\"", 417}, + {" Enter argument (or substring) order : ", 418}, {"\ Enter the order of replacement of your scanf format specifiers or regexp \ -substrings", 420}, - {" Whole words only ", 421}, - {" Case sensitive ", 422}, - {" Regular expression ", 423}, - {"See the regex man page for how to compose a regular expression", 424}, - {" Backwards ", 425}, - {"Warning: Searching backward can be slow", 426}, - {" Prompt on replace ", 427}, - {"Ask before making each replacement", 428}, - {" Replace all ", 429}, - {" Scanf expression ", 430}, - {"Allows entering of a C format string, see the scanf man page", 431}, - {"Begin search, Enter", 432}, - {"Abort this dialog, Esc", 433}, - {"Replace", 434}, - {"Skip", 435}, - {"Replace all", 436}, - {"\ - Invalid regular expression, or scanf expression with to many conversions ", 437}, - {" Error in replacement format string. ", 438}, - {" %ld replacements made. ", 439}, - {" Search string not found. ", 440}, - {" Quit ", 441}, +substrings", 419}, + {" Whole words only ", 420}, + {" Case sensitive ", 421}, + {" Regular expression ", 422}, + {"See the regex man page for how to compose a regular expression", 423}, + {" Backwards ", 424}, + {"Warning: Searching backward can be slow", 425}, + {" Prompt on replace ", 426}, + {"Ask before making each replacement", 427}, + {" Replace all ", 428}, + {" Scanf expression ", 429}, + {"Allows entering of a C format string, see the scanf man page", 430}, + {"Begin search, Enter", 431}, + {"Abort this dialog, Esc", 432}, + {"Replace", 433}, + {"Skip", 434}, + {"Replace all", 435}, + {"\ + Invalid regular expression, or scanf expression with to many conversions ", 436}, + {" Error in replacement format string. ", 437}, + {" %ld replacements made. ", 438}, + {" Search string not found. ", 439}, + {" Quit ", 440}, {"\ Current text was modified without a file save. \n\ - Save with exit? ", 442}, - {" File was modified, Save with exit? ", 443}, - {"Cancel quit", 444}, - {"&Yes", 445}, - {"&No", 446}, - {" &Cancel quit ", 447}, - {" &Yes ", 448}, - {" &No ", 449}, - {" Copy to clipboard ", 450}, - {" Unable to save to file. ", 451}, - {" Cut to clipboard ", 452}, - {" Goto line ", 453}, - {" Enter line: ", 454}, - {" Save Block ", 455}, - {" Insert File ", 456}, - {" Insert file ", 457}, - {" Error trying to insert file. ", 458}, - {" Sort block ", 459}, - {" You must first highlight a block of text. ", 460}, - {" Run Sort ", 461}, - {" Enter sort options (see manpage) separated by whitespace: ", 462}, - {" Sort ", 463}, - {" Error trying to execute sort command ", 464}, - {" Sort returned non-zero: ", 465}, - {" Process block ", 466}, - {" Error trying to stat file ", 467}, - {" Mail ", 468}, - {" Copies to", 469}, - {" Subject", 470}, - {" To", 471}, - {" mail -s -c ", 472}, - {"Intuitive", 473}, - {"Emacs", 474}, - {"None", 475}, - {"Dynamic paragraphing", 476}, - {"Type writer wrap", 477}, - {"Word wrap line length : ", 478}, - {"Tab spacing : ", 479}, - {"synta&X highlighting", 480}, - {"confir&M before saving", 481}, - {"fill tabs with &Spaces", 482}, - {"&Return does autoindent", 483}, - {"&Backspace through tabs", 484}, - {"&Fake half tabs", 485}, - {"Wrap mode", 486}, - {"Key emulation", 487}, - {" Editor options ", 488}, - {"Error initialising editor.\n", 489}, - {"Help", 490}, - {"Mark", 491}, - {"Replac", 492}, - {"PullDn", 493}, - {"Quit", 494}, - {" Word wrap ", 495}, - {" Enter line length, 0 for off: ", 496}, - {" About ", 497}, + Save with exit? ", 441}, + {" File was modified, Save with exit? ", 442}, + {"Cancel quit", 443}, + {"&Yes", 444}, + {"&No", 445}, + {" &Cancel quit ", 446}, + {" &Yes ", 447}, + {" &No ", 448}, + {" Copy to clipboard ", 449}, + {" Unable to save to file. ", 450}, + {" Cut to clipboard ", 451}, + {" Goto line ", 452}, + {" Enter line: ", 453}, + {" Save Block ", 454}, + {" Insert File ", 455}, + {" Insert file ", 456}, + {" Error trying to insert file. ", 457}, + {" Sort block ", 458}, + {" You must first highlight a block of text. ", 459}, + {" Run Sort ", 460}, + {" Enter sort options (see manpage) separated by whitespace: ", 461}, + {" Sort ", 462}, + {" Error trying to execute sort command ", 463}, + {" Sort returned non-zero: ", 464}, + {" Process block ", 465}, + {" Error trying to stat file ", 466}, + {" Mail ", 467}, + {" Copies to", 468}, + {" Subject", 469}, + {" To", 470}, + {" mail -s -c ", 471}, + {"Intuitive", 472}, + {"Emacs", 473}, + {"None", 474}, + {"Dynamic paragraphing", 475}, + {"Type writer wrap", 476}, + {"Word wrap line length : ", 477}, + {"Tab spacing : ", 478}, + {"synta&X highlighting", 479}, + {"confir&M before saving", 480}, + {"fill tabs with &Spaces", 481}, + {"&Return does autoindent", 482}, + {"&Backspace through tabs", 483}, + {"&Fake half tabs", 484}, + {"Wrap mode", 485}, + {"Key emulation", 486}, + {" Editor options ", 487}, + {"Error initialising editor.\n", 488}, + {"Help", 489}, + {"Mark", 490}, + {"Replac", 491}, + {"PullDn", 492}, + {"Quit", 493}, + {" Word wrap ", 494}, + {" Enter line length, 0 for off: ", 495}, + {" About ", 496}, {"\ \n\ Cooledit v2.1\n\ @@ -558,619 +557,619 @@ Copyright (C) 1996 the Free Software Foundation\n\ \n\ A user friendly text editor written\n\ - for the Midnight Commander.\n", 498}, - {"&Open/load... C-o", 499}, - {"&New C-n", 500}, - {"&Save F2", 501}, - {"save &As... F12", 502}, - {"&Insert file... F15", 503}, - {"copy to &File... C-f", 504}, - {"a&Bout... ", 505}, - {"&Quit F10", 506}, - {"&New C-x k", 507}, - {"copy to &File... ", 508}, - {"&Toggle Mark F3", 509}, - {"&Mark Columns S-F3", 510}, - {"toggle &Ins/overw Ins", 511}, - {"&Copy F5", 512}, - {"&Move F6", 513}, - {"&Delete F8", 514}, - {"&Undo C-u", 515}, - {"&Beginning C-PgUp", 516}, - {"&End C-PgDn", 517}, - {"&Search... F7", 518}, - {"search &Again F17", 519}, - {"&Replace... F4", 520}, - {"&Goto line... M-l", 521}, - {"insert &Literal... C-q", 522}, - {"&Refresh screen C-l", 523}, - {"&Start record macro C-r", 524}, - {"&Finish record macro... C-r", 525}, - {"&Execute macro... C-a, KEY", 526}, - {"delete macr&O... ", 527}, - {"insert &Date/time ", 528}, - {"format p&Aragraph M-p", 529}, - {"'ispell' s&Pell check C-p", 530}, - {"sor&T... M-t", 531}, - {"'indent' &C Formatter F19", 532}, - {"&Mail... ", 533}, - {"&Execute macro... C-x e, KEY", 534}, - {"'ispell' s&Pell check M-$", 535}, - {"&General... ", 536}, - {"&Save mode...", 537}, - {"&Layout...", 538}, - {" File ", 539}, - {" Edit ", 540}, - {" Sear/Repl ", 541}, - {" Command ", 542}, - {" Options ", 543}, - {"Open...\tC-o", 544}, - {"New\tC-n", 545}, - {"Save\tF2", 546}, - {"Save as...\tF12", 547}, - {"Insert file...\tF15", 548}, - {"Copy to file...\tC-f", 549}, - {"Disk operations", 550}, - {"Toggle mark\tF3", 551}, - {"Toggle mark columns\tC-b", 552}, - {"Toggle book mark\tC-M-Ins", 553}, - {"Previous book mark\tC-M-Up", 554}, - {"Next book mark\tC-M-Down", 555}, - {"Flush book marks", 556}, - {"Toggle insert/overwrite\tIns", 557}, - {"Copy block to cursor\tF5", 558}, - {"Move block to cursor\tF6", 559}, - {"Delete block\tF8/C-Del", 560}, - {"Copy block to clipbrd\tC-Ins", 561}, - {"Cut block to clipbrd\tS-Del", 562}, - {"Paste block from clipbrd\tS-Ins", 563}, - {"Selection history\tM-Ins", 564}, - {"Undo\tC-BackSpace", 565}, - {"Manipulating blocks of text", 566}, - {" Srch/Replce ", 567}, - {"Search...\tF7", 568}, - {"Search again\tF17", 569}, - {"Replace...\tF4", 570}, - {"Replace again\tF14", 571}, - {"Search for and replace text", 572}, - {"Goto line...\tM-l", 573}, - {"Start record macro\tC-r", 574}, - {"Finish record macro...\tC-r", 575}, - {"Execute macro...\tC-a, KEY", 576}, - {"Delete macro...\t", 577}, - {"Insert date/time\tC-d", 578}, - {"Format paragraph\tM-p", 579}, - {"Refresh display\tC-l", 580}, - {"Macros and internal commands", 581}, - {"&Dismiss", 582}, - {" Enter file name: ", 583}, - {"The Quick Brown Fox Jumps Over The Lazy Dog", 584}, - {"\ -gtkedit.c: HOME environment variable not set and no passwd entry - aborting\n", 585}, - {"Clear the edit buffer", 586}, - {"Insert File", 587}, - {"Insert text from a file", 588}, - {"Copy to file", 589}, - {"copy a block to a file", 590}, - {"Search/Replace", 591}, - {" Load syntax file ", 592}, - {" File access error ", 593}, - {" Error in file %s on line %d ", 594}, - {"&Set", 595}, - {"S&kip", 596}, - {"Set &all", 597}, - {"owner", 598}, - {"group", 599}, - {"other", 600}, - {"On", 601}, - {"Flag", 602}, - {"%6d of %d", 603}, - {" Chown advanced command ", 604}, + for the Midnight Commander.\n", 497}, + {"&Open/load... C-o", 498}, + {"&New C-n", 499}, + {"&Save F2", 500}, + {"save &As... F12", 501}, + {"&Insert file... F15", 502}, + {"copy to &File... C-f", 503}, + {"a&Bout... ", 504}, + {"&Quit F10", 505}, + {"&New C-x k", 506}, + {"copy to &File... ", 507}, + {"&Toggle Mark F3", 508}, + {"&Mark Columns S-F3", 509}, + {"toggle &Ins/overw Ins", 510}, + {"&Copy F5", 511}, + {"&Move F6", 512}, + {"&Delete F8", 513}, + {"&Undo C-u", 514}, + {"&Beginning C-PgUp", 515}, + {"&End C-PgDn", 516}, + {"&Search... F7", 517}, + {"search &Again F17", 518}, + {"&Replace... F4", 519}, + {"&Goto line... M-l", 520}, + {"insert &Literal... C-q", 521}, + {"&Refresh screen C-l", 522}, + {"&Start record macro C-r", 523}, + {"&Finish record macro... C-r", 524}, + {"&Execute macro... C-a, KEY", 525}, + {"delete macr&O... ", 526}, + {"insert &Date/time ", 527}, + {"format p&Aragraph M-p", 528}, + {"'ispell' s&Pell check C-p", 529}, + {"sor&T... M-t", 530}, + {"'indent' &C Formatter F19", 531}, + {"&Mail... ", 532}, + {"&Execute macro... C-x e, KEY", 533}, + {"'ispell' s&Pell check M-$", 534}, + {"&General... ", 535}, + {"&Save mode...", 536}, + {"&Layout...", 537}, + {" File ", 538}, + {" Edit ", 539}, + {" Sear/Repl ", 540}, + {" Command ", 541}, + {" Options ", 542}, + {"Open...\tC-o", 543}, + {"New\tC-n", 544}, + {"Save\tF2", 545}, + {"Save as...\tF12", 546}, + {"Insert file...\tF15", 547}, + {"Copy to file...\tC-f", 548}, + {"Disk operations", 549}, + {"Toggle mark\tF3", 550}, + {"Toggle mark columns\tC-b", 551}, + {"Toggle book mark\tC-M-Ins", 552}, + {"Previous book mark\tC-M-Up", 553}, + {"Next book mark\tC-M-Down", 554}, + {"Flush book marks", 555}, + {"Toggle insert/overwrite\tIns", 556}, + {"Copy block to cursor\tF5", 557}, + {"Move block to cursor\tF6", 558}, + {"Delete block\tF8/C-Del", 559}, + {"Copy block to clipbrd\tC-Ins", 560}, + {"Cut block to clipbrd\tS-Del", 561}, + {"Paste block from clipbrd\tS-Ins", 562}, + {"Selection history\tM-Ins", 563}, + {"Undo\tC-BackSpace", 564}, + {"Manipulating blocks of text", 565}, + {" Srch/Replce ", 566}, + {"Search...\tF7", 567}, + {"Search again\tF17", 568}, + {"Replace...\tF4", 569}, + {"Replace again\tF14", 570}, + {"Search for and replace text", 571}, + {"Goto line...\tM-l", 572}, + {"Start record macro\tC-r", 573}, + {"Finish record macro...\tC-r", 574}, + {"Execute macro...\tC-a, KEY", 575}, + {"Delete macro...\t", 576}, + {"Insert date/time\tC-d", 577}, + {"Format paragraph\tM-p", 578}, + {"Refresh display\tC-l", 579}, + {"Macros and internal commands", 580}, + {"&Dismiss", 581}, + {" Enter file name: ", 582}, + {"The Quick Brown Fox Jumps Over The Lazy Dog", 583}, + {"\ +gtkedit.c: HOME environment variable not set and no passwd entry - aborting\n", 584}, + {"Clear the edit buffer", 585}, + {"Insert File", 586}, + {"Insert text from a file", 587}, + {"Copy to file", 588}, + {"copy a block to a file", 589}, + {"Search/Replace", 590}, + {" Load syntax file ", 591}, + {" File access error ", 592}, + {" Error in file %s on line %d ", 593}, + {"&Set", 594}, + {"S&kip", 595}, + {"Set &all", 596}, + {"owner", 597}, + {"group", 598}, + {"other", 599}, + {"On", 600}, + {"Flag", 601}, + {"%6d of %d", 602}, + {" Chown advanced command ", 603}, {"\ Couldn't chmod \"%s\" \n\ - %s ", 605}, + %s ", 604}, {"\ Couldn't chown \"%s\" \n\ - %s ", 606}, - {" Oops... ", 607}, - {" I can't run the Advanced Chown command on an extfs ", 608}, - {" I can't run the Advanced Chown command on a tarfs ", 609}, - {"Background process:", 610}, - {" Background process error ", 611}, - {" Child died unexpectedly ", 612}, - {" Unknown error in child ", 613}, - {" Background protocol error ", 614}, + %s ", 605}, + {" Oops... ", 606}, + {" I can't run the Advanced Chown command on an extfs ", 607}, + {" I can't run the Advanced Chown command on a tarfs ", 608}, + {"Background process:", 609}, + {" Background process error ", 610}, + {" Child died unexpectedly ", 611}, + {" Unknown error in child ", 612}, + {" Background protocol error ", 613}, {"\ Background process sent us a request for more arguments \n\ - than we can handle. \n", 615}, - {" Listing mode ", 616}, - {"&Full file list", 617}, - {"&Brief file list", 618}, - {"&Long file list", 619}, - {"&User defined:", 620}, - {"&Icon view", 621}, - {"user &Mini status", 622}, - {"Listing mode", 623}, - {"&Reverse", 624}, - {"case sensi&tive", 625}, - {"Sort order", 626}, - {" confirm &Exit ", 627}, - {" confirm e&Xecute ", 628}, - {" confirm o&Verwrite ", 629}, - {" confirm &Delete ", 630}, - {" Confirmation ", 631}, - {"Full 8 bits output", 632}, - {"ISO 8859-1", 633}, - {"7 bits", 634}, - {"F&ull 8 bits input", 635}, - {" Display bits ", 636}, - {"&Always use ftp proxy", 637}, - {"sec", 638}, - {"ftpfs directory cache timeout:", 639}, - {"ftp anonymous password:", 640}, - {"Timeout for freeing VFSs:", 641}, - {" Virtual File System Setting ", 642}, - {"Quick cd", 643}, - {"cd", 644}, - {"Symbolic link", 645}, - {"Running ", 646}, - {"Stopped", 647}, - {"&Stop", 648}, - {"&Resume", 649}, - {"&Kill", 650}, - {"Background Jobs", 651}, - {"execute/search by others", 652}, - {"write by others", 653}, - {"read by others", 654}, - {"execute/search by group", 655}, - {"write by group", 656}, - {"read by group", 657}, - {"execute/search by owner", 658}, - {"write by owner", 659}, - {"read by owner", 660}, - {"sticky bit", 661}, - {"set group ID on execution", 662}, - {"set user ID on execution", 663}, - {"C&lear marked", 664}, - {"S&et marked", 665}, - {"&Marked all", 666}, - {"Permissions (Octal)", 667}, - {"Owner name", 668}, - {"Group name", 669}, - {" Chmod command ", 670}, - {" Permission ", 671}, - {"Use SPACE to change", 672}, - {"an option, ARROW KEYS", 673}, - {"to move between options", 674}, - {"and T or INS to mark", 675}, - {"Chmod command", 676}, - {" I can't run the Chmod command on an extfs ", 677}, - {" I can't run the Chmod command on a tarfs ", 678}, - {"Set &users", 679}, - {"Set &groups", 680}, - {" Name ", 681}, - {" Owner name ", 682}, - {" Group name ", 683}, - {" Size ", 684}, - {" Chown command ", 685}, - {" User name ", 686}, - {"", 687}, - {"", 688}, - {" I can't run the Chown command on an extfs ", 689}, - {" I can't run the Chown command on a tarfs ", 690}, - {" Can not fetch a local copy of %s ", 691}, - {" CD ", 692}, - {"Files tagged, want to cd?", 693}, - {"Could not change directory", 694}, - {" View file ", 695}, - {" Filename:", 696}, - {" Filtered view ", 697}, - {" Filter command and arguments:", 698}, - {"Create a new Directory", 699}, - {" Enter directory name:", 700}, - {" Filter ", 701}, - {" Set expression for filtering filenames", 702}, - {" Select ", 703}, - {" Unselect ", 704}, - {"Extension file edit", 705}, - {" Which extension file you want to edit? ", 706}, - {"&User", 707}, - {"&System Wide", 708}, - {"Menu file edit", 709}, - {" Which menu file will you edit? ", 710}, - {"&Local", 711}, - {"&Home", 712}, - {" Compare directories ", 713}, - {" Select compare method: ", 714}, - {"&Quick", 715}, - {"&Size only", 716}, - {"&Thorough", 717}, - {" Both panels should be on the listing view mode to use this command ", 718}, - {" The command history is empty ", 719}, - {" Command history ", 720}, + than we can handle. \n", 614}, + {" Listing mode ", 615}, + {"&Full file list", 616}, + {"&Brief file list", 617}, + {"&Long file list", 618}, + {"&User defined:", 619}, + {"&Icon view", 620}, + {"user &Mini status", 621}, + {"Listing mode", 622}, + {"&Reverse", 623}, + {"case sensi&tive", 624}, + {"Sort order", 625}, + {" confirm &Exit ", 626}, + {" confirm e&Xecute ", 627}, + {" confirm o&Verwrite ", 628}, + {" confirm &Delete ", 629}, + {" Confirmation ", 630}, + {"Full 8 bits output", 631}, + {"ISO 8859-1", 632}, + {"7 bits", 633}, + {"F&ull 8 bits input", 634}, + {" Display bits ", 635}, + {"&Always use ftp proxy", 636}, + {"sec", 637}, + {"ftpfs directory cache timeout:", 638}, + {"ftp anonymous password:", 639}, + {"Timeout for freeing VFSs:", 640}, + {" Virtual File System Setting ", 641}, + {"Quick cd", 642}, + {"cd", 643}, + {"Symbolic link", 644}, + {"Running ", 645}, + {"Stopped", 646}, + {"&Stop", 647}, + {"&Resume", 648}, + {"&Kill", 649}, + {"Background Jobs", 650}, + {"execute/search by others", 651}, + {"write by others", 652}, + {"read by others", 653}, + {"execute/search by group", 654}, + {"write by group", 655}, + {"read by group", 656}, + {"execute/search by owner", 657}, + {"write by owner", 658}, + {"read by owner", 659}, + {"sticky bit", 660}, + {"set group ID on execution", 661}, + {"set user ID on execution", 662}, + {"C&lear marked", 663}, + {"S&et marked", 664}, + {"&Marked all", 665}, + {"Permissions (Octal)", 666}, + {"Owner name", 667}, + {"Group name", 668}, + {" Chmod command ", 669}, + {" Permission ", 670}, + {"Use SPACE to change", 671}, + {"an option, ARROW KEYS", 672}, + {"to move between options", 673}, + {"and T or INS to mark", 674}, + {"Chmod command", 675}, + {" I can't run the Chmod command on an extfs ", 676}, + {" I can't run the Chmod command on a tarfs ", 677}, + {"Set &users", 678}, + {"Set &groups", 679}, + {" Name ", 680}, + {" Owner name ", 681}, + {" Group name ", 682}, + {" Size ", 683}, + {" Chown command ", 684}, + {" User name ", 685}, + {"", 686}, + {"", 687}, + {" I can't run the Chown command on an extfs ", 688}, + {" I can't run the Chown command on a tarfs ", 689}, + {" Can not fetch a local copy of %s ", 690}, + {" CD ", 691}, + {"Files tagged, want to cd?", 692}, + {"Could not change directory", 693}, + {" View file ", 694}, + {" Filename:", 695}, + {" Filtered view ", 696}, + {" Filter command and arguments:", 697}, + {"Create a new Directory", 698}, + {" Enter directory name:", 699}, + {" Filter ", 700}, + {" Set expression for filtering filenames", 701}, + {" Select ", 702}, + {" Unselect ", 703}, + {"Extension file edit", 704}, + {" Which extension file you want to edit? ", 705}, + {"&User", 706}, + {"&System Wide", 707}, + {"Menu file edit", 708}, + {" Which menu file will you edit? ", 709}, + {"&Local", 710}, + {"&Home", 711}, + {" Compare directories ", 712}, + {" Select compare method: ", 713}, + {"&Quick", 714}, + {"&Size only", 715}, + {"&Thorough", 716}, + {" Both panels should be on the listing view mode to use this command ", 717}, + {" The command history is empty ", 718}, + {" Command history ", 719}, {"\ Not an xterm or Linux console; \n\ - the panels cannot be toggled. ", 721}, - {"Type `exit' to return to the Midnight Commander", 722}, + the panels cannot be toggled. ", 720}, + {"Type `exit' to return to the Midnight Commander", 721}, {"\ Couldn't stat %s \n\ - %s ", 723}, - {" Link ", 724}, - {" to:", 725}, - {" link: %s ", 726}, - {" symlink: %s ", 727}, - {" Symlink `%s' points to: ", 728}, - {" Edit symlink ", 729}, - {" edit symlink, unable to remove %s: %s ", 730}, - {" edit symlink: %s ", 731}, - {" Link symbolically ", 732}, - {" Relative symlink ", 733}, - {" relative symlink: %s ", 734}, - {" Enter machine name (F1 for details): ", 735}, - {" Could not chdir to %s ", 736}, - {" Link to a remote machine ", 737}, - {" FTP to machine ", 738}, - {" Socket source routing setup ", 739}, - {" Enter host name to use as a source routing hop: ", 740}, - {" Host name ", 741}, - {" Error while looking up IP address ", 742}, - {" Undelete files on an ext2 file system ", 743}, + %s ", 722}, + {" Link ", 723}, + {" to:", 724}, + {" link: %s ", 725}, + {" symlink: %s ", 726}, + {" Symlink `%s' points to: ", 727}, + {" Edit symlink ", 728}, + {" edit symlink, unable to remove %s: %s ", 729}, + {" edit symlink: %s ", 730}, + {" Link symbolically ", 731}, + {" Relative symlink ", 732}, + {" relative symlink: %s ", 733}, + {" Enter machine name (F1 for details): ", 734}, + {" Could not chdir to %s ", 735}, + {" Link to a remote machine ", 736}, + {" FTP to machine ", 737}, + {" Socket source routing setup ", 738}, + {" Enter host name to use as a source routing hop: ", 739}, + {" Host name ", 740}, + {" Error while looking up IP address ", 741}, + {" Undelete files on an ext2 file system ", 742}, {"\ Enter device (without /dev/) to undelete\n\ - files on: (F1 for details)", 744}, - {" Setup saved to ~/", 745}, - {" Setup ", 746}, + files on: (F1 for details)", 743}, + {" Setup saved to ~/", 744}, + {" Setup ", 745}, {"\ Can't chdir to '%s' \n\ - %s ", 747}, - {" You can not execute commands on non-local filesystems", 748}, + %s ", 746}, + {" You can not execute commands on non-local filesystems", 747}, {"\ \n\ \n\ \n\ refresh stack underflow!\n\ \n\ -\n", 749}, - {"&Unsorted", 750}, - {"&Name", 751}, - {"&Extension", 752}, - {"&Modify time", 753}, - {"&Access time", 754}, - {"&Change time", 755}, - {"&Size", 756}, - {"&Inode", 757}, - {"&Type", 758}, - {"&Links", 759}, - {"N&GID", 760}, - {"N&UID", 761}, - {"&Owner", 762}, - {"&Group", 763}, - {"File exists but can not be stat-ed: %s %s", 764}, - {"Unknown", 765}, +\n", 748}, + {"&Unsorted", 749}, + {"&Name", 750}, + {"&Extension", 751}, + {"&Modify time", 752}, + {"&Access time", 753}, + {"&Change time", 754}, + {"&Size", 755}, + {"&Inode", 756}, + {"&Type", 757}, + {"&Links", 758}, + {"N&GID", 759}, + {"N&UID", 760}, + {"&Owner", 761}, + {"&Group", 762}, + {"File exists but can not be stat-ed: %s %s", 763}, + {"Unknown", 764}, {"\ Can't generate unique filename \n\ - %s ", 766}, + %s ", 765}, {"\ Can't create temporary command file \n\ - %s ", 767}, - {" Parameter ", 768}, - {" Can't execute commands on a Virtual File System directory ", 769}, - {" file error", 770}, - {"Format of the ", 771}, - {" file error ", 772}, - {"Format of the ~/", 773}, + %s ", 766}, + {" Parameter ", 767}, + {" Can't execute commands on a Virtual File System directory ", 768}, + {" file error", 769}, + {"Format of the ", 770}, + {" file error ", 771}, + {"Format of the ~/", 772}, {"\ file has changed\n\ with version 3.0. You may want either to\n\ -copy it from ", 774}, +copy it from ", 773}, {"\ mc.ext or use that\n\ -file as an example of how to write it.\n", 775}, - {"mc.ext will be used for this moment.", 776}, - {" Copy ", 777}, - {" Move ", 778}, - {" Delete ", 779}, - {" Invalid target mask ", 780}, - {" Could not make the hardlink ", 781}, +file as an example of how to write it.\n", 774}, + {"mc.ext will be used for this moment.", 775}, + {" Copy ", 776}, + {" Move ", 777}, + {" Delete ", 778}, + {" Invalid target mask ", 779}, + {" Could not make the hardlink ", 780}, {"\ Cannot read source link \"%s\" \n\ - %s ", 782}, + %s ", 781}, {"\ Cannot make stable symlinks across non-local filesystems: \n\ \n\ - Option Stable Symlinks will be disabled ", 783}, + Option Stable Symlinks will be disabled ", 782}, {"\ Cannot create target symlink \"%s\" \n\ - %s ", 784}, + %s ", 783}, {"\ Cannot overwrite directory \"%s\" \n\ - %s ", 785}, + %s ", 784}, {"\ Cannot stat source file \"%s\" \n\ - %s ", 786}, - {" `%s' and `%s' are the same file. ", 787}, + %s ", 785}, + {" `%s' and `%s' are the same file. ", 786}, {"\ Cannot create special file \"%s\" \n\ - %s ", 788}, + %s ", 787}, {"\ Cannot chown target file \"%s\" \n\ - %s ", 789}, + %s ", 788}, {"\ Cannot chmod target file \"%s\" \n\ - %s ", 790}, + %s ", 789}, {"\ Cannot open source file \"%s\" \n\ - %s ", 791}, - {" Reget failed, about to overwrite file ", 792}, + %s ", 790}, + {" Reget failed, about to overwrite file ", 791}, {"\ Cannot fstat source file \"%s\" \n\ - %s ", 793}, + %s ", 792}, {"\ Cannot create target file \"%s\" \n\ - %s ", 794}, + %s ", 793}, {"\ Cannot fstat target file \"%s\" \n\ - %s ", 795}, + %s ", 794}, {"\ Cannot read source file \"%s\" \n\ - %s ", 796}, + %s ", 795}, {"\ Cannot write target file \"%s\" \n\ - %s ", 797}, - {"(stalled)", 798}, + %s ", 796}, + {"(stalled)", 797}, {"\ Cannot close source file \"%s\" \n\ - %s ", 799}, + %s ", 798}, {"\ Cannot close target file \"%s\" \n\ - %s ", 800}, - {"Incomplete file was retrieved. Keep it?", 801}, - {"&Delete", 802}, - {"&Keep", 803}, + %s ", 799}, + {"Incomplete file was retrieved. Keep it?", 800}, + {"&Delete", 801}, + {"&Keep", 802}, {"\ Cannot stat source directory \"%s\" \n\ - %s ", 804}, + %s ", 803}, {"\ Source directory \"%s\" is not a directory \n\ - %s ", 805}, + %s ", 804}, {"\ Cannot copy cyclic symbolic link \n\ - `%s' ", 806}, + `%s' ", 805}, {"\ Cannot create target directory \"%s\" \n\ - %s ", 807}, + %s ", 806}, {"\ Cannot chown target directory \"%s\" \n\ - %s ", 808}, + %s ", 807}, {"\ Cannot stat file \"%s\" \n\ - %s ", 809}, - {" `%s' and `%s' are the same file ", 810}, - {" Cannot overwrite directory `%s' ", 811}, + %s ", 808}, + {" `%s' and `%s' are the same file ", 809}, + {" Cannot overwrite directory `%s' ", 810}, {"\ Cannot move file \"%s\" to \"%s\" \n\ - %s ", 812}, + %s ", 811}, {"\ Cannot remove file \"%s\" \n\ - %s ", 813}, - {" Cannot overwrite directory \"%s\" %s ", 814}, - {" Cannot overwrite file \"%s\" %s ", 815}, + %s ", 812}, + {" Cannot overwrite directory \"%s\" %s ", 813}, + {" Cannot overwrite file \"%s\" %s ", 814}, {"\ Cannot move directory \"%s\" to \"%s\" \n\ - %s ", 816}, + %s ", 815}, {"\ Cannot delete file \"%s\" \n\ - %s ", 817}, + %s ", 816}, {"\ Cannot remove directory \"%s\" \n\ - %s ", 818}, - {" Internal error: get_file \n", 819}, - {"1Copy", 820}, - {"1Move", 821}, - {"1Delete", 822}, - {"%o %f \"%s\"%m", 823}, - {"%o %d %f%m", 824}, - {"%o %f \"%s\"%e", 825}, - {"%o %d %f%e", 826}, - {"file", 827}, - {"files", 828}, - {"directory", 829}, - {"directories", 830}, - {"files/directories", 831}, - {" with source mask:", 832}, - {" Can't operate on \"..\"! ", 833}, - {"Yes", 834}, - {"No", 835}, - {" Sorry, I could not put the job in background ", 836}, - {" Internal failure ", 837}, - {" Unknown file operation ", 838}, + %s ", 817}, + {" Internal error: get_file \n", 818}, + {"1Copy", 819}, + {"1Move", 820}, + {"1Delete", 821}, + {"%o %f \"%s\"%m", 822}, + {"%o %d %f%m", 823}, + {"%o %f \"%s\"%e", 824}, + {"%o %d %f%e", 825}, + {"file", 826}, + {"files", 827}, + {"directory", 828}, + {"directories", 829}, + {"files/directories", 830}, + {" with source mask:", 831}, + {" Can't operate on \"..\"! ", 832}, + {"Yes", 833}, + {"No", 834}, + {" Sorry, I could not put the job in background ", 835}, + {" Internal failure ", 836}, + {" Unknown file operation ", 837}, {"\ Destination \"%s\" must be a directory \n\ - %s ", 839}, - {"&Retry", 840}, - {"&Abort", 841}, + %s ", 838}, + {"&Retry", 839}, + {"&Abort", 840}, {"\ \n\ Directory not empty. \n\ - Delete it recursively? ", 842}, + Delete it recursively? ", 841}, {"\ \n\ Background process: Directory not empty \n\ - Delete it recursively? ", 843}, - {"a&ll", 844}, - {"non&E", 845}, - {" Type 'yes' if you REALLY want to delete ", 846}, - {"all the directories ", 847}, - {" Recursive Delete ", 848}, - {" Background process: Recursive Delete ", 849}, - {"File", 850}, - {"Count", 851}, - {"Bytes", 852}, - {"Source", 853}, - {"Target", 854}, - {"Deleting", 855}, - {"Target file \"%s\" already exists!", 856}, - {"if &Size differs", 857}, - {"&Update", 858}, - {"Overwrite all targets?", 859}, - {"&Reget", 860}, - {"ap&Pend", 861}, - {"Overwrite this target?", 862}, - {"Target date: %s, size %d", 863}, - {"Source date: %s, size %d", 864}, - {" File exists ", 865}, - {" Background process: File exists ", 866}, - {"preserve &Attributes", 867}, - {"follow &Links", 868}, - {"to:", 869}, - {"&Using shell patterns", 870}, - {"&Background", 871}, - {"&Stable Symlinks", 872}, - {"&Dive into subdir if exists", 873}, + Delete it recursively? ", 842}, + {"a&ll", 843}, + {"non&E", 844}, + {" Type 'yes' if you REALLY want to delete ", 845}, + {"all the directories ", 846}, + {" Recursive Delete ", 847}, + {" Background process: Recursive Delete ", 848}, + {"File", 849}, + {"Count", 850}, + {"Bytes", 851}, + {"Source", 852}, + {"Target", 853}, + {"Deleting", 854}, + {"Target file \"%s\" already exists!", 855}, + {"if &Size differs", 856}, + {"&Update", 857}, + {"Overwrite all targets?", 858}, + {"&Reget", 859}, + {"ap&Pend", 860}, + {"Overwrite this target?", 861}, + {"Target date: %s, size %d", 862}, + {"Source date: %s, size %d", 863}, + {" File exists ", 864}, + {" Background process: File exists ", 865}, + {"preserve &Attributes", 866}, + {"follow &Links", 867}, + {"to:", 868}, + {"&Using shell patterns", 869}, + {"&Background", 870}, + {"&Stable Symlinks", 871}, + {"&Dive into subdir if exists", 872}, {"\ Invalid source pattern `%s' \n\ - %s ", 874}, - {"&Suspend", 875}, - {"Con&tinue", 876}, - {"&Chdir", 877}, - {"&Again", 878}, - {"&Quit", 879}, - {"Pane&lize", 880}, - {"&View - F3", 881}, - {"&Edit - F4", 882}, - {"Start at:", 883}, - {"Filename:", 884}, - {"Content: ", 885}, - {"&Tree", 886}, - {"Find File", 887}, - {"Grepping in %s", 888}, - {" Find/read ", 889}, - {" Problem reading from child ", 890}, - {"Finished", 891}, - {"Searching %s", 892}, - {"Suspend", 893}, - {"Restart", 894}, - {"Searching", 895}, - {"Find file", 896}, - {"Change to this directory", 897}, - {"Search again", 898}, - {"View this file", 899}, - {"Edit this file", 900}, - {"Send the results to a Panel", 901}, - {"Usage: fixhlp \n", 902}, - {"fixhlp: Cannot open toc for writing", 903}, + %s ", 873}, + {"&Suspend", 874}, + {"Con&tinue", 875}, + {"&Chdir", 876}, + {"&Again", 877}, + {"&Quit", 878}, + {"Pane&lize", 879}, + {"&View - F3", 880}, + {"&Edit - F4", 881}, + {"Start at:", 882}, + {"Filename:", 883}, + {"Content: ", 884}, + {"&Tree", 885}, + {"Find File", 886}, + {"Grepping in %s", 887}, + {" Find/read ", 888}, + {" Problem reading from child ", 889}, + {"Finished", 890}, + {"Searching %s", 891}, + {"Suspend", 892}, + {"Restart", 893}, + {"Searching", 894}, + {"Find file", 895}, + {"Change to this directory", 896}, + {"Search again", 897}, + {"View this file", 898}, + {"Edit this file", 899}, + {"Send the results to a Panel", 900}, + {"Usage: fixhlp \n", 901}, + {"fixhlp: Cannot open toc for writing", 902}, {"\ [Contents]\n\ Topics:\n\ -\n", 904}, +\n", 903}, {"\ Help file format error\n\ -", 905}, - {" Internal bug: Double start of link area ", 906}, - {" Can't find node [Contents] in help file ", 907}, - {" Help ", 908}, +", 904}, + {" Internal bug: Double start of link area ", 905}, + {" Can't find node [Contents] in help file ", 906}, + {" Help ", 907}, {"\ Can't open file %s \n\ - %s ", 909}, - {" Can't find node %s in help file ", 910}, - {"Index", 911}, - {"Prev", 912}, - {"&Move", 913}, - {"&Remove", 914}, - {"&Append", 915}, - {"&Insert", 916}, - {"New &Entry", 917}, - {"New &Group", 918}, - {"&Up", 919}, - {"&Add current", 920}, - {"Change &To", 921}, - {"Subgroup - press ENTER to see list", 922}, - {"Active VFS directories", 923}, - {"Directory hotlist", 924}, - {" Directory path ", 925}, - {" Directory label ", 926}, - {"Moving ", 927}, - {"New hotlist entry", 928}, - {"Directory label", 929}, - {"Directory path", 930}, - {" New hotlist group ", 931}, - {"Name of new group", 932}, - {"Label for \"%s\":", 933}, - {" Add to hotlist ", 934}, - {" Remove: ", 935}, + %s ", 908}, + {" Can't find node %s in help file ", 909}, + {"Index", 910}, + {"Prev", 911}, + {"&Move", 912}, + {"&Remove", 913}, + {"&Append", 914}, + {"&Insert", 915}, + {"New &Entry", 916}, + {"New &Group", 917}, + {"&Up", 918}, + {"&Add current", 919}, + {"Change &To", 920}, + {"Subgroup - press ENTER to see list", 921}, + {"Active VFS directories", 922}, + {"Directory hotlist", 923}, + {" Directory path ", 924}, + {" Directory label ", 925}, + {"Moving ", 926}, + {"New hotlist entry", 927}, + {"Directory label", 928}, + {"Directory path", 929}, + {" New hotlist group ", 930}, + {"Name of new group", 931}, + {"Label for \"%s\":", 932}, + {" Add to hotlist ", 933}, + {" Remove: ", 934}, {"\ \n\ Group not empty.\n\ - Remove it?", 936}, - {" Top level group ", 937}, - {"Hotlist is now kept in file ~/", 938}, - {"MC will load hotlist from ~/", 939}, - {"and then delete [Hotlist] section there", 940}, - {" Hotlist Load ", 941}, - {"MC was unable to write ~/", 942}, - {" file, your old hotlist entries were not deleted", 943}, - {"You have ~/", 944}, - {" file and [Hotlist] section in ~/", 945}, - {"Your ~/", 946}, - {" most probably was created\n", 947}, + Remove it?", 935}, + {" Top level group ", 936}, + {"Hotlist is now kept in file ~/", 937}, + {"MC will load hotlist from ~/", 938}, + {"and then delete [Hotlist] section there", 939}, + {" Hotlist Load ", 940}, + {"MC was unable to write ~/", 941}, + {" file, your old hotlist entries were not deleted", 942}, + {"You have ~/", 943}, + {" file and [Hotlist] section in ~/", 944}, + {"Your ~/", 945}, + {" most probably was created\n", 946}, {"\ by an earlier development version of MC\n\ -and is more actual than ~/", 948}, +and is more actual than ~/", 947}, {"\ entries\n\ -\n", 949}, +\n", 948}, {"\ You can choose between\n\ \n\ - Remove - remove old hotlist entries from ~/", 950}, + Remove - remove old hotlist entries from ~/", 949}, {"\ Keep - keep your old entries; you will be asked\n\ the same question next time\n\ - Merge - add old entries to hotlist as group \"Entries from ~/", 951}, - {"&Merge", 952}, - {" Entries from ~/", 953}, - {" file your old hotlist entries were not deleted", 954}, - {"Midnight Commander %s", 955}, - {"File: %s", 956}, - {"Free nodes %d (%d%%) of %d", 957}, - {"No node information", 958}, - {"Free space ", 959}, - {" (%d%%) of ", 960}, - {"No space information", 961}, - {"Type: %s ", 962}, - {"non-local vfs", 963}, - {"Device: %s", 964}, - {"Filesystem: %s", 965}, - {"Accessed: %s", 966}, - {"Modified: %s", 967}, - {"Created: %s", 968}, - {"Size: ", 969}, - {" (%d blocks)", 970}, - {"Owner: %s/%s", 971}, - {"Links: %d", 972}, - {"Mode: %s (%04o)", 973}, - {"Location: %Xh:%Xh", 974}, - {"File: None", 975}, - {"&Vertical", 976}, - {"&Horizontal", 977}, - {"&Xterm hintbar", 978}, - {"h&Intbar visible", 979}, - {"&Keybar visible", 980}, - {"command &Prompt", 981}, - {"show &Mini status", 982}, - {"menu&Bar visible", 983}, - {"&Equal split", 984}, - {"pe&Rmissions", 985}, - {"&File types", 986}, - {"&Save", 987}, - {" Layout ", 988}, - {" Panel split ", 989}, - {" Highlight... ", 990}, - {" Other options ", 991}, - {"output lines", 992}, - {"Layout", 993}, - {" Learn keys ", 994}, - {" Teach me a key ", 995}, + Merge - add old entries to hotlist as group \"Entries from ~/", 950}, + {"&Merge", 951}, + {" Entries from ~/", 952}, + {" file your old hotlist entries were not deleted", 953}, + {"Midnight Commander %s", 954}, + {"File: %s", 955}, + {"Free nodes %d (%d%%) of %d", 956}, + {"No node information", 957}, + {"Free space ", 958}, + {" (%d%%) of ", 959}, + {"No space information", 960}, + {"Type: %s ", 961}, + {"non-local vfs", 962}, + {"Device: %s", 963}, + {"Filesystem: %s", 964}, + {"Accessed: %s", 965}, + {"Modified: %s", 966}, + {"Created: %s", 967}, + {"Size: ", 968}, + {" (%d blocks)", 969}, + {"Owner: %s/%s", 970}, + {"Links: %d", 971}, + {"Mode: %s (%04o)", 972}, + {"Location: %Xh:%Xh", 973}, + {"File: None", 974}, + {"&Vertical", 975}, + {"&Horizontal", 976}, + {"&Xterm hintbar", 977}, + {"h&Intbar visible", 978}, + {"&Keybar visible", 979}, + {"command &Prompt", 980}, + {"show &Mini status", 981}, + {"menu&Bar visible", 982}, + {"&Equal split", 983}, + {"pe&Rmissions", 984}, + {"&File types", 985}, + {"&Save", 986}, + {" Layout ", 987}, + {" Panel split ", 988}, + {" Highlight... ", 989}, + {" Other options ", 990}, + {"output lines", 991}, + {"Layout", 992}, + {" Learn keys ", 993}, + {" Teach me a key ", 994}, {"\ Please press the %s\n\ and then wait until this message disappears.\n\ @@ -1179,384 +1178,384 @@ next to its button.\n\ \n\ If you want to escape, press a single Escape key\n\ -and wait as well.", 996}, - {" Cannot accept this key ", 997}, - {" You have entered \"%s\"", 998}, - {"OK", 999}, +and wait as well.", 995}, + {" Cannot accept this key ", 996}, + {" You have entered \"%s\"", 997}, + {"OK", 998}, {"\ It seems that all your keys already\n\ -work fine. That's great.", 1000}, - {"&Discard", 1001}, +work fine. That's great.", 999}, + {"&Discard", 1000}, {"\ Great! You have a complete terminal database!\n\ -All your keys work well.", 1002}, - {"Learn keys", 1003}, - {"Press all the keys mentioned here. After you have done it, check", 1004}, - {"which keys are not marked with OK. Press space on the missing", 1005}, - {"key, or click with the mouse to define it. Move around with Tab.", 1006}, +All your keys work well.", 1001}, + {"Learn keys", 1002}, + {"Press all the keys mentioned here. After you have done it, check", 1003}, + {"which keys are not marked with OK. Press space on the missing", 1004}, + {"key, or click with the mouse to define it. Move around with Tab.", 1005}, {"\ The Commander can't change to the directory that \n\ the subshell claims you are in. Perhaps you have \n\ deleted your working directory, or given yourself \n\ - extra access permissions with the \"su\" command? ", 1007}, - {"Press any key to continue...", 1008}, - {" The shell is already running a command ", 1009}, - {" The Midnight Commander ", 1010}, - {" Do you really want to quit the Midnight Commander? ", 1011}, - {"&Listing mode...", 1012}, - {"&Quick view C-x q", 1013}, - {"&Info C-x i", 1014}, - {"&Sort order...", 1015}, - {"&Filter...", 1016}, - {"&Network link...", 1017}, - {"FT&P link...", 1018}, - {"&Drive... M-d", 1019}, - {"&Rescan C-r", 1020}, - {"&User menu F2", 1021}, - {"&View F3", 1022}, - {"Vie&w file... ", 1023}, - {"&Filtered view M-!", 1024}, - {"&Edit F4", 1025}, - {"&Copy F5", 1026}, - {"c&Hmod C-x c", 1027}, - {"&Link C-x l", 1028}, - {"&SymLink C-x s", 1029}, - {"edit s&Ymlink C-x C-s", 1030}, - {"ch&Own C-x o", 1031}, - {"&Advanced chown ", 1032}, - {"&Rename/Move F6", 1033}, - {"&Mkdir F7", 1034}, - {"&Delete F8", 1035}, - {"&Quick cd M-c", 1036}, - {"select &Group M-+", 1037}, - {"u&Nselect group M-\\", 1038}, - {"reverse selec&Tion M-*", 1039}, - {"e&Xit F10", 1040}, - {"&Directory tree", 1041}, - {"&Find file M-?", 1042}, - {"s&Wap panels C-u", 1043}, - {"switch &Panels on/off C-o", 1044}, - {"&Compare directories C-x d", 1045}, - {"e&Xternal panelize C-x !", 1046}, - {"show directory s&Izes", 1047}, - {"command &History", 1048}, - {"di&Rectory hotlist C-\\", 1049}, - {"&Active VFS list C-x a", 1050}, - {"&Background jobs C-x j", 1051}, - {"&Undelete files (ext2fs only)", 1052}, - {"&Listing format edit", 1053}, - {"&Extension file edit", 1054}, - {"&Menu file edit", 1055}, - {"&Configuration...", 1056}, - {"c&Onfirmation...", 1057}, - {"&Display bits...", 1058}, - {"learn &Keys...", 1059}, - {"&Virtual FS...", 1060}, - {"&Save setup", 1061}, - {" &Left ", 1062}, - {" &Above ", 1063}, - {" &File ", 1064}, - {" &Command ", 1065}, - {" &Options ", 1066}, - {" &Right ", 1067}, - {" &Below ", 1068}, - {" Information ", 1069}, + extra access permissions with the \"su\" command? ", 1006}, + {"Press any key to continue...", 1007}, + {" The shell is already running a command ", 1008}, + {" The Midnight Commander ", 1009}, + {" Do you really want to quit the Midnight Commander? ", 1010}, + {"&Listing mode...", 1011}, + {"&Quick view C-x q", 1012}, + {"&Info C-x i", 1013}, + {"&Sort order...", 1014}, + {"&Filter...", 1015}, + {"&Network link...", 1016}, + {"FT&P link...", 1017}, + {"&Drive... M-d", 1018}, + {"&Rescan C-r", 1019}, + {"&User menu F2", 1020}, + {"&View F3", 1021}, + {"Vie&w file... ", 1022}, + {"&Filtered view M-!", 1023}, + {"&Edit F4", 1024}, + {"&Copy F5", 1025}, + {"c&Hmod C-x c", 1026}, + {"&Link C-x l", 1027}, + {"&SymLink C-x s", 1028}, + {"edit s&Ymlink C-x C-s", 1029}, + {"ch&Own C-x o", 1030}, + {"&Advanced chown ", 1031}, + {"&Rename/Move F6", 1032}, + {"&Mkdir F7", 1033}, + {"&Delete F8", 1034}, + {"&Quick cd M-c", 1035}, + {"select &Group M-+", 1036}, + {"u&Nselect group M-\\", 1037}, + {"reverse selec&Tion M-*", 1038}, + {"e&Xit F10", 1039}, + {"&Directory tree", 1040}, + {"&Find file M-?", 1041}, + {"s&Wap panels C-u", 1042}, + {"switch &Panels on/off C-o", 1043}, + {"&Compare directories C-x d", 1044}, + {"e&Xternal panelize C-x !", 1045}, + {"show directory s&Izes", 1046}, + {"command &History", 1047}, + {"di&Rectory hotlist C-\\", 1048}, + {"&Active VFS list C-x a", 1049}, + {"&Background jobs C-x j", 1050}, + {"&Undelete files (ext2fs only)", 1051}, + {"&Listing format edit", 1052}, + {"&Extension file edit", 1053}, + {"&Menu file edit", 1054}, + {"&Configuration...", 1055}, + {"c&Onfirmation...", 1056}, + {"&Display bits...", 1057}, + {"learn &Keys...", 1058}, + {"&Virtual FS...", 1059}, + {"&Save setup", 1060}, + {" &Left ", 1061}, + {" &Above ", 1062}, + {" &File ", 1063}, + {" &Command ", 1064}, + {" &Options ", 1065}, + {" &Right ", 1066}, + {" &Below ", 1067}, + {" Information ", 1068}, {"\ Using the fast reload option may not reflect the exact \n\ directory contents. In this cases you'll need to do a \n\ manual reload of the directory. See the man page for \n\ - the details. ", 1070}, - {"Menu", 1071}, - {"Thank you for using GNU Midnight Commander", 1072}, - {"with mouse support on xterm%s.\n", 1073}, - {" and the Linux console", 1074}, - {"The TERM environment variable is unset!\n", 1075}, - {"Library directory for the Midnight Commander: %s\n", 1076}, - {"\ -Option -m is obsolete. Please look at Display Bits... in the Option's menu\n", 1077}, - {"Use to debug the background code", 1078}, - {"Request to run in color mode", 1079}, - {"Specifies a color configuration", 1080}, - {"Edits one file", 1081}, - {"Displays this help message", 1082}, - {"Displays a help screen on how to change the color scheme", 1083}, - {"Log ftp dialog to specified file", 1084}, - {"Obsolete", 1085}, - {"Requests to run in black and white", 1086}, - {"Disable mouse support in text version", 1087}, - {"Disables subshell support", 1088}, - {"Prints working directory at program exit", 1089}, - {"Resets soft keys on HP terminals", 1090}, - {"To run on slow terminals", 1091}, - {"Use stickchars to draw", 1092}, - {"Enables subshell support (default)", 1093}, - {"Tries to use termcap instead of terminfo", 1094}, - {"Displays the current version", 1095}, - {"Launches the file viewer on a file", 1096}, - {"Forces xterm features", 1097}, - {"Geometry for the window", 1098}, - {"GEOMETRY", 1099}, - {"No windows opened at startup", 1100}, - {"Display the directory that holds the .links startup files and exit", 1101}, + the details. ", 1069}, + {"Menu", 1070}, + {"Thank you for using GNU Midnight Commander", 1071}, + {"with mouse support on xterm%s.\n", 1072}, + {" and the Linux console", 1073}, + {"The TERM environment variable is unset!\n", 1074}, + {"Library directory for the Midnight Commander: %s\n", 1075}, + {"\ +Option -m is obsolete. Please look at Display Bits... in the Option's menu\n", 1076}, + {"Use to debug the background code", 1077}, + {"Request to run in color mode", 1078}, + {"Specifies a color configuration", 1079}, + {"Edits one file", 1080}, + {"Displays this help message", 1081}, + {"Displays a help screen on how to change the color scheme", 1082}, + {"Log ftp dialog to specified file", 1083}, + {"Obsolete", 1084}, + {"Requests to run in black and white", 1085}, + {"Disable mouse support in text version", 1086}, + {"Disables subshell support", 1087}, + {"Prints working directory at program exit", 1088}, + {"Resets soft keys on HP terminals", 1089}, + {"To run on slow terminals", 1090}, + {"Use stickchars to draw", 1091}, + {"Enables subshell support (default)", 1092}, + {"Tries to use termcap instead of terminfo", 1093}, + {"Displays the current version", 1094}, + {"Launches the file viewer on a file", 1095}, + {"Forces xterm features", 1096}, + {"Geometry for the window", 1097}, + {"GEOMETRY", 1098}, + {"No windows opened at startup", 1099}, + {"Display the directory that holds the .links startup files and exit", 1100}, {"\ Couldn't open tty line. You have to run mc without the -P flag.\n\ -On some systems you may want to run # `which mc`\n", 1102}, - {" Notice ", 1103}, +On some systems you may want to run # `which mc`\n", 1101}, + {" Notice ", 1102}, {"\ The Midnight Commander configuration files \n\ are now stored in the ~/.mc directory, the \n\ - files have been moved now\n", 1104}, - {"safe de&Lete", 1105}, - {"cd follows lin&Ks", 1106}, - {"advanced cho&Wn", 1107}, - {"l&Ynx-like motion", 1108}, - {"Animation", 1109}, - {"rotatin&G dash", 1110}, - {"co&Mplete: show all", 1111}, - {"&Use internal view", 1112}, - {"use internal ed&It", 1113}, - {"auto m&Enus", 1114}, - {"&Auto save setup", 1115}, - {"shell &Patterns", 1116}, - {"Compute &Totals", 1117}, - {"&Verbose operation", 1118}, - {"&Fast dir reload", 1119}, - {"mi&X all files", 1120}, - {"&Drop down menus", 1121}, - {"ma&Rk moves down", 1122}, - {"show &Hidden files", 1123}, - {"show &Backup files", 1124}, - {"&Never", 1125}, - {"on dumb &Terminals", 1126}, - {"alwa&Ys", 1127}, - {" Configure options ", 1128}, - {" Panel options ", 1129}, - {" Pause after run... ", 1130}, - {"Configure options", 1131}, - {"&Add new", 1132}, - {" External panelize ", 1133}, - {"External panelize", 1134}, - {"Other command", 1135}, - {" Add to external panelize ", 1136}, - {" Enter command label: ", 1137}, - {" I can't run external panelize while logged on a non local directory ", 1138}, - {"Find *.orig after patching", 1139}, - {"Find SUID and SGID programs", 1140}, - {"Cannot invoke command.", 1141}, - {"Pipe close failed", 1142}, - {"Show this help message", 1143}, - {"Display brief usage message", 1144}, - {"MTime", 1145}, - {"ATime", 1146}, - {"CTime", 1147}, - {"Perm", 1148}, - {"Nl", 1149}, - {"Inode", 1150}, - {"UID", 1151}, - {"GID", 1152}, - {" %s bytes in %d file%s", 1153}, - {"Unknow tag on display format: ", 1154}, - {" Do you really want to execute? ", 1155}, - {" No action taken ", 1156}, - {"RenMov", 1157}, - {"Mkdir", 1158}, + files have been moved now\n", 1103}, + {"safe de&Lete", 1104}, + {"cd follows lin&Ks", 1105}, + {"advanced cho&Wn", 1106}, + {"l&Ynx-like motion", 1107}, + {"Animation", 1108}, + {"rotatin&G dash", 1109}, + {"co&Mplete: show all", 1110}, + {"&Use internal view", 1111}, + {"use internal ed&It", 1112}, + {"auto m&Enus", 1113}, + {"&Auto save setup", 1114}, + {"shell &Patterns", 1115}, + {"Compute &Totals", 1116}, + {"&Verbose operation", 1117}, + {"&Fast dir reload", 1118}, + {"mi&X all files", 1119}, + {"&Drop down menus", 1120}, + {"ma&Rk moves down", 1121}, + {"show &Hidden files", 1122}, + {"show &Backup files", 1123}, + {"&Never", 1124}, + {"on dumb &Terminals", 1125}, + {"alwa&Ys", 1126}, + {" Configure options ", 1127}, + {" Panel options ", 1128}, + {" Pause after run... ", 1129}, + {"Configure options", 1130}, + {"&Add new", 1131}, + {" External panelize ", 1132}, + {"External panelize", 1133}, + {"Other command", 1134}, + {" Add to external panelize ", 1135}, + {" Enter command label: ", 1136}, + {" I can't run external panelize while logged on a non local directory ", 1137}, + {"Find *.orig after patching", 1138}, + {"Find SUID and SGID programs", 1139}, + {"Cannot invoke command.", 1140}, + {"Pipe close failed", 1141}, + {"Show this help message", 1142}, + {"Display brief usage message", 1143}, + {"MTime", 1144}, + {"ATime", 1145}, + {"CTime", 1146}, + {"Perm", 1147}, + {"Nl", 1148}, + {"Inode", 1149}, + {"UID", 1150}, + {"GID", 1151}, + {" %s bytes in %d file%s", 1152}, + {"Unknow tag on display format: ", 1153}, + {" Do you really want to execute? ", 1154}, + {" No action taken ", 1155}, + {"RenMov", 1156}, + {"Mkdir", 1157}, {"\ Can't chdir to %s \n\ - %s ", 1159}, - {"Couldn't open named pipe %s\n", 1160}, - {" The shell is still active. Quit anyway? ", 1161}, - {" There are stopped jobs.", 1162}, - {" Quit anyway? ", 1163}, - {"Warning: Couldn't change to %s.\n", 1164}, + %s ", 1158}, + {"Couldn't open named pipe %s\n", 1159}, + {" The shell is still active. Quit anyway? ", 1160}, + {" There are stopped jobs.", 1161}, + {" Quit anyway? ", 1162}, + {"Warning: Couldn't change to %s.\n", 1163}, {"\ Can't open the %s file for writing:\n\ -%s\n", 1165}, - {"Copy \"%s\" directory to:", 1166}, - {"Move \"%s\" directory to:", 1167}, +%s\n", 1164}, + {"Copy \"%s\" directory to:", 1165}, + {"Move \"%s\" directory to:", 1166}, {"\ Can't stat the destination \n\ - %s ", 1168}, - {" The destination isn't a directory ", 1169}, - {" Delete %s? ", 1170}, - {"Static", 1171}, - {"Dynamc", 1172}, + %s ", 1167}, + {" The destination isn't a directory ", 1168}, + {" Delete %s? ", 1169}, + {"Static", 1170}, + {"Dynamc", 1171}, {"\ Can't chdir to \"%s\" \n\ - %s ", 1173}, - {"Forget", 1174}, - {"Rmdir", 1175}, + %s ", 1172}, + {"Forget", 1173}, + {"Rmdir", 1174}, {"\ Can't write to the %s file:\n\ -%s\n", 1176}, - {" Invalid shell pattern defination \"%c\". ", 1177}, - {" Debug ", 1178}, - {" ERROR: ", 1179}, - {" True: ", 1180}, - {" False: ", 1181}, - {" Warning -- ignoring file ", 1182}, +%s\n", 1175}, + {" Invalid shell pattern defination \"%c\". ", 1176}, + {" Debug ", 1177}, + {" ERROR: ", 1178}, + {" True: ", 1179}, + {" False: ", 1180}, + {" Warning -- ignoring file ", 1181}, {"\ File %s is not owned by root or you or is world writable.\n\ -Using it may compromise your security", 1183}, - {" I can't run programs while logged on a non local directory ", 1184}, - {" User menu ", 1185}, - {"name_trunc: too big", 1186}, - {"%b %e %H:%M", 1187}, - {"%b %e %Y", 1188}, - {" Pipe failed ", 1189}, - {" Dup failed ", 1190}, +Using it may compromise your security", 1182}, + {" I can't run programs while logged on a non local directory ", 1183}, + {" User menu ", 1184}, + {"name_trunc: too big", 1185}, + {"%b %e %H:%M", 1186}, + {"%b %e %Y", 1187}, + {" Pipe failed ", 1188}, + {" Dup failed ", 1189}, {"\ File: \n\ \n\ - ", 1191}, + ", 1190}, {"\ \n\ \n\ -has been modified, do you want to save the changes?\n", 1192}, - {" Save changes ", 1193}, - {" Can't spawn child program ", 1194}, - {" Empty output from child filter ", 1195}, - {" Could not open file ", 1196}, - {" Can't open file \"", 1197}, +has been modified, do you want to save the changes?\n", 1191}, + {" Save changes ", 1192}, + {" Can't spawn child program ", 1193}, + {" Empty output from child filter ", 1194}, + {" Could not open file ", 1195}, + {" Can't open file \"", 1196}, {"\ Can't stat file \n\ - ", 1198}, - {" Can't view: not a regular file ", 1199}, + ", 1197}, + {" Can't view: not a regular file ", 1198}, {"\ Can't open \"%s\"\n\ - %s ", 1200}, - {"File: %s", 1201}, - {" [grow]", 1202}, - {"Searching for `%s'", 1203}, - {" Search string not found ", 1204}, - {" Invalid regular expression ", 1205}, + %s ", 1199}, + {"File: %s", 1200}, + {" [grow]", 1201}, + {"Searching for `%s'", 1202}, + {" Search string not found ", 1203}, + {" Invalid regular expression ", 1204}, {"\ The current line number is %d.\n\ - Enter the new line number:", 1206}, - {" Enter regexp:", 1207}, - {"Ascii", 1208}, - {"Hex", 1209}, - {"Line", 1210}, - {"RxSrch", 1211}, - {"EdText", 1212}, - {"EdHex", 1213}, - {"UnWrap", 1214}, - {"Wrap", 1215}, - {"HxSrch", 1216}, - {"Raw", 1217}, - {"Parse", 1218}, - {"Unform", 1219}, - {"Format", 1220}, - {"Function key 1", 1221}, - {"Function key 2", 1222}, - {"Function key 3", 1223}, - {"Function key 4", 1224}, - {"Function key 5", 1225}, - {"Function key 6", 1226}, - {"Function key 7", 1227}, - {"Function key 8", 1228}, - {"Function key 9", 1229}, - {"Function key 10", 1230}, - {"Function key 11", 1231}, - {"Function key 12", 1232}, - {"Function key 13", 1233}, - {"Function key 14", 1234}, - {"Function key 15", 1235}, - {"Function key 16", 1236}, - {"Function key 17", 1237}, - {"Function key 18", 1238}, - {"Function key 19", 1239}, - {"Function key 20", 1240}, - {"Backspace key", 1241}, - {"End key", 1242}, - {"Up arrow key", 1243}, - {"Down arrow key", 1244}, - {"Left arrow key", 1245}, - {"Right arrow key", 1246}, - {"Home key", 1247}, - {"Page Down key", 1248}, - {"Page Up key", 1249}, - {"Insert key", 1250}, - {"Delete key", 1251}, - {"Completion/M-tab", 1252}, - {"+ on keypad", 1253}, - {"- on keypad", 1254}, - {"* on keypad", 1255}, - {"Left arrow keypad", 1256}, - {"Right arrow keypad", 1257}, - {"Up arrow keypad", 1258}, - {"Down arrow keypad", 1259}, - {"Home on keypad", 1260}, - {"End on keypad", 1261}, - {"Page Down keypad", 1262}, - {"Page Up keypad", 1263}, - {"Insert on keypad", 1264}, - {"Delete on keypad", 1265}, - {"Enter on keypad", 1266}, - {"Slash on keypad", 1267}, - {"NumLock on keypad", 1268}, + Enter the new line number:", 1205}, + {" Enter regexp:", 1206}, + {"Ascii", 1207}, + {"Hex", 1208}, + {"Line", 1209}, + {"RxSrch", 1210}, + {"EdText", 1211}, + {"EdHex", 1212}, + {"UnWrap", 1213}, + {"Wrap", 1214}, + {"HxSrch", 1215}, + {"Raw", 1216}, + {"Parse", 1217}, + {"Unform", 1218}, + {"Format", 1219}, + {"Function key 1", 1220}, + {"Function key 2", 1221}, + {"Function key 3", 1222}, + {"Function key 4", 1223}, + {"Function key 5", 1224}, + {"Function key 6", 1225}, + {"Function key 7", 1226}, + {"Function key 8", 1227}, + {"Function key 9", 1228}, + {"Function key 10", 1229}, + {"Function key 11", 1230}, + {"Function key 12", 1231}, + {"Function key 13", 1232}, + {"Function key 14", 1233}, + {"Function key 15", 1234}, + {"Function key 16", 1235}, + {"Function key 17", 1236}, + {"Function key 18", 1237}, + {"Function key 19", 1238}, + {"Function key 20", 1239}, + {"Backspace key", 1240}, + {"End key", 1241}, + {"Up arrow key", 1242}, + {"Down arrow key", 1243}, + {"Left arrow key", 1244}, + {"Right arrow key", 1245}, + {"Home key", 1246}, + {"Page Down key", 1247}, + {"Page Up key", 1248}, + {"Insert key", 1249}, + {"Delete key", 1250}, + {"Completion/M-tab", 1251}, + {"+ on keypad", 1252}, + {"- on keypad", 1253}, + {"* on keypad", 1254}, + {"Left arrow keypad", 1255}, + {"Right arrow keypad", 1256}, + {"Up arrow keypad", 1257}, + {"Down arrow keypad", 1258}, + {"Home on keypad", 1259}, + {"End on keypad", 1260}, + {"Page Down keypad", 1261}, + {"Page Up keypad", 1262}, + {"Insert on keypad", 1263}, + {"Delete on keypad", 1264}, + {"Enter on keypad", 1265}, + {"Slash on keypad", 1266}, + {"NumLock on keypad", 1267}, {"\ Couldn't open %s archive\n\ -%s", 1269}, - {"Inconsistent extfs archive", 1270}, - {"Sorry, we can not do password authenticated connections for now.", 1271}, - {"ftpfs: Disconnecting from %s", 1272}, - {" FTP: Password required for ", 1273}, - {" Proxy: Password required for ", 1274}, - {"ftpfs: sending proxy login name", 1275}, - {"ftpfs: sending proxy user password", 1276}, - {"ftpfs: proxy authentication succeeded", 1277}, - {"ftpfs: connected to %s", 1278}, - {"ftpfs: sending login name", 1279}, - {"ftpfs: sending user password", 1280}, - {"ftpfs: logged in", 1281}, - {"ftpfs: Login incorrect for user %s ", 1282}, - {" Could not set source routing (%s)", 1283}, - {"ftpfs: Invalid host name.", 1284}, - {"ftpfs: Invalid host address.", 1285}, - {"ftpfs: making connection to %s", 1286}, - {"ftpfs: connection interrupted by user", 1287}, - {"ftpfs: connection to server failed: %s", 1288}, - {"Waiting to retry... %d (Control-C to cancel)", 1289}, - {"ftpfs: could not setup passive mode for source routing", 1290}, - {"ftpfs: could not setup passive mode", 1291}, - {"ftpfs: aborting transfer.", 1292}, - {"ftpfs: abort error: %s", 1293}, - {"ftpfs: abort failed", 1294}, - {"ftpfs: CWD failed.", 1295}, - {"ftpfs: couldn't resolve symlink", 1296}, - {"Resolving symlink...", 1297}, - {"ftpfs: Reading FTP directory %s... (don't use UNIX ls options)", 1298}, - {"ftpfs: Reading FTP directory %s...", 1299}, - {"ftpfs: FAIL", 1300}, - {"ftpfs: reading FTP directory interrupt by user", 1301}, - {"ftpfs: got listing", 1302}, - {"ftpfs: failed", 1303}, - {"ftpfs: failed; nowhere to fallback to", 1304}, - {"ftpfs: storing file %d (%d)", 1305}, +%s", 1268}, + {"Inconsistent extfs archive", 1269}, + {"Sorry, we can not do password authenticated connections for now.", 1270}, + {"ftpfs: Disconnecting from %s", 1271}, + {" FTP: Password required for ", 1272}, + {" Proxy: Password required for ", 1273}, + {"ftpfs: sending proxy login name", 1274}, + {"ftpfs: sending proxy user password", 1275}, + {"ftpfs: proxy authentication succeeded", 1276}, + {"ftpfs: connected to %s", 1277}, + {"ftpfs: sending login name", 1278}, + {"ftpfs: sending user password", 1279}, + {"ftpfs: logged in", 1280}, + {"ftpfs: Login incorrect for user %s ", 1281}, + {" Could not set source routing (%s)", 1282}, + {"ftpfs: Invalid host name.", 1283}, + {"ftpfs: Invalid host address.", 1284}, + {"ftpfs: making connection to %s", 1285}, + {"ftpfs: connection interrupted by user", 1286}, + {"ftpfs: connection to server failed: %s", 1287}, + {"Waiting to retry... %d (Control-C to cancel)", 1288}, + {"ftpfs: could not setup passive mode for source routing", 1289}, + {"ftpfs: could not setup passive mode", 1290}, + {"ftpfs: aborting transfer.", 1291}, + {"ftpfs: abort error: %s", 1292}, + {"ftpfs: abort failed", 1293}, + {"ftpfs: CWD failed.", 1294}, + {"ftpfs: couldn't resolve symlink", 1295}, + {"Resolving symlink...", 1296}, + {"ftpfs: Reading FTP directory %s... (don't use UNIX ls options)", 1297}, + {"ftpfs: Reading FTP directory %s...", 1298}, + {"ftpfs: FAIL", 1299}, + {"ftpfs: reading FTP directory interrupt by user", 1300}, + {"ftpfs: got listing", 1301}, + {"ftpfs: failed", 1302}, + {"ftpfs: failed; nowhere to fallback to", 1303}, + {"ftpfs: storing file %d (%d)", 1304}, {"\ ~/.netrc file has not correct mode.\n\ -Remove password or correct mode.", 1306}, - {" MCFS ", 1307}, - {" The server does not support this version ", 1308}, +Remove password or correct mode.", 1305}, + {" MCFS ", 1306}, + {" The server does not support this version ", 1307}, {"\ The remote server is not running on a system port \n\ you need a password to log in, but the information may \n\ - not be safe on the remote side. Continue? \n", 1309}, - {" Yes ", 1310}, - {" No ", 1311}, - {" The remote server is running on strange port. Giving up.\n", 1312}, - {" MCFS Password required ", 1313}, - {" Invalid password ", 1314}, - {" Too many open connections ", 1315}, + not be safe on the remote side. Continue? \n", 1308}, + {" Yes ", 1309}, + {" No ", 1310}, + {" The remote server is running on strange port. Giving up.\n", 1311}, + {" MCFS Password required ", 1312}, + {" Invalid password ", 1313}, + {" Too many open connections ", 1314}, {"\ Couldn't open tar archive\n\ -%s", 1316}, - {"Unexpected EOF on archive file", 1317}, - {"Inconsistent tar archive", 1318}, +%s", 1315}, + {"Unexpected EOF on archive file", 1316}, + {"Inconsistent tar archive", 1317}, {"\ Hmm,...\n\ %s\n\ -doesn't look like a tar archive.", 1319}, +doesn't look like a tar archive.", 1318}, }; -int _msg_tbl_length = 1319; +int _msg_tbl_length = 1318; diff -ruN old/mc-4.5.32/po/mc.pot new/mc-4.5.33/po/mc.pot --- old/mc-4.5.32/po/mc.pot Mon May 24 15:54:09 1999 +++ new/mc-4.5.33/po/mc.pot Thu May 27 17:45:45 1999 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-05-24 14:54-0500\n" +"POT-Creation-Date: 1999-05-27 16:45-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -56,45 +56,45 @@ msgid "The GNOME edition of the Midnight Commander file manager." msgstr "" -#: gnome/gcmd.c:263 +#: gnome/gcmd.c:261 msgid "Sort By" msgstr "" #. we define this up here so we can pass it in to our callback -#: gnome/gcmd.c:268 +#: gnome/gcmd.c:266 msgid "Ignore case sensitivity." msgstr "" -#: gnome/gcmd.c:271 +#: gnome/gcmd.c:269 msgid "Sort files by " msgstr "" -#: gnome/gcmd.c:276 gnome/gcustom-layout.c:43 src/chmod.c:150 src/screen.c:395 +#: gnome/gcmd.c:274 gnome/gcustom-layout.c:43 src/chmod.c:150 src/screen.c:395 msgid "Name" msgstr "" -#: gnome/gcmd.c:283 +#: gnome/gcmd.c:281 msgid "File Type" msgstr "" -#: gnome/gcmd.c:289 gnome/gcustom-layout.c:47 src/screen.c:396 +#: gnome/gcmd.c:287 gnome/gcustom-layout.c:47 src/screen.c:396 #: src/screen.c:397 msgid "Size" msgstr "" -#: gnome/gcmd.c:295 +#: gnome/gcmd.c:293 msgid "Time Last Accessed" msgstr "" -#: gnome/gcmd.c:301 +#: gnome/gcmd.c:299 msgid "Time Last Modified" msgstr "" -#: gnome/gcmd.c:307 +#: gnome/gcmd.c:305 msgid "Time Last Changed" msgstr "" -#: gnome/gcmd.c:321 +#: gnome/gcmd.c:319 msgid "Reverse the order." msgstr "" @@ -106,55 +106,55 @@ msgid "Enter label for command:" msgstr "" -#: gnome/gcmd.c:489 +#: gnome/gcmd.c:495 msgid "Find all core files" msgstr "" -#: gnome/gcmd.c:492 src/panelize.c:350 +#: gnome/gcmd.c:498 src/panelize.c:350 msgid "Find rejects after patching" msgstr "" -#: gnome/gcmd.c:536 +#: gnome/gcmd.c:543 msgid "Run Command" msgstr "" #. Frame 1 -#: gnome/gcmd.c:541 +#: gnome/gcmd.c:548 msgid "Preset Commands" msgstr "" #. add add/remove buttons in center -#: gnome/gcmd.c:558 gnome/gcustom-layout.c:185 +#: gnome/gcmd.c:565 gnome/gcustom-layout.c:185 msgid "Add" msgstr "" -#: gnome/gcmd.c:562 gnome/gcustom-layout.c:186 +#: gnome/gcmd.c:569 gnome/gcustom-layout.c:186 msgid "Remove" msgstr "" #. Frame 2 -#: gnome/gcmd.c:570 +#: gnome/gcmd.c:577 msgid "Run this Command" msgstr "" -#: gnome/gcmd.c:577 +#: gnome/gcmd.c:584 msgid "Command: " msgstr "" -#: gnome/gcmd.c:646 +#: gnome/gcmd.c:662 msgid "Set Filter" msgstr "" -#: gnome/gcmd.c:651 gnome/gcmd.c:692 gnome/gcmd.c:697 gnome/gcmd.c:701 -#: gnome/gscreen.c:2551 +#: gnome/gcmd.c:667 gnome/gcmd.c:708 gnome/gcmd.c:713 gnome/gcmd.c:717 +#: gnome/gscreen.c:2508 msgid "Show all files" msgstr "" -#: gnome/gcmd.c:658 +#: gnome/gcmd.c:674 msgid "." msgstr "" -#: gnome/gcmd.c:674 +#: gnome/gcmd.c:690 msgid "" "Enter a filter here for files in the panel view.\n" "\n" @@ -162,27 +162,27 @@ "*.png will show just png images" msgstr "" -#: gnome/gcmd.c:676 +#: gnome/gcmd.c:692 msgid "Enter a Regular Expression to filter files in the panel view." msgstr "" -#: gnome/gcmd.c:733 +#: gnome/gcmd.c:752 msgid " Open with..." msgstr "" -#: gnome/gcmd.c:734 +#: gnome/gcmd.c:753 msgid "Enter extra arguments:" msgstr "" -#: gnome/gcmd.c:796 +#: gnome/gcmd.c:815 msgid "Desktop entry properties" msgstr "" -#: gnome/gcmd.c:821 +#: gnome/gcmd.c:841 msgid "Select File" msgstr "" -#: gnome/gcmd.c:829 +#: gnome/gcmd.c:849 msgid "" "Enter a filter here to select files in the panel view with.\n" "\n" @@ -190,19 +190,19 @@ "*.png will select all png images" msgstr "" -#: gnome/gcmd.c:831 +#: gnome/gcmd.c:851 msgid "Enter a regular expression here to select files in the panel view with." msgstr "" -#: gnome/gcmd.c:874 src/cmd.c:543 src/cmd.c:594 +#: gnome/gcmd.c:897 src/cmd.c:543 src/cmd.c:594 msgid " Malformed regular expression " msgstr "" -#: gnome/gcmd.c:919 +#: gnome/gcmd.c:942 msgid "Creating a desktop link" msgstr "" -#: gnome/gcmd.c:920 +#: gnome/gcmd.c:943 msgid "Enter the URL:" msgstr "" @@ -427,62 +427,62 @@ msgid "Replace it?" msgstr "" -#: gnome/gdialogs.c:567 gtkedit/editwidget.c:1069 src/file.c:802 +#: gnome/gdialogs.c:568 gtkedit/editwidget.c:1069 src/file.c:802 #: src/screen.c:2365 src/screen.c:2395 src/tree.c:1015 msgid "Copy" msgstr "" -#: gnome/gdialogs.c:570 gtkedit/editwidget.c:1070 +#: gnome/gdialogs.c:571 gtkedit/editwidget.c:1070 msgid "Move" msgstr "" -#: gnome/gdialogs.c:587 +#: gnome/gdialogs.c:588 msgid "Destination" msgstr "" -#: gnome/gdialogs.c:591 +#: gnome/gdialogs.c:592 msgid "Find Destination Folder" msgstr "" -#: gnome/gdialogs.c:596 +#: gnome/gdialogs.c:597 msgid "Copy as a background process" msgstr "" -#: gnome/gdialogs.c:616 +#: gnome/gdialogs.c:617 msgid "Advanced Options" msgstr "" -#: gnome/gdialogs.c:620 +#: gnome/gdialogs.c:621 msgid "Preserve symlinks" msgstr "" -#: gnome/gdialogs.c:630 +#: gnome/gdialogs.c:631 msgid "Follow links." msgstr "" -#: gnome/gdialogs.c:636 +#: gnome/gdialogs.c:637 msgid "" "Selecting this will copy the files that symlinks point to instead of just " "copying the link." msgstr "" -#: gnome/gdialogs.c:641 +#: gnome/gdialogs.c:642 msgid "Preserve file attributes." msgstr "" -#: gnome/gdialogs.c:646 +#: gnome/gdialogs.c:647 msgid "Preserves the permissions and the UID/GID if possible" msgstr "" -#: gnome/gdialogs.c:652 +#: gnome/gdialogs.c:653 msgid "Recursively copy subdirectories." msgstr "" -#: gnome/gdialogs.c:657 +#: gnome/gdialogs.c:658 msgid "If set, this will copy the directories recursively" msgstr "" -#: gnome/gdialogs.c:761 +#: gnome/gdialogs.c:767 #, c-format msgid "" "%s\n" @@ -490,58 +490,58 @@ "Directory not empty. Delete it recursively?" msgstr "" -#: gnome/gdialogs.c:770 src/file.c:2228 +#: gnome/gdialogs.c:776 src/file.c:2228 msgid " Delete: " msgstr "" -#: gnome/gdialogs.c:774 +#: gnome/gdialogs.c:780 msgid "Do the same for the rest" msgstr "" -#: gnome/gdialogs.c:857 +#: gnome/gdialogs.c:863 msgid "Move Progress" msgstr "" -#: gnome/gdialogs.c:860 +#: gnome/gdialogs.c:866 msgid "Copy Progress" msgstr "" -#: gnome/gdialogs.c:863 +#: gnome/gdialogs.c:869 msgid "Delete Progress" msgstr "" -#: gnome/gdialogs.c:913 +#: gnome/gdialogs.c:919 msgid "File " msgstr "" -#: gnome/gdialogs.c:917 +#: gnome/gdialogs.c:923 msgid "is " msgstr "" -#: gnome/gdialogs.c:920 +#: gnome/gdialogs.c:926 msgid "done." msgstr "" #. Translators should take care as "Password" or its translations #. are used to identify password boxes and hide characters with "*" -#: gnome/gdialogs.c:980 src/wtools.c:587 vfs/vfs.c:1775 +#: gnome/gdialogs.c:986 src/wtools.c:587 vfs/vfs.c:1775 msgid "Password:" msgstr "" -#: gnome/gdialogs.c:980 +#: gnome/gdialogs.c:986 msgid "Password" msgstr "" #. Create the dialog -#: gnome/gdialogs.c:1012 +#: gnome/gdialogs.c:1018 msgid "Symbolic Link" msgstr "" -#: gnome/gdialogs.c:1028 src/boxes.c:803 +#: gnome/gdialogs.c:1034 src/boxes.c:803 msgid "Existing filename (filename symlink will point to):" msgstr "" -#: gnome/gdialogs.c:1042 src/boxes.c:801 +#: gnome/gdialogs.c:1048 src/boxes.c:801 msgid "Symbolic link filename:" msgstr "" @@ -708,7 +708,7 @@ msgid "Search for a file in the current Panel" msgstr "" -#: gnome/glayout.c:403 gnome/gscreen.c:1437 +#: gnome/glayout.c:403 gnome/gscreen.c:1447 msgid "_Rescan Directory" msgstr "" @@ -805,7 +805,7 @@ msgid "File/New/Directory..." msgstr "" -#: gnome/gmain.c:561 +#: gnome/gmain.c:555 msgid "" "You are running the GNOME File Manager as root.\n" "\n" @@ -1256,150 +1256,146 @@ msgid "Select icon" msgstr "" -#: gnome/gscreen.c:1437 +#: gnome/gscreen.c:1447 msgid "Reloads the current directory" msgstr "" -#: gnome/gscreen.c:1439 +#: gnome/gscreen.c:1449 msgid "New _Directory..." msgstr "" -#: gnome/gscreen.c:1439 +#: gnome/gscreen.c:1449 msgid "Creates a new directory here" msgstr "" -#: gnome/gscreen.c:1620 +#: gnome/gscreen.c:1630 msgid "All files" msgstr "" -#: gnome/gscreen.c:1622 +#: gnome/gscreen.c:1632 msgid "Archives and compressed files" msgstr "" -#: gnome/gscreen.c:1624 +#: gnome/gscreen.c:1634 msgid "RPM/DEB files" msgstr "" -#: gnome/gscreen.c:1626 +#: gnome/gscreen.c:1636 msgid "Text/Document files" msgstr "" -#: gnome/gscreen.c:1628 +#: gnome/gscreen.c:1638 msgid "HTML and SGML files" msgstr "" -#: gnome/gscreen.c:1630 +#: gnome/gscreen.c:1640 msgid "Postscript and PDF files" msgstr "" -#: gnome/gscreen.c:1632 +#: gnome/gscreen.c:1642 msgid "Spreadsheet files" msgstr "" -#: gnome/gscreen.c:1634 +#: gnome/gscreen.c:1644 msgid "Image files" msgstr "" -#: gnome/gscreen.c:1637 +#: gnome/gscreen.c:1647 msgid "Video/animation files" msgstr "" -#: gnome/gscreen.c:1639 +#: gnome/gscreen.c:1649 msgid "Audio files" msgstr "" -#: gnome/gscreen.c:1641 +#: gnome/gscreen.c:1651 msgid "C program files" msgstr "" -#: gnome/gscreen.c:1643 +#: gnome/gscreen.c:1653 msgid "C++ program files" msgstr "" -#: gnome/gscreen.c:1645 +#: gnome/gscreen.c:1655 msgid "Objective-C program files" msgstr "" -#: gnome/gscreen.c:1647 +#: gnome/gscreen.c:1657 msgid "Scheme program files" msgstr "" -#: gnome/gscreen.c:1649 +#: gnome/gscreen.c:1659 msgid "Assembler program files" msgstr "" -#: gnome/gscreen.c:1651 +#: gnome/gscreen.c:1661 msgid "Misc. program files" msgstr "" -#: gnome/gscreen.c:1653 +#: gnome/gscreen.c:1663 msgid "Font files" msgstr "" -#: gnome/gscreen.c:1780 +#: gnome/gscreen.c:1790 #, c-format msgid "Search: %s" msgstr "" -#: gnome/gscreen.c:1790 +#: gnome/gscreen.c:1800 #, c-format msgid "%s bytes in %d file" msgstr "" -#: gnome/gscreen.c:1790 +#: gnome/gscreen.c:1800 #, c-format msgid "%s bytes in %d files" msgstr "" -#: gnome/gscreen.c:1816 src/screen.c:670 +#: gnome/gscreen.c:1826 src/screen.c:670 msgid "" msgstr "" -#: gnome/gscreen.c:1870 -msgid "Filter" -msgstr "" - -#: gnome/gscreen.c:2373 +#: gnome/gscreen.c:2335 msgid "Back" msgstr "" -#: gnome/gscreen.c:2373 +#: gnome/gscreen.c:2335 msgid "Go to the previously visited directory" msgstr "" -#: gnome/gscreen.c:2375 +#: gnome/gscreen.c:2337 msgid "Up" msgstr "" -#: gnome/gscreen.c:2375 +#: gnome/gscreen.c:2337 msgid "Go up a level in the directory heirarchy" msgstr "" -#: gnome/gscreen.c:2377 +#: gnome/gscreen.c:2339 msgid "Forward" msgstr "" -#: gnome/gscreen.c:2377 +#: gnome/gscreen.c:2339 msgid "Go to the next directory" msgstr "" -#: gnome/gscreen.c:2380 src/tree.c:1011 +#: gnome/gscreen.c:2342 src/tree.c:1011 msgid "Rescan" msgstr "" -#: gnome/gscreen.c:2380 +#: gnome/gscreen.c:2342 msgid "Rescan the current directory" msgstr "" -#: gnome/gscreen.c:2383 +#: gnome/gscreen.c:2345 msgid "Home" msgstr "" -#: gnome/gscreen.c:2383 +#: gnome/gscreen.c:2345 msgid "Go to your home directory" msgstr "" -#: gnome/gscreen.c:2529 +#: gnome/gscreen.c:2486 msgid "Location:" msgstr "" diff -ruN old/mc-4.5.32/src/ChangeLog new/mc-4.5.33/src/ChangeLog --- old/mc-4.5.32/src/ChangeLog Mon May 24 15:53:56 1999 +++ new/mc-4.5.33/src/ChangeLog Thu May 27 17:45:26 1999 @@ -1,3 +1,7 @@ +1999-05-24 Brandon S. Allbery + + * subshell.c (pty_open_master): Added missing comma.p + Mon May 17 07:37:12 1999 Norbert Warmuth * subshell.c (pty_open_master): use getpt () if available to open diff -ruN old/mc-4.5.32/src/subshell.c new/mc-4.5.33/src/subshell.c --- old/mc-4.5.32/src/subshell.c Mon May 24 15:53:56 1999 +++ new/mc-4.5.33/src/subshell.c Thu May 27 17:45:25 1999 @@ -1100,7 +1100,7 @@ pty_master = getpt (); #else strcpy (pty_name, "/dev/ptmx"); - pty_master = open (pty_name, O_RDWR) + pty_master = open (pty_name, O_RDWR); #endif if (pty_master == -1 || grantpt (pty_master) == -1 /* Grant access to slave */