mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-09 17:00:27 +00:00
20 lines
530 B
Plaintext
20 lines
530 B
Plaintext
title: $:/snippets/languageswitcher
|
|
|
|
\whitespace trim
|
|
<$linkcatcher to="$:/language">
|
|
<div class="tc-chooser tc-language-chooser">
|
|
<$list filter="[[$:/languages/en-GB]] [plugin-type[language]sort[description]]">
|
|
<$set name="cls" filter="[all[current]field:title{$:/language}]" value="tc-chooser-item tc-chosen" emptyValue="tc-chooser-item">
|
|
<div class=<<cls>> lang={{!!name}}>
|
|
<$link>
|
|
<$view field="description">
|
|
<$view field="name">
|
|
<$view field="title"/>
|
|
</$view>
|
|
</$view>
|
|
</$link>
|
|
</div>
|
|
</$set>
|
|
</$list>
|
|
</div>
|
|
</$linkcatcher> |