وحدة:External links/conf/Culture/ملعب
المظهر
هذه صفحة ملعب الوحدة لصفحة وحدة:External links/conf/Culture (فرق). |
توثيق الوحدة [أنشئ] [محو الاختزان][استخدامات] [قوالب]
local configured_claims = {}
configured_claims['ar'] = {
{ prop='P1972', message='[$2 $1] على موقع [[أوبن هب|Open Hub]]$3', short='[$2 Open Hub]', langcode='en' },
{ prop='P2537', message='[$2 $1] على موقع [[دليل البرمجيات الحرة|Free Software Directory]]$3', short='[$2 fsf.org]', langcode='en' },
{ prop='P4107', message='[$2 $1] على موقع [[فراما سوفت|Framasoft]]$3', short='[$2 Framalibre]', langcode='fr' },
{ prop='P3418', message='[$2 $1] على موقع [[جوجل بلاي|Google Play]]$3', short='[$2 Google Play]', langcode='en' },
{ prop='P2209', message='[$2 $1] على موقع [[سورس فورج|SourceForge]]$3', short='[$2 SourceForge]', langcode='en' },
}
local messages_conf = {}
messages_conf['ar'] = {
['short-list-separator'] = ', ',
['with-data-cat'] = ', ',
}
local limits = {
['links-shown'] = 10, -- maximum number of links shown in the article.
}
local p = {}
function p.getConfiguredClaims (self, lang)
return configured_claims[lang]
end
function p.getLimits (self)
return limits
end
function p.getMessage (self, lang, msg)
return messages_conf[lang][msg]
end
-- metatable for the export
local mt = {
-- adjust the installation of the module
['__call'] = function (self, lang)
self.configured_claims = configured_claims[lang]
self.messages_conf = messages_conf[lang]
return self
end
}
-- install the metatable
setmetatable(p, mt)
return p