@@ -387,7 +387,7 @@ class ProgressManager {
387387 } else if ( this . operationType === 'cleanup' ) {
388388 progressTitle . textContent = 'Cleanup Progress' ;
389389 } else if ( this . operationType === 'file-changes' ) {
390- progressTitle . textContent = 'File Changes Check Progress' ;
390+ progressTitle . textContent = 'Integrity Scan Progress' ;
391391 }
392392 }
393393
@@ -736,7 +736,7 @@ class ProgressManager {
736736 percentage = 0 ;
737737 }
738738
739- text = status . progress_message || 'Checking for file changes ...' ;
739+ text = status . progress_message || 'Checking file integrity ...' ;
740740
741741 const parts = [ ] ;
742742
@@ -822,7 +822,7 @@ class ProgressManager {
822822 this . app . showNotification ( 'Cleanup cancelled' , 'info' ) ;
823823 } else if ( operationType === 'file-changes' ) {
824824 this . updateFileChangesButton ( false ) ;
825- this . app . showNotification ( 'File changes check cancelled' , 'info' ) ;
825+ this . app . showNotification ( 'Integrity scan cancelled' , 'info' ) ;
826826 }
827827
828828 // Refresh stats to update UI
@@ -842,7 +842,7 @@ class ProgressManager {
842842 this . updateCleanupButton ( false ) ; // Re-enable cleanup button
843843 } else if ( operationType === 'file-changes' ) {
844844 const changesFound = status ?. changes_found || 0 ;
845- completionMessage = `File changes check completed! Found ${ changesFound } changed files.` ;
845+ completionMessage = `Integrity scan completed! Found ${ changesFound } changed files.` ;
846846 this . updateFileChangesButton ( false ) ; // Re-enable file changes button
847847
848848 // Show results if any changes were found
@@ -1439,7 +1439,7 @@ class PixelProbeApp {
14391439 const types = {
14401440 'normal' : 'Normal Scan' ,
14411441 'orphan' : 'Cleanup' ,
1442- 'file_changes' : 'Integrity Check '
1442+ 'file_changes' : 'Integrity Scan '
14431443 } ;
14441444 return types [ type ] || type ;
14451445 }
@@ -1612,7 +1612,7 @@ class PixelProbeApp {
16121612 console . log ( 'File changes response:' , result ) ;
16131613
16141614 if ( result . status === 'started' ) {
1615- this . showNotification ( 'File changes check started...' , 'info' ) ;
1615+ this . showNotification ( 'Integrity scan started...' , 'info' ) ;
16161616 // Start monitoring file changes progress
16171617 this . progress . operationType = 'file-changes' ;
16181618 this . progress . startMonitoring ( 'file-changes' ) ;
@@ -1622,7 +1622,7 @@ class PixelProbeApp {
16221622 if ( changedCount > 0 ) {
16231623 this . showNotification ( `Found ${ changedCount } files with changes` , 'info' ) ;
16241624 } else {
1625- this . showNotification ( 'No file changes detected' , 'success' ) ;
1625+ this . showNotification ( 'No integrity issues detected' , 'success' ) ;
16261626 }
16271627 }
16281628 } catch ( error ) {
@@ -3459,7 +3459,7 @@ class PixelProbeApp {
34593459 const status = await this . api . getFileChangesStatus ( ) ;
34603460 if ( status . is_running ) {
34613461 await this . api . cancelFileChanges ( ) ;
3462- this . showNotification ( 'File changes check cancellation requested' , 'info' ) ;
3462+ this . showNotification ( 'Integrity scan cancellation requested' , 'info' ) ;
34633463 }
34643464 } else {
34653465 this . showNotification ( 'No operation is currently running' , 'warning' ) ;
0 commit comments