











ltk.get that loads a file. That same technique can be used to call routes on your hosting web server. Same for ltk.post.


gettext module's _ function. So strings wrapped in _ are looked up and, depending on the current locale setting, an alternative translation string (or if no match, the original string value) is returned. E.g. _("Hello") might return "Bonjour" if the locale is set to fr. If the locale is set to zh (China) and we don't have a Chinese translation then only "Hello" is returned (as the default, because it's the original string).
_(f"Hello {target}") work there? I have written solutions for i18n that also solve that problem but it was a while ago and never thought gettext could've been an inspiration!

_(f"hello {name}") - i.e. if name = "world" the _ function would get the string "hello world". So folks should use Python's string .format method.






























