Inital clean up

This commit is contained in:
Kelly Kelly 2020-09-15 14:22:06 -04:00
parent 434b0f7a9f
commit 6dcff287d2
4 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
CTL_OpenDiscoveryAction=Discovery CTL_OpenDiscoveryAction=Discovery
# {0} - dataSourceName # {0} - dataSourceName
DataSourceModuleWrapper.exifModule.text=Exif Parser module was not run on data source: {0}\n DataSourceModuleWrapper.exifModule.text=Picture Analyzer module was not run on data source: {0}\n
# {0} - dataSourceName # {0} - dataSourceName
DataSourceModuleWrapper.fileTypeModule.text=File Type Identification module was not run on data source: {0}\n DataSourceModuleWrapper.fileTypeModule.text=File Type Identification module was not run on data source: {0}\n
# {0} - dataSourceName # {0} - dataSourceName

View File

@ -49,7 +49,7 @@ class DataSourceModulesWrapper {
"# {0} - dataSourceName", "# {0} - dataSourceName",
"DataSourceModuleWrapper.fileTypeModule.text=File Type Identification module was not run on data source: {0}\n", "DataSourceModuleWrapper.fileTypeModule.text=File Type Identification module was not run on data source: {0}\n",
"# {0} - dataSourceName", "# {0} - dataSourceName",
"DataSourceModuleWrapper.exifModule.text=Exif Parser module was not run on data source: {0}\n" "DataSourceModuleWrapper.exifModule.text=Picture Analyzer module was not run on data source: {0}\n"
}) })
/** /**
* Get the message which indicates which modules were not run on this data * Get the message which indicates which modules were not run on this data

View File

@ -1,3 +1,3 @@
ExifProcessor.indexError.message=Failed to post EXIF Metadata artifact(s). ExifProcessor.indexError.message=Failed to post Picture Analzyer artifact(s).
ExifProcessor.module_name=Exif Parser ExifProcessor.module_name=Exif Parser
ExifProcessor.userContent.description=EXIF metadata exists for this file. ExifProcessor.userContent.description=Picture Analyzer data exists for this file.

View File

@ -69,8 +69,8 @@ public class EXIFProcessor implements PictureProcessor {
@Override @Override
@NbBundle.Messages({ @NbBundle.Messages({
"ExifProcessor.indexError.message=Failed to post EXIF Metadata artifact(s).", "ExifProcessor.indexError.message=Failed to post Picture Analzyer artifact(s).",
"ExifProcessor.userContent.description=EXIF metadata exists for this file.", "ExifProcessor.userContent.description=Picture Analyzer data exists for this file.",
"ExifProcessor.module_name=Exif Parser" "ExifProcessor.module_name=Exif Parser"
}) })
public void process(IngestJobContext context, AbstractFile file) { public void process(IngestJobContext context, AbstractFile file) {