Module talk:WikidataIB
| Module:WikidataIB is permanently protected from editing as it is a heavily used or highly visible module. Substantial changes should first be proposed and discussed here on this page. If the proposal is uncontroversial or has been discussed and is supported by consensus, editors may use {{edit template-protected}} to notify an administrator or template editor to make the requested edit.
|
| This module does not require a rating on Wikipedia's content assessment scale. It is of interest to the following WikiProjects: | ||||||||
| ||||||||
| Page history | |||
| |||
|
open and close quotation mark
editMany of Quotation marks have opening and closing, so both open and close quotation mark should be able to specified in /titleformats. FlatLanguage (talk) 18:54, 26 March 2025 (UTC)
- Please see MOS:CURLY. – Jonesey95 (talk) 01:57, 27 March 2025 (UTC)
- /titleformats is for i18n, so projects other than enwiki should be considered. --FlatLanguage (talk) 01:59, 27 March 2025 (UTC)
getValueByRefSource
editThere are no examples for getValueByRefSource... What I'm after is the population (P1082) of Toronto (Q172), as given by the 2021 Canadian Census (Q42317745). The data is there, and I'm trying to access it with the following:
- {{#invoke:WikidataIB |getValueByRefSource |qid=Q172 | P1082 |match=Q42317745 |fwd=ALL}}
... which doesn't return anything, not even an error message. What am I missing here? Tompw (talk) 19:14, 11 November 2025 (UTC)
Edit request 14 November 2025
edit| It is requested that an edit be made to the template-protected module at Module:WikidataIB. (edit · history · last · links · sandbox · edit sandbox · sandbox history · sandbox last edit · sandbox diff · test cases · transclusion count · protection log) This template must be followed by a complete and specific description of the request, so that an editor unfamiliar with the subject matter could complete the requested edit immediately.
Edit requests to template-protected pages should only be used for edits that are either uncontroversial or supported by consensus. If the proposed edit might be controversial, discuss it on the protected page's talk page before using this template. Consider making changes first to the module's sandbox and test them thoroughly here before submitting an edit request. To request that a page be protected or unprotected, make a protection request. When the request has been completed or denied, please add the |
Description of suggested change: Please apply c:Special:Diff/1115600336 to fix the order of "mul" in the language fallback sequence for labels (should be after all explicit fallbacks, but just before the implicit fallback to "en").
Diff:
| − | local fbtbl = mw.language.getFallbacksFor( args. | + | local fbtbl = mw.language.getFallbacksFor( args.lang, mw.language.FALLBACK_STRICT )
table.insert( fbtbl, 1, args.lang )
table.insert( fbtbl, "mul" )
table.insert( fbtbl, "en" ) |