Changes

Jump to navigation Jump to search
no edit summary
Line 61: Line 61:  
local langList = mw.language.getFallbacksFor(lang)
 
local langList = mw.language.getFallbacksFor(lang)
 
table.insert(langList, 1, lang)
 
table.insert(langList, 1, lang)
+
        -- CAN T GET THE FALLBACKCHAIN TO WORK RIGHT NOW
 +
        local langList = {"en"}
 
-- get label (visible part of the link)
 
-- get label (visible part of the link)
 
for _, language in ipairs(langList) do  -- loop over language fallback list looking for label in the specific language
 
for _, language in ipairs(langList) do  -- loop over language fallback list looking for label in the specific language
Line 96: 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 105: 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