mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 18:17:20 +00:00
Rejig plugins tab of control panel
Now we divide the plugins into categories and organise the displayed information a bit better
This commit is contained in:
parent
3d9f61f041
commit
96457d8011
@ -14,9 +14,9 @@ Appearance/Palette/Editor/Clone/Prompt: It is recommended that you clone this sh
|
|||||||
Appearance/Palette/Editor/Prompt/Modified: This shadow palette has been modified
|
Appearance/Palette/Editor/Prompt/Modified: This shadow palette has been modified
|
||||||
Appearance/Palette/Editor/Prompt: Editing
|
Appearance/Palette/Editor/Prompt: Editing
|
||||||
Appearance/Palette/Editor/Reset/Caption: reset
|
Appearance/Palette/Editor/Reset/Caption: reset
|
||||||
Appearance/Palette/ShowEditor/Caption: show editor
|
|
||||||
Appearance/Palette/HideEditor/Caption: hide editor
|
Appearance/Palette/HideEditor/Caption: hide editor
|
||||||
Appearance/Palette/Prompt: Current palette:
|
Appearance/Palette/Prompt: Current palette:
|
||||||
|
Appearance/Palette/ShowEditor/Caption: show editor
|
||||||
Appearance/StoryView/Caption: Story View
|
Appearance/StoryView/Caption: Story View
|
||||||
Appearance/StoryView/Prompt: Current view:
|
Appearance/StoryView/Prompt: Current view:
|
||||||
Appearance/Theme/Caption: Theme
|
Appearance/Theme/Caption: Theme
|
||||||
@ -40,6 +40,9 @@ Plugins/Caption: Plugins
|
|||||||
Plugins/Fields/Description: Description
|
Plugins/Fields/Description: Description
|
||||||
Plugins/Fields/Title: Title
|
Plugins/Fields/Title: Title
|
||||||
Plugins/Fields/Version: Version
|
Plugins/Fields/Version: Version
|
||||||
|
Plugins/Language/Prompt: Languages
|
||||||
|
Plugins/Plugin/Prompt: Plugins
|
||||||
|
Plugins/Theme/Prompt: Themes
|
||||||
Saving/AutoSave/Disabled/Button: enable
|
Saving/AutoSave/Disabled/Button: enable
|
||||||
Saving/AutoSave/Disabled/Prompt: Autosave is currently disabled
|
Saving/AutoSave/Disabled/Prompt: Autosave is currently disabled
|
||||||
Saving/AutoSave/Enabled/Button: disable
|
Saving/AutoSave/Enabled/Button: disable
|
||||||
|
@ -3,6 +3,42 @@ tags: $:/tags/ControlPanel
|
|||||||
caption: {{$:/language/ControlPanel/Plugins/Caption}}
|
caption: {{$:/language/ControlPanel/Plugins/Caption}}
|
||||||
|
|
||||||
\define lingo-base() $:/language/ControlPanel/Plugins/
|
\define lingo-base() $:/language/ControlPanel/Plugins/
|
||||||
<table><tbody><tr><th><<lingo Fields/Title>></th><th><<lingo Fields/Description>></th><th><<lingo Fields/Version>></th></tr><$list filter="[!has[draft.of]has[plugin-type]sort[title]]"><tr><td><$link to={{!!title}}><$view field="title"/></$link></td><td><$view field="description"/></td><td><$view field="version"/></td></tr></$list>
|
\define plugin-table(type)
|
||||||
|
<table>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
<<lingo Fields/Description>>
|
||||||
|
</th>
|
||||||
|
<th>
|
||||||
|
<<lingo Fields/Version>>
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
<$list filter="[!has[draft.of]plugin-type[$type$]sort[description]]">
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<$link to={{!!title}}>
|
||||||
|
''<$view field="description"><$view field="title"/></$view>''<br>
|
||||||
|
<$view field="title"/>
|
||||||
|
</$link>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<$view field="version"/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</$list>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
\end
|
||||||
|
|
||||||
|
! <<lingo Plugin/Prompt>>
|
||||||
|
|
||||||
|
<<plugin-table plugin>>
|
||||||
|
|
||||||
|
! <<lingo Theme/Prompt>>
|
||||||
|
|
||||||
|
<<plugin-table theme>>
|
||||||
|
|
||||||
|
! <<lingo Language/Prompt>>
|
||||||
|
|
||||||
|
<<plugin-table language>>
|
||||||
|
Loading…
Reference in New Issue
Block a user