mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-09 19:39:57 +00:00
25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
|
title: $:/core/ui/Buttons/encryption
|
||
|
tags: $:/tags/PageControls
|
||
|
caption: {{$:/core/images/locked-padlock}} {{$:/language/Buttons/Encryption/Caption}}
|
||
|
|
||
|
<$reveal type="match" state="$:/isEncrypted" text="yes">
|
||
|
<$button message="tw-clear-password" title={{$:/language/Buttons/Encryption/ClearPassword/Hint}} aria-label={{$:/language/Buttons/Encryption/ClearPassword/Caption}} class=<<tw-config-toolbar-class>>>
|
||
|
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
|
||
|
{{$:/core/images/locked-padlock}}
|
||
|
</$list>
|
||
|
<$list filter="[<tw-config-toolbar-text>prefix[yes]]">
|
||
|
<$text text={{$:/language/Buttons/Encryption/ClearPassword/Caption}}/>
|
||
|
</$list>
|
||
|
</$button>
|
||
|
</$reveal>
|
||
|
<$reveal type="nomatch" state="$:/isEncrypted" text="yes">
|
||
|
<$button message="tw-set-password" title={{$:/language/Buttons/Encryption/SetPassword/Hint}} aria-label={{$:/language/Buttons/Encryption/SetPassword/Caption}} class=<<tw-config-toolbar-class>>>
|
||
|
<$list filter="[<tw-config-toolbar-icons>prefix[yes]]">
|
||
|
{{$:/core/images/unlocked-padlock}}
|
||
|
</$list>
|
||
|
<$list filter="[<tw-config-toolbar-text>prefix[yes]]">
|
||
|
<$text text={{$:/language/Buttons/Encryption/SetPassword/Caption}}/>
|
||
|
</$list>
|
||
|
</$button>
|
||
|
</$reveal>
|