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)
         local langlist = {"en"}
+
        -- 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 71: Line 72:  
if label then break end                    -- label found and we are done
 
if label then break end                    -- label found and we are done
 
end
 
end
        label = "some text" .. langList[1]
   
if not label then                              -- no labels found, so just show the q-code
 
if not label then                              -- no labels found, so just show the q-code
 
label = item
 
label = item
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