Modul:Navbar: Unterschied zwischen den Versionen

K
Übersetzt
K (26 Versionen von w:en:Module:Navbar importiert)
K (Übersetzt)
Zeile 59: Zeile 59:
:wikitext('[[' .. title.fullText .. '|')
:wikitext('[[' .. title.fullText .. '|')
:tag(args.mini and 'abbr' or 'span')
:tag(args.mini and 'abbr' or 'span')
:attr('title', 'View this template')
:attr('title', 'Ansehen')
:cssText(args.fontstyle)
:cssText(args.fontstyle)
:wikitext(args.mini and 'v' or 'view')
:wikitext(args.mini and 'a' or 'ansehen')
:done()
:done()
:wikitext(']]')
:wikitext(']]')
Zeile 69: Zeile 69:
:wikitext('[[' .. talkpage .. '|')
:wikitext('[[' .. talkpage .. '|')
:tag(args.mini and 'abbr' or 'span')
:tag(args.mini and 'abbr' or 'span')
:attr('title', 'Discuss this template')
:attr('title', 'Diskutieren')
:cssText(args.fontstyle)
:cssText(args.fontstyle)
:wikitext(args.mini and 't' or 'talk')
:wikitext(args.mini and 'd' or 'diskutieren')
:done()
:done()
:wikitext(']]');
:wikitext(']]');
Zeile 81: Zeile 81:
:wikitext('[' .. title:fullUrl('action=edit') .. ' ')
:wikitext('[' .. title:fullUrl('action=edit') .. ' ')
:tag(args.mini and 'abbr' or 'span')
:tag(args.mini and 'abbr' or 'span')
:attr('title', 'Edit this template')
:attr('title', 'Bearbeiten')
:cssText(args.fontstyle)
:cssText(args.fontstyle)
:wikitext(args.mini and 'e' or 'edit')
:wikitext(args.mini and 'b' or 'bearbeiten')
:done()
:done()
:wikitext(']');
:wikitext(']');
Zeile 111: Zeile 111:
function p.navbar(frame)
function p.navbar(frame)
if not getArgs then
if not getArgs then
getArgs = require('Module:Arguments').getArgs
getArgs = require('Modul:Arguments').getArgs
end
end
return p._navbar(getArgs(frame))
return p._navbar(getArgs(frame))
Anonymer Benutzer