Hi!
If you have a look at a core tiddlers for example, the new journal button, you will see that it uses transclusion of language tiddlers to display text. Changing your language in the settings will change the contents of these language tiddlers into the text of your other language.
\whitespace trim
\define journalButton()
<$button tooltip={{$:/language/Buttons/NewJournal/Hint}} aria-label={{$:/language/Buttons/NewJournal/Caption}} class=<<tv-config-toolbar-class>> actions={{$:/core/ui/Actions/new-journal}}>
<$list filter="[<tv-config-toolbar-icons>match[yes]]">
{{$:/core/images/new-journal-button}}
</$list>
<$list filter="[<tv-config-toolbar-text>match[yes]]">
<span class="tc-btn-text"><$text text={{$:/language/Buttons/NewJournal/Caption}}/></span>
</$list>
</$button>
\end
<<journalButton>>
I think this isn't the case for most plugins. They will just place English text where text is needed. If you want to translate a plugin, I think you will need to clone the plugin and change the text manually inside each plugin tiddler that contains visible English text. You could also go for the above way that is used in the core tiddlers and use set field widgets to change it to your desired language. I think this creates more flexibility as well as you can then switch back and forth with some buttons for example.
Op zondag 10 januari 2021 om 21:34:08 UTC+1 schreef
xri...@web.de: