Changes

Jump to navigation Jump to search
no edit summary
Line 97: Line 97:  
-- create URL part of the link
 
-- create URL part of the link
 
link_type = string.lower(link_type or '')
 
link_type = string.lower(link_type or '')
local dLink = 'd:'..item; -- create fallback wikidata link
+
local dLink = 'Item:'..item; -- create fallback wikidata link
 
if string.sub(item, 1, 1) == 'P' then
 
if string.sub(item, 1, 1) == 'P' then
dLink = 'd:Property:'.. item
+
dLink = 'Property:'.. item
 
end
 
end
 
if link_type=='-' then -- allow different link formats
 
if link_type=='-' then -- allow different link formats
Line 106: Line 106:  
link = dLink        -- link to wikidata
 
link = dLink        -- link to wikidata
 
elseif link_type=='wikidata talk' and string.sub(item, 1, 1)=='P' then
 
elseif link_type=='wikidata talk' and string.sub(item, 1, 1)=='P' then
link = 'd:Property talk:'.. item        -- link to wikidata property talk page
+
link = 'Property talk:'.. item        -- link to wikidata property talk page
 
elseif link_type=='wikidata talk' then
 
elseif link_type=='wikidata talk' then
link = 'd:Talk:'..item        -- link to wikidata talk page
+
link = 'Talk:'..item        -- link to wikidata talk page
 
elseif link_type=='commons' then
 
elseif link_type=='commons' then
 
link = getSitelink(item, entity, 'commons')  -- look for sitelink to commons
 
link = getSitelink(item, entity, 'commons')  -- look for sitelink to commons
Anonymous user

Navigation menu