use protect/unprotect terminology in button

This commit is contained in:
azivner 2017-12-10 15:47:21 -05:00
parent f68ffe1581
commit 8a3ea412f9

View file

@ -71,19 +71,19 @@
<div class="hide-toggle" style="grid-area: title;">
<div style="display: flex; align-items: center;">
<a onclick="protected_session.protectNoteAndSendToServer()"
title="Encrypt the note so that password will be required to view the note"
title="Protect the note so that password will be required to view the note"
class="icon-action"
id="protect-button"
style="display: none;">
<img src="images/icons/lock.png" alt="Encrypt note"/>
<img src="images/icons/lock.png" alt="Protect note"/>
</a>
<a onclick="protected_session.unprotectNoteAndSendToServer()"
title="Decrypt note permamently so that password will not be required to access this note in the future"
title="Unprotect note so that password will not be required to access this note in the future"
class="icon-action"
id="unprotect-button"
style="display: none;">
<img src="images/icons/unlock.png" alt="Decrypt note"/>
<img src="images/icons/unlock.png" alt="Unprotect note"/>
</a>
&nbsp;