Module:WikidataIB/nolinks
- العربية
- Авар
- বাংলা
- Bosanski
- Chavacano de Zamboanga
- ChiShona
- Corsu
- Cymraeg
- الدارجة
- Esperanto
- فارسی
- Gaeilge
- Gaelg
- 한국어
- Hrvatski
- Ilokano
- Bahasa Indonesia
- ಕನ್ನಡ
- Kernowek
- Kurdî
- Lietuvių
- Magyar
- मैथिली
- മലയാളം
- ဘာသာမန်
- Bahasa Melayu
- Minangkabau
- Монгол
- မြန်မာဘာသာ
- नेपाली
- 日本語
- Oʻzbekcha / ўзбекча
- ਪੰਜਾਬੀ
- Português
- Sakizaya
- سرائیکی
- සිංහල
- Simple English
- کوردی
- Taqbaylit
- ไทย
- Türkçe
- Tiếng Việt
- 吴语
- 粵語
- 中文
Appearance
From Wikipedia, the free encyclopedia
You might want to create a documentation page for this Scribunto module.
Editors can experiment in this module's sandbox (create | mirror) and testcases (create) pages.
Add categories to the /doc subpage. Subpages of this module.
Editors can experiment in this module's sandbox (create | mirror) and testcases (create) pages.
Add categories to the /doc subpage. Subpages of this module.
local p ={} --[[ The values here are the English sitelinks for items that should not be linked. These 36 are not definitive and may be altered to suit. --]] p.items = { "Australia", "Austria", "Belgium", "Canada", "China", "Denmark", "England", "France", "Germany", "Greece", "Hungary", "Iceland", "India", "Republic of Ireland", "Israel", "Italy", "Jamaica", "Japan", "Luxembourg", "Mexico", "Netherlands", "New Zealand", "Northern Ireland", "Norway", "Poland", "Portugal", "Russia", "Scotland", "South Africa", "Spain", "Sweden", "Switzerland", "Turkey", "United Kingdom", "UK", "United States", "USA", "Wales", } --[[ This provides a convenient way to create a test whether an item is on the list. --]] p.itemsindex = {} for i, v in ipairs(p.items) do p.itemsindex[v] = true end return p