<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://stadtbahn-bi.wiki/index.php?action=history&amp;feed=atom&amp;title=Modul%3ADescription</id>
	<title>Modul:Description - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://stadtbahn-bi.wiki/index.php?action=history&amp;feed=atom&amp;title=Modul%3ADescription"/>
	<link rel="alternate" type="text/html" href="https://stadtbahn-bi.wiki/index.php?title=Modul:Description&amp;action=history"/>
	<updated>2026-06-07T16:07:26Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Stadtbahn-Wiki Bielefeld</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://stadtbahn-bi.wiki/index.php?title=Modul:Description&amp;diff=2114&amp;oldid=prev</id>
		<title>Tt: 1 Version importiert</title>
		<link rel="alternate" type="text/html" href="https://stadtbahn-bi.wiki/index.php?title=Modul:Description&amp;diff=2114&amp;oldid=prev"/>
		<updated>2021-09-10T22:02:41Z</updated>

		<summary type="html">&lt;p&gt;1 Version importiert&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;de&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Nächstältere Version&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Version vom 10. September 2021, 22:02 Uhr&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot; class=&quot;diff-notice&quot; lang=&quot;de&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(kein Unterschied)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key stadtbahn_bi_wiki:diff:1.41:old-2113:rev-2114 --&gt;
&lt;/table&gt;</summary>
		<author><name>Tt</name></author>
	</entry>
	<entry>
		<id>https://stadtbahn-bi.wiki/index.php?title=Modul:Description&amp;diff=2113&amp;oldid=prev</id>
		<title>StadtbahnBI&gt;Jarekt: use core.langWrapper</title>
		<link rel="alternate" type="text/html" href="https://stadtbahn-bi.wiki/index.php?title=Modul:Description&amp;diff=2113&amp;oldid=prev"/>
		<updated>2021-03-07T21:36:19Z</updated>

		<summary type="html">&lt;p&gt;use core.langWrapper&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;--[[  &lt;br /&gt;
  __  __           _       _        ____                      _       _   _             &lt;br /&gt;
 |  \/  | ___   __| |_   _| | ___ _|  _ \  ___  ___  ___ _ __(_)_ __ | |_(_) ___  _ __  &lt;br /&gt;
 | |\/| |/ _ \ / _` | | | | |/ _ (_) | | |/ _ \/ __|/ __| &amp;#039;__| | &amp;#039;_ \| __| |/ _ \| &amp;#039;_ \ &lt;br /&gt;
 | |  | | (_) | (_| | |_| | |  __/_| |_| |  __/\__ \ (__| |  | | |_) | |_| | (_) | | | |&lt;br /&gt;
 |_|  |_|\___/ \__,_|\__,_|_|\___(_)____/ \___||___/\___|_|  |_| .__/ \__|_|\___/|_| |_|&lt;br /&gt;
                                                               |_|                      &lt;br /&gt;
&lt;br /&gt;
Description is a module implementing functionality of {{Description}}&lt;br /&gt;
template, which is used by {{en}}, {{de}} and other language templates.&lt;br /&gt;
&lt;br /&gt;
Authors and maintainers:&lt;br /&gt;
* User:Jarekt  &lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
local core = require(&amp;#039;Module:Core&amp;#039;)&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
------------------------------------------------------------------------------&lt;br /&gt;
function p.description(frame) &lt;br /&gt;
	local args = core.getArgs(frame)&lt;br /&gt;
	local desc&lt;br /&gt;
	args.user_lang = args.user_lang or args.lang&lt;br /&gt;
	args.inline    = (args.inline ~= nil) -- convert to boolean&lt;br /&gt;
	if args.text == nil then -- if no string than add error message and a category&lt;br /&gt;
		-- &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[{{fullurl:Category:Language templates with no text displayed}} &amp;lt;span class=&amp;quot;error&amp;quot;&amp;gt;{{Description/i18n}}&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&lt;br /&gt;
		local cat = &amp;#039;Category:Language templates with no text displayed&amp;#039;&lt;br /&gt;
		local msg  = core.formatMessage(&amp;#039;I18n/DescriptionError.tab&amp;#039;, &amp;#039;missing text&amp;#039;, lang)&lt;br /&gt;
		msg = mw.html.create(&amp;#039;span&amp;#039;):addClass(&amp;quot;error&amp;quot;):wikitext(msg)&lt;br /&gt;
		msg = &amp;#039;[&amp;#039; .. frame:callParserFunction{ name = &amp;#039;fullurl&amp;#039;, args={cat} }  .. tostring(msg) .. &amp;#039;]&amp;#039;&lt;br /&gt;
		msg = mw.html.create(&amp;#039;span&amp;#039;):addClass(&amp;quot;plainlinks&amp;quot;):wikitext(msg)&lt;br /&gt;
		desc = core.langWrapper(args.text_lang, tostring(msg), args)&lt;br /&gt;
		local namespace = mw.title.getCurrentTitle().namespace&lt;br /&gt;
		local LUT = {[0]=1, [6]=1, [10]=1, [14]=1, [100]=1, [106]=1}&lt;br /&gt;
		if LUT[namespace]==1 then&lt;br /&gt;
			desc = desc .. &amp;#039;[[&amp;#039; .. cat .. &amp;#039;]]&amp;#039;&lt;br /&gt;
		end&lt;br /&gt;
	else&lt;br /&gt;
		desc = core.langWrapper(args.text_lang, args.text, args)&lt;br /&gt;
	end&lt;br /&gt;
	return desc&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
Oddballs:&lt;br /&gt;
   &lt;br /&gt;
]]&lt;/div&gt;</summary>
		<author><name>StadtbahnBI&gt;Jarekt</name></author>
	</entry>
</feed>