mirror of
https://github.com/zadam/trilium.git
synced 2024-11-10 17:13:45 +08:00
use protect/unprotect terminology in button
This commit is contained in:
parent
f68ffe1581
commit
8a3ea412f9
1 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue