'saving' is now called 'exporting' everywhere - this is more consistent and maybe saving functionality will come later

git-svn-id: https://ipscan.svn.sourceforge.net/svnroot/ipscan/trunk@262 375186e5-ef17-0410-b0b6-91563547dcda
This commit is contained in:
angryziber 2008-01-04 20:09:53 +00:00
parent 24c64de330
commit 92394a6dfe
3 changed files with 8 additions and 8 deletions

View File

@ -2,8 +2,8 @@ icon=images/icon.png
encoding=ISO-8859-1
menu.file=&File
menu.file.newWindow=&New window
menu.file.saveAll=&Save...
menu.file.saveSelection=Save se&lection...
menu.file.exportAll=&Export all...
menu.file.exportSelection=Export se&lection...
menu.file.exportPreferences=Export &preferences...
menu.file.importPreferences=&Import preferences...
menu.file.exit=E&xit
@ -50,7 +50,7 @@ state.ready=Ready
state.scanning=Scanning
state.waitForThreads=Wait for all threads to terminate...
state.killingThreads=Killing all threads...
state.saving=Exporting results...
state.exporting=Exporting results...
state.searching=Searching...
state.opening=Opening
state.retrievingVersion=Retrieving the latest version...
@ -63,8 +63,8 @@ title.preferences.display=&Display
title.preferences.fetchers=&Fetchers
title.preferences.ports=&Ports
title.details=IP address details
title.saveAll=Export All Results
title.saveSelection=Export Selected Results
title.exportAll=Export All Results
title.exportSelection=Export Selected Results
title.gettingStarted=Getting Started
title.favorite.add=Add a favorite
title.favorite.edit=Edit favorites

View File

@ -71,8 +71,8 @@ public class MainMenu {
Menu subMenu = initMenu(menu, "menu.file");
// initMenuItem(subMenu, "menu.file.newWindow", "Ctrl+N", new Integer(SWT.MOD1 | 'N'), initListener(FileActions.NewWindow.class));
// initMenuItem(subMenu, null, null, null, null);
initMenuItem(subMenu, "menu.file.saveAll", "Ctrl+S", new Integer(SWT.MOD1 | 'S'), initListener(FileActions.SaveAll.class), true);
initMenuItem(subMenu, "menu.file.saveSelection", null, null, initListener(FileActions.SaveSelection.class), true);
initMenuItem(subMenu, "menu.file.exportAll", "Ctrl+S", new Integer(SWT.MOD1 | 'S'), initListener(FileActions.SaveAll.class), true);
initMenuItem(subMenu, "menu.file.exportSelection", null, null, initListener(FileActions.SaveSelection.class), true);
initMenuItem(subMenu, null, null, null, null);
initMenuItem(subMenu, "menu.file.exportPreferences", null, null, null);
initMenuItem(subMenu, "menu.file.importPreferences", null, null, null);

View File

@ -78,7 +78,7 @@ public class FileActions {
// create exporter instance
Exporter exporter = exporterRegistry.createExporter(fileName);
statusBar.setStatusText(Labels.getLabel("state.saving"));
statusBar.setStatusText(Labels.getLabel("state.exporting"));
ExportProcessor exportProcessor = new ExportProcessor(exporter, fileName);