وحدة:Cycling race/lang

من أرابيكا، الموسوعة الحرة
اذهب إلى التنقل اذهب إلى البحث
local translations = {}
function translations.list(item)
local list = {}
list={ ["Q16"]="كندا"
	, ["Q17"]="اليابان"
	, ["Q29"]="إسبانيا"
	, ["Q30"]="الولايات المتحدة"
	, ["Q31"]="بلجيكا"
	, ["Q32"]="لوكسمبورغ"
	, ["Q33"]="فنلندا"
	, ["Q34"]="السويد"
	, ["Q35"]="الدنمارك"
	, ["Q36"]="بولندا"
	, ["Q37"]="ليتوانيا"
	, ["Q38"]="إيطاليا"
	, ["Q39"]="سويسرا"
	, ["Q55"]="هولندا"
	, ["Q77"]="الأوروغواي"
	, ["Q96"]="المكسيك"
	, ["Q142"]="فرنسا"
	, ["Q145"]="المملكة المتحدة"
	, ["Q148"]="جمهورية الصين الشعبية"
	, ["Q159"]="روسيا"
	, ["Q183"]="ألمانيا"
	, ["Q213"]="التشيك"
	, ["Q408"]="أستراليا"
	, ["Q414"]="الأرجنتين"
	, ["Q664"]="نيوزيلندا"
	, ["Q717"]="فنزويلا"
	, ["Q739"]="كولومبيا"
	, ["Q29999"]="هولندا"
	} 
local value = list[item]
if value ~= nil then return value else return '' end
end

--[[
This is for the data in "official name" - qualifiers in team items. The first element in the list lang_priority has the highest priority. 
The code looks first in Wikidata team items if there is a translation in this language. If there is no such translation, the next language is taken. 
In case no matching "official name" - qualifier is available, the standard "official name" is printed, that is the one that is the value in that statement. 
]]        
translations.lang_priority = {'ar', 'en'} 

return translations