@@ -17,7 +17,7 @@ export class SyncWarningModal extends Modal {
1717 const { contentEl} = this ;
1818 const currentDir = this . plugin . settings . general . vaultCryptDir ;
1919
20- this . titleEl . setText ( 'VaultCrypt sync notice' ) ;
20+ this . titleEl . setText ( 'Sync notice' ) ;
2121
2222 contentEl . createEl ( 'p' , {
2323 text : `Your VaultCrypt folder ("${ currentDir } ") starts with a dot. `
@@ -26,18 +26,18 @@ export class SyncWarningModal extends Modal {
2626 } ) ;
2727
2828 contentEl . createEl ( 'p' , {
29- text : 'Would you like to move it to "VaultCrypt" ( a visible folder that Obsidian Sync will include) ?' ,
29+ text : 'Would you like to move it to a visible folder so Obsidian Sync can include it ?' ,
3030 } ) ;
3131
3232 new Setting ( contentEl )
3333 . addButton ( btn => btn
34- . setButtonText ( 'Move to "VaultCrypt" ' )
34+ . setButtonText ( 'Move to visible folder ' )
3535 . setCta ( )
3636 . onClick ( async ( ) => {
3737 this . close ( ) ;
3838 try {
3939 await this . plugin . profileService . moveVaultDir ( 'VaultCrypt' ) ;
40- new Notice ( 'VaultCrypt: directory moved to "VaultCrypt" .' ) ;
40+ new Notice ( 'Directory moved to visible location .' ) ;
4141 } catch {
4242 // moveVaultDir already shows a Notice on failure
4343 }
@@ -87,7 +87,7 @@ export class MoveVaultDirModal extends Modal {
8787 const { contentEl} = this ;
8888 const currentDir = this . plugin . settings . general . vaultCryptDir ;
8989
90- this . titleEl . setText ( 'Change VaultCrypt directory' ) ;
90+ this . titleEl . setText ( 'Change storage directory' ) ;
9191
9292 new Setting ( contentEl )
9393 . setName ( 'New directory path' )
@@ -101,7 +101,7 @@ export class MoveVaultDirModal extends Modal {
101101
102102 new Setting ( contentEl )
103103 . setName ( 'Move existing files' )
104- . setDesc ( 'Move .KDBX databases and other files from the current directory to the new location.' )
104+ . setDesc ( 'Move database files and attachments from the current directory to the new location.' )
105105 . addToggle ( toggle => toggle
106106 . setValue ( this . moveFiles )
107107 . onChange ( value => {
0 commit comments