Module:Message box: Difference between revisions

From The FunKey Wiki
m
1 revision imported
wc>Tacsipacsi
(Undo revision 534031445 by MSGJ (talk): restore multilingual support)
m (1 revision imported)
 
(2 intermediate revisions by 2 users not shown)
Line 190:
self:addClass(args.class)
self.style = args.style
self.lang = args.lang
self.dir = args.dir or (args.lang and 'auto' or nil)
self.attrs = args.attrs
 
Line 270 ⟶ 268:
end
if talkTitle and talkTitle.exists then
local talkText
local talkText = 'Relevant discussion may be found on'
if self.isSmall then
if talkArgIsTalkPage then
local talkLink = talkArgIsTalkPage and talk or (talkTitle.prefixedText .. '#' .. talk)
talkText = string.format(
talkText = string.format('([[%s|talk]])', talkLink)
'%s [[%s|%s]].',
else
talkText,
local talkText = 'Relevant discussion may be found on'
talk,
if talkArgIsTalkPage then
talkTitle.prefixedText
talkText = string.format(
)
'%s [[%s|%s]].',
else
talkText,
talkText = string.format(
talk,
'%s the [[%s#%s|talk page]].',
talkTitle.prefixedText
talkText,
)
talkTitle.prefixedText,
else
talk
talkText = string.format(
)
'%s the [[%s#%s|talk page]].',
end
talkText,
talkTitle.prefixedText,
talk
)
end
end
self.talk = talkText
end
Line 299 ⟶ 303:
end
if date then
self.date = string.format(" <smallspan class='date-container'>''(<span class='date'>%s</span>)''</smallspan>", date)
end
self.info = args.info
Line 322 ⟶ 326:
self.imageEmptyCell = cfg.imageEmptyCell
if cfg.imageEmptyCellStyle then
self.imageEmptyCellStyle = 'border:none;padding:0px0;width:1px'
end
 
Line 490 ⟶ 494:
:attr('role', 'presentation')
 
if self.lang then
boxTable:attr('lang', self.lang)
end
if self.dir then
boxTable:attr('dir', self.dir)
end
if self.attrs then
boxTable:attr(self.attrs)
Line 532 ⟶ 530:
:addClass('mbox-text-span')
:wikitext(self.issue or nil)
if (self.talk or self.fix) and not self.isSmall then
textCellDiv:tag('span')
:addClass('hide-when-compact')
Line 546 ⟶ 544:
end
if self.removalNotice then
textCellDiv:tag('smallspan')
:addClass('hide-when-compact')
:tag('i')
Cookies help us deliver our services. By using our services, you agree to our use of cookies.