Skip to content

Commit

Permalink
updated verbage for account automatic backups
Browse files Browse the repository at this point in the history
  • Loading branch information
rmroot committed May 8, 2024
1 parent 198a4c2 commit d093e94
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 23 deletions.
24 changes: 12 additions & 12 deletions src/app/account/account-settings/account-settings.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ <h4>
Automatic Account Backup
</h4>
<ng-container *ngIf="!selectedAccount.dataBackupFilePath">
<p>Save an automatic backup of this account's data saved to your machine or shared drive. The backup can
be used to restore the data if it is lost or if you want to revert back to an older state of the
<p>Save an automatic backup of this account's data to your machine or a shared drive. The backup can be
used to restore the data if it is lost or if you want to revert back to an older state of the
account.</p>
<button class="btn btn-outline" (click)="automaticBackup()">Select Automatic Backup Location</button>
</ng-container>
Expand All @@ -112,17 +112,17 @@ <h4>
</label>
<div class="form-check">
<input type="radio" class="form-check-input" name="isSharedBackupFile"
[(ngModel)]="selectedAccount.isSharedBackupFile" [value]="true" id="isShared"
[(ngModel)]="selectedAccount.isSharedBackupFile" [value]="false" id="isNotShared"
(change)="changeIsShared()">
<label class="form-check-label" for="isShared">Yes this is a shared file that may be edited
by someone else on a different computer.</label>
<label class="form-check-label" for="isNotShared">No this computer is the only one that will
modify this file.</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" name="isSharedBackupFile"
[(ngModel)]="selectedAccount.isSharedBackupFile" [value]="false" id="isNotShared"
[(ngModel)]="selectedAccount.isSharedBackupFile" [value]="true" id="isShared"
(change)="changeIsShared()">
<label class="form-check-label" for="isNotShared">No this computer is the only one that will
modify this file.</label>
<label class="form-check-label" for="isShared">Yes this is a shared file that may be edited
by someone else on a different computer.</label>
</div>
<div *ngIf="selectedAccount.isSharedBackupFile">
<label class="semibold">
Expand All @@ -135,10 +135,10 @@ <h4>
<hr>

<label>
Additionally, you can choose to automatically archive the state of the account everytime that
the account is accessed. A popup will show when the account is accessed allowing you to choose
when to archive the account. Otherwise you can select to never create an archive or to create an
archive whenever the account is accessed without the popup window.
Additionally, VERIFI can create a version history of the state of your account when your account
is opened. Use this setting to determine if VERIFI should create a version history every time
you open the account, only when you want it to, or never. This will create a series of backup
files within the same directory as main backup.
</label>
<div class="form-check">
<input type="radio" class="form-check-input" name="archiveOption"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,13 @@
<div class="form-check">
<input type="radio" class="form-check-input" name="overwriteOption" [(ngModel)]="overwriteOption"
[value]="'updateAccount'" id="updateAccount">
<label class="form-check-label" for="updateAccount"><b>Update {{account.name}}</b> with the data
from the backup file.</label>
<label class="form-check-label" for="updateAccount">Update the <b>current account</b> with the data
from the backup account.</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" name="overwriteOption" [(ngModel)]="overwriteOption"
[value]="'overwriteFile'" id="overwriteFile">
<label class="form-check-label" for="overwriteFile">Update the <b>backup file</b> with the current
state of {{account.name}}.</label>
<label class="form-check-label" for="overwriteFile">Update the <b>backup account</b> with the state of the current account.</label>
</div>
<hr>
</ng-container>
Expand All @@ -87,33 +86,32 @@
<ng-container
*ngIf="differingBackups || (account.archiveOption != 'always' && account.archiveOption != 'never') || forceModal">
<label class="semibold">
Would you like to create an archive of the current state of this account? If selected, a copy of
this
account will be saved as a backup file with a time stamp. </label>
Would you like to create a version history file of this account before uploading latest backup
file? If selected, a copy of this account will be saved as a backup file with a time stamp. </label>
<div class="form-check">
<input type="radio" class="form-check-input" name="archiveOption" [(ngModel)]="archiveOption"
[value]="'skip'" id="skip">
<label class="form-check-label" for="skip">Skip Archive This Time</label>
<label class="form-check-label" for="skip">Skip archive this time</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" name="archiveOption" [(ngModel)]="archiveOption"
[value]="'justOnce'" id="justOnce">
<label class="form-check-label" for="justOnce">
<span class="fa fa-file-arrow-down"></span>
Create Single Archive
Create archive now
</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" name="archiveOption" [(ngModel)]="archiveOption"
[value]="'always'" id="always">
<label class="form-check-label" for="always">
<span class="fa fa-file-arrow-down"></span> Always Archive
<span class="fa fa-file-arrow-down"></span> Always archive
</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" name="archiveOption" [(ngModel)]="archiveOption"
[value]="'never'" id="never">
<label class="form-check-label" for="never">Never Archive</label>
<label class="form-check-label" for="never">Never archive</label>
</div>
<hr>
</ng-container>
Expand Down

0 comments on commit d093e94

Please sign in to comment.