יחידה:Wikibase: הבדלים בין גרסאות בדף
מ הופעלה הגנה על הדף "יחידה:Wikibase": דף בשימוש רב ([עריכה=רק בדוקי עריכות אוטומטית מורשים] (בלתי מוגבלת בזמן) [העברה=רק בדוקי עריכות אוטומטית מו... |
מ 20 גרסאות של הדף wikipedia:he:יחידה:Wikibase יובאו |
||
| (17 גרסאות ביניים של 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. | ||
function p.label(frame) | function p.label(frame) | ||
return mw.wikibase. | local label, lang = mw.wikibase.label( frame.args[1] ) | ||
return label | |||
end | |||
-- Return the description of a given data item, or of connected page | |||
-- if no argument is provided to this method. | |||
-- The description is in localized language, i.e.: | |||
-- in the Wiki's content language (on monolingual wikis) or the user's language (on multilingual wikis) | |||
function p.description_localized(frame) | |||
if (frame.args[1] == nil ) or ( frame.args[1]=='') then | |||
entity = mw.wikibase.getEntity() | |||
else | |||
entity = mw.wikibase.getEntity(frame.args[1]) | |||
end | |||
if not entity then return nil end | |||
local description, lang = entity:getDescriptionWithLang() | |||
if description == nil then | |||
return nil | |||
end | |||
lang = entity.descriptions[lang] | |||
lang = lang['language'] -- fix https://phabricator.wikimedia.org/T152241 | |||
if ( lang == 'he') then | |||
return description | |||
else | |||
return nil | |||
end | |||
end | end | ||
| שורה 35: | שורה 61: | ||
end | end | ||
local description, lang = mw.wikibase.description( id ) | |||
return description | |||
end | end | ||
-- Return the local page about a given data item, or of connected page | -- Return the local page about a given data item, or of connected page | ||
| שורה 51: | שורה 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 | ||