mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-04 23:39:57 +00:00
24 lines
949 B
Plaintext
24 lines
949 B
Plaintext
title: $:/core/macros/lingo
|
|
tags: $:/tags/Global
|
|
|
|
<!-- Note that lingo-base should end with a trailing slash character -->
|
|
\procedure lingo-base()
|
|
$:/language/
|
|
\end lingo-base
|
|
|
|
\procedure lingo(title,override-lingo-base)
|
|
<!-- Get the parse mode used to invoke this procedure -->
|
|
<$parameters $parseMode="parseMode">
|
|
<!-- Compute the lingo-base-->
|
|
<$let active-lingo-base={{{ [<override-lingo-base>!match[]else<lingo-base>] }}}>
|
|
<!-- First try the old school <active-lingo-base><title> format -->
|
|
<$transclude $tiddler={{{ [<active-lingo-base>addsuffix<title>] }}} $mode=<<parseMode>>>
|
|
<!-- If that didn't work, try the new <lingo-base><langcode>/<title> format -->
|
|
<$let language-code={{{ [[$:/language]get[text]get[name]else[en-GB]] }}}>
|
|
<$transclude $tiddler={{{ [<active-lingo-base>addsuffix<language-code>addsuffix[/]addsuffix<title>] }}} $mode=<<parseMode>>/>
|
|
</$let>
|
|
</$transclude>
|
|
</$let>
|
|
</$parameters>
|
|
\end lingo
|