翻訳と辞書
Words near each other
・ メ=ゾシ
・ メ=ゾシ県
・ メ~テレ
・ メ~テレNEWS
・ メ~テレカフェ
・ メ~テレニュース
・ メ~テレワイドスーパーJチャンネル
・ メ~テレ劇場
・ メ~テレ日曜朝7時枠のアニメ
・ メ~テレ時代劇
・ モ
・ モ'・ベター・ブルース
・ モア
・ モア (たばこ)
・ モア (アルバム)
・ モア (曖昧さ回避)
・ モア (曲)
・ モア☆ゴル
・ モアイ
・ モアイ (グラディウス)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

モジュール:PropertyLink : ミニ英和和英辞書
モジュール:PropertyLink[ちょうおん]
=====================================
〔語彙分解〕的な部分一致の検索結果は以下の通りです。

ジュール : [じゅーる]
 【名詞】 1. joule 2. (n) joule
: [ちょうおん]
 (n) long vowel mark (usually only used in katakana)

モジュール:PropertyLink : ウィキペディア日本語版
モジュール:PropertyLink[ちょうおん]
function getProperty( propertyName )
local entity = mw.wikibase.getEntity()
if not entity or not entity.claims then return end--the entity doesnt exist or have no claims
local property = entity.claims
if not property then return end--no such property for this item
property = property
local propValue = property.mainsnak and property.mainsnak.datavalue
if not propValue then return end --property doesnt exist
if propValue == 'wikibase-entityid' then
local linkTarget = mw.wikibase.sitelink( "Q" .. propValue.value )
local linkTitle = mw.wikibase.label( "Q" ..propValue.value )
return linkTarget and linkTitle and mw.ustring.format( "%s", linkTarget, linkTitle )
or linkTitle
elseif propValue and propValue == 'string' then return propValue.value end
end

function property( frame )
return getProperty(string.lower(frame.args))
end

function getLabel( propertyName )
local entity = mw.wikibase.getEntity()
if not entity or not entity.claims then return end--the entity doesnt exist or have no claims
local property = entity.claims
if not property then return end--no such property for this item

property = property
local propValue = property.mainsnak.datavalue
if not propValue then return '' end --property doesnt exist

if propValue=='wikibase-entityid' then
return mw.wikibase.label( "Q" ..propValue.value )
elseif propValue == 'string' then
return propValue.value
end
end

-- Return the label for property, or the label of the linked entiy of that property
function label( frame )
return getLabel( string.lower(frame.args ))
end

function getImageLink( propName, width)
local entity = mw.wikibase.getEntity()
if not entity or not entity.claims then return end --the entity doesnt exist or have no claims
local property = entity.claimsor "p18"
if property then
local width = width or "220"
return mw.ustring.format( '%spx', property.mainsnak.datavalue.value, width )
end
end

--use this function to get associated image to be used in the article
function imageLink( frame )
return getImageLink( string.lower(frame.args), frame.args)
end

return


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「モジュール:PropertyLink」の詳細全文を読む




スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.