mirror of
https://github.com/angryip/ipscan.git
synced 2025-10-26 11:18:17 +00:00
'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:
parent
24c64de330
commit
92394a6dfe
@ -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
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user