1
0
mirror of https://github.com/bitwarden/web synced 2025-12-26 13:13:24 +00:00

Add hide email option to send

This commit is contained in:
Thomas Rittson
2021-03-22 11:46:44 +10:00
parent 7877cb7751
commit cdb535c5c2
2 changed files with 9 additions and 0 deletions

View File

@@ -207,6 +207,12 @@
[readOnly]="disableSend"></textarea>
<div class="form-text text-muted small">{{'sendNotesDesc' | i18n}}</div>
</div>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" [(ngModel)]="send.hideEmail" id="hideEmail" name="HideEmail">
<label class="form-check-label" for="hideEmail">{{'hideEmail' | i18n}}</label>
</div>
</div>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" [(ngModel)]="send.disabled" id="disabled"

View File

@@ -3416,6 +3416,9 @@
"removePasswordConfirmation": {
"message": "Are you sure you want to remove the password?"
},
"hideEmail": {
"message": "Do not show my email address to the recipients of this Send."
},
"disableThisSend": {
"message": "Disable this Send so that no one can access it.",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."