'''Short description''' With the current approach of listing all template pages in i18n.strings and their translations in i18n.system_pages we should be able to check for translated pages in wikiutil.isTemplatePage. This will enable to write on all `_(Template)` pages Variables which weren't expanded by saving the page. Currently we use a workaround of {{{ @``ME@ }}} which could be replaced on all `_(Template)` pages to {{{ @``ME@ without the `` }}} {{attachment:isTemplatePage.patch}} ---- /!\ While that patch would be a nice hack for master wikis, it doesn't make too much sense in general IMHO. For consistency, translated template pages should follow some pattern, e.g. if original template pages are all named *Template, then '''all''' german translations and '''also all''' german custom template pages should follow the same pattern, e.g. *Vorlage. To have '''all''' those german pages recognized, admin needs to configure some appropriate template regex, matching all template pages. This makes the above patch completely superfluous, because that configured regex will already match all pages, without any additional code. The special problem on master wikis you are obviously trying to solve is that they have all languages, but I didn't configure a regex that matches all template pages (of all languages). That could be fixed though and would be a cleaner solution. -- ThomasWaldmann <> agreed -- ReimarBauer <> The problem is currently that Template isn't translated in all languages moin supports. [[http://master19.moinmo.in/4ct10n/CheckTranslation/FrontPage?action=CheckTranslation&pageset=essential_template_pages|essential_template_pages]] doesn't show its translated name. ---- CategoryFeatureRejected