kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Make exporter descriptions translatable
rodzic
8e685e5150
commit
4dec771c20
|
@ -0,0 +1,6 @@
|
||||||
|
title: $:/language/Exporters/
|
||||||
|
|
||||||
|
StaticRiver: River of tiddlers as static HTML file
|
||||||
|
JsonFile: JSON tiddlers file
|
||||||
|
CsvFile: CSV tiddlers file
|
||||||
|
TidFile: Single tiddler ".tid" file
|
|
@ -1,6 +1,6 @@
|
||||||
title: $:/core/templates/exporters/CsvFile
|
title: $:/core/templates/exporters/CsvFile
|
||||||
tags: $:/tags/Exporter
|
tags: $:/tags/Exporter
|
||||||
description: CSV tiddlers file
|
description: {{$:/language/Exporters/CsvFile}}
|
||||||
filename: tiddlers.csv
|
filename: tiddlers.csv
|
||||||
|
|
||||||
\define renderContent()
|
\define renderContent()
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
title: $:/core/templates/exporters/JsonFile
|
title: $:/core/templates/exporters/JsonFile
|
||||||
tags: $:/tags/Exporter
|
tags: $:/tags/Exporter
|
||||||
description: JSON tiddlers file
|
description: {{$:/language/Exporters/JsonFile}}
|
||||||
filename: tiddlers.json
|
filename: tiddlers.json
|
||||||
|
|
||||||
\define renderContent()
|
\define renderContent()
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
title: $:/core/templates/exporters/Static
|
title: $:/core/templates/exporters/StaticRiver
|
||||||
tags: $:/tags/Exporter
|
tags: $:/tags/Exporter
|
||||||
description: Tiddlers as static HTML
|
description: {{$:/language/Exporters/StaticRiver}}
|
||||||
filename: static.tiddlers.html
|
filename: static.tiddlers.html
|
||||||
|
|
||||||
\define tv-wikilink-template() #$uri_encoded$
|
\define tv-wikilink-template() #$uri_encoded$
|
||||||
|
@ -27,7 +27,7 @@ filename: static.tiddlers.html
|
||||||
<body class="tc-body">
|
<body class="tc-body">
|
||||||
{{$:/StaticBanner||$:/core/templates/html-tiddler}}
|
{{$:/StaticBanner||$:/core/templates/html-tiddler}}
|
||||||
<section class="tc-story-river">
|
<section class="tc-story-river">
|
||||||
{{$:/core/templates/exporters/Static/Content||$:/core/templates/html-tiddler}}
|
{{$:/core/templates/exporters/StaticRiver/Content||$:/core/templates/html-tiddler}}
|
||||||
</section>
|
</section>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -1,4 +1,4 @@
|
||||||
title: $:/core/templates/exporters/Static/Content
|
title: $:/core/templates/exporters/StaticRiver/Content
|
||||||
|
|
||||||
\define renderContent()
|
\define renderContent()
|
||||||
{{{ $(exportFilter)$ ||$:/core/templates/static-tiddler}}}
|
{{{ $(exportFilter)$ ||$:/core/templates/static-tiddler}}}
|
|
@ -1,6 +1,6 @@
|
||||||
title: $:/core/templates/exporters/TidFile
|
title: $:/core/templates/exporters/TidFile
|
||||||
tags: $:/tags/Exporter
|
tags: $:/tags/Exporter
|
||||||
description: Plain text .tid tiddler file
|
description: {{$:/language/Exporters/TidFile}}
|
||||||
filename: tiddler.tid
|
filename: tiddler.tid
|
||||||
|
|
||||||
\define renderContent()
|
\define renderContent()
|
||||||
|
|
Ładowanie…
Reference in New Issue