Prepare for 4.5.18

This commit is contained in:
Miguel de Icaza 1999-02-24 02:26:11 +00:00
parent 934532f95b
commit 68655c2e30
6 changed files with 209 additions and 118 deletions

View File

@ -5,7 +5,7 @@ AC_INIT(create_vcs)
AC_CONFIG_HEADER(config.h) AC_CONFIG_HEADER(config.h)
PACKAGE=mc PACKAGE=mc
VERSION=4.5.17 VERSION=4.5.18
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
AC_DEFINE_UNQUOTED(VERSION, "$VERSION") AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
AC_SUBST(VERSION) AC_SUBST(VERSION)

View File

@ -267,6 +267,43 @@ run_cmd (void)
} }
} }
static void
gnome_exit (void)
{
GtkWidget *w;
int v;
w = gnome_message_box_new (
_("Notice that if you choose to terminate the file manager, you will\n"
"also terminate the GNOME desktop handler.\n\n"
"Are you sure you want to quit?"),
GNOME_MESSAGE_BOX_WARNING,
GNOME_STOCK_BUTTON_YES,
GNOME_STOCK_BUTTON_NO,
NULL);
v = gnome_dialog_run (GNOME_DIALOG (w));
if (v != 0)
return;
w = gnome_message_box_new (
N_("The file manager and the desktop handler are now terminating\n\n"
"If you want to start up again the desktop handler or the file manager\n"
"you can launch it from the Panel, or you can run the UNIX command `gmc'\n\n"
"Press OK to terminate the application, or cancel to continue using it."),
GNOME_MESSAGE_BOX_INFO,
GNOME_STOCK_BUTTON_OK,
GNOME_STOCK_BUTTON_CANCEL,
NULL);
v = gnome_dialog_run (GNOME_DIALOG (w));
if (v == 0){
/*
* We do not want to be restarted by the session manager now
*/
gnome_client_set_restart_style (session_client, GNOME_RESTART_NEVER);
gmc_do_quit ();
}
}
static void static void
do_desktop_rescan_devices (void) do_desktop_rescan_devices (void)
{ {
@ -356,6 +393,9 @@ GnomeUIInfo gnome_panel_commands_menu [] = {
#ifdef WITH_BACKGROUND #ifdef WITH_BACKGROUND
GNOMEUIINFO_ITEM_NONE( N_("_Background jobs..."), N_("List of background operations"), jobs_cmd ), GNOMEUIINFO_ITEM_NONE( N_("_Background jobs..."), N_("List of background operations"), jobs_cmd ),
#endif #endif
GNOMEUIINFO_SEPARATOR,
GNOMEUIINFO_ITEM_STOCK (N_("Exit"), N_("Terminates the file manager and the desktop"),
gnome_exit, GNOME_STOCK_PIXMAP_QUIT),
GNOMEUIINFO_END GNOMEUIINFO_END
}; };
@ -374,13 +414,22 @@ GnomeUIInfo gnome_panel_desktop_menu [] = {
GNOMEUIINFO_END GNOMEUIINFO_END
}; };
#define GNOME_PANEL_MENU_DESKTOP_INDEX 5 GnomeUIInfo gnome_panel_menu_with_desktop [] = {
GnomeUIInfo gnome_panel_menu [] = {
GNOMEUIINFO_MENU_FILE_TREE(gnome_panel_file_menu), GNOMEUIINFO_MENU_FILE_TREE(gnome_panel_file_menu),
GNOMEUIINFO_MENU_EDIT_TREE(gnome_panel_edit_menu), GNOMEUIINFO_MENU_EDIT_TREE(gnome_panel_edit_menu),
GNOMEUIINFO_SUBTREE(N_("_Layout"),gnome_panel_layout_menu), GNOMEUIINFO_SUBTREE(N_("_Layout"),gnome_panel_layout_menu),
GNOMEUIINFO_SUBTREE(N_("_Commands"),gnome_panel_commands_menu), GNOMEUIINFO_SUBTREE(N_("_Commands"),gnome_panel_commands_menu),
GNOMEUIINFO_SUBTREE(N_("_Desktop"), gnome_panel_desktop_menu), GNOMEUIINFO_SUBTREE(N_("_Desktop"), gnome_panel_desktop_menu),
GNOMEUIINFO_SUBTREE(N_("_Help"), gnome_panel_about_menu),
GNOMEUIINFO_END
};
GnomeUIInfo gnome_panel_menu_without_desktop [] = {
GNOMEUIINFO_MENU_FILE_TREE(gnome_panel_file_menu),
GNOMEUIINFO_MENU_EDIT_TREE(gnome_panel_edit_menu),
GNOMEUIINFO_SUBTREE(N_("_Layout"),gnome_panel_layout_menu),
GNOMEUIINFO_SUBTREE(N_("_Commands"),gnome_panel_commands_menu),
GNOMEUIINFO_SUBTREE(N_("_Help"), gnome_panel_about_menu),
GNOMEUIINFO_END GNOMEUIINFO_END
}; };
@ -535,16 +584,20 @@ create_container (Dlg_head *h, char *name, char *geometry)
gnome_app_set_contents (GNOME_APP (app), vbox); gnome_app_set_contents (GNOME_APP (app), vbox);
if (desktop_wm_is_gnome_compliant == 1) if (desktop_wm_is_gnome_compliant == 1)
gnome_panel_menu [GNOME_PANEL_MENU_DESKTOP_INDEX].type = GNOME_APP_UI_ENDOFINFO; gnome_app_create_menus_with_data (GNOME_APP (app), gnome_panel_menu_without_desktop, panel);
else
gnome_app_create_menus_with_data (GNOME_APP (app), gnome_panel_menu_with_desktop, panel);
gnome_app_create_menus_with_data (GNOME_APP (app), gnome_panel_menu, panel);
create_new_menu (GNOME_APP (app), panel); create_new_menu (GNOME_APP (app), panel);
panel->ministatus = GNOME_APPBAR(gnome_appbar_new(FALSE, TRUE, GNOME_PREFERENCES_NEVER)); panel->ministatus = GNOME_APPBAR(gnome_appbar_new(FALSE, TRUE, GNOME_PREFERENCES_NEVER));
gnome_app_set_statusbar(GNOME_APP (app), GTK_WIDGET(panel->ministatus)); gnome_app_set_statusbar(GNOME_APP (app), GTK_WIDGET(panel->ministatus));
gnome_app_install_menu_hints (GNOME_APP (app), gnome_panel_menu); if (desktop_wm_is_gnome_compliant)
gnome_app_install_menu_hints (GNOME_APP (app), gnome_panel_menu_without_desktop);
else
gnome_app_install_menu_hints (GNOME_APP (app), gnome_panel_menu_with_desktop);
gtk_signal_connect (GTK_OBJECT (app), gtk_signal_connect (GTK_OBJECT (app),
"enter_notify_event", "enter_notify_event",
GTK_SIGNAL_FUNC (panel_enter_event), GTK_SIGNAL_FUNC (panel_enter_event),

View File

@ -54,6 +54,9 @@ Dlg_head *desktop_dlg;
int run_desktop = 1; int run_desktop = 1;
/* Session client */
GnomeClient *session_client;
/* Used during argument processing */ /* Used during argument processing */
extern int finish_program; extern int finish_program;
@ -551,17 +554,23 @@ create_panels (void)
desktop_destroy (); desktop_destroy ();
} }
static void void
session_die (void) gmc_do_quit (void)
{ {
extern int quit;
/* FIXME: This wont get us out from a dialog box */ /* FIXME: This wont get us out from a dialog box */
gtk_main_quit (); gtk_main_quit ();
quit = 1; quit = 1;
dlg_stop (desktop_dlg); dlg_stop (desktop_dlg);
} }
static void
session_die (void)
{
extern int quit;
gmc_do_quit ();
}
/* /*
* Save the session callback * Save the session callback
*/ */
@ -615,14 +624,14 @@ session_save_state (GnomeClient *client, gint phase, GnomeRestartStyle save_styl
void void
session_management_setup (char *name) session_management_setup (char *name)
{ {
GnomeClient *client; session_client = gnome_master_client ();
client = gnome_master_client (); if (session_client){
if (client){ gnome_client_set_restart_style (session_client,
gnome_client_set_restart_style (client, finish_program?GNOME_RESTART_NEVER:GNOME_RESTART_IMMEDIATELY); finish_program ? GNOME_RESTART_NEVER : GNOME_RESTART_IMMEDIATELY);
gtk_signal_connect (GTK_OBJECT (client), "save_yourself", gtk_signal_connect (GTK_OBJECT (session_client), "save_yourself",
GTK_SIGNAL_FUNC (session_save_state), name); GTK_SIGNAL_FUNC (session_save_state), name);
gtk_signal_connect (GTK_OBJECT (client), "die", gtk_signal_connect (GTK_OBJECT (session_client), "die",
GTK_SIGNAL_FUNC (session_die), NULL); GTK_SIGNAL_FUNC (session_die), NULL);
} }
} }

View File

@ -48,5 +48,8 @@ struct gmc_color_pairs_s {
GdkColor *fore, *back; GdkColor *fore, *back;
}; };
void gmc_do_quit (void);
extern GnomeClient *session_client;
extern struct gmc_color_pairs_s gmc_color_pairs []; extern struct gmc_color_pairs_s gmc_color_pairs [];
#endif #endif

226
po/mc.pot
View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-02-22 17:45-0600\n" "POT-Creation-Date: 1999-02-23 20:21-0600\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -153,7 +153,7 @@ msgid "Set Filter"
msgstr "" msgstr ""
#: gnome/gcmd.c:593 gnome/gcmd.c:634 gnome/gcmd.c:639 gnome/gcmd.c:643 #: gnome/gcmd.c:593 gnome/gcmd.c:634 gnome/gcmd.c:639 gnome/gcmd.c:643
#: gnome/gscreen.c:2567 #: gnome/gscreen.c:2579
msgid "Show all files" msgid "Show all files"
msgstr "" msgstr ""
@ -181,46 +181,50 @@ msgstr ""
msgid "Enter extra arguments:" msgid "Enter extra arguments:"
msgstr "" msgstr ""
#: gnome/gdesktop.c:389 gnome/gdesktop.c:1774 #: gnome/gdesktop.c:392 gnome/gdesktop.c:1810
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: gnome/gdesktop.c:390 #: gnome/gdesktop.c:393
#, c-format #, c-format
msgid "Could not open %s; will not have desktop icons" msgid "Could not open %s; will not have desktop icons"
msgstr "" msgstr ""
#: gnome/gdesktop.c:961 #: gnome/gdesktop.c:977
msgid "While running the mount/umount command" msgid "While running the mount/umount command"
msgstr "" msgstr ""
#: gnome/gdesktop.c:1010 #: gnome/gdesktop.c:1026
msgid "While running the eject command" msgid "While running the eject command"
msgstr "" msgstr ""
#: gnome/gdesktop.c:1066 gnome/gicon.c:154 gnome/gtools.c:52
msgid "Error"
msgstr ""
#. Create the link to the user's home directory so that he will have an icon #. Create the link to the user's home directory so that he will have an icon
#: gnome/gdesktop.c:1770 #: gnome/gdesktop.c:1806
msgid "Home directory" msgid "Home directory"
msgstr "" msgstr ""
#: gnome/gdesktop.c:1775 #: gnome/gdesktop.c:1811
#, c-format #, c-format
msgid "Could not symlink %s to %s; will not have initial desktop icons." msgid "Could not symlink %s to %s; will not have initial desktop icons."
msgstr "" msgstr ""
#: gnome/gdesktop.c:2104 #: gnome/gdesktop.c:2140 gnome/glayout.c:408
msgid "Arrange Icons" msgid "Arrange Icons"
msgstr "" msgstr ""
#: gnome/gdesktop.c:2106 #: gnome/gdesktop.c:2142
msgid "Create New Window" msgid "Create New Window"
msgstr "" msgstr ""
#: gnome/gdesktop.c:2108 #: gnome/gdesktop.c:2144 gnome/glayout.c:410
msgid "Rescan Mountable Devices" msgid "Rescan Mountable Devices"
msgstr "" msgstr ""
#: gnome/gdesktop.c:2109 #: gnome/gdesktop.c:2145 gnome/glayout.c:411
msgid "Rescan Desktop" msgid "Rescan Desktop"
msgstr "" msgstr ""
@ -386,10 +390,6 @@ msgid ""
"%s" "%s"
msgstr "" msgstr ""
#: gnome/gicon.c:154 gnome/gtools.c:52
msgid "Error"
msgstr ""
#: gnome/gicon.c:154 #: gnome/gicon.c:154
msgid "Default set of icons not found, please check your installation" msgid "Default set of icons not found, please check your installation"
msgstr "" msgstr ""
@ -398,170 +398,196 @@ msgstr ""
msgid "Enter command to run" msgid "Enter command to run"
msgstr "" msgstr ""
#: gnome/glayout.c:274 #: gnome/glayout.c:277
msgid ""
"Notice that if you choose to terminate the file manager, you will\n"
"also terminate the GNOME desktop handler.\n"
"\n"
"Are you sure you want to quit?"
msgstr ""
#: gnome/glayout.c:289
msgid ""
"The file manager and the desktop handler are now terminating\n"
"\n"
"If you want to start up again the desktop handler or the file manager\n"
"you can launch it from the Panel, or you can run the UNIX command `gmc'\n"
"\n"
"Press OK to terminate the application, or cancel to continue using it."
msgstr ""
#: gnome/glayout.c:317
msgid "_Terminal" msgid "_Terminal"
msgstr "" msgstr ""
#: gnome/glayout.c:274 #: gnome/glayout.c:317
msgid "Launch a new terminal in the current directory" msgid "Launch a new terminal in the current directory"
msgstr "" msgstr ""
#. If this ever changes, make sure you update create_new_menu accordingly. #. If this ever changes, make sure you update create_new_menu accordingly.
#: gnome/glayout.c:276 #: gnome/glayout.c:319
msgid "_Directory..." msgid "_Directory..."
msgstr "" msgstr ""
#: gnome/glayout.c:276 #: gnome/glayout.c:319
msgid "Creates a new directory" msgid "Creates a new directory"
msgstr "" msgstr ""
#. GNOMEUIINFO_ITEM_NONE( N_("Open _FTP site"), N_("Opens an FTP site"), ftplink_cmd }, #. GNOMEUIINFO_ITEM_NONE( N_("Open _FTP site"), N_("Opens an FTP site"), ftplink_cmd },
#: gnome/glayout.c:297 #: gnome/glayout.c:340
msgid "_Copy..." msgid "_Copy..."
msgstr "" msgstr ""
#: gnome/glayout.c:297 #: gnome/glayout.c:340
msgid "Copy files" msgid "Copy files"
msgstr "" msgstr ""
#: gnome/glayout.c:298 #: gnome/glayout.c:341
msgid "_Delete..." msgid "_Delete..."
msgstr "" msgstr ""
#: gnome/glayout.c:298 #: gnome/glayout.c:341
msgid "Delete files" msgid "Delete files"
msgstr "" msgstr ""
#: gnome/glayout.c:299 #: gnome/glayout.c:342
msgid "_Move..." msgid "_Move..."
msgstr "" msgstr ""
#: gnome/glayout.c:299 #: gnome/glayout.c:342
msgid "Rename or move files" msgid "Rename or move files"
msgstr "" msgstr ""
#: gnome/glayout.c:301 #: gnome/glayout.c:344
msgid "Show directory sizes" msgid "Show directory sizes"
msgstr "" msgstr ""
#: gnome/glayout.c:301 #: gnome/glayout.c:344
msgid "Shows the disk space used by each directory" msgid "Shows the disk space used by each directory"
msgstr "" msgstr ""
#: gnome/glayout.c:308 #: gnome/glayout.c:351
msgid "Select _All" msgid "Select _All"
msgstr "" msgstr ""
#: gnome/glayout.c:308 #: gnome/glayout.c:351
msgid "Select all files in the current Panel" msgid "Select all files in the current Panel"
msgstr "" msgstr ""
#: gnome/glayout.c:310 #: gnome/glayout.c:353
msgid "_Select Files..." msgid "_Select Files..."
msgstr "" msgstr ""
#: gnome/glayout.c:310 #: gnome/glayout.c:353
msgid "Select a group of files" msgid "Select a group of files"
msgstr "" msgstr ""
#: gnome/glayout.c:311 #: gnome/glayout.c:354
msgid "_Invert Selection" msgid "_Invert Selection"
msgstr "" msgstr ""
#: gnome/glayout.c:311 #: gnome/glayout.c:354
msgid "Reverses the list of tagged files" msgid "Reverses the list of tagged files"
msgstr "" msgstr ""
#: gnome/glayout.c:313 #: gnome/glayout.c:356
msgid "_Rescan Directory" msgid "_Rescan Directory"
msgstr "" msgstr ""
#: gnome/glayout.c:313 #: gnome/glayout.c:356
msgid "Rescan the directory contents" msgid "Rescan the directory contents"
msgstr "" msgstr ""
#: gnome/glayout.c:320 #: gnome/glayout.c:363
msgid "Icon View" msgid "Icon View"
msgstr "" msgstr ""
#: gnome/glayout.c:321 #: gnome/glayout.c:364
msgid "Partial View" msgid "Partial View"
msgstr "" msgstr ""
#: gnome/glayout.c:322 #: gnome/glayout.c:365
msgid "Full View" msgid "Full View"
msgstr "" msgstr ""
#: gnome/glayout.c:323 #: gnome/glayout.c:366
msgid "Custom View" msgid "Custom View"
msgstr "" msgstr ""
#: gnome/glayout.c:328 #: gnome/glayout.c:371
msgid "_Sort By..." msgid "_Sort By..."
msgstr "" msgstr ""
#: gnome/glayout.c:328 #: gnome/glayout.c:371
msgid "Confirmation settings" msgid "Confirmation settings"
msgstr "" msgstr ""
#: gnome/glayout.c:329 #: gnome/glayout.c:372
msgid "_Filter View..." msgid "_Filter View..."
msgstr "" msgstr ""
#: gnome/glayout.c:329 #: gnome/glayout.c:372
msgid "Global option settings" msgid "Global option settings"
msgstr "" msgstr ""
#: gnome/glayout.c:336 #: gnome/glayout.c:379
msgid "_Find File..." msgid "_Find File..."
msgstr "" msgstr ""
#: gnome/glayout.c:336 #: gnome/glayout.c:379
msgid "Locate files on disk" msgid "Locate files on disk"
msgstr "" msgstr ""
#. { GNOME_APP_UI_ITEM, N_("_Compare panels..."), N_("Compare two panel contents"), gnome_compare_panels }, #. { GNOME_APP_UI_ITEM, N_("_Compare panels..."), N_("Compare two panel contents"), gnome_compare_panels },
#: gnome/glayout.c:339 #: gnome/glayout.c:382
msgid "_Run Command..." msgid "_Run Command..."
msgstr "" msgstr ""
#: gnome/glayout.c:339 #: gnome/glayout.c:382
msgid "Runs a command" msgid "Runs a command"
msgstr "" msgstr ""
#: gnome/glayout.c:341 #: gnome/glayout.c:384
msgid "_Run Command in panel..." msgid "_Run Command in panel..."
msgstr "" msgstr ""
#: gnome/glayout.c:341 #: gnome/glayout.c:384
msgid "Run a command and put the results in a panel" msgid "Run a command and put the results in a panel"
msgstr "" msgstr ""
#: gnome/glayout.c:344 #: gnome/glayout.c:387
msgid "_Active VFS list..." msgid "_Active VFS list..."
msgstr "" msgstr ""
#: gnome/glayout.c:344 #: gnome/glayout.c:387
msgid "List of active virtual file systems" msgid "List of active virtual file systems"
msgstr "" msgstr ""
#: gnome/glayout.c:351 #: gnome/glayout.c:394
msgid "_Background jobs..." msgid "_Background jobs..."
msgstr "" msgstr ""
#: gnome/glayout.c:351 #: gnome/glayout.c:394
msgid "List of background operations" msgid "List of background operations"
msgstr "" msgstr ""
#: gnome/glayout.c:366 #: gnome/glayout.c:418 gnome/glayout.c:428
msgid "_Layout" msgid "_Layout"
msgstr "" msgstr ""
#: gnome/glayout.c:367 #: gnome/glayout.c:419 gnome/glayout.c:429
msgid "_Commands" msgid "_Commands"
msgstr "" msgstr ""
#: gnome/glayout.c:420 #: gnome/glayout.c:420
msgid "_Desktop"
msgstr ""
#: gnome/glayout.c:421 gnome/glayout.c:430
msgid "_Help"
msgstr ""
#: gnome/glayout.c:482
msgid "File/New/Directory..." msgid "File/New/Directory..."
msgstr "" msgstr ""
@ -799,7 +825,7 @@ msgstr ""
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: gnome/gprop.c:521 gnome/gscreen.c:2354 #: gnome/gprop.c:521 gnome/gscreen.c:2366
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
@ -807,174 +833,174 @@ msgstr ""
msgid "Select icon" msgid "Select icon"
msgstr "" msgstr ""
#: gnome/gscreen.c:1439 #: gnome/gscreen.c:1451
msgid "Rescan Directory" msgid "Rescan Directory"
msgstr "" msgstr ""
#: gnome/gscreen.c:1439 #: gnome/gscreen.c:1451
msgid "Reloads the current directory" msgid "Reloads the current directory"
msgstr "" msgstr ""
#: gnome/gscreen.c:1617 #: gnome/gscreen.c:1629
msgid "All files" msgid "All files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1619 #: gnome/gscreen.c:1631
msgid "Archives and compressed files" msgid "Archives and compressed files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1621 #: gnome/gscreen.c:1633
msgid "RPM/DEB files" msgid "RPM/DEB files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1623 #: gnome/gscreen.c:1635
msgid "Text/Document files" msgid "Text/Document files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1625 #: gnome/gscreen.c:1637
msgid "HTML and SGML files" msgid "HTML and SGML files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1627 #: gnome/gscreen.c:1639
msgid "Postscript and PDF files" msgid "Postscript and PDF files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1629 #: gnome/gscreen.c:1641
msgid "Spreadsheet files" msgid "Spreadsheet files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1631 #: gnome/gscreen.c:1643
msgid "Image files" msgid "Image files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1634 #: gnome/gscreen.c:1646
msgid "Video/animation files" msgid "Video/animation files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1636 #: gnome/gscreen.c:1648
msgid "Audio files" msgid "Audio files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1638 #: gnome/gscreen.c:1650
msgid "C program files" msgid "C program files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1640 #: gnome/gscreen.c:1652
msgid "C++ program files" msgid "C++ program files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1642 #: gnome/gscreen.c:1654
msgid "Objective-C program files" msgid "Objective-C program files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1644 #: gnome/gscreen.c:1656
msgid "Scheme program files" msgid "Scheme program files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1646 #: gnome/gscreen.c:1658
msgid "Assembler program files" msgid "Assembler program files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1648 #: gnome/gscreen.c:1660
msgid "Misc. program files" msgid "Misc. program files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1650 #: gnome/gscreen.c:1662
msgid "Font files" msgid "Font files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1777 #: gnome/gscreen.c:1789
#, c-format #, c-format
msgid "Search: %s" msgid "Search: %s"
msgstr "" msgstr ""
#: gnome/gscreen.c:1787 #: gnome/gscreen.c:1799
#, c-format #, c-format
msgid "%s bytes in %d file" msgid "%s bytes in %d file"
msgstr "" msgstr ""
#: gnome/gscreen.c:1787 #: gnome/gscreen.c:1799
#, c-format #, c-format
msgid "%s bytes in %d files" msgid "%s bytes in %d files"
msgstr "" msgstr ""
#: gnome/gscreen.c:1813 src/screen.c:677 #: gnome/gscreen.c:1825 src/screen.c:677
msgid "<readlink failed>" msgid "<readlink failed>"
msgstr "" msgstr ""
#: gnome/gscreen.c:1867 #: gnome/gscreen.c:1879
msgid "Filter" msgid "Filter"
msgstr "" msgstr ""
#: gnome/gscreen.c:2354 #: gnome/gscreen.c:2366
msgid "Switch view to an Icon view" msgid "Switch view to an Icon view"
msgstr "" msgstr ""
#: gnome/gscreen.c:2356 #: gnome/gscreen.c:2368
msgid "Brief" msgid "Brief"
msgstr "" msgstr ""
#: gnome/gscreen.c:2356 #: gnome/gscreen.c:2368
msgid "Switch view to show just file name and type" msgid "Switch view to show just file name and type"
msgstr "" msgstr ""
#: gnome/gscreen.c:2358 #: gnome/gscreen.c:2370
msgid "Detailed" msgid "Detailed"
msgstr "" msgstr ""
#: gnome/gscreen.c:2358 #: gnome/gscreen.c:2370
msgid "Switch view to show detailed file statistics" msgid "Switch view to show detailed file statistics"
msgstr "" msgstr ""
#: gnome/gscreen.c:2360 #: gnome/gscreen.c:2372
msgid "Custom" msgid "Custom"
msgstr "" msgstr ""
#: gnome/gscreen.c:2360 #: gnome/gscreen.c:2372
msgid "Switch view to show custom determined statistics." msgid "Switch view to show custom determined statistics."
msgstr "" msgstr ""
#: gnome/gscreen.c:2368 #: gnome/gscreen.c:2380
msgid "Back" msgid "Back"
msgstr "" msgstr ""
#: gnome/gscreen.c:2368 #: gnome/gscreen.c:2380
msgid "Go to the previously visited directory" msgid "Go to the previously visited directory"
msgstr "" msgstr ""
#: gnome/gscreen.c:2370 #: gnome/gscreen.c:2382
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: gnome/gscreen.c:2370 #: gnome/gscreen.c:2382
msgid "Go up a level in the directory heirarchy" msgid "Go up a level in the directory heirarchy"
msgstr "" msgstr ""
#: gnome/gscreen.c:2372 #: gnome/gscreen.c:2384
msgid "Forward" msgid "Forward"
msgstr "" msgstr ""
#: gnome/gscreen.c:2372 #: gnome/gscreen.c:2384
msgid "Go to the next directory" msgid "Go to the next directory"
msgstr "" msgstr ""
#: gnome/gscreen.c:2375 src/tree.c:1020 #: gnome/gscreen.c:2387 src/tree.c:1020
msgid "Rescan" msgid "Rescan"
msgstr "" msgstr ""
#: gnome/gscreen.c:2375 #: gnome/gscreen.c:2387
msgid "Rescan the current directory" msgid "Rescan the current directory"
msgstr "" msgstr ""
#: gnome/gscreen.c:2378 #: gnome/gscreen.c:2390
msgid "Home" msgid "Home"
msgstr "" msgstr ""
#: gnome/gscreen.c:2378 #: gnome/gscreen.c:2390
msgid "Go to your home directory" msgid "Go to your home directory"
msgstr "" msgstr ""
#: gnome/gscreen.c:2512 #: gnome/gscreen.c:2524
msgid "Location:" msgid "Location:"
msgstr "" msgstr ""
@ -2677,7 +2703,7 @@ msgstr ""
msgid "File exists but can not be stat-ed: %s %s" msgid "File exists but can not be stat-ed: %s %s"
msgstr "" msgstr ""
#: src/dir.c:660 #: src/dir.c:662
msgid "Unknown" msgid "Unknown"
msgstr "" msgstr ""

View File

@ -524,7 +524,7 @@ if_link_is_exe (char *directory, file_entry *file)
struct stat b; struct stat b;
char *full_name; char *full_name;
full_name = g_concat_dir_and_file (directory, file->fname); full_name = concat_dir_and_file (directory, file->fname);
if (S_ISLNK (file->buf.st_mode)) { if (S_ISLNK (file->buf.st_mode)) {
full_name = concat_dir_and_file (directory, file->fname); full_name = concat_dir_and_file (directory, file->fname);