יחידה:Wikibase: הבדלים בין גרסאות בדף
מאין תקציר עריכה |
מ 20 גרסאות של הדף wikipedia:he:יחידה:Wikibase יובאו |
||
| (5 גרסאות ביניים של 3 משתמשים אינן מוצגות) | |||
| שורה 16: | שורה 16: | ||
return entity.id | return entity.id | ||
end | end | ||
-- Return the label of a given data item, or of connected page | -- Return the label of a given data item, or of connected page | ||
-- if no argument is provided to this method. | -- if no argument is provided to this method. | ||
| שורה 30: | שורה 30: | ||
function p.description_localized(frame) | function p.description_localized(frame) | ||
if (frame.args[1] == nil ) or ( frame.args[1]=='') then | if (frame.args[1] == nil ) or ( frame.args[1]=='') then | ||
entity = mw.wikibase. | entity = mw.wikibase.getEntity() | ||
else | else | ||
entity = mw.wikibase.getEntity(frame.args[1]) | |||
end | end | ||
if not entity then return nil end | |||
local description, lang = entity:getDescriptionWithLang() | |||
if description == nil then | |||
return nil | |||
local description, lang = | end | ||
lang = | lang = entity.descriptions[lang] | ||
lang = lang['language'] -- fix https://phabricator.wikimedia.org/T152241 | |||
if ( lang == 'he') then | if ( lang == 'he') then | ||
return description | return description | ||
else | else | ||
return | return nil | ||
end | end | ||
end | end | ||
| שורה 80: | שורה 79: | ||
return mw.wikibase.sitelink( id ) | return mw.wikibase.sitelink( id ) | ||
end | |||
function p.resolvePropertyId(frame) | |||
return mw.wikibase.resolvePropertyId( frame.args[1] ) | |||
end | end | ||
return p | return p | ||