diff --git a/iped-app/resources/config/IPEDConfig.txt b/iped-app/resources/config/IPEDConfig.txt
index b385a8632f..cd90b15ff7 100644
--- a/iped-app/resources/config/IPEDConfig.txt
+++ b/iped-app/resources/config/IPEDConfig.txt
@@ -110,7 +110,7 @@ enableMinIO = false
# Enables OCR on images and scanned PDF files. It can increase processing time a lot.
# OCR language dictionary and other advanced configurations can be found in conf/OCRConfig.txt.
-enableOCR = false
+enableOCR = true
# Enables audio transcription.
# Default implementation uses VOSK transcription on local CPU (faster but bad accuracy).
@@ -119,12 +119,12 @@ enableOCR = false
# - Whisper algorithm (much slower but better accuracy)
# - Google Cloud (about $1.00 per hour cost)
# - Microsoft Azure (about $1.00 per hour cost)
-enableAudioTranscription = false
+enableAudioTranscription = true
# Enables carving. "addUnallocated" must be enabled to scan unallocated space.
# By default, our carving module scans many places in the evidence for deleted or embedded files.
# Places to scan and file types to recover can be configured in "conf/CarverConfig.xml"
-enableCarving = false
+enableCarving = true
# Enables carving that retrieves known files from the LED base, based on the beginning (64K) of the file.
# It's necessary to enable "addUnallocated" and to configure "hashesDB" (with LED hashes data imported).
diff --git a/iped-app/resources/config/LocalConfig.txt b/iped-app/resources/config/LocalConfig.txt
index e131f9d5b9..db44c8c474 100644
--- a/iped-app/resources/config/LocalConfig.txt
+++ b/iped-app/resources/config/LocalConfig.txt
@@ -3,7 +3,7 @@
########################################################################
# Defines program localization/language. Currently there are localizations for 'en', 'pt-BR', 'it-IT', 'de-DE', 'es-AR' and 'fr-FR'.
-locale = en
+locale = pt-BR
# Temporary directory for processing: "default" uses the system temporary folder.
# Configure it on a folder free of antivirus, system indexing or restoring. Using a SSD disk is highly recommended.
@@ -11,7 +11,7 @@ indexTemp = default
# Enable if indexTemp is on a SSD disk. Optimizations are made that can improve processing speed up to 2x.
# Do not enable it if indexTemp is NOT on SSD or you will have performance problems.
-indexTempOnSSD = false
+indexTempOnSSD = true
# Enable if output/case folder is on SSD. If enabled, index is created directly in case folder,
# not in indexTemp, so you will need less free space in temp folder.
diff --git a/iped-app/resources/config/conf/AudioTranscriptConfig.txt b/iped-app/resources/config/conf/AudioTranscriptConfig.txt
index 66d681d517..646a8315a7 100644
--- a/iped-app/resources/config/conf/AudioTranscriptConfig.txt
+++ b/iped-app/resources/config/conf/AudioTranscriptConfig.txt
@@ -7,7 +7,7 @@
# Default implementation uses Vosk transcription on local CPU (slow and medium quality).
# We include small portable models for 'en' and 'pt-BR', if you want to use a different language model
# you should download it from https://alphacephei.com/vosk/models and put in 'models/vosk/[lang]' folder.
-implementationClass = iped.engine.task.transcript.VoskTranscriptTask
+#implementationClass = iped.engine.task.transcript.VoskTranscriptTask
# Uses a local wav2vec2 implementation for transcription. Accuracy is much better than most Vosk models.
# This is up to 10x slower than Vosk on high end CPUs. Using a good GPU is highly recommended!
@@ -19,7 +19,7 @@ implementationClass = iped.engine.task.transcript.VoskTranscriptTask
# This is up to 4x slower than wav2vec2 depending on compared models. Using a high end GPU is strongly recommended!
# Please check the installation steps: https://github.com/sepinf-inc/IPED/wiki/User-Manual#whisper
# If you enable this, you must set 'whisperModel' param below.
-#implementationClass = iped.engine.task.transcript.WhisperTranscriptTask
+implementationClass = iped.engine.task.transcript.WhisperTranscriptTask
# Uses a remote service for transcription.
# The remote service is useful if you have a central server/cluster with many GPUs to be shared among processing nodes.
@@ -65,6 +65,9 @@ minTimeout = 180
# Number of seconds to wait for each audio second transcription. 'minTimeout' param above is added to this.
timeoutPerSec = 3
+# Enable SQLite's WAL mode to mitigate connection errors when the output directory is on a network share
+SQLiteWalMode = true
+
#########################################
# VoskTranscriptTask options
#########################################
@@ -108,7 +111,7 @@ minWordScore = 0.5
# If you know the language you want to transcribe, please set the 'language' option above.
# 'language = auto' uses the 'locale' set on LocalConfig.txt
# 'language = detect' uses auto detection, but it can cause mistakes
-whisperModel = medium
+whisperModel = ./models/whisper
# Which device to use: 'cpu' or 'gpu'. For 'gpu', please see the official faster-whisper documentation
# for the installation requirements: https://github.com/SYSTRAN/faster-whisper?tab=readme-ov-file#gpu
diff --git a/iped-app/resources/config/conf/FileSystemConfig.txt b/iped-app/resources/config/conf/FileSystemConfig.txt
index d922b73e35..a2dfa82731 100644
--- a/iped-app/resources/config/conf/FileSystemConfig.txt
+++ b/iped-app/resources/config/conf/FileSystemConfig.txt
@@ -9,7 +9,7 @@ robustImageReading = true
numImageReaders = auto
# Add and process unallocated areas of images.
-addUnallocated = false
+addUnallocated = true
# Add and process file slacks.
addFileSlacks = false
diff --git a/iped-app/resources/config/conf/HTMLReportConfig.txt b/iped-app/resources/config/conf/HTMLReportConfig.txt
index 47a66894b8..f51dfd01b6 100644
--- a/iped-app/resources/config/conf/HTMLReportConfig.txt
+++ b/iped-app/resources/config/conf/HTMLReportConfig.txt
@@ -4,7 +4,7 @@
# Case information may be loaded from .asap file (Brazilian Federal Police) informed by command line optionin (-asap).
# If not used -asap option, default values below will be used.
-Header=ORGANIZATION HEADER
LABORATORY NAME
+Header=SECRETARIA DE ESTADO DE FAZENDA DE MINAS GERAIS
SUPERINTENDÊNCIA DE FISCALIZAÇÃO
SUPERINTENDÊNCIA DE TECNOLOGIA DA INFORMAÇÃO
RequestDate=xx/xx/201x
ReportDate=xx/xx/201x
RecordDate=xx/xx/201x
diff --git a/iped-app/resources/config/conf/IndexTaskConfig.txt b/iped-app/resources/config/conf/IndexTaskConfig.txt
index df58abfba0..d492460fbf 100644
--- a/iped-app/resources/config/conf/IndexTaskConfig.txt
+++ b/iped-app/resources/config/conf/IndexTaskConfig.txt
@@ -1,5 +1,5 @@
# Added unallocated space will be indexed. "addUnallocated" (FileSystemConfig.txt) and "parseUnknownFiles" (ParsingTaskConfig.txt) must be enabled.
-indexUnallocated = false
+indexUnallocated = true
# Converts text to lowercase before indexing, making the search case-insensitive.
# Disable only in exceptional cases to generate better dictionaries to use in case-sensitive password breaking.
diff --git a/iped-app/resources/localization/iped-desktop-messages.properties b/iped-app/resources/localization/iped-desktop-messages.properties
index dfa6776be1..11d4fa1500 100644
--- a/iped-app/resources/localization/iped-desktop-messages.properties
+++ b/iped-app/resources/localization/iped-desktop-messages.properties
@@ -77,6 +77,8 @@ BookmarksManager.CommentsTooltip=Bookmark comments
BookmarksManager.Update=Update
BookmarksManager.UpdateTooltip=Update comments
BookmarksManager.AlreadyExists=Bookmark name already exists!
+BookmarksManager.IncludeSubitems=Include Subitems
+BookmarksManager.IncludeParentItem=Include Parent Item
BookmarksTreeModel.NoBookmarks=[No Bookmarks]
BookmarksTreeModel.RootName=Bookmarks
CategoryTreeModel.RootName=Categories
@@ -111,6 +113,24 @@ CopyProperties.CSVDateFormat=MM/dd/yyyy HH:mm:ss z
CopyProperties.CSVDelimiter=,
CopyProperties.from=\ of
DuplicatesTableModel.Duplicates=\ Duplicates
+ExportCase.Title=Export Case
+ExportCase.ExportEvidence=Export Evidences
+ExportCase.ExportFolder=Export Folder
+ExportCase.Export=Export
+ExportCase.Close=Close
+ExportCase.Open=Open
+ExportCase.EstimateSize=Estimate Size
+ExportCase.OpenExportFolder=Open Export Folder
+ExportCase.InvalidExportFolder=Invalid Export Folder!
+ExportCase.ExportDirectoryInside=Export directory cannot be inside case folder!
+ExportCase.ExportFolderEmpty=Export Folder is not empty!
+ExportCase.EstimatedSize=Estimated Size
+ExportCase.EstimatingSize=Estimating total size
+ExportCase.CaseExported=Case successfully exported to
+ExportCase.ExportError=Export Error! Verify aplication logs
+ExportCase.of=of
+ExportCase.timeLeft=Time left
+ExportCase.Copying=Copying
ExportFiles.Copying=Copying
ExportFiles.of=\ of
ExportFilesToZip.Copying=Copying
@@ -273,6 +293,7 @@ MenuClass.UncheckHighlightedAndSubItems=Uncheck highlighted items and subitems
MenuClass.UncheckHighlightedAndParent=Uncheck highlighted and parent items
MenuClass.UncheckHighlightedAndReferences=Uncheck highlighted and reference items
MenuClass.UncheckHighlightedAndReferencedBy=Uncheck highlighted and "referenced by" items
+MenuClass.ExportCase=Export Case
MenuListener.ChatNotFound=Parent chat not found
MenuListener.Cols=Columns:
MenuListener.ExportTree.Warn=Highlight 01 (one) tree node as export reference\!
diff --git a/iped-app/resources/localization/iped-desktop-messages_de_DE.properties b/iped-app/resources/localization/iped-desktop-messages_de_DE.properties
index 7edec9279d..5616702f42 100644
--- a/iped-app/resources/localization/iped-desktop-messages_de_DE.properties
+++ b/iped-app/resources/localization/iped-desktop-messages_de_DE.properties
@@ -77,6 +77,8 @@ BookmarksManager.CommentsTooltip=Kommentare zu Lesezeichen
BookmarksManager.Update=Update
BookmarksManager.UpdateTooltip=Kommentare zu Updates
BookmarksManager.AlreadyExists=Lesezeichen ist bereits vorhanden!
+BookmarksManager.IncludeSubitems=Include Subitems[TBT]
+BookmarksManager.IncludeParentItem=Include Parent Item[TBT]
BookmarksTreeModel.NoBookmarks=[Keine Lesezeichen]
BookmarksTreeModel.RootName=Lesezeichen
CategoryTreeModel.RootName=Kategorien
@@ -111,6 +113,24 @@ CopyProperties.CSVDateFormat=dd/MM/yyyy HH:mm:ss z
CopyProperties.CSVDelimiter=;
CopyProperties.from=\ von
DuplicatesTableModel.Duplicates=\ Duplikate
+ExportCase.Title=Export Case[TBT]
+ExportCase.ExportEvidence=Export Evidences[TBT]
+ExportCase.ExportFolder=Export Folder[TBT]
+ExportCase.Export=Export[TBT]
+ExportCase.Close=Close[TBT]
+ExportCase.Open=Open[TBT]
+ExportCase.EstimateSize=Estimate Size[TBT]
+ExportCase.OpenExportFolder=Open Export Folder[TBT]
+ExportCase.InvalidExportFolder=Invalid Export Folder![TBT]
+ExportCase.ExportDirectoryInside=Export directory cannot be inside case folder![TBT]
+ExportCase.ExportFolderEmpty=Export Folder is not empty![TBT]
+ExportCase.EstimatedSize=Estimated Size[TBT]
+ExportCase.EstimatingSize=Estimating total size[TBT]
+ExportCase.CaseExported=Case successfully exported to[TBT]
+ExportCase.ExportError=Export Error! Verify aplication logs[TBT]
+ExportCase.of=of[TBT]
+ExportCase.timeLeft=Time left[TBT]
+ExportCase.Copying=Copying[TBT]
ExportFiles.Copying=Kopiere
ExportFiles.of=\ von
ExportFilesToZip.Copying=Kopiere
@@ -273,6 +293,7 @@ MenuClass.UncheckHighlightedAndSubItems=markierte Elemente und Unterelemente abw
MenuClass.UncheckHighlightedAndParent=Hervorgehobene und Elternelemente abwählen
MenuClass.UncheckHighlightedAndReferences=Hervorgehobene und refernezierte Elemente abwählen
MenuClass.UncheckHighlightedAndReferencedBy=Hervorgehobene und Elemente "referenziert von" abwählen
+MenuClass.ExportCase=Export Case [TBT]
MenuListener.ChatNotFound=übergeordneten Chat nicht gefunden
MenuListener.Cols=Spalten:
MenuListener.ExportTree.Warn=Markiere 01 (einen) Baumknoten als Exportreferenz\!
diff --git a/iped-app/resources/localization/iped-desktop-messages_es_AR.properties b/iped-app/resources/localization/iped-desktop-messages_es_AR.properties
index 49cdd687a0..27e0779d97 100644
--- a/iped-app/resources/localization/iped-desktop-messages_es_AR.properties
+++ b/iped-app/resources/localization/iped-desktop-messages_es_AR.properties
@@ -77,6 +77,8 @@ BookmarksManager.CommentsTooltip=Marcar comentarios
BookmarksManager.Update=Actualizar
BookmarksManager.UpdateTooltip=Actualizar comentarios
BookmarksManager.AlreadyExists=¡El nombre del marcador ya existe!
+BookmarksManager.IncludeSubitems=Include Subitems[TBT]
+BookmarksManager.IncludeParentItem=Include Parent Item[TBT]
BookmarksTreeModel.NoBookmarks=[Sin marcadores]
BookmarksTreeModel.RootName=Marcadores
CategoryTreeModel.RootName=CategorÃas
@@ -111,6 +113,24 @@ CopyProperties.CSVDateFormat=dd/MM/yyyy HH:mm:ss z
CopyProperties.CSVDelimiter=,
CopyProperties.from=\ de
DuplicatesTableModel.Duplicates=\ Duplicados
+ExportCase.Title=Export Case[TBT]
+ExportCase.ExportEvidence=Export Evidences[TBT]
+ExportCase.ExportFolder=Export Folder[TBT]
+ExportCase.Export=Export[TBT]
+ExportCase.Close=Close[TBT]
+ExportCase.Open=Open[TBT]
+ExportCase.EstimateSize=Estimate Size[TBT]
+ExportCase.OpenExportFolder=Open Export Folder[TBT]
+ExportCase.InvalidExportFolder=Invalid Export Folder![TBT]
+ExportCase.ExportDirectoryInside=Export directory cannot be inside case folder![TBT]
+ExportCase.ExportFolderEmpty=Export Folder is not empty![TBT]
+ExportCase.EstimatedSize=Estimated Size[TBT]
+ExportCase.EstimatingSize=Estimating total size[TBT]
+ExportCase.CaseExported=Case successfully exported to[TBT]
+ExportCase.ExportError=Export Error! Verify aplication logs[TBT]
+ExportCase.of=of[TBT]
+ExportCase.timeLeft=Time left[TBT]
+ExportCase.Copying=Copying[TBT]
ExportFiles.Copying=Copiando
ExportFiles.of=\ de
ExportFilesToZip.Copying=Copiando
@@ -273,6 +293,7 @@ MenuClass.UncheckHighlightedAndSubItems=Desmarcar elementos y subelementos resal
MenuClass.UncheckHighlightedAndParent=Desmarcar los elementos resaltados y los elementos principales
MenuClass.UncheckHighlightedAndReferences=Desmarque los elementos resaltados y de referencia
MenuClass.UncheckHighlightedAndReferencedBy=Desmarque los elementos resaltados y "referenciados por"
+MenuClass.ExportCase=Export Case [TBT]
MenuListener.ChatNotFound=Chat principal no encontrado
MenuListener.Cols=Columnas:
MenuListener.ExportTree.Warn=¡Resalte 01 (un) nodo del árbol como referencia de exportación\!
diff --git a/iped-app/resources/localization/iped-desktop-messages_fr_FR.properties b/iped-app/resources/localization/iped-desktop-messages_fr_FR.properties
index b6a6e6d11d..f0f3c47be3 100644
--- a/iped-app/resources/localization/iped-desktop-messages_fr_FR.properties
+++ b/iped-app/resources/localization/iped-desktop-messages_fr_FR.properties
@@ -77,6 +77,8 @@ BookmarksManager.CommentsTooltip=Commentaires du favori
BookmarksManager.Update=Mise à jour
BookmarksManager.UpdateTooltip=Mettre à jour les commentaires
BookmarksManager.AlreadyExists=Nom du favori existe déjà \!
+BookmarksManager.IncludeSubitems=Include Subitems[TBT]
+BookmarksManager.IncludeParentItem=Include Parent Item[TBT]
BookmarksTreeModel.NoBookmarks=[Aucun favori]
BookmarksTreeModel.RootName=Favoris
CategoryTreeModel.RootName=Catégories
@@ -111,6 +113,24 @@ CopyProperties.CSVDateFormat=dd/MM/yyyy HH:mm:ss z
CopyProperties.CSVDelimiter=;
CopyProperties.from=\ de
DuplicatesTableModel.Duplicates=\ Doublons
+ExportCase.Title=Export Case[TBT]
+ExportCase.ExportEvidence=Export Evidences[TBT]
+ExportCase.ExportFolder=Export Folder[TBT]
+ExportCase.Export=Export[TBT]
+ExportCase.Close=Close[TBT]
+ExportCase.Open=Open[TBT]
+ExportCase.EstimateSize=Estimate Size[TBT]
+ExportCase.OpenExportFolder=Open Export Folder[TBT]
+ExportCase.InvalidExportFolder=Invalid Export Folder![TBT]
+ExportCase.ExportDirectoryInside=Export directory cannot be inside case folder![TBT]
+ExportCase.ExportFolderEmpty=Export Folder is not empty![TBT]
+ExportCase.EstimatedSize=Estimated Size[TBT]
+ExportCase.EstimatingSize=Estimating total size[TBT]
+ExportCase.CaseExported=Case successfully exported to[TBT]
+ExportCase.ExportError=Export Error! Verify aplication logs[TBT]
+ExportCase.of=of[TBT]
+ExportCase.timeLeft=Time left[TBT]
+ExportCase.Copying=Copying[TBT]
ExportFiles.Copying=Copier
ExportFiles.of=\ de
ExportFilesToZip.Copying=Copier
@@ -273,6 +293,7 @@ MenuClass.UncheckHighlightedAndSubItems=Décocher les éléments et sous-éléme
MenuClass.UncheckHighlightedAndParent=Décocher les éléments parents en surbrillance
MenuClass.UncheckHighlightedAndReferences=Décocher les éléments et les référencements
MenuClass.UncheckHighlightedAndReferencedBy=Décocher les éléments "référencé par" en surbrillance
+MenuClass.ExportCase=Export Case [TBT]
MenuListener.ChatNotFound=Origine du chat non trouvé
MenuListener.Cols=Colonnes :
MenuListener.ExportTree.Warn=Selectionner 01 (un) nœud de l''arborescence comme référence d''export \!
diff --git a/iped-app/resources/localization/iped-desktop-messages_it_IT.properties b/iped-app/resources/localization/iped-desktop-messages_it_IT.properties
index 03b2c34311..d68b862c8f 100644
--- a/iped-app/resources/localization/iped-desktop-messages_it_IT.properties
+++ b/iped-app/resources/localization/iped-desktop-messages_it_IT.properties
@@ -77,6 +77,8 @@ BookmarksManager.CommentsTooltip=Commenti ai segnalibri
BookmarksManager.Update=Aggiorna
BookmarksManager.UpdateTooltip=Aggiorna commento
BookmarksManager.AlreadyExists=Il nome del segnalibro esiste già !
+BookmarksManager.IncludeSubitems=Include Subitems[TBT]
+BookmarksManager.IncludeParentItem=Include Parent Item[TBT]
BookmarksTreeModel.NoBookmarks=[Nessun segnalibro]
BookmarksTreeModel.RootName=Segnalibri
CategoryTreeModel.RootName=Categorie
@@ -111,6 +113,24 @@ CopyProperties.CSVDateFormat=dd/MM/yyyy HH:mm:ss z
CopyProperties.CSVDelimiter=,
CopyProperties.from=\ di
DuplicatesTableModel.Duplicates=\ Duplicati
+ExportCase.Title=Export Case[TBT]
+ExportCase.ExportEvidence=Export Evidences[TBT]
+ExportCase.ExportFolder=Export Folder[TBT]
+ExportCase.Export=Export[TBT]
+ExportCase.Close=Close[TBT]
+ExportCase.Open=Open[TBT]
+ExportCase.EstimateSize=Estimate Size[TBT]
+ExportCase.OpenExportFolder=Open Export Folder[TBT]
+ExportCase.InvalidExportFolder=Invalid Export Folder![TBT]
+ExportCase.ExportDirectoryInside=Export directory cannot be inside case folder![TBT]
+ExportCase.ExportFolderEmpty=Export Folder is not empty![TBT]
+ExportCase.EstimatedSize=Estimated Size[TBT]
+ExportCase.EstimatingSize=Estimating total size[TBT]
+ExportCase.CaseExported=Case successfully exported to[TBT]
+ExportCase.ExportError=Export Error! Verify aplication logs[TBT]
+ExportCase.of=of[TBT]
+ExportCase.timeLeft=Time left[TBT]
+ExportCase.Copying=Copying[TBT]
ExportFiles.Copying=Copia in corso
ExportFiles.of=\ di
ExportFilesToZip.Copying=Copia in corso
@@ -273,6 +293,7 @@ MenuClass.UncheckHighlightedAndSubItems=Deseleziona elementi evidenziati e sotto
MenuClass.UncheckHighlightedAndParent=Deseleziona elementi evidenziati e d''origine
MenuClass.UncheckHighlightedAndReferences=Deseleziona elementi evidenziati e condivisi
MenuClass.UncheckHighlightedAndReferencedBy=Deseleziona elementi evidenziati e "condivisi da"
+MenuClass.ExportCase=Export Case [TBT]
MenuListener.ChatNotFound=Chat d''origine non trovata
MenuListener.Cols=Colonne:
MenuListener.ExportTree.Warn=Evidenzia 01 (un) nodo dell''albero come riferimento per l''esportazione\!
diff --git a/iped-app/resources/localization/iped-desktop-messages_pt_BR.properties b/iped-app/resources/localization/iped-desktop-messages_pt_BR.properties
index 6eb2c25725..9630af8e04 100644
--- a/iped-app/resources/localization/iped-desktop-messages_pt_BR.properties
+++ b/iped-app/resources/localization/iped-desktop-messages_pt_BR.properties
@@ -77,6 +77,8 @@ BookmarksManager.CommentsTooltip=Comentários do marcador
BookmarksManager.Update=Atualizar
BookmarksManager.UpdateTooltip=Atualizar comentários
BookmarksManager.AlreadyExists=Nome de marcador já existente!
+BookmarksManager.IncludeSubitems=Incluir Subitens
+BookmarksManager.IncludeParentItem=Incluir Itens de Origem
BookmarksTreeModel.NoBookmarks=[Sem Marcadores]
BookmarksTreeModel.RootName=Marcadores
CategoryTreeModel.RootName=Categorias
@@ -111,6 +113,24 @@ CopyProperties.CSVDateFormat=dd/MM/yyyy HH:mm:ss z
CopyProperties.CSVDelimiter=;
CopyProperties.from=\ de
DuplicatesTableModel.Duplicates=\ Duplicatas
+ExportCase.Title=Exportar Caso
+ExportCase.ExportEvidence=Exportar Evidências
+ExportCase.ExportFolder=Diretório de Exportação
+ExportCase.Export=Exportar
+ExportCase.Close=Fechar
+ExportCase.Open=Abrir
+ExportCase.EstimateSize=Estimar Tamanho
+ExportCase.OpenExportFolder=Abrir Diretório de Exportação
+ExportCase.InvalidExportFolder=Diretório de Exportação Inválido!
+ExportCase.ExportDirectoryInside=Diretório de Exportação não pode estar dentro do da pasta do caso!
+ExportCase.ExportFolderEmpty=Diretório de Exportação não está vazio!
+ExportCase.EstimatedSize=Tamanho estimado
+ExportCase.EstimatingSize=Estimando tamanho total
+ExportCase.CaseExported=Caso exportado com sucesso para
+ExportCase.ExportError=Erro na exportação! Verificar logs da aplicação
+ExportCase.of=de
+ExportCase.timeLeft=Tempo restante
+ExportCase.Copying=Copiando
ExportFiles.Copying=Copiando
ExportFiles.of=\ de
ExportFilesToZip.Copying=Copiando
@@ -273,6 +293,7 @@ MenuClass.UncheckHighlightedAndSubItems=Desmarcar itens destacados e subitens
MenuClass.UncheckHighlightedAndParent=Desmarcar itens destacados e item pai
MenuClass.UncheckHighlightedAndReferences=Desmarcar itens destacados e referências
MenuClass.UncheckHighlightedAndReferencedBy=Desmarcar itens destacados e "referenciado por"
+MenuClass.ExportCase=Exportar Caso
MenuListener.ChatNotFound=Chat pai não encontrado
MenuListener.Cols=Colunas:
MenuListener.ExportTree.Warn=Selecione 01 (um) nó na árvore de diretórios como base de exportação\!
@@ -316,9 +337,9 @@ ReportDialog.ChooseLabel=Escolha os marcadores para inserir no relatório:
ReportDialog.Create=Gerar
ReportDialog.ErrorTitle=Erro
ReportDialog.Evidences=Materiais
-ReportDialog.Examiner=Examinador
+ReportDialog.Examiner=Observações
ReportDialog.FillInfo=Preencher
-ReportDialog.Investigation=Número da Investigação
+ReportDialog.Investigation=Hash
ReportDialog.KeywordsFile=Arquivo de palavras-chave (opcional):
ReportDialog.LoadButton=Abrir
ReportDialog.LoadInfo=Carregar informações do caso de arquivo .json ou .asap:
@@ -331,11 +352,11 @@ ReportDialog.PropertiesLabel=Propriedades dos arquivos a incluir
ReportDialog.PropertiesDialogTitle=Escolher propriedades
ReportDialog.Record=Registro/Protocolo
ReportDialog.RecordDate=Data do Registro
-ReportDialog.ReportDate=Data do Laudo
+ReportDialog.ReportDate=Nome do Caso
ReportDialog.ReportError=Erro ao gerar Relatório, verifique o log\!
ReportDialog.ReportFinished=Geração de Relatório finalizada\!
-ReportDialog.ReportNum=Número do Laudo
-ReportDialog.ReportTitle=TÃtulo do Laudo
+ReportDialog.ReportNum=Nome do Investigador
+ReportDialog.ReportTitle=Nome da Operação
ReportDialog.Request=Número da Solicitação
ReportDialog.RequestDate=Data da Solicitação
ReportDialog.Requester=Requisitante
diff --git a/iped-app/resources/root/htmlreport/pt-BR/ajuda.htm b/iped-app/resources/root/htmlreport/pt-BR/ajuda.htm
index 5cf9bd0bb7..af3ccc08ec 100644
--- a/iped-app/resources/root/htmlreport/pt-BR/ajuda.htm
+++ b/iped-app/resources/root/htmlreport/pt-BR/ajuda.htm
@@ -44,46 +44,19 @@