Content deleted Content added
Trialpears (talk | contribs) test |
Trialpears (talk | contribs) Everything is localer! |
||
Line 3:
local function singleText(frame)
local from_oldid = frame.args["from_oldid"]
local from = frame.args["from"]
local to_diff = frame.args["to_diff"]
local to_oldid = frame.args["to_oldid"]
local to = frame.args["to"]
local date = frame.args["date"]
local afd = frame.args["afd"]
local text = "Text and/or other creative content from "
if not (from_oldid == "" or from_oldid == nil) then
text = text .. "[{{fullurl:" .. from .. "|oldid=" .. from_oldid .. "this version] of "
Line 35:
local function multiText(frame)
local collapse = frame.args["collapse"]
local text = "Text has been copied to or from this {{#ifeq:{{SUBJECTSPACE}}||article|page}}; see the list below. The source pages now serve to [[WP:Copying within Wikipedia|provide attribution]] for the content in the destination pages and must not be deleted so long as the copies exist. For attribution and to access older versions of the copied text, please see the history links below."
if collapse == 'yes' then
text = text .. '<table style="width:100%; background: transparent;" class="collapsible collapsed">\n<tr><th>Copied pages:</th></tr>\n<tr><td>'
Line 49:
local function BannerText(frame)
local text
local from2 = frame.args["from2"]
if not (from2 == nil or from2 == "") then
text = singleText(frame)
|