1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-24 17:10:29 +00:00

Move control panel autosave settings

This commit is contained in:
Jermolene 2014-09-04 09:58:50 +01:00
parent 6f4af4fc27
commit 47c53f924f
4 changed files with 15 additions and 21 deletions

View File

@ -75,11 +75,10 @@ Plugins/Enable/Hint: Enable this plugin when reloading page
Plugins/Language/Prompt: Languages Plugins/Language/Prompt: Languages
Plugins/Plugin/Prompt: Plugins Plugins/Plugin/Prompt: Plugins
Plugins/Theme/Prompt: Themes Plugins/Theme/Prompt: Themes
Saving/AutoSave/Disabled/Button: enable Settings/AutoSave/Disabled/Description: Do not save automatically
Saving/AutoSave/Disabled/Prompt: Autosave is currently disabled Settings/AutoSave/Enabled/Description: Save changes automatically
Saving/AutoSave/Enabled/Button: disable Settings/AutoSave/Caption: Autosave
Saving/AutoSave/Enabled/Prompt: Autosave is currently enabled Settings/AutoSave/Hint: Automatically save changes during editing
Saving/AutoSave: Autosave
Saving/Caption: Saving Saving/Caption: Saving
Saving/Heading: Saving Saving/Heading: Saving
Saving/TiddlySpot/Advanced/Heading: Advanced Settings Saving/TiddlySpot/Advanced/Heading: Advanced Settings

View File

@ -13,10 +13,6 @@ http://$(userName)$.tiddlyspot.com/backup/
</$set> </$set>
</$reveal> </$reveal>
\end \end
! <<lingo Heading>>
|<<lingo AutoSave>> |{{$:/snippets/autosavestatus}} |
! <<lingo TiddlySpot/Heading>> ! <<lingo TiddlySpot/Heading>>
|<<lingo TiddlySpot/UserName>> |<$edit-text tiddler="$:/UploadName" default="" tag="input"/> | |<<lingo TiddlySpot/UserName>> |<$edit-text tiddler="$:/UploadName" default="" tag="input"/> |

View File

@ -0,0 +1,11 @@
title: $:/core/ui/ControlPanel/Settings/AutoSave
tags: $:/tags/ControlPanel/Settings
caption: {{$:/language/ControlPanel/Settings/AutoSave/Caption}}
\define lingo-base() $:/language/ControlPanel/Settings/AutoSave/
<$link to="$:/config/AutoSave"><<lingo Hint>></$link>
<$radio tiddler="$:/config/AutoSave" value="yes"> <<lingo Enabled/Description>> </$radio>
<$radio tiddler="$:/config/AutoSave" value="no"> <<lingo Disabled/Description>> </$radio>

View File

@ -1,12 +0,0 @@
title: $:/snippets/autosavestatus
\define lingo-base() $:/language/ControlPanel/Saving/
<$reveal type="match" state="$:/config/AutoSave" text="yes">
<<lingo AutoSave/Enabled/Prompt>>
<$linkcatcher to="$:/config/AutoSave"><$button to="no"><<lingo AutoSave/Enabled/Button>>
</$button></$linkcatcher>
</$reveal>
<$reveal type="nomatch" state="$:/config/AutoSave" text="yes">
<<lingo AutoSave/Disabled/Prompt>>
<$linkcatcher to="$:/config/AutoSave"><$button to="yes"><<lingo AutoSave/Disabled/Button>></$button></$linkcatcher>
</$reveal>