Wikipedia tetwiki https://tet.wikipedia.org/wiki/P%C3%A1jina_Mahuluk MediaWiki 1.47.0-wmf.8 first-letter Media Espesiál Diskusaun Uza-na'in Diskusaun Uza-na'in Wikipedia Diskusaun Wikipedia Imajen Diskusaun Imajen MediaWiki Diskusaun MediaWiki Template Diskusaun Template Ajuda Diskusaun Ajuda Kategoria Diskusaun Kategoria TimedText TimedText talk Módulo Módulo Discussão Evento Evento Discussão Módulo:Documentation 828 5898 72781 71355 2026-06-30T21:21:24Z Robertsky 10424 Protegeu "[[Módulo:Documentation]]" ([Edita=Blokeiu ema anónimu ho uza-na'in foun] (indefinidamente) [Book=Blokeiu ema anónimu ho uza-na'in foun] (indefinidamente)) 71354 Scribunto text/plain -- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub local format = mw.ustring.format ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in the p -- table for testing purposes. ---------------------------------------------------------------------------- local function message(cfgKey, valArray, expectType) --[[ -- Gets a message from the cfg table and formats it if appropriate. -- The function raises an error if the value from the cfg table is not -- of the type expectType. The default type for expectType is 'string'. -- If the table valArray is present, strings such as $1, $2 etc. in the -- message are substituted with values from the table keys [1], [2] etc. -- For example, if the message "foo-message" had the value 'Foo $2 bar $1.', -- message('foo-message', {'baz', 'qux'}) would return "Foo qux bar baz." --]] local msg = cfg[cfgKey] expectType = expectType or 'string' if type(msg) ~= expectType then error('message: type error in message cfg.' .. cfgKey .. ' (' .. expectType .. ' expected, got ' .. type(msg) .. ')', 2) end if not valArray then return msg end local function getMessageVal(match) match = tonumber(match) return valArray[match] or error('message: no value found for key $' .. match .. ' in message cfg.' .. cfgKey, 4) end return ugsub(msg, '$([1-9][0-9]*)', getMessageVal) end p.message = message local function makeWikilink(page, display) if display then return format('[[%s|%s]]', page, display) else return format('[[%s]]', page) end end p.makeWikilink = makeWikilink local function makeCategoryLink(cat, sort) local catns = mw.site.namespaces[14].name return makeWikilink(catns .. ':' .. cat, sort) end p.makeCategoryLink = makeCategoryLink local function makeUrlLink(url, display) return format('[%s %s]', url, display) end p.makeUrlLink = makeUrlLink local function makeToolbar(...) local ret = {} local lim = select('#', ...) if lim < 1 then return nil end for i = 1, lim do ret[#ret + 1] = select(i, ...) end -- 'documentation-toolbar' return format( '<span class="%s">(%s)</span>', message('toolbar-class'), table.concat(ret, ' &#124; ') ) end p.makeToolbar = makeToolbar ---------------------------------------------------------------------------- -- Argument processing ---------------------------------------------------------------------------- local function makeInvokeFunc(funcName) return function (frame) local args = getArgs(frame, { valueFunc = function (key, value) if type(value) == 'string' then value = value:match('^%s*(.-)%s*$') -- Remove whitespace. if key == 'heading' or value ~= '' then return value else return nil end else return value end end }) return p[funcName](args) end end ---------------------------------------------------------------------------- -- Entry points ---------------------------------------------------------------------------- function p.nonexistent(frame) if mw.title.getCurrentTitle().subpageText == 'testcases' then return frame:expandTemplate{title = 'module test cases notice'} else return p.main(frame) end end p.main = makeInvokeFunc('_main') function p._main(args) --[[ -- This function defines logic flow for the module. -- @args - table of arguments passed by the user --]] local env = p.getEnvironment(args) local root = mw.html.create() root :wikitext(p._getModuleWikitext(args, env)) :wikitext(p.protectionTemplate(env)) :wikitext(p.sandboxNotice(args, env)) :tag('div') -- 'documentation-container' :addClass(message('container')) :attr('role', 'complementary') :attr('aria-labelledby', args.heading ~= '' and 'documentation-heading' or nil) :attr('aria-label', args.heading == '' and 'Documentation' or nil) :newline() :tag('div') -- 'documentation' :addClass(message('main-div-classes')) :newline() :wikitext(p._startBox(args, env)) :wikitext(p._content(args, env)) :tag('div') -- 'documentation-clear' :addClass(message('clear')) :done() :newline() :done() :wikitext(p._endBox(args, env)) :done() :wikitext(p.addTrackingCategories(env)) -- 'Module:Documentation/styles.css' return mw.getCurrentFrame():extensionTag ( 'templatestyles', '', {src=cfg['templatestyles'] }) .. tostring(root) end ---------------------------------------------------------------------------- -- Environment settings ---------------------------------------------------------------------------- function p.getEnvironment(args) --[[ -- Returns a table with information about the environment, including title -- objects and other namespace- or path-related data. -- @args - table of arguments passed by the user -- -- Title objects include: -- env.title - the page we are making documentation for (usually the current title) -- env.templateTitle - the template (or module, file, etc.) -- env.docTitle - the /doc subpage. -- env.sandboxTitle - the /sandbox subpage. -- env.testcasesTitle - the /testcases subpage. -- -- Data includes: -- env.protectionLevels - the protection levels table of the title object. -- env.subjectSpace - the number of the title's subject namespace. -- env.docSpace - the number of the namespace the title puts its documentation in. -- env.docpageBase - the text of the base page of the /doc, /sandbox and /testcases pages, with namespace. -- env.compareUrl - URL of the Special:ComparePages page comparing the sandbox with the template. -- -- All table lookups are passed through pcall so that errors are caught. If an error occurs, the value -- returned will be nil. --]] local env, envFuncs = {}, {} -- Set up the metatable. If triggered we call the corresponding function in the envFuncs table. The value -- returned by that function is memoized in the env table so that we don't call any of the functions -- more than once. (Nils won't be memoized.) setmetatable(env, { __index = function (t, key) local envFunc = envFuncs[key] if envFunc then local success, val = pcall(envFunc) if success then env[key] = val -- Memoise the value. return val end end return nil end }) function envFuncs.title() -- The title object for the current page, or a test page passed with args.page. local title local titleArg = args.page if titleArg then title = mw.title.new(titleArg) else title = mw.title.getCurrentTitle() end return title end function envFuncs.templateTitle() --[[ -- The template (or module, etc.) title object. -- Messages: -- 'sandbox-subpage' --> 'sandbox' -- 'testcases-subpage' --> 'testcases' --]] local subjectSpace = env.subjectSpace local title = env.title local subpage = title.subpageText if subpage == message('sandbox-subpage') or subpage == message('testcases-subpage') or (subpage == message('doc-subpage') and mw.title.getCurrentTitle().namespace == env.docSpace) then return mw.title.makeTitle(subjectSpace, title.baseText) else return mw.title.makeTitle(subjectSpace, title.text) end end function envFuncs.docTitle() --[[ -- Title object of the /doc subpage. -- Messages: -- 'doc-subpage' --> 'doc' --]] local title = env.title local docname = args[1] -- User-specified doc page. local docpage if docname then docpage = docname else docpage = env.docpageBase .. '/' .. message('doc-subpage') end return mw.title.new(docpage) end function envFuncs.sandboxTitle() --[[ -- Title object for the /sandbox subpage. -- Messages: -- 'sandbox-subpage' --> 'sandbox' --]] return mw.title.new(env.docpageBase .. '/' .. message('sandbox-subpage')) end function envFuncs.testcasesTitle() --[[ -- Title object for the /testcases subpage. -- Messages: -- 'testcases-subpage' --> 'testcases' --]] return mw.title.new(env.docpageBase .. '/' .. message('testcases-subpage')) end function envFuncs.protectionLevels() -- The protection levels table of the title object. return env.title.protectionLevels end function envFuncs.subjectSpace() -- The subject namespace number. return mw.site.namespaces[env.title.namespace].subject.id end function envFuncs.docSpace() -- The documentation namespace number. For most namespaces this is the -- same as the subject namespace. However, pages in the Article, File, -- MediaWiki or Category namespaces must have their /doc, /sandbox and -- /testcases pages in talk space. local subjectSpace = env.subjectSpace if subjectSpace == 0 or subjectSpace == 6 or subjectSpace == 8 or subjectSpace == 14 then return subjectSpace + 1 else return subjectSpace end end function envFuncs.docpageBase() -- The base page of the /doc, /sandbox, and /testcases subpages. -- For some namespaces this is the talk page, rather than the template page. local templateTitle = env.templateTitle local docSpace = env.docSpace local docSpaceText = mw.site.namespaces[docSpace].name -- Assemble the link. docSpace is never the main namespace, so we can hardcode the colon. return docSpaceText .. ':' .. templateTitle.text end function envFuncs.compareUrl() -- Diff link between the sandbox and the main template using [[Special:ComparePages]]. local templateTitle = env.templateTitle local sandboxTitle = env.sandboxTitle if templateTitle.exists and sandboxTitle.exists then local compareUrl = mw.uri.canonicalUrl( 'Special:ComparePages', { page1 = templateTitle.prefixedText, page2 = sandboxTitle.prefixedText} ) return tostring(compareUrl) else return nil end end return env end ---------------------------------------------------------------------------- -- Auxiliary templates ---------------------------------------------------------------------------- p.getModuleWikitext = makeInvokeFunc('_getModuleWikitext') function p._getModuleWikitext(args, env) local currentTitle = mw.title.getCurrentTitle() if currentTitle.contentModel ~= 'Scribunto' then return end pcall(require, currentTitle.prefixedText) -- if it fails, we don't care local moduleWikitext = package.loaded["Module:Module wikitext"] if moduleWikitext then return moduleWikitext.main() end end function p.sandboxNotice(args, env) --[=[ -- Generates a sandbox notice for display above sandbox pages. -- @args - a table of arguments passed by the user -- @env - environment table containing title objects, etc., generated with p.getEnvironment -- -- Messages: -- 'sandbox-notice-image' --> '[[File:Sandbox.svg|50px|alt=|link=]]' -- 'sandbox-notice-blurb' --> 'This is the $1 for $2.' -- 'sandbox-notice-diff-blurb' --> 'This is the $1 for $2 ($3).' -- 'sandbox-notice-pagetype-template' --> '[[Wikipedia:Template test cases|template sandbox]] page' -- 'sandbox-notice-pagetype-module' --> '[[Wikipedia:Template test cases|module sandbox]] page' -- 'sandbox-notice-pagetype-other' --> 'sandbox page' -- 'sandbox-notice-compare-link-display' --> 'diff' -- 'sandbox-notice-testcases-blurb' --> 'See also the companion subpage for $1.' -- 'sandbox-notice-testcases-link-display' --> 'test cases' -- 'sandbox-category' --> 'Template sandboxes' -- 'module-sandbox-category' --> 'Module sandboxes' -- 'other-sandbox-category' --> 'Sandboxes outside of template or module namespace' --]=] local title = env.title local sandboxTitle = env.sandboxTitle local templateTitle = env.templateTitle local subjectSpace = env.subjectSpace if not (subjectSpace and title and sandboxTitle and templateTitle and mw.title.equals(title, sandboxTitle)) then return nil end -- Build the table of arguments to pass to {{ombox}}. We need just two fields, "image" and "text". local omargs = {} omargs.image = message('sandbox-notice-image') -- Get the text. We start with the opening blurb, which is something like -- "This is the template sandbox for [[Template:Foo]] (diff)." local text = '__EXPECTUNUSEDTEMPLATE__' local pagetype, sandboxCat if subjectSpace == 10 then pagetype = message('sandbox-notice-pagetype-template') sandboxCat = message('sandbox-category') elseif subjectSpace == 828 then pagetype = message('sandbox-notice-pagetype-module') sandboxCat = message('module-sandbox-category') else pagetype = message('sandbox-notice-pagetype-other') sandboxCat = message('other-sandbox-category') end local templateLink = makeWikilink(templateTitle.prefixedText) local compareUrl = env.compareUrl if compareUrl then local compareDisplay = message('sandbox-notice-compare-link-display') local compareLink = makeUrlLink(compareUrl, compareDisplay) text = text .. message('sandbox-notice-diff-blurb', {pagetype, templateLink, compareLink}) else text = text .. message('sandbox-notice-blurb', {pagetype, templateLink}) end -- Get the test cases page blurb if the page exists. This is something like -- "See also the companion subpage for [[Template:Foo/testcases|test cases]]." local testcasesTitle = env.testcasesTitle if testcasesTitle and testcasesTitle.exists then if testcasesTitle.contentModel == "Scribunto" then local testcasesLinkDisplay = message('sandbox-notice-testcases-link-display') local testcasesRunLinkDisplay = message('sandbox-notice-testcases-run-link-display') local testcasesLink = makeWikilink(testcasesTitle.prefixedText, testcasesLinkDisplay) local testcasesRunLink = makeWikilink(testcasesTitle.talkPageTitle.prefixedText, testcasesRunLinkDisplay) text = text .. '<br />' .. message('sandbox-notice-testcases-run-blurb', {testcasesLink, testcasesRunLink}) else local testcasesLinkDisplay = message('sandbox-notice-testcases-link-display') local testcasesLink = makeWikilink(testcasesTitle.prefixedText, testcasesLinkDisplay) text = text .. '<br />' .. message('sandbox-notice-testcases-blurb', {testcasesLink}) end end -- Add the sandbox to the sandbox category. omargs.text = text .. makeCategoryLink(sandboxCat) -- 'documentation-clear' return '<div class="' .. message('clear') .. '"></div>' .. require('Module:Message box').main('ombox', omargs) end function p.protectionTemplate(env) -- Generates the padlock icon in the top right. -- @env - environment table containing title objects, etc., generated with p.getEnvironment -- Messages: -- 'protection-template' --> 'pp-template' -- 'protection-template-args' --> {docusage = 'yes'} local protectionLevels = env.protectionLevels if not protectionLevels then return nil end local editProt = protectionLevels.edit and protectionLevels.edit[1] local moveProt = protectionLevels.move and protectionLevels.move[1] if editProt then -- The page is edit-protected. return require('Module:Protection banner')._main{ message('protection-reason-edit'), small = true } elseif moveProt and moveProt ~= 'autoconfirmed' then -- The page is move-protected but not edit-protected. Exclude move -- protection with the level "autoconfirmed", as this is equivalent to -- no move protection at all. return require('Module:Protection banner')._main{ action = 'move', small = true } else return nil end end ---------------------------------------------------------------------------- -- Start box ---------------------------------------------------------------------------- p.startBox = makeInvokeFunc('_startBox') function p._startBox(args, env) --[[ -- This function generates the start box. -- @args - a table of arguments passed by the user -- @env - environment table containing title objects, etc., generated with p.getEnvironment -- -- The actual work is done by p.makeStartBoxLinksData and p.renderStartBoxLinks which make -- the [view] [edit] [history] [purge] links, and by p.makeStartBoxData and p.renderStartBox -- which generate the box HTML. --]] env = env or p.getEnvironment(args) local links local content = args.content if not content or args[1] then -- No need to include the links if the documentation is on the template page itself. local linksData = p.makeStartBoxLinksData(args, env) if linksData then links = p.renderStartBoxLinks(linksData) end end -- Generate the start box html. local data = p.makeStartBoxData(args, env, links) if data then return p.renderStartBox(data) else -- User specified no heading. return nil end end function p.makeStartBoxLinksData(args, env) --[[ -- Does initial processing of data to make the [view] [edit] [history] [purge] links. -- @args - a table of arguments passed by the user -- @env - environment table containing title objects, etc., generated with p.getEnvironment -- -- Messages: -- 'view-link-display' --> 'view' -- 'edit-link-display' --> 'edit' -- 'history-link-display' --> 'history' -- 'purge-link-display' --> 'purge' -- 'module-preload' --> 'Template:Documentation/preload-module-doc' -- 'docpage-preload' --> 'Template:Documentation/preload' -- 'create-link-display' --> 'create' --]] local subjectSpace = env.subjectSpace local title = env.title local docTitle = env.docTitle if not title or not docTitle then return nil end if docTitle.isRedirect then docTitle = docTitle.redirectTarget end -- Create link if /doc doesn't exist. local preload = args.preload if not preload then if subjectSpace == 828 then -- Module namespace preload = message('module-preload') else preload = message('docpage-preload') end end return { title = title, docTitle = docTitle, -- View, display, edit, and purge links if /doc exists. viewLinkDisplay = message('view-link-display'), editLinkDisplay = message('edit-link-display'), historyLinkDisplay = message('history-link-display'), purgeLinkDisplay = message('purge-link-display'), preload = preload, createLinkDisplay = message('create-link-display') } end function p.renderStartBoxLinks(data) --[[ -- Generates the [view][edit][history][purge] or [create][purge] links from the data table. -- @data - a table of data generated by p.makeStartBoxLinksData --]] local docTitle = data.docTitle -- yes, we do intend to purge the template page on which the documentation appears local purgeLink = makeWikilink("Special:Purge/" .. data.title.prefixedText, data.purgeLinkDisplay) if docTitle.exists then local viewLink = makeWikilink(docTitle.prefixedText, data.viewLinkDisplay) local editLink = makeWikilink("Special:EditPage/" .. docTitle.prefixedText, data.editLinkDisplay) local historyLink = makeWikilink("Special:PageHistory/" .. docTitle.prefixedText, data.historyLinkDisplay) return viewLink .. editLink .. historyLink .. purgeLink else local createLink = makeUrlLink(docTitle:canonicalUrl{action = 'edit', preload = data.preload}, data.createLinkDisplay) return createLink .. purgeLink end return ret end function p.makeStartBoxData(args, env, links) --[=[ -- Does initial processing of data to pass to the start-box render function, p.renderStartBox. -- @args - a table of arguments passed by the user -- @env - environment table containing title objects, etc., generated with p.getEnvironment -- @links - a string containing the [view][edit][history][purge] links - could be nil if there's an error. -- -- Messages: -- 'documentation-icon-wikitext' --> '[[File:Test Template Info-Icon - Version (2).svg|50px|link=|alt=]]' -- 'template-namespace-heading' --> 'Template documentation' -- 'module-namespace-heading' --> 'Module documentation' -- 'file-namespace-heading' --> 'Summary' -- 'other-namespaces-heading' --> 'Documentation' -- 'testcases-create-link-display' --> 'create' --]=] local subjectSpace = env.subjectSpace if not subjectSpace then -- Default to an "other namespaces" namespace, so that we get at least some output -- if an error occurs. subjectSpace = 2 end local data = {} -- Heading local heading = args.heading -- Blank values are not removed. if heading == '' then -- Don't display the start box if the heading arg is defined but blank. return nil end if heading then data.heading = heading elseif subjectSpace == 10 then -- Template namespace data.heading = message('documentation-icon-wikitext') .. ' ' .. message('template-namespace-heading') elseif subjectSpace == 828 then -- Module namespace data.heading = message('documentation-icon-wikitext') .. ' ' .. message('module-namespace-heading') elseif subjectSpace == 6 then -- File namespace data.heading = message('file-namespace-heading') else data.heading = message('other-namespaces-heading') end -- Heading CSS local headingStyle = args['heading-style'] if headingStyle then data.headingStyleText = headingStyle else -- 'documentation-heading' data.headingClass = message('main-div-heading-class') end -- Data for the [view][edit][history][purge] or [create] links. if links then -- 'mw-editsection-like plainlinks' data.linksClass = message('start-box-link-classes') data.links = links end return data end function p.renderStartBox(data) -- Renders the start box html. -- @data - a table of data generated by p.makeStartBoxData. local sbox = mw.html.create('div') sbox -- 'documentation-startbox' :addClass(message('start-box-class')) :newline() :tag('span') :addClass(data.headingClass) :attr('id', 'documentation-heading') :cssText(data.headingStyleText) :wikitext(data.heading) local links = data.links if links then sbox:tag('span') :addClass(data.linksClass) :attr('id', data.linksId) :wikitext(links) end return tostring(sbox) end ---------------------------------------------------------------------------- -- Documentation content ---------------------------------------------------------------------------- p.content = makeInvokeFunc('_content') function p._content(args, env) -- Displays the documentation contents -- @args - a table of arguments passed by the user -- @env - environment table containing title objects, etc., generated with p.getEnvironment env = env or p.getEnvironment(args) local docTitle = env.docTitle local content = args.content if not content and docTitle and docTitle.exists then content = args._content or mw.getCurrentFrame():expandTemplate{title = docTitle.prefixedText} end -- The line breaks below are necessary so that "=== Headings ===" at the start and end -- of docs are interpreted correctly. return '\n' .. (content or '') .. '\n' end p.contentTitle = makeInvokeFunc('_contentTitle') function p._contentTitle(args, env) env = env or p.getEnvironment(args) local docTitle = env.docTitle if not args.content and docTitle and docTitle.exists then return docTitle.prefixedText else return '' end end ---------------------------------------------------------------------------- -- End box ---------------------------------------------------------------------------- p.endBox = makeInvokeFunc('_endBox') function p._endBox(args, env) --[=[ -- This function generates the end box (also known as the link box). -- @args - a table of arguments passed by the user -- @env - environment table containing title objects, etc., generated with p.getEnvironment -- --]=] -- Get environment data. env = env or p.getEnvironment(args) local subjectSpace = env.subjectSpace local docTitle = env.docTitle if not subjectSpace or not docTitle then return nil end -- Check whether we should output the end box at all. Add the end -- box by default if the documentation exists or if we are in the -- user, module or template namespaces. local linkBox = args['link box'] if linkBox == 'off' or not ( docTitle.exists or subjectSpace == 2 or subjectSpace == 828 or subjectSpace == 10 ) then return nil end -- Assemble the link box. local text = '' if linkBox then text = text .. linkBox else text = text .. (p.makeDocPageBlurb(args, env) or '') -- "This documentation is transcluded from [[Foo]]." if subjectSpace == 2 or subjectSpace == 10 or subjectSpace == 828 then -- We are in the user, template or module namespaces. -- Add sandbox and testcases links. -- "Editors can experiment in this template's sandbox and testcases pages." text = text .. (p.makeExperimentBlurb(args, env) or '') .. '<br />' if not args.content and not args[1] then -- "Please add categories to the /doc subpage." -- Don't show this message with inline docs or with an explicitly specified doc page, -- as then it is unclear where to add the categories. text = text .. (p.makeCategoriesBlurb(args, env) or '') end text = text .. ' ' .. (p.makeSubpagesBlurb(args, env) or '') --"Subpages of this template" end end local box = mw.html.create('div') -- 'documentation-metadata' box:attr('role', 'note') :addClass(message('end-box-class')) -- 'plainlinks' :addClass(message('end-box-plainlinks')) :wikitext(text) :done() return '\n' .. tostring(box) end function p.makeDocPageBlurb(args, env) --[=[ -- Makes the blurb "This documentation is transcluded from [[Template:Foo]] (edit, history)". -- @args - a table of arguments passed by the user -- @env - environment table containing title objects, etc., generated with p.getEnvironment -- -- Messages: -- 'edit-link-display' --> 'edit' -- 'history-link-display' --> 'history' -- 'transcluded-from-blurb' --> -- 'The above [[Wikipedia:Template documentation|documentation]] -- is [[Help:Transclusion|transcluded]] from $1.' -- 'module-preload' --> 'Template:Documentation/preload-module-doc' -- 'create-link-display' --> 'create' -- 'create-module-doc-blurb' --> -- 'You might want to $1 a documentation page for this [[Wikipedia:Lua|Scribunto module]].' --]=] local docTitle = env.docTitle if not docTitle then return nil end if docTitle.exists then -- /doc exists; link to it. local docLink = makeWikilink(docTitle.prefixedText) local editDisplay = message('edit-link-display') local editLink = makeWikilink("Special:EditPage/" .. docTitle.prefixedText, editDisplay) local historyDisplay = message('history-link-display') local historyLink = makeWikilink("Special:PageHistory/" .. docTitle.prefixedText, historyDisplay) return message('transcluded-from-blurb', {docLink}) .. ' ' .. makeToolbar(editLink, historyLink) .. '<br />' elseif env.subjectSpace == 828 then -- /doc does not exist; ask to create it. local createUrl = docTitle:canonicalUrl{action = 'edit', preload = message('module-preload')} local createDisplay = message('create-link-display') local createLink = makeUrlLink(createUrl, createDisplay) return message('create-module-doc-blurb', {createLink}) .. '<br />' end end function p.makeExperimentBlurb(args, env) --[[ -- Renders the text "Editors can experiment in this template's sandbox (edit | diff) and testcases (edit) pages." -- @args - a table of arguments passed by the user -- @env - environment table containing title objects, etc., generated with p.getEnvironment -- -- Messages: -- 'sandbox-link-display' --> 'sandbox' -- 'sandbox-edit-link-display' --> 'edit' -- 'compare-link-display' --> 'diff' -- 'module-sandbox-preload' --> 'Template:Documentation/preload-module-sandbox' -- 'template-sandbox-preload' --> 'Template:Documentation/preload-sandbox' -- 'sandbox-create-link-display' --> 'create' -- 'mirror-edit-summary' --> 'Create sandbox version of $1' -- 'mirror-link-display' --> 'mirror' -- 'mirror-link-preload' --> 'Template:Documentation/mirror' -- 'sandbox-link-display' --> 'sandbox' -- 'testcases-link-display' --> 'testcases' -- 'testcases-edit-link-display'--> 'edit' -- 'template-sandbox-preload' --> 'Template:Documentation/preload-sandbox' -- 'testcases-create-link-display' --> 'create' -- 'testcases-link-display' --> 'testcases' -- 'testcases-edit-link-display' --> 'edit' -- 'module-testcases-preload' --> 'Template:Documentation/preload-module-testcases' -- 'template-testcases-preload' --> 'Template:Documentation/preload-testcases' -- 'experiment-blurb-module' --> 'Editors can experiment in this module's $1 and $2 pages.' -- 'experiment-blurb-template' --> 'Editors can experiment in this template's $1 and $2 pages.' --]] local subjectSpace = env.subjectSpace local templateTitle = env.templateTitle local sandboxTitle = env.sandboxTitle local testcasesTitle = env.testcasesTitle local templatePage = templateTitle.prefixedText if not subjectSpace or not templateTitle or not sandboxTitle or not testcasesTitle then return nil end -- Make links. local sandboxLinks, testcasesLinks if sandboxTitle.exists then local sandboxPage = sandboxTitle.prefixedText local sandboxDisplay = message('sandbox-link-display') local sandboxLink = makeWikilink(sandboxPage, sandboxDisplay) local sandboxEditDisplay = message('sandbox-edit-link-display') local sandboxEditLink = makeWikilink("Special:EditPage/" .. sandboxPage, sandboxEditDisplay) local compareUrl = env.compareUrl local compareLink if compareUrl then local compareDisplay = message('compare-link-display') compareLink = makeUrlLink(compareUrl, compareDisplay) end sandboxLinks = sandboxLink .. ' ' .. makeToolbar(sandboxEditLink, compareLink) else local sandboxPreload if subjectSpace == 828 then sandboxPreload = message('module-sandbox-preload') else sandboxPreload = message('template-sandbox-preload') end local sandboxCreateUrl = sandboxTitle:canonicalUrl{action = 'edit', preload = sandboxPreload} local sandboxCreateDisplay = message('sandbox-create-link-display') local sandboxCreateLink = makeUrlLink(sandboxCreateUrl, sandboxCreateDisplay) local mirrorSummary = message('mirror-edit-summary', {makeWikilink(templatePage)}) local mirrorPreload = message('mirror-link-preload') local mirrorUrl = sandboxTitle:canonicalUrl{action = 'edit', preload = mirrorPreload, summary = mirrorSummary} if subjectSpace == 828 then mirrorUrl = sandboxTitle:canonicalUrl{action = 'edit', preload = templateTitle.prefixedText, summary = mirrorSummary} end local mirrorDisplay = message('mirror-link-display') local mirrorLink = makeUrlLink(mirrorUrl, mirrorDisplay) sandboxLinks = message('sandbox-link-display') .. ' ' .. makeToolbar(sandboxCreateLink, mirrorLink) end if testcasesTitle.exists then local testcasesPage = testcasesTitle.prefixedText local testcasesDisplay = message('testcases-link-display') local testcasesLink = makeWikilink(testcasesPage, testcasesDisplay) local testcasesEditUrl = testcasesTitle:canonicalUrl{action = 'edit'} local testcasesEditDisplay = message('testcases-edit-link-display') local testcasesEditLink = makeWikilink("Special:EditPage/" .. testcasesPage, testcasesEditDisplay) -- for Modules, add testcases run link if exists if testcasesTitle.contentModel == "Scribunto" and testcasesTitle.talkPageTitle and testcasesTitle.talkPageTitle.exists then local testcasesRunLinkDisplay = message('testcases-run-link-display') local testcasesRunLink = makeWikilink(testcasesTitle.talkPageTitle.prefixedText, testcasesRunLinkDisplay) testcasesLinks = testcasesLink .. ' ' .. makeToolbar(testcasesEditLink, testcasesRunLink) else testcasesLinks = testcasesLink .. ' ' .. makeToolbar(testcasesEditLink) end else local testcasesPreload if subjectSpace == 828 then testcasesPreload = message('module-testcases-preload') else testcasesPreload = message('template-testcases-preload') end local testcasesCreateUrl = testcasesTitle:canonicalUrl{action = 'edit', preload = testcasesPreload} local testcasesCreateDisplay = message('testcases-create-link-display') local testcasesCreateLink = makeUrlLink(testcasesCreateUrl, testcasesCreateDisplay) testcasesLinks = message('testcases-link-display') .. ' ' .. makeToolbar(testcasesCreateLink) end local messageName if subjectSpace == 828 then messageName = 'experiment-blurb-module' else messageName = 'experiment-blurb-template' end return message(messageName, {sandboxLinks, testcasesLinks}) end function p.makeCategoriesBlurb(args, env) --[[ -- Generates the text "Please add categories to the /doc subpage." -- @args - a table of arguments passed by the user -- @env - environment table containing title objects, etc., generated with p.getEnvironment -- Messages: -- 'doc-link-display' --> '/doc' -- 'add-categories-blurb' --> 'Please add categories to the $1 subpage.' --]] local docTitle = env.docTitle if not docTitle then return nil end local docPathLink = makeWikilink(docTitle.prefixedText, message('doc-link-display')) return message('add-categories-blurb', {docPathLink}) end function p.makeSubpagesBlurb(args, env) --[[ -- Generates the "Subpages of this template" link. -- @args - a table of arguments passed by the user -- @env - environment table containing title objects, etc., generated with p.getEnvironment -- Messages: -- 'template-pagetype' --> 'template' -- 'module-pagetype' --> 'module' -- 'default-pagetype' --> 'page' -- 'subpages-link-display' --> 'Subpages of this $1' --]] local subjectSpace = env.subjectSpace local templateTitle = env.templateTitle if not subjectSpace or not templateTitle then return nil end local pagetype if subjectSpace == 10 then pagetype = message('template-pagetype') elseif subjectSpace == 828 then pagetype = message('module-pagetype') else pagetype = message('default-pagetype') end local subpagesLink = makeWikilink( 'Special:PrefixIndex/' .. templateTitle.prefixedText .. '/', message('subpages-link-display', {pagetype}) ) return message('subpages-blurb', {subpagesLink}) end ---------------------------------------------------------------------------- -- Tracking categories ---------------------------------------------------------------------------- function p.addTrackingCategories(env) --[[ -- Check if {{documentation}} is transcluded on a /doc or /testcases page. -- @env - environment table containing title objects, etc., generated with p.getEnvironment -- Messages: -- 'display-strange-usage-category' --> true -- 'doc-subpage' --> 'doc' -- 'testcases-subpage' --> 'testcases' -- 'strange-usage-category' --> 'Wikipedia pages with strange ((documentation)) usage' -- -- /testcases pages in the module namespace are not categorised, as they may have -- {{documentation}} transcluded automatically. --]] local title = env.title local subjectSpace = env.subjectSpace if not title or not subjectSpace then return nil end local subpage = title.subpageText if message('display-strange-usage-category', nil, 'boolean') and ( subpage == message('doc-subpage') or subjectSpace ~= 828 and subpage == message('testcases-subpage') ) then return makeCategoryLink(message('strange-usage-category')) end return '' end return p bo74oekmmsj1xtpw7dlzkvkhc0k05g6 Módulo:Infobox 828 5946 72693 72148 2026-06-30T19:10:32Z Robertsky 10424 Robertsky moveu [[Módulo:Infobox]] para [[Módulo:Infokaixa]]: localise 71239 Scribunto text/plain local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local yesno = require("Module:Yesno") local lists = { plainlist_t = { patterns = { '^plainlist$', '%splainlist$', '^plainlist%s', '%splainlist%s' }, found = false, styles = 'Plainlist/styles.css' }, hlist_t = { patterns = { '^hlist$', '%shlist$', '^hlist%s', '%shlist%s' }, found = false, styles = 'Hlist/styles.css' } } local function has_list_class(args_to_check) for _, list in pairs(lists) do if not list.found then for _, arg in pairs(args_to_check) do for _, pattern in ipairs(list.patterns) do if mw.ustring.find(arg or '', pattern) then list.found = true break end end if list.found then break end end end end end local function isUntitledChildBox(sval) return sval and ( sval:match( '^%s*<%s*[Tt][Rr]' ) or sval:match( '^%s*\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127%s*<%s*[Tt][Rr]' ) ) end local function fixChildBoxes(sval, tt) local function notempty( s ) return s and s:match( '%S' ) end if notempty(sval) then local marker = '<span class=special_infobox_marker>' local s = sval -- start moving templatestyles and categories inside of table rows local slast = '' while slast ~= s do slast = s s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*%]%])', '%2%1') s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127)', '%2%1') end -- end moving templatestyles and categories inside of table rows s = mw.ustring.gsub(s, '(<%s*[Tt][Rr])', marker .. '%1') s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>)', '%1' .. marker) if s:match(marker) then s = mw.ustring.gsub(s, marker .. '%s*' .. marker, '') s = mw.ustring.gsub(s, '([\r\n]|-[^\r\n]*[\r\n])%s*' .. marker, '%1') s = mw.ustring.gsub(s, marker .. '%s*([\r\n]|-)', '%1') s = mw.ustring.gsub(s, '(</[Cc][Aa][Pp][Tt][Ii][Oo][Nn]%s*>%s*)' .. marker, '%1') s = mw.ustring.gsub(s, '(<%s*[Tt][Aa][Bb][Ll][Ee][^<>]*>%s*)' .. marker, '%1') s = mw.ustring.gsub(s, '^(%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1') s = mw.ustring.gsub(s, '([\r\n]%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1') s = mw.ustring.gsub(s, marker .. '(%s*</[Tt][Aa][Bb][Ll][Ee]%s*>)', '%1') s = mw.ustring.gsub(s, marker .. '(%s*\n|%})', '%1') end if s:match(marker) then local subcells = mw.text.split(s, marker) s = '' for k = 1, #subcells do if k == 1 then s = s .. subcells[k] .. '</' .. tt .. '></tr>' elseif k == #subcells then local rowstyle = ' style="display:none"' if notempty(subcells[k]) then rowstyle = '' end s = s .. '<tr' .. rowstyle ..'><' .. tt .. ' colspan=2>\n' .. subcells[k] elseif notempty(subcells[k]) then if (k % 2) == 0 then s = s .. subcells[k] else s = s .. '<tr><' .. tt .. ' colspan=2>\n' .. subcells[k] .. '</' .. tt .. '></tr>' end end end end -- the next two lines add a newline at the end of lists for the PHP parser -- [[Special:Diff/849054481]] -- remove when [[:phab:T191516]] is fixed or OBE s = mw.ustring.gsub(s, '([\r\n][%*#;:][^\r\n]*)$', '%1\n') s = mw.ustring.gsub(s, '^([%*#;:][^\r\n]*)$', '%1\n') s = mw.ustring.gsub(s, '^([%*#;:])', '\n%1') s = mw.ustring.gsub(s, '^(%{%|)', '\n%1') return s else return sval end end -- Cleans empty tables local function cleanInfobox() root = tostring(root) if has_rows == false then root = mw.ustring.gsub(root, '<table[^<>]*>%s*</table>', '') end end -- Returns the union of the values of two tables, as a sequence. local function union(t1, t2) local vals = {} for k, v in pairs(t1) do vals[v] = true end for k, v in pairs(t2) do vals[v] = true end local ret = {} for k, v in pairs(vals) do table.insert(ret, k) end return ret end -- Returns a table containing the numbers of the arguments that exist -- for the specified prefix. For example, if the prefix was 'data', and -- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}. local function getArgNums(prefix) local nums = {} for k, v in pairs(args) do local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$') if num then table.insert(nums, tonumber(num)) end end table.sort(nums) return nums end -- Adds a row to the infobox, with either a header cell -- or a label/data cell combination. local function addRow(rowArgs) if rowArgs.header and rowArgs.header ~= '_BLANK_' then has_rows = true has_list_class({ rowArgs.rowclass, rowArgs.class, args.headerclass }) root :tag('tr') :addClass(rowArgs.rowclass) :addClass( isUntitledChildBox( rowArgs.header ) and 'infobox-hiddenrow' or nil ) :cssText(rowArgs.rowstyle) :tag('th') :attr('colspan', '2') :addClass('infobox-header') :addClass(rowArgs.class) :addClass(args.headerclass) -- @deprecated next; target .infobox-<name> .infobox-header :cssText(args.headerstyle) :cssText(rowArgs.rowcellstyle) :wikitext(fixChildBoxes(rowArgs.header, 'th')) if rowArgs.data and not yesno(args.decat) then root:wikitext( '[[Category:Pages using infobox templates with ignored data cells]]' ) end elseif rowArgs.data and rowArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then has_rows = true has_list_class({ rowArgs.rowclass, rowArgs.class }) local row = root:tag('tr') row:addClass(rowArgs.rowclass) row:cssText(rowArgs.rowstyle) if rowArgs.label then row :tag('th') :attr('scope', 'row') :addClass('infobox-label') -- @deprecated next; target .infobox-<name> .infobox-label :cssText(args.labelstyle) :cssText(rowArgs.rowcellstyle) :wikitext(rowArgs.label) :done() else row:addClass( isUntitledChildBox( rowArgs.data ) and 'infobox-hiddenrow' or nil ) end local dataCell = row:tag('td') dataCell :attr('colspan', not rowArgs.label and '2' or nil) :addClass(not rowArgs.label and 'infobox-full-data' or 'infobox-data') :addClass(rowArgs.class) -- @deprecated next; target .infobox-<name> .infobox(-full)-data :cssText(rowArgs.datastyle) :cssText(rowArgs.rowcellstyle) :wikitext(fixChildBoxes(rowArgs.data, 'td')) else table.insert(empty_row_categories, rowArgs.data or '') end end local function renderTitle() if not args.title then return end has_rows = true has_list_class({args.titleclass}) root :tag('caption') :addClass('infobox-title') :addClass(args.titleclass) -- @deprecated next; target .infobox-<name> .infobox-title :cssText(args.titlestyle) :wikitext(args.title) end local function renderAboveRow() if not args.above then return end has_rows = true has_list_class({ args.aboveclass }) root :tag('tr') :addClass( isUntitledChildBox( args.above ) and 'infobox-hiddenrow' or nil ) :tag('th') :attr('colspan', '2') :addClass('infobox-above') :addClass(args.aboveclass) -- @deprecated next; target .infobox-<name> .infobox-above :cssText(args.abovestyle) :wikitext(fixChildBoxes(args.above,'th')) end local function renderBelowRow() if not args.below then return end has_rows = true has_list_class({ args.belowclass }) root :tag('tr') :addClass( isUntitledChildBox( args.below ) and 'infobox-hiddenrow' or nil ) :tag('td') :attr('colspan', '2') :addClass('infobox-below') :addClass(args.belowclass) -- @deprecated next; target .infobox-<name> .infobox-below :cssText(args.belowstyle) :wikitext(fixChildBoxes(args.below,'td')) end local function addSubheaderRow(subheaderArgs) if subheaderArgs.data and subheaderArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then has_rows = true has_list_class({ subheaderArgs.rowclass, subheaderArgs.class }) local row = root:tag('tr') row:addClass(subheaderArgs.rowclass) row:addClass( isUntitledChildBox( subheaderArgs.data ) and 'infobox-hiddenrow' or nil ) local dataCell = row:tag('td') dataCell :attr('colspan', '2') :addClass('infobox-subheader') :addClass(subheaderArgs.class) :cssText(subheaderArgs.datastyle) :cssText(subheaderArgs.rowcellstyle) :wikitext(fixChildBoxes(subheaderArgs.data, 'td')) else table.insert(empty_row_categories, subheaderArgs.data or '') end end local function renderSubheaders() if args.subheader then args.subheader1 = args.subheader end if args.subheaderrowclass then args.subheaderrowclass1 = args.subheaderrowclass end local subheadernums = getArgNums('subheader') for k, num in ipairs(subheadernums) do addSubheaderRow({ data = args['subheader' .. tostring(num)], -- @deprecated next; target .infobox-<name> .infobox-subheader datastyle = args.subheaderstyle, rowcellstyle = args['subheaderstyle' .. tostring(num)], class = args.subheaderclass, rowclass = args['subheaderrowclass' .. tostring(num)] }) end end local function addImageRow(imageArgs) if imageArgs.data and imageArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then has_rows = true has_list_class({ imageArgs.rowclass, imageArgs.class }) local row = root:tag('tr') row:addClass(imageArgs.rowclass) row:addClass( isUntitledChildBox( imageArgs.data ) and 'infobox-hiddenrow' or nil ) local dataCell = row:tag('td') dataCell :attr('colspan', '2') :addClass('infobox-image') :addClass(imageArgs.class) :cssText(imageArgs.datastyle) :wikitext(fixChildBoxes(imageArgs.data, 'td')) else table.insert(empty_row_categories, imageArgs.data or '') end end local function renderImages() if args.image then args.image1 = args.image end if args.caption then args.caption1 = args.caption end local imagenums = getArgNums('image') for k, num in ipairs(imagenums) do local caption = args['caption' .. tostring(num)] local data = mw.html.create():wikitext(args['image' .. tostring(num)]) if caption then data :tag('div') :addClass('infobox-caption') -- @deprecated next; target .infobox-<name> .infobox-caption :cssText(args.captionstyle) :wikitext(caption) end addImageRow({ data = tostring(data), -- @deprecated next; target .infobox-<name> .infobox-image datastyle = args.imagestyle, class = args.imageclass, rowclass = args['imagerowclass' .. tostring(num)] }) end end -- When autoheaders are turned on, preprocesses the rows local function preprocessRows() if not args.autoheaders then return end local rownums = union(getArgNums('header'), getArgNums('data')) table.sort(rownums) local lastheader for k, num in ipairs(rownums) do if args['header' .. tostring(num)] then if lastheader then args['header' .. tostring(lastheader)] = nil end lastheader = num elseif args['data' .. tostring(num)] and args['data' .. tostring(num)]:gsub( category_in_empty_row_pattern, '' ):match('^%S') then local data = args['data' .. tostring(num)] if data:gsub(category_in_empty_row_pattern, ''):match('%S') then lastheader = nil end end end if lastheader then args['header' .. tostring(lastheader)] = nil end end -- Gets the union of the header and data argument numbers, -- and renders them all in order local function renderRows() local rownums = union(getArgNums('header'), getArgNums('data')) table.sort(rownums) for k, num in ipairs(rownums) do addRow({ header = args['header' .. tostring(num)], label = args['label' .. tostring(num)], data = args['data' .. tostring(num)], datastyle = args.datastyle, class = args['class' .. tostring(num)], rowclass = args['rowclass' .. tostring(num)], -- @deprecated next; target .infobox-<name> rowclass rowstyle = args['rowstyle' .. tostring(num)], rowcellstyle = args['rowcellstyle' .. tostring(num)] }) end end local function renderNavBar() if not args.name then return end has_rows = true root :tag('tr') :tag('td') :attr('colspan', '2') :addClass('infobox-navbar') :wikitext(require('Module:Navbar')._navbar{ args.name, mini = 1, }) end local function renderItalicTitle() local italicTitle = args['italic title'] and mw.ustring.lower(args['italic title']) if italicTitle == '' or italicTitle == 'force' or italicTitle == 'yes' then root:wikitext(require('Module:Italic title')._main({})) end end -- Categories in otherwise empty rows are collected in empty_row_categories. -- This function adds them to the module output. It is not affected by -- args.decat because this module should not prevent module-external categories -- from rendering. local function renderEmptyRowCategories() for _, s in ipairs(empty_row_categories) do root:wikitext(s) end end -- Render tracking categories. args.decat == turns off tracking categories. local function renderTrackingCategories() if yesno(args.decat) then return end if args.child == 'yes' then if args.title then root:wikitext( '[[Category:Pages using embedded infobox templates with the title parameter]]' ) end elseif #(getArgNums('data')) == 0 and mw.title.getCurrentTitle().namespace == 0 then root:wikitext('[[Category:Articles using infobox templates with no data rows]]') end end --[=[ Loads the templatestyles for the infobox. TODO: FINISH loading base templatestyles here rather than in MediaWiki:Common.css. There are 4-5000 pages with 'raw' infobox tables. See [[Mediawiki_talk:Common.css/to_do#Infobox]] and/or come help :). When we do this we should clean up the inline CSS below too. Will have to do some bizarre conversion category like with sidebar. ]=] local function loadTemplateStyles() local frame = mw.getCurrentFrame() local hlist_templatestyles = '' if lists.hlist_t.found then hlist_templatestyles = frame:extensionTag{ name = 'templatestyles', args = { src = lists.hlist_t.styles } } end local plainlist_templatestyles = '' if lists.plainlist_t.found then plainlist_templatestyles = frame:extensionTag{ name = 'templatestyles', args = { src = lists.plainlist_t.styles } } end -- See function description local base_templatestyles = frame:extensionTag{ name = 'templatestyles', args = { src = 'Module:Infobox/styles.css' } } local templatestyles = '' if args['templatestyles'] then templatestyles = frame:extensionTag{ name = 'templatestyles', args = { src = args['templatestyles'] } } end local child_templatestyles = '' if args['child templatestyles'] then child_templatestyles = frame:extensionTag{ name = 'templatestyles', args = { src = args['child templatestyles'] } } end local grandchild_templatestyles = '' if args['grandchild templatestyles'] then grandchild_templatestyles = frame:extensionTag{ name = 'templatestyles', args = { src = args['grandchild templatestyles'] } } end return table.concat({ -- hlist -> plainlist -> base is best-effort to preserve old Common.css ordering. -- this ordering is not a guarantee because the rows of interest invoking -- each class may not be on a specific page hlist_templatestyles, plainlist_templatestyles, base_templatestyles, templatestyles, child_templatestyles, grandchild_templatestyles }) end -- common functions between the child and non child cases local function structure_infobox_common() renderSubheaders() renderImages() preprocessRows() renderRows() renderBelowRow() renderNavBar() renderItalicTitle() renderEmptyRowCategories() renderTrackingCategories() cleanInfobox() end -- Specify the overall layout of the infobox, with special settings if the -- infobox is used as a 'child' inside another infobox. local function _infobox() if args.child ~= 'yes' then root = mw.html.create('table') root :addClass(args.subbox == 'yes' and 'infobox-subbox' or 'infobox') :addClass(args.bodyclass) -- @deprecated next; target .infobox-<name> :cssText(args.bodystyle) has_list_class({ args.bodyclass }) renderTitle() renderAboveRow() else root = mw.html.create() root :wikitext(args.title) end structure_infobox_common() return loadTemplateStyles() .. root end -- If the argument exists and isn't blank, add it to the argument table. -- Blank arguments are treated as nil to match the behaviour of ParserFunctions. local function preprocessSingleArg(argName) if origArgs[argName] and origArgs[argName] ~= '' then args[argName] = origArgs[argName] end end -- Assign the parameters with the given prefixes to the args table, in order, in -- batches of the step size specified. This is to prevent references etc. from -- appearing in the wrong order. The prefixTable should be an array containing -- tables, each of which has two possible fields, a "prefix" string and a -- "depend" table. The function always parses parameters containing the "prefix" -- string, but only parses parameters in the "depend" table if the prefix -- parameter is present and non-blank. local function preprocessArgs(prefixTable, step) if type(prefixTable) ~= 'table' then error("Non-table value detected for the prefix table", 2) end if type(step) ~= 'number' then error("Invalid step value detected", 2) end -- Get arguments without a number suffix, and check for bad input. for i,v in ipairs(prefixTable) do if type(v) ~= 'table' or type(v.prefix) ~= "string" or (v.depend and type(v.depend) ~= 'table') then error('Invalid input detected to preprocessArgs prefix table', 2) end preprocessSingleArg(v.prefix) -- Only parse the depend parameter if the prefix parameter is present -- and not blank. if args[v.prefix] and v.depend then for j, dependValue in ipairs(v.depend) do if type(dependValue) ~= 'string' then error('Invalid "depend" parameter value detected in preprocessArgs') end preprocessSingleArg(dependValue) end end end -- Get arguments with number suffixes. local a = 1 -- Counter variable. local moreArgumentsExist = true while moreArgumentsExist == true do moreArgumentsExist = false for i = a, a + step - 1 do for j,v in ipairs(prefixTable) do local prefixArgName = v.prefix .. tostring(i) if origArgs[prefixArgName] then -- Do another loop if any arguments are found, even blank ones. moreArgumentsExist = true preprocessSingleArg(prefixArgName) end -- Process the depend table if the prefix argument is present -- and not blank, or we are processing "prefix1" and "prefix" is -- present and not blank, and if the depend table is present. if v.depend and (args[prefixArgName] or (i == 1 and args[v.prefix])) then for j,dependValue in ipairs(v.depend) do local dependArgName = dependValue .. tostring(i) preprocessSingleArg(dependArgName) end end end end a = a + step end end -- Parse the data parameters in the same order that the old {{infobox}} did, so -- that references etc. will display in the expected places. Parameters that -- depend on another parameter are only processed if that parameter is present, -- to avoid phantom references appearing in article reference lists. local function parseDataParameters() preprocessSingleArg('autoheaders') preprocessSingleArg('child') preprocessSingleArg('bodyclass') preprocessSingleArg('subbox') preprocessSingleArg('bodystyle') preprocessSingleArg('title') preprocessSingleArg('titleclass') preprocessSingleArg('titlestyle') preprocessSingleArg('above') preprocessSingleArg('aboveclass') preprocessSingleArg('abovestyle') preprocessArgs({ {prefix = 'subheader', depend = {'subheaderstyle', 'subheaderrowclass'}} }, 10) preprocessSingleArg('subheaderstyle') preprocessSingleArg('subheaderclass') preprocessArgs({ {prefix = 'image', depend = {'caption', 'imagerowclass'}} }, 10) preprocessSingleArg('captionstyle') preprocessSingleArg('imagestyle') preprocessSingleArg('imageclass') preprocessArgs({ {prefix = 'header'}, {prefix = 'data', depend = {'label'}}, {prefix = 'rowclass'}, {prefix = 'rowstyle'}, {prefix = 'rowcellstyle'}, {prefix = 'class'} }, 50) preprocessSingleArg('headerclass') preprocessSingleArg('headerstyle') preprocessSingleArg('labelstyle') preprocessSingleArg('datastyle') preprocessSingleArg('below') preprocessSingleArg('belowclass') preprocessSingleArg('belowstyle') preprocessSingleArg('name') -- different behaviour for italics if blank or absent args['italic title'] = origArgs['italic title'] preprocessSingleArg('decat') preprocessSingleArg('templatestyles') preprocessSingleArg('child templatestyles') preprocessSingleArg('grandchild templatestyles') end -- If called via #invoke, use the args passed into the invoking template. -- Otherwise, for testing purposes, assume args are being passed directly in. function p.infobox(frame) if frame == mw.getCurrentFrame() then origArgs = frame:getParent().args else origArgs = frame end parseDataParameters() return _infobox() end -- For calling via #invoke within a template function p.infoboxTemplate(frame) origArgs = {} for k,v in pairs(frame.args) do origArgs[k] = mw.text.trim(v) end parseDataParameters() return _infobox() end return p kueb5p6xeoq6x7bxu2zyyl7pmxgesrs 72698 72693 2026-06-30T21:01:41Z Robertsky 10424 Robertsky moveu [[Módulo:Infokaixa]] para o seu redirecionamento [[Módulo:Infobox]]: revert due to style.css 71239 Scribunto text/plain local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local yesno = require("Module:Yesno") local lists = { plainlist_t = { patterns = { '^plainlist$', '%splainlist$', '^plainlist%s', '%splainlist%s' }, found = false, styles = 'Plainlist/styles.css' }, hlist_t = { patterns = { '^hlist$', '%shlist$', '^hlist%s', '%shlist%s' }, found = false, styles = 'Hlist/styles.css' } } local function has_list_class(args_to_check) for _, list in pairs(lists) do if not list.found then for _, arg in pairs(args_to_check) do for _, pattern in ipairs(list.patterns) do if mw.ustring.find(arg or '', pattern) then list.found = true break end end if list.found then break end end end end end local function isUntitledChildBox(sval) return sval and ( sval:match( '^%s*<%s*[Tt][Rr]' ) or sval:match( '^%s*\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127%s*<%s*[Tt][Rr]' ) ) end local function fixChildBoxes(sval, tt) local function notempty( s ) return s and s:match( '%S' ) end if notempty(sval) then local marker = '<span class=special_infobox_marker>' local s = sval -- start moving templatestyles and categories inside of table rows local slast = '' while slast ~= s do slast = s s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*%]%])', '%2%1') s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127)', '%2%1') end -- end moving templatestyles and categories inside of table rows s = mw.ustring.gsub(s, '(<%s*[Tt][Rr])', marker .. '%1') s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>)', '%1' .. marker) if s:match(marker) then s = mw.ustring.gsub(s, marker .. '%s*' .. marker, '') s = mw.ustring.gsub(s, '([\r\n]|-[^\r\n]*[\r\n])%s*' .. marker, '%1') s = mw.ustring.gsub(s, marker .. '%s*([\r\n]|-)', '%1') s = mw.ustring.gsub(s, '(</[Cc][Aa][Pp][Tt][Ii][Oo][Nn]%s*>%s*)' .. marker, '%1') s = mw.ustring.gsub(s, '(<%s*[Tt][Aa][Bb][Ll][Ee][^<>]*>%s*)' .. marker, '%1') s = mw.ustring.gsub(s, '^(%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1') s = mw.ustring.gsub(s, '([\r\n]%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1') s = mw.ustring.gsub(s, marker .. '(%s*</[Tt][Aa][Bb][Ll][Ee]%s*>)', '%1') s = mw.ustring.gsub(s, marker .. '(%s*\n|%})', '%1') end if s:match(marker) then local subcells = mw.text.split(s, marker) s = '' for k = 1, #subcells do if k == 1 then s = s .. subcells[k] .. '</' .. tt .. '></tr>' elseif k == #subcells then local rowstyle = ' style="display:none"' if notempty(subcells[k]) then rowstyle = '' end s = s .. '<tr' .. rowstyle ..'><' .. tt .. ' colspan=2>\n' .. subcells[k] elseif notempty(subcells[k]) then if (k % 2) == 0 then s = s .. subcells[k] else s = s .. '<tr><' .. tt .. ' colspan=2>\n' .. subcells[k] .. '</' .. tt .. '></tr>' end end end end -- the next two lines add a newline at the end of lists for the PHP parser -- [[Special:Diff/849054481]] -- remove when [[:phab:T191516]] is fixed or OBE s = mw.ustring.gsub(s, '([\r\n][%*#;:][^\r\n]*)$', '%1\n') s = mw.ustring.gsub(s, '^([%*#;:][^\r\n]*)$', '%1\n') s = mw.ustring.gsub(s, '^([%*#;:])', '\n%1') s = mw.ustring.gsub(s, '^(%{%|)', '\n%1') return s else return sval end end -- Cleans empty tables local function cleanInfobox() root = tostring(root) if has_rows == false then root = mw.ustring.gsub(root, '<table[^<>]*>%s*</table>', '') end end -- Returns the union of the values of two tables, as a sequence. local function union(t1, t2) local vals = {} for k, v in pairs(t1) do vals[v] = true end for k, v in pairs(t2) do vals[v] = true end local ret = {} for k, v in pairs(vals) do table.insert(ret, k) end return ret end -- Returns a table containing the numbers of the arguments that exist -- for the specified prefix. For example, if the prefix was 'data', and -- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}. local function getArgNums(prefix) local nums = {} for k, v in pairs(args) do local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$') if num then table.insert(nums, tonumber(num)) end end table.sort(nums) return nums end -- Adds a row to the infobox, with either a header cell -- or a label/data cell combination. local function addRow(rowArgs) if rowArgs.header and rowArgs.header ~= '_BLANK_' then has_rows = true has_list_class({ rowArgs.rowclass, rowArgs.class, args.headerclass }) root :tag('tr') :addClass(rowArgs.rowclass) :addClass( isUntitledChildBox( rowArgs.header ) and 'infobox-hiddenrow' or nil ) :cssText(rowArgs.rowstyle) :tag('th') :attr('colspan', '2') :addClass('infobox-header') :addClass(rowArgs.class) :addClass(args.headerclass) -- @deprecated next; target .infobox-<name> .infobox-header :cssText(args.headerstyle) :cssText(rowArgs.rowcellstyle) :wikitext(fixChildBoxes(rowArgs.header, 'th')) if rowArgs.data and not yesno(args.decat) then root:wikitext( '[[Category:Pages using infobox templates with ignored data cells]]' ) end elseif rowArgs.data and rowArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then has_rows = true has_list_class({ rowArgs.rowclass, rowArgs.class }) local row = root:tag('tr') row:addClass(rowArgs.rowclass) row:cssText(rowArgs.rowstyle) if rowArgs.label then row :tag('th') :attr('scope', 'row') :addClass('infobox-label') -- @deprecated next; target .infobox-<name> .infobox-label :cssText(args.labelstyle) :cssText(rowArgs.rowcellstyle) :wikitext(rowArgs.label) :done() else row:addClass( isUntitledChildBox( rowArgs.data ) and 'infobox-hiddenrow' or nil ) end local dataCell = row:tag('td') dataCell :attr('colspan', not rowArgs.label and '2' or nil) :addClass(not rowArgs.label and 'infobox-full-data' or 'infobox-data') :addClass(rowArgs.class) -- @deprecated next; target .infobox-<name> .infobox(-full)-data :cssText(rowArgs.datastyle) :cssText(rowArgs.rowcellstyle) :wikitext(fixChildBoxes(rowArgs.data, 'td')) else table.insert(empty_row_categories, rowArgs.data or '') end end local function renderTitle() if not args.title then return end has_rows = true has_list_class({args.titleclass}) root :tag('caption') :addClass('infobox-title') :addClass(args.titleclass) -- @deprecated next; target .infobox-<name> .infobox-title :cssText(args.titlestyle) :wikitext(args.title) end local function renderAboveRow() if not args.above then return end has_rows = true has_list_class({ args.aboveclass }) root :tag('tr') :addClass( isUntitledChildBox( args.above ) and 'infobox-hiddenrow' or nil ) :tag('th') :attr('colspan', '2') :addClass('infobox-above') :addClass(args.aboveclass) -- @deprecated next; target .infobox-<name> .infobox-above :cssText(args.abovestyle) :wikitext(fixChildBoxes(args.above,'th')) end local function renderBelowRow() if not args.below then return end has_rows = true has_list_class({ args.belowclass }) root :tag('tr') :addClass( isUntitledChildBox( args.below ) and 'infobox-hiddenrow' or nil ) :tag('td') :attr('colspan', '2') :addClass('infobox-below') :addClass(args.belowclass) -- @deprecated next; target .infobox-<name> .infobox-below :cssText(args.belowstyle) :wikitext(fixChildBoxes(args.below,'td')) end local function addSubheaderRow(subheaderArgs) if subheaderArgs.data and subheaderArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then has_rows = true has_list_class({ subheaderArgs.rowclass, subheaderArgs.class }) local row = root:tag('tr') row:addClass(subheaderArgs.rowclass) row:addClass( isUntitledChildBox( subheaderArgs.data ) and 'infobox-hiddenrow' or nil ) local dataCell = row:tag('td') dataCell :attr('colspan', '2') :addClass('infobox-subheader') :addClass(subheaderArgs.class) :cssText(subheaderArgs.datastyle) :cssText(subheaderArgs.rowcellstyle) :wikitext(fixChildBoxes(subheaderArgs.data, 'td')) else table.insert(empty_row_categories, subheaderArgs.data or '') end end local function renderSubheaders() if args.subheader then args.subheader1 = args.subheader end if args.subheaderrowclass then args.subheaderrowclass1 = args.subheaderrowclass end local subheadernums = getArgNums('subheader') for k, num in ipairs(subheadernums) do addSubheaderRow({ data = args['subheader' .. tostring(num)], -- @deprecated next; target .infobox-<name> .infobox-subheader datastyle = args.subheaderstyle, rowcellstyle = args['subheaderstyle' .. tostring(num)], class = args.subheaderclass, rowclass = args['subheaderrowclass' .. tostring(num)] }) end end local function addImageRow(imageArgs) if imageArgs.data and imageArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then has_rows = true has_list_class({ imageArgs.rowclass, imageArgs.class }) local row = root:tag('tr') row:addClass(imageArgs.rowclass) row:addClass( isUntitledChildBox( imageArgs.data ) and 'infobox-hiddenrow' or nil ) local dataCell = row:tag('td') dataCell :attr('colspan', '2') :addClass('infobox-image') :addClass(imageArgs.class) :cssText(imageArgs.datastyle) :wikitext(fixChildBoxes(imageArgs.data, 'td')) else table.insert(empty_row_categories, imageArgs.data or '') end end local function renderImages() if args.image then args.image1 = args.image end if args.caption then args.caption1 = args.caption end local imagenums = getArgNums('image') for k, num in ipairs(imagenums) do local caption = args['caption' .. tostring(num)] local data = mw.html.create():wikitext(args['image' .. tostring(num)]) if caption then data :tag('div') :addClass('infobox-caption') -- @deprecated next; target .infobox-<name> .infobox-caption :cssText(args.captionstyle) :wikitext(caption) end addImageRow({ data = tostring(data), -- @deprecated next; target .infobox-<name> .infobox-image datastyle = args.imagestyle, class = args.imageclass, rowclass = args['imagerowclass' .. tostring(num)] }) end end -- When autoheaders are turned on, preprocesses the rows local function preprocessRows() if not args.autoheaders then return end local rownums = union(getArgNums('header'), getArgNums('data')) table.sort(rownums) local lastheader for k, num in ipairs(rownums) do if args['header' .. tostring(num)] then if lastheader then args['header' .. tostring(lastheader)] = nil end lastheader = num elseif args['data' .. tostring(num)] and args['data' .. tostring(num)]:gsub( category_in_empty_row_pattern, '' ):match('^%S') then local data = args['data' .. tostring(num)] if data:gsub(category_in_empty_row_pattern, ''):match('%S') then lastheader = nil end end end if lastheader then args['header' .. tostring(lastheader)] = nil end end -- Gets the union of the header and data argument numbers, -- and renders them all in order local function renderRows() local rownums = union(getArgNums('header'), getArgNums('data')) table.sort(rownums) for k, num in ipairs(rownums) do addRow({ header = args['header' .. tostring(num)], label = args['label' .. tostring(num)], data = args['data' .. tostring(num)], datastyle = args.datastyle, class = args['class' .. tostring(num)], rowclass = args['rowclass' .. tostring(num)], -- @deprecated next; target .infobox-<name> rowclass rowstyle = args['rowstyle' .. tostring(num)], rowcellstyle = args['rowcellstyle' .. tostring(num)] }) end end local function renderNavBar() if not args.name then return end has_rows = true root :tag('tr') :tag('td') :attr('colspan', '2') :addClass('infobox-navbar') :wikitext(require('Module:Navbar')._navbar{ args.name, mini = 1, }) end local function renderItalicTitle() local italicTitle = args['italic title'] and mw.ustring.lower(args['italic title']) if italicTitle == '' or italicTitle == 'force' or italicTitle == 'yes' then root:wikitext(require('Module:Italic title')._main({})) end end -- Categories in otherwise empty rows are collected in empty_row_categories. -- This function adds them to the module output. It is not affected by -- args.decat because this module should not prevent module-external categories -- from rendering. local function renderEmptyRowCategories() for _, s in ipairs(empty_row_categories) do root:wikitext(s) end end -- Render tracking categories. args.decat == turns off tracking categories. local function renderTrackingCategories() if yesno(args.decat) then return end if args.child == 'yes' then if args.title then root:wikitext( '[[Category:Pages using embedded infobox templates with the title parameter]]' ) end elseif #(getArgNums('data')) == 0 and mw.title.getCurrentTitle().namespace == 0 then root:wikitext('[[Category:Articles using infobox templates with no data rows]]') end end --[=[ Loads the templatestyles for the infobox. TODO: FINISH loading base templatestyles here rather than in MediaWiki:Common.css. There are 4-5000 pages with 'raw' infobox tables. See [[Mediawiki_talk:Common.css/to_do#Infobox]] and/or come help :). When we do this we should clean up the inline CSS below too. Will have to do some bizarre conversion category like with sidebar. ]=] local function loadTemplateStyles() local frame = mw.getCurrentFrame() local hlist_templatestyles = '' if lists.hlist_t.found then hlist_templatestyles = frame:extensionTag{ name = 'templatestyles', args = { src = lists.hlist_t.styles } } end local plainlist_templatestyles = '' if lists.plainlist_t.found then plainlist_templatestyles = frame:extensionTag{ name = 'templatestyles', args = { src = lists.plainlist_t.styles } } end -- See function description local base_templatestyles = frame:extensionTag{ name = 'templatestyles', args = { src = 'Module:Infobox/styles.css' } } local templatestyles = '' if args['templatestyles'] then templatestyles = frame:extensionTag{ name = 'templatestyles', args = { src = args['templatestyles'] } } end local child_templatestyles = '' if args['child templatestyles'] then child_templatestyles = frame:extensionTag{ name = 'templatestyles', args = { src = args['child templatestyles'] } } end local grandchild_templatestyles = '' if args['grandchild templatestyles'] then grandchild_templatestyles = frame:extensionTag{ name = 'templatestyles', args = { src = args['grandchild templatestyles'] } } end return table.concat({ -- hlist -> plainlist -> base is best-effort to preserve old Common.css ordering. -- this ordering is not a guarantee because the rows of interest invoking -- each class may not be on a specific page hlist_templatestyles, plainlist_templatestyles, base_templatestyles, templatestyles, child_templatestyles, grandchild_templatestyles }) end -- common functions between the child and non child cases local function structure_infobox_common() renderSubheaders() renderImages() preprocessRows() renderRows() renderBelowRow() renderNavBar() renderItalicTitle() renderEmptyRowCategories() renderTrackingCategories() cleanInfobox() end -- Specify the overall layout of the infobox, with special settings if the -- infobox is used as a 'child' inside another infobox. local function _infobox() if args.child ~= 'yes' then root = mw.html.create('table') root :addClass(args.subbox == 'yes' and 'infobox-subbox' or 'infobox') :addClass(args.bodyclass) -- @deprecated next; target .infobox-<name> :cssText(args.bodystyle) has_list_class({ args.bodyclass }) renderTitle() renderAboveRow() else root = mw.html.create() root :wikitext(args.title) end structure_infobox_common() return loadTemplateStyles() .. root end -- If the argument exists and isn't blank, add it to the argument table. -- Blank arguments are treated as nil to match the behaviour of ParserFunctions. local function preprocessSingleArg(argName) if origArgs[argName] and origArgs[argName] ~= '' then args[argName] = origArgs[argName] end end -- Assign the parameters with the given prefixes to the args table, in order, in -- batches of the step size specified. This is to prevent references etc. from -- appearing in the wrong order. The prefixTable should be an array containing -- tables, each of which has two possible fields, a "prefix" string and a -- "depend" table. The function always parses parameters containing the "prefix" -- string, but only parses parameters in the "depend" table if the prefix -- parameter is present and non-blank. local function preprocessArgs(prefixTable, step) if type(prefixTable) ~= 'table' then error("Non-table value detected for the prefix table", 2) end if type(step) ~= 'number' then error("Invalid step value detected", 2) end -- Get arguments without a number suffix, and check for bad input. for i,v in ipairs(prefixTable) do if type(v) ~= 'table' or type(v.prefix) ~= "string" or (v.depend and type(v.depend) ~= 'table') then error('Invalid input detected to preprocessArgs prefix table', 2) end preprocessSingleArg(v.prefix) -- Only parse the depend parameter if the prefix parameter is present -- and not blank. if args[v.prefix] and v.depend then for j, dependValue in ipairs(v.depend) do if type(dependValue) ~= 'string' then error('Invalid "depend" parameter value detected in preprocessArgs') end preprocessSingleArg(dependValue) end end end -- Get arguments with number suffixes. local a = 1 -- Counter variable. local moreArgumentsExist = true while moreArgumentsExist == true do moreArgumentsExist = false for i = a, a + step - 1 do for j,v in ipairs(prefixTable) do local prefixArgName = v.prefix .. tostring(i) if origArgs[prefixArgName] then -- Do another loop if any arguments are found, even blank ones. moreArgumentsExist = true preprocessSingleArg(prefixArgName) end -- Process the depend table if the prefix argument is present -- and not blank, or we are processing "prefix1" and "prefix" is -- present and not blank, and if the depend table is present. if v.depend and (args[prefixArgName] or (i == 1 and args[v.prefix])) then for j,dependValue in ipairs(v.depend) do local dependArgName = dependValue .. tostring(i) preprocessSingleArg(dependArgName) end end end end a = a + step end end -- Parse the data parameters in the same order that the old {{infobox}} did, so -- that references etc. will display in the expected places. Parameters that -- depend on another parameter are only processed if that parameter is present, -- to avoid phantom references appearing in article reference lists. local function parseDataParameters() preprocessSingleArg('autoheaders') preprocessSingleArg('child') preprocessSingleArg('bodyclass') preprocessSingleArg('subbox') preprocessSingleArg('bodystyle') preprocessSingleArg('title') preprocessSingleArg('titleclass') preprocessSingleArg('titlestyle') preprocessSingleArg('above') preprocessSingleArg('aboveclass') preprocessSingleArg('abovestyle') preprocessArgs({ {prefix = 'subheader', depend = {'subheaderstyle', 'subheaderrowclass'}} }, 10) preprocessSingleArg('subheaderstyle') preprocessSingleArg('subheaderclass') preprocessArgs({ {prefix = 'image', depend = {'caption', 'imagerowclass'}} }, 10) preprocessSingleArg('captionstyle') preprocessSingleArg('imagestyle') preprocessSingleArg('imageclass') preprocessArgs({ {prefix = 'header'}, {prefix = 'data', depend = {'label'}}, {prefix = 'rowclass'}, {prefix = 'rowstyle'}, {prefix = 'rowcellstyle'}, {prefix = 'class'} }, 50) preprocessSingleArg('headerclass') preprocessSingleArg('headerstyle') preprocessSingleArg('labelstyle') preprocessSingleArg('datastyle') preprocessSingleArg('below') preprocessSingleArg('belowclass') preprocessSingleArg('belowstyle') preprocessSingleArg('name') -- different behaviour for italics if blank or absent args['italic title'] = origArgs['italic title'] preprocessSingleArg('decat') preprocessSingleArg('templatestyles') preprocessSingleArg('child templatestyles') preprocessSingleArg('grandchild templatestyles') end -- If called via #invoke, use the args passed into the invoking template. -- Otherwise, for testing purposes, assume args are being passed directly in. function p.infobox(frame) if frame == mw.getCurrentFrame() then origArgs = frame:getParent().args else origArgs = frame end parseDataParameters() return _infobox() end -- For calling via #invoke within a template function p.infoboxTemplate(frame) origArgs = {} for k,v in pairs(frame.args) do origArgs[k] = mw.text.trim(v) end parseDataParameters() return _infobox() end return p kueb5p6xeoq6x7bxu2zyyl7pmxgesrs Módulo:Message box 828 5951 72704 71259 2026-06-30T21:05:49Z Robertsky 10424 72704 Scribunto text/plain require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions -------------------------------------------------------------------------------- local function getTitleObject(...) -- Get the title object, passing the function through pcall -- in case we are over the expensive function count limit. local success, title = pcall(mw.title.new, ...) if success then return title end end local function union(t1, t2) -- Returns the union of two arrays. local vals = {} for i, v in ipairs(t1) do vals[v] = true end for i, v in ipairs(t2) do vals[v] = true end local ret = {} for k in pairs(vals) do table.insert(ret, k) end table.sort(ret) return ret end local function getArgNums(args, prefix) local nums = {} for k, v in pairs(args) do local num = mw.ustring.match(tostring(k), '^' .. prefix .. '([1-9]%d*)$') if num then table.insert(nums, tonumber(num)) end end table.sort(nums) return nums end -------------------------------------------------------------------------------- -- Box class definition -------------------------------------------------------------------------------- local MessageBox = {} MessageBox.__index = MessageBox function MessageBox.new(boxType, args, cfg) args = args or {} local obj = {} -- Set the title object and the namespace. obj.title = getTitleObject(args.page) or mw.title.getCurrentTitle() -- Set the config for our box type. obj.cfg = cfg[boxType] if not obj.cfg then local ns = obj.title.namespace -- boxType is "mbox" or invalid input if args.demospace and args.demospace ~= '' then -- implement demospace parameter of mbox local demospace = string.lower(args.demospace) if DEMOSPACES[demospace] then -- use template from DEMOSPACES obj.cfg = cfg[DEMOSPACES[demospace]] elseif string.find( demospace, 'talk' ) then -- demo as a talk page obj.cfg = cfg.tmbox else -- default to ombox obj.cfg = cfg.ombox end elseif ns == 0 then obj.cfg = cfg.ambox -- main namespace elseif ns == 6 then obj.cfg = cfg.imbox -- file namespace elseif ns == 14 then obj.cfg = cfg.cmbox -- category namespace else local nsTable = mw.site.namespaces[ns] if nsTable and nsTable.isTalk then obj.cfg = cfg.tmbox -- any talk namespace else obj.cfg = cfg.ombox -- other namespaces or invalid input end end end -- Set the arguments, and remove all blank arguments except for the ones -- listed in cfg.allowBlankParams. do local newArgs = {} for k, v in pairs(args) do if v ~= '' then newArgs[k] = v end end for i, param in ipairs(obj.cfg.allowBlankParams or {}) do newArgs[param] = args[param] end obj.args = newArgs end -- Define internal data structure. obj.categories = {} obj.classes = {} -- For lazy loading of [[Module:Category handler]]. obj.hasCategories = false return setmetatable(obj, MessageBox) end function MessageBox:addCat(ns, cat, sort) if not cat then return nil end if sort then cat = string.format('[[Category:%s|%s]]', cat, sort) else cat = string.format('[[Category:%s]]', cat) end self.hasCategories = true self.categories[ns] = self.categories[ns] or {} table.insert(self.categories[ns], cat) end function MessageBox:addClass(class) if not class then return nil end table.insert(self.classes, class) end function MessageBox:setParameters() local args = self.args local cfg = self.cfg -- Get type data. self.type = args.type local typeData = cfg.types[self.type] self.invalidTypeError = cfg.showInvalidTypeError and self.type and not typeData typeData = typeData or cfg.types[cfg.default] self.typeClass = typeData.class self.typeImage = typeData.image self.typeImageNeedsLink = typeData.imageNeedsLink -- Find if the box has been wrongly substituted. self.isSubstituted = cfg.substCheck and args.subst == 'SUBST' -- Find whether we are using a small message box. self.isSmall = cfg.allowSmall and ( cfg.smallParam and args.small == cfg.smallParam or not cfg.smallParam and yesno(args.small) ) -- Set the below row. self.below = cfg.below and args.below -- Add attributes, classes and styles. self.id = args.id self.name = args.name if self.name then self:addClass('box-' .. string.gsub(self.name,' ','_')) end if yesno(args.plainlinks) ~= false then self:addClass('plainlinks') end if self.below then self:addClass('mbox-with-below') end for _, class in ipairs(cfg.classes or {}) do self:addClass(class) end if self.isSmall then self:addClass(cfg.smallClass or 'mbox-small') end self:addClass(self.typeClass) self:addClass(args.class) self.style = args.style self.attrs = args.attrs -- Set text style. self.textstyle = args.textstyle -- Set image classes. self.imageRightClass = args.imagerightclass or args.imageclass self.imageLeftClass = args.imageleftclass or args.imageclass -- Find if we are on the template page or not. This functionality is only -- used if useCollapsibleTextFields is set, or if both cfg.templateCategory -- and cfg.templateCategoryRequireName are set. self.useCollapsibleTextFields = cfg.useCollapsibleTextFields if self.useCollapsibleTextFields or cfg.templateCategory and cfg.templateCategoryRequireName then if self.name then local templateName = mw.ustring.match( self.name, '^[tT][eE][mM][pP][lL][aA][tT][eE][%s_]*:[%s_]*(.*)$' ) or self.name templateName = 'Template:' .. templateName self.templateTitle = getTitleObject(templateName) end self.isTemplatePage = self.templateTitle and mw.title.equals(self.title, self.templateTitle) end -- Process data for collapsible text fields. At the moment these are only -- used in {{ambox}}. if self.useCollapsibleTextFields then -- Get the self.issue value. if self.isSmall and args.smalltext then self.issue = args.smalltext else local sect if args.sect == '' then sect = 'This ' .. (cfg.sectionDefault or 'page') elseif type(args.sect) == 'string' then sect = 'This ' .. args.sect end local issue = args.issue issue = type(issue) == 'string' and issue ~= '' and issue or nil local text = args.text text = type(text) == 'string' and text or nil local issues = {} table.insert(issues, sect) table.insert(issues, issue) table.insert(issues, text) self.issue = table.concat(issues, ' ') end -- Get the self.talk value. local talk = args.talk -- Show talk links on the template page or template subpages if the talk -- parameter is blank. if talk == '' and self.templateTitle and ( mw.title.equals(self.templateTitle, self.title) or self.title:isSubpageOf(self.templateTitle) ) then talk = '#' elseif talk == '' then talk = nil end if talk then -- If the talk value is a talk page, make a link to that page. Else -- assume that it's a section heading, and make a link to the talk -- page of the current page with that section heading. local talkTitle = getTitleObject(talk) local talkArgIsTalkPage = true if not talkTitle or not talkTitle.isTalkPage then talkArgIsTalkPage = false talkTitle = getTitleObject( self.title.text, mw.site.namespaces[self.title.namespace].talk.id ) end if talkTitle and talkTitle.exists then local talkText if self.isSmall then local talkLink = talkArgIsTalkPage and talk or (talkTitle.prefixedText .. (talk == '#' and '' or '#') .. talk) talkText = string.format('([[%s|talk]])', talkLink) else talkText = 'Relevant discussion may be found on' if talkArgIsTalkPage then talkText = string.format( '%s [[%s|%s]].', talkText, talk, talkTitle.prefixedText ) else talkText = string.format( '%s the [[%s' .. (talk == '#' and '' or '#') .. '%s|talk page]].', talkText, talkTitle.prefixedText, talk ) end end self.talk = talkText end end -- Get other values. self.fix = args.fix ~= '' and args.fix or nil local date if args.date and args.date ~= '' then date = args.date elseif args.date == '' and self.isTemplatePage then date = lang:formatDate('F Y') end if date then self.date = string.format(" <span class='date-container'><i>(<span class='date'>%s</span>)</i></span>", date) end self.info = args.info if yesno(args.removalnotice) then self.removalNotice = cfg.removalNotice end end -- Set the non-collapsible text field. At the moment this is used by all box -- types other than ambox, and also by ambox when small=yes. if self.isSmall then self.text = args.smalltext or args.text else self.text = args.text end -- General image settings. self.imageCellDiv = not self.isSmall and cfg.imageCellDiv self.imageEmptyCell = cfg.imageEmptyCell -- Left image settings. local imageLeft = self.isSmall and args.smallimage or args.image if cfg.imageCheckBlank and imageLeft ~= 'blank' and imageLeft ~= 'none' or not cfg.imageCheckBlank and imageLeft ~= 'none' then self.imageLeft = imageLeft if not imageLeft then local imageSize = self.isSmall and (cfg.imageSmallSize or '30x30px') or '40x40px' self.imageLeft = string.format('[[File:%s|%s%s|alt=]]', self.typeImage or 'Information icon4.svg', imageSize, self.typeImageNeedsLink and "" or "|link=" ) end end -- Right image settings. local imageRight = self.isSmall and args.smallimageright or args.imageright if not (cfg.imageRightNone and imageRight == 'none') then self.imageRight = imageRight end -- set templatestyles self.base_templatestyles = cfg.templatestyles self.templatestyles = args.templatestyles end function MessageBox:setMainspaceCategories() local args = self.args local cfg = self.cfg if not cfg.allowMainspaceCategories then return nil end local nums = {} for _, prefix in ipairs{'cat', 'category', 'all'} do args[prefix .. '1'] = args[prefix] nums = union(nums, getArgNums(args, prefix)) end -- The following is roughly equivalent to the old {{Ambox/category}}. local date = args.date date = type(date) == 'string' and date local preposition = 'from' for _, num in ipairs(nums) do local mainCat = args['cat' .. tostring(num)] or args['category' .. tostring(num)] local allCat = args['all' .. tostring(num)] mainCat = type(mainCat) == 'string' and mainCat allCat = type(allCat) == 'string' and allCat if mainCat and date and date ~= '' then local catTitle = string.format('%s %s %s', mainCat, preposition, date) self:addCat(0, catTitle) catTitle = getTitleObject('Category:' .. catTitle) if not catTitle or not catTitle.exists then self:addCat(0, 'Articles with invalid date parameter in template') end elseif mainCat and (not date or date == '') then self:addCat(0, mainCat) end if allCat then self:addCat(0, allCat) end end end function MessageBox:setTemplateCategories() local args = self.args local cfg = self.cfg -- Add template categories. if cfg.templateCategory then if cfg.templateCategoryRequireName then if self.isTemplatePage then self:addCat(10, cfg.templateCategory) end elseif not self.title.isSubpage then self:addCat(10, cfg.templateCategory) end end -- Add template error categories. if cfg.templateErrorCategory then local templateErrorCategory = cfg.templateErrorCategory local templateCat, templateSort if not self.name and not self.title.isSubpage then templateCat = templateErrorCategory elseif self.isTemplatePage then local paramsToCheck = cfg.templateErrorParamsToCheck or {} local count = 0 for i, param in ipairs(paramsToCheck) do if not args[param] then count = count + 1 end end if count > 0 then templateCat = templateErrorCategory templateSort = tostring(count) end if self.categoryNums and #self.categoryNums > 0 then templateCat = templateErrorCategory templateSort = 'C' end end self:addCat(10, templateCat, templateSort) end end function MessageBox:setAllNamespaceCategories() -- Set categories for all namespaces. if self.invalidTypeError then local allSort = (self.title.namespace == 0 and 'Main:' or '') .. self.title.prefixedText self:addCat('all', 'Wikipedia message box parameter needs fixing', allSort) end if self.isSubstituted then self:addCat('all', 'Pages with incorrectly substituted templates') end end function MessageBox:setCategories() if self.title.namespace == 0 then self:setMainspaceCategories() elseif self.title.namespace == 10 then self:setTemplateCategories() end self:setAllNamespaceCategories() end function MessageBox:renderCategories() if not self.hasCategories then -- No categories added, no need to pass them to Category handler so, -- if it was invoked, it would return the empty string. -- So we shortcut and return the empty string. return "" end -- Convert category tables to strings and pass them through -- [[Module:Category handler]]. return require('Module:Category handler')._main{ main = table.concat(self.categories[0] or {}), template = table.concat(self.categories[10] or {}), all = table.concat(self.categories.all or {}), nocat = self.args.nocat, page = self.args.page } end function MessageBox:exportDiv() local root = mw.html.create() -- Add the subst check error. if self.isSubstituted and self.name then root:tag('b') :addClass('error') :wikitext(string.format( 'Template <code>%s[[Template:%s|%s]]%s</code> has been incorrectly substituted.', mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}') )) end local frame = mw.getCurrentFrame() root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = self.base_templatestyles }, }) -- Add support for a single custom templatestyles sheet. Undocumented as -- need should be limited and many templates using mbox are substed; we -- don't want to spread templatestyles sheets around to arbitrary places if self.templatestyles then root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = self.templatestyles }, }) end -- Create the box. local mbox = root:tag('div') mbox:attr('id', self.id or nil) for i, class in ipairs(self.classes or {}) do mbox:addClass(class or nil) end mbox :cssText(self.style or nil) if self.attrs then mbox:attr(self.attrs) end local flex_container if self.below then -- we need to wrap the flex components (`image(right)` and `text`) in their -- own container div to support the `below` parameter flex_container = mw.html.create('div') flex_container:addClass('mbox-flex') else -- the mbox itself is the parent, so we need no HTML flex_container flex_container = mw.html.create() end -- Add the left-hand image. if self.imageLeft then local imageLeftCell = flex_container:tag('div'):addClass('mbox-image') imageLeftCell :addClass(self.imageLeftClass) :wikitext(self.imageLeft or nil) end -- Add the text. local textCell = flex_container:tag('div'):addClass('mbox-text') if self.useCollapsibleTextFields then -- The message box uses advanced text parameters that allow things to be -- collapsible. At the moment, only ambox uses this. textCell:cssText(self.textstyle or nil) local textCellDiv = textCell:tag('div') textCellDiv :addClass('mbox-text-span') :wikitext(self.issue or nil) if (self.talk or self.fix) then textCellDiv:tag('span') :addClass('hide-when-compact') :wikitext(self.talk and (' ' .. self.talk) or nil) :wikitext(self.fix and (' ' .. self.fix) or nil) end textCellDiv:wikitext(self.date and (' ' .. self.date) or nil) if self.info and not self.isSmall then textCellDiv :tag('span') :addClass('hide-when-compact') :wikitext(self.info and (' ' .. self.info) or nil) end if self.removalNotice then textCellDiv:tag('span') :addClass('hide-when-compact') :tag('i') :wikitext(string.format(" (%s)", self.removalNotice)) end else -- Default text formatting - anything goes. textCell :cssText(self.textstyle or nil) :wikitext(self.text or nil) end -- Add the right-hand image. if self.imageRight then local imageRightCell = flex_container:tag('div'):addClass('mbox-imageright') imageRightCell :addClass(self.imageRightClass) :wikitext(self.imageRight or nil) end mbox:node(flex_container) -- Add the below row. if self.below then mbox:tag('div') :addClass('mbox-text mbox-below') :cssText(self.textstyle or nil) :wikitext(self.below or nil) end -- Add error message for invalid type parameters. if self.invalidTypeError then root:tag('div') :addClass('mbox-invalid-type') :wikitext(string.format( 'This message box is using an invalid "type=%s" parameter and needs fixing.', self.type or '' )) end -- Add categories. root:wikitext(self:renderCategories() or nil) return tostring(root) end function MessageBox:export() local root = mw.html.create() -- Add the subst check error. if self.isSubstituted and self.name then root:tag('b') :addClass('error') :wikitext(string.format( 'Template <code>%s[[Template:%s|%s]]%s</code> has been incorrectly substituted.', mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}') )) end local frame = mw.getCurrentFrame() root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = self.base_templatestyles }, }) -- Add support for a single custom templatestyles sheet. Undocumented as -- need should be limited and many templates using mbox are substed; we -- don't want to spread templatestyles sheets around to arbitrary places if self.templatestyles then root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = self.templatestyles }, }) end -- Create the box table. local boxTable = root:tag('table') boxTable:attr('id', self.id or nil) for i, class in ipairs(self.classes or {}) do boxTable:addClass(class or nil) end boxTable :cssText(self.style or nil) :attr('role', 'presentation') if self.attrs then boxTable:attr(self.attrs) end -- Add the left-hand image. local row = boxTable:tag('tr') if self.imageLeft then local imageLeftCell = row:tag('td'):addClass('mbox-image') if self.imageCellDiv then -- If we are using a div, redefine imageLeftCell so that the image -- is inside it. Divs use style="width: 52px;", which limits the -- image width to 52px. If any images in a div are wider than that, -- they may overlap with the text or cause other display problems. imageLeftCell = imageLeftCell:tag('div'):addClass('mbox-image-div') end imageLeftCell :addClass(self.imageLeftClass) :wikitext(self.imageLeft or nil) elseif self.imageEmptyCell then -- Some message boxes define an empty cell if no image is specified, and -- some don't. The old template code in templates where empty cells are -- specified gives the following hint: "No image. Cell with some width -- or padding necessary for text cell to have 100% width." row:tag('td') :addClass('mbox-empty-cell') end -- Add the text. local textCell = row:tag('td'):addClass('mbox-text') if self.useCollapsibleTextFields then -- The message box uses advanced text parameters that allow things to be -- collapsible. At the moment, only ambox uses this. textCell:cssText(self.textstyle or nil) local textCellDiv = textCell:tag('div') textCellDiv :addClass('mbox-text-span') :wikitext(self.issue or nil) if (self.talk or self.fix) then textCellDiv:tag('span') :addClass('hide-when-compact') :wikitext(self.talk and (' ' .. self.talk) or nil) :wikitext(self.fix and (' ' .. self.fix) or nil) end textCellDiv:wikitext(self.date and (' ' .. self.date) or nil) if self.info and not self.isSmall then textCellDiv :tag('span') :addClass('hide-when-compact') :wikitext(self.info and (' ' .. self.info) or nil) end if self.removalNotice then textCellDiv:tag('span') :addClass('hide-when-compact') :tag('i') :wikitext(string.format(" (%s)", self.removalNotice)) end else -- Default text formatting - anything goes. textCell :cssText(self.textstyle or nil) :wikitext(self.text or nil) end -- Add the right-hand image. if self.imageRight then local imageRightCell = row:tag('td'):addClass('mbox-imageright') if self.imageCellDiv then -- If we are using a div, redefine imageRightCell so that the image -- is inside it. imageRightCell = imageRightCell:tag('div'):addClass('mbox-image-div') end imageRightCell :addClass(self.imageRightClass) :wikitext(self.imageRight or nil) end -- Add the below row. if self.below then boxTable:tag('tr') :tag('td') :attr('colspan', self.imageRight and '3' or '2') :addClass('mbox-text') :cssText(self.textstyle or nil) :wikitext(self.below or nil) end -- Add error message for invalid type parameters. if self.invalidTypeError then root:tag('div') :addClass('mbox-invalid-type') :wikitext(string.format( 'This message box is using an invalid "type=%s" parameter and needs fixing.', self.type or '' )) end -- Add categories. root:wikitext(self:renderCategories() or nil) return tostring(root) end -------------------------------------------------------------------------------- -- Exports -------------------------------------------------------------------------------- local p, mt = {}, {} function p._exportClasses() -- For testing. return { MessageBox = MessageBox } end function p.main(boxType, args, cfgTables) local box = MessageBox.new(boxType, args, cfgTables or mw.loadData(CONFIG_MODULE)) box:setParameters() box:setCategories() -- DIV MIGRATION CONDITIONAL if box.cfg.div_structure then return box:exportDiv() end -- END DIV MIGRATION CONDITIONAL return box:export() end function mt.__index(t, k) return function (frame) if not getArgs then getArgs = require('Module:Arguments').getArgs end return t.main(k, getArgs(frame, {trim = false, removeBlanks = false})) end end return setmetatable(p, mt) ocboyo877qnpqum2b9fyiquh72vukqa Módulo:Documentação 828 5952 72742 61334 2026-06-30T21:14:34Z Robertsky 10424 Página substituída por "return require('Module:Documentation')" 72742 Scribunto text/plain return require('Module:Documentation') ipfqjurxmmfpo3bkzzskvn9046dxtd6 Template:Infobox settlement/core 10 7149 72782 72322 2026-06-30T21:30:46Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement]] para [[Template:Infokaixa fatin-koabitasaun]]: localise 70387 wikitext text/x-wiki <includeonly>{{main other|{{#invoke:Settlement short description|main}}|}}{{Infobox | child = {{yesno|{{{embed|}}}}} | templatestyles = Infobox settlement/styles.css | bodyclass = ib-settlement vcard <!--** names, type, and transliterations ** --> | above = <div class="fn org">{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}</div> {{#if:{{{native_name|}}}|<div class="nickname ib-settlement-native" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}"}}>{{{native_name}}}</div>}}{{#if:{{{other_name|}}}|<div class="nickname ib-settlement-other-name">{{{other_name}}}</div>}} | subheader = {{#if:{{{settlement_type|}}}{{{type|}}}|<div class="category">{{if empty|{{{settlement_type|}}}|{{{type}}}}}</div>}} | rowclass1 = mergedtoprow ib-settlement-official | data1 = {{#if:{{{name|}}}|{{{official_name|}}}}} <!-- ***Transliteration language 1*** --> | rowclass2 = mergedtoprow | header2 = {{#if:{{{translit_lang1|}}}|{{{translit_lang1}}}&nbsp;transcription(s)}} | rowclass3 = {{#if:{{{translit_lang1_type1|}}}|mergedrow|mergedbottomrow}} | label3 = &nbsp;•&nbsp;{{{translit_lang1_type}}} | data3 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type|}}}|{{{translit_lang1_info|}}}}}}} | rowclass4 = {{#if:{{{translit_lang1_type2|}}}|mergedrow|mergedbottomrow}} | label4 = &nbsp;•&nbsp;{{{translit_lang1_type1}}} | data4 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type1|}}}|{{{translit_lang1_info1|}}}}}}} | rowclass5 = {{#if:{{{translit_lang1_type3|}}}|mergedrow|mergedbottomrow}} | label5 =&nbsp;•&nbsp;{{{translit_lang1_type2}}} | data5 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type2|}}}|{{{translit_lang1_info2|}}}}}}} | rowclass6 = {{#if:{{{translit_lang1_type4|}}}|mergedrow|mergedbottomrow}} | label6 = &nbsp;•&nbsp;{{{translit_lang1_type3}}} | data6 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type3|}}}|{{{translit_lang1_info3|}}}}}}} | rowclass7 = {{#if:{{{translit_lang1_type5|}}}|mergedrow|mergedbottomrow}} | label7 = &nbsp;•&nbsp;{{{translit_lang1_type4}}} | data7 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type4|}}}|{{{translit_lang1_info4|}}}}}}} | rowclass8 = {{#if:{{{translit_lang1_type6|}}}|mergedrow|mergedbottomrow}} | label8 = &nbsp;•&nbsp;{{{translit_lang1_type5}}} | data8 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type5|}}}|{{{translit_lang1_info5|}}}}}}} | rowclass9 = mergedbottomrow | label9 = &nbsp;•&nbsp;{{{translit_lang1_type6}}} | data9 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type6|}}}|{{{translit_lang1_info6|}}}}}}} <!-- ***Transliteration language 2*** --> | rowclass10 = mergedtoprow | header10 = {{#if:{{{translit_lang2|}}}|{{{translit_lang2}}}&nbsp;transcription(s)}} | rowclass11 = {{#if:{{{translit_lang2_type1|}}}|mergedrow|mergedbottomrow}} | label11 = &nbsp;•&nbsp;{{{translit_lang2_type}}} | data11 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type|}}}|{{{translit_lang2_info|}}}}}}} | rowclass12 = {{#if:{{{translit_lang2_type2|}}}|mergedrow|mergedbottomrow}} | label12 = &nbsp;•&nbsp;{{{translit_lang2_type1}}} | data12 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type1|}}}|{{{translit_lang2_info1|}}}}}}} | rowclass13 = {{#if:{{{translit_lang2_type3|}}}|mergedrow|mergedbottomrow}} | label13 =&nbsp;•&nbsp;{{{translit_lang2_type2}}} | data13 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type2|}}}|{{{translit_lang2_info2|}}}}}}} | rowclass14 = {{#if:{{{translit_lang2_type4|}}}|mergedrow|mergedbottomrow}} | label14 = &nbsp;•&nbsp;{{{translit_lang2_type3}}} | data14 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type3|}}}|{{{translit_lang2_info3|}}}}}}} | rowclass15 = {{#if:{{{translit_lang2_type5|}}}|mergedrow|mergedbottomrow}} | label15 = &nbsp;•&nbsp;{{{translit_lang2_type4}}} | data15 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type4|}}}|{{{translit_lang2_info4|}}}}}}} | rowclass16 = {{#if:{{{translit_lang2_type6|}}}|mergedrow|mergedbottomrow}} | label16 = &nbsp;•&nbsp;{{{translit_lang2_type5}}} | data16 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type5|}}}|{{{translit_lang2_info5|}}}}}}} | rowclass17 = mergedbottomrow | label17 = &nbsp;•&nbsp;{{{translit_lang2_type6}}} | data17 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type6|}}}|{{{translit_lang2_info6|}}}}}}} <!-- end ** names, type, and transliterations ** --> <!-- ***Skyline Image*** --> | rowclass18 = mergedtoprow | data18 = {{#if:{{{image_skyline|}}}|<!-- -->{{#invoke:InfoboxImage|InfoboxImage<!-- -->|image={{{image_skyline|}}}<!-- -->|size={{if empty|{{{image_size|}}}|{{{imagesize|}}}}}|sizedefault=250px|upright={{{image_upright|}}}<!-- -->|alt={{if empty|{{{image_alt|}}}|{{{alt|}}}}}<!-- -->|title={{if empty|{{{image_caption|}}}|{{{caption|}}}|{{{image_alt|}}}|{{{alt|}}}}}}}<!-- -->{{#if:{{{image_caption|}}}{{{caption|}}}|<div class="ib-settlement-caption">{{if empty|{{{image_caption|}}}|{{{caption|}}}}}</div>}} }} <!-- ***Flag, Seal, Shield and Coat of arms*** --> | rowclass19 = mergedtoprow | class19 = maptable | data19 = {{#if:{{{image_flag|}}}{{{image_seal|}}}{{{image_shield|}}}{{{image_blank_emblem|}}}{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}} |{{Infobox settlement/columns | 1 = {{#if:{{{image_flag|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_flag}}}|size={{{flag_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|125px|100x100px}}|border={{yesno |{{{flag_border|}}}|yes=yes|blank=yes}}|alt={{{flag_alt|}}}|title=Flag of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Flag|link={{{flag_link|}}}|name={{{official_name}}}}}</div>}} | 2 = {{#if:{{{image_seal|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_seal|}}}|size={{{seal_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{seal_alt|}}}|title=Official seal of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}|class={{{seal_class|}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{if empty|{{{seal_type|}}}|Seal}}|link={{{seal_link|}}}|name={{{official_name}}}}}</div>}} | 3 = {{#if:{{{image_shield|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_shield|}}}||size={{{shield_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{shield_alt|}}}|title=Coat of arms of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Coat of arms|link={{{shield_link|}}}|name={{{official_name}}}}}</div>}} | 4 = {{#if:{{{image_blank_emblem|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_blank_emblem|}}}|size={{{blank_emblem_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|upright={{{blank_emblem_upright|}}}|alt={{{blank_emblem_alt|}}}|title=Official logo of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{blank_emblem_type|}}}|{{{blank_emblem_type}}}}}|link={{{blank_emblem_link|}}}|name={{{official_name}}}}}</div>}} | 5 = {{#if:{{{image_map|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=100x100px|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption-link">{{{map_caption}}}</div>}}}} | 0 = {{#if:{{{pushpin_map_narrow|}}}|{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{{map_caption}}}}}}}}} |float = center |width = {{if empty|{{{pushpin_mapsize|}}}|150}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map --> |position = {{{pushpin_label_position|}}} }} }} }} }} }} <!-- ***Etymology*** --> | rowclass20 = mergedtoprow | data20 = {{#if:{{{etymology|}}}|Etymology: {{{etymology}}} }} <!-- ***Nickname*** --> | rowclass21 = {{#if:{{{etymology|}}}|mergedrow|mergedtoprow}} | data21 = {{#if:{{{nickname|}}}{{{nicknames|}}}|<!-- -->{{Pluralize from text|parse_links=1|{{if empty|{{{nickname|}}}|{{{nicknames|}}}{{force plural}}}}|<!-- -->link={{{nickname_link|}}}|singular=Nickname|likely=Nickname(s)|plural=Nicknames}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{nickname|}}}|{{{nicknames|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|parse_links=1|{{{nickname|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible nickname list]]}}}}}} <!-- ***Motto*** --> | rowclass22 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}|mergedrow|mergedtoprow}} | data22 = {{#if:{{{motto|}}}{{{mottoes|}}}|<!-- -->{{Pluralize from text|{{if empty|{{{motto|}}}|{{{mottoes|}}}{{force plural}}}}|<!-- -->link={{{motto_link|}}}|singular=Motto|likely=Motto(s)|plural=Mottoes}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{motto|}}}|{{{mottoes|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|{{{motto|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible motto list]]}}}}}} <!-- ***Anthem*** --> | rowclass23 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}{{{motto|}}}{{{mottoes|}}}|mergedrow|mergedtoprow}} | data23 = {{#if:{{{anthem|}}}|{{#if:{{{anthem_link|}}}|[[{{{anthem_link|}}}|Anthem:]]|Anthem:}} {{{anthem}}}}} <!-- ***Map*** --> | rowclass24 = mergedtoprow | data24 = {{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}||{{#if:{{{image_map|}}} |{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=250px|upright={{{image_upright|}}}|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption">{{{map_caption}}}</div>}} }}}} | rowclass25 = mergedrow | data25 = {{#if:{{{image_map1|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map1}}}|size={{{mapsize1|}}}|sizedefault=250px|upright={{{image_upright|}}}|alt={{{map_alt1|}}}|title={{{map_caption1|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption1|}}}|<div class="ib-settlement-caption">{{{map_caption1}}}</div>}} }} | data26 = {{#invoke:Infobox mapframe | autoWithCaption | onByDefault = {{#if:{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}|no|yes}} | mapframe-frame-width = 250 | mapframe-stroke-width = 2 | mapframe-length_km = {{{length_km|}}} | mapframe-length_mi = {{{length_mi|}}} | mapframe-width_km = {{{width_km|}}} | mapframe-width_mi = {{{width_mi|}}} | mapframe-area_km2 = {{{area_total_km2|}}} | mapframe-area_ha = {{{area_total_ha|}}} | mapframe-area_acre = {{{area_total_acre|}}} | mapframe-area_sq_mi = {{{area_total_sq_mi|}}} | mapframe-type = city | mapframe-population = {{if empty|{{{population_metro|}}}|{{{population_total|}}}}} | mapframe-marker = town | mapframe-wikidata = yes | mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}} }} <!-- ***Pushpin Map*** --> | rowclass28 = mergedtoprow | data28 = {{#if:{{{pushpin_map_narrow|}}}||{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{#if:{{{image_map|}}}||{{{map_caption}}}}}}}}}}} |float = center |width = {{{pushpin_mapsize|}}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{if empty|{{{name|}}}|{{{official_name|}}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map --> |position = {{{pushpin_label_position|}}} }} }} }} <!-- ***Coordinates*** --> | data29 = {{#if:{{{coordinates|}}}|{{#if:{{#invoke:string|match|s={{{coordinates|}}}|pattern=geo-inline-hidden|ignore_errors=true|plain=true}}|<!-- Nothing to display --> |Coordinates{{#if:{{{coor_pinpoint|}}}{{{coor_type|}}}|&#32;({{if empty|{{{coor_pinpoint|}}}|{{{coor_type|}}}}})}}: {{#invoke:ISO 3166|geocoordinsert|nocat=true|1={{{coordinates|}}}|country={{{subdivision_name|}}}|subdivision1={{{subdivision_name1|}}}|subdivision2={{{subdivision_name2|}}}|subdivision3={{{subdivision_name3|}}}|type=city{{#if:{{{population_total|}}}|{{#iferror:{{#expr:{{formatnum:{{{population_total}}}|R}}+1}}||({{formatnum:{{replace|{{{population_total}}}|,|}}|R}})}}}} }}{{{coordinates_footnotes|}}} }}}} | rowclass30 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|mergedbottomrow|mergedrow}} | label30 = {{if empty|{{{grid_name|}}}|Grid&nbsp;position}} | data30 = {{{grid_position|}}} <!-- ***Subdivisions*** --> | rowclass31 = mergedtoprow | label31 = {{{subdivision_type}}} | data31 = {{#if:{{{subdivision_type|}}}|{{{subdivision_name|}}} }} | rowclass32 = mergedrow | label32 = {{{subdivision_type1}}} | data32 = {{#if:{{{subdivision_type1|}}}|{{{subdivision_name1|}}} }} | rowclass33 = mergedrow | label33 = {{{subdivision_type2}}} | data33 = {{#if:{{{subdivision_type2|}}}|{{{subdivision_name2|}}} }} | rowclass34 = mergedrow | label34 = {{{subdivision_type3}}} | data34 = {{#if:{{{subdivision_type3|}}}|{{{subdivision_name3|}}} }} | rowclass35 = mergedrow | label35 = {{{subdivision_type4}}} | data35 = {{#if:{{{subdivision_type4|}}}|{{{subdivision_name4|}}} }} | rowclass36 = mergedrow | label36 = {{{subdivision_type5}}} | data36 = {{#if:{{{subdivision_type5|}}}|{{{subdivision_name5|}}} }} | rowclass37 = mergedrow | label37 = {{{subdivision_type6}}} | data37 = {{#if:{{{subdivision_type6|}}}|{{{subdivision_name6|}}} }} <!--***Established*** --> | rowclass38 = mergedtoprow | label38 = {{if empty|{{{established_title|}}}|Established}} | data38 = {{{established_date|}}} | rowclass39 = mergedrow | label39 = {{{established_title1}}} | data39 = {{#if:{{{established_title1|}}}|{{{established_date1|}}} }} | rowclass40 = mergedrow | label40 = {{{established_title2}}} | data40 = {{#if:{{{established_title2|}}}|{{{established_date2|}}} }} | rowclass41 = mergedrow | label41 = {{{established_title3}}} | data41 = {{#if:{{{established_title3|}}}|{{{established_date3|}}} }} | rowclass42 = mergedrow | label42 = {{{established_title4}}} | data42 = {{#if:{{{established_title4|}}}|{{{established_date4|}}} }} | rowclass43 = mergedrow | label43 = {{{established_title5}}} | data43 = {{#if:{{{established_title5|}}}|{{{established_date5|}}} }} | rowclass44 = mergedrow | label44 = {{{established_title6}}} | data44 = {{#if:{{{established_title6|}}}|{{{established_date6|}}} }} | rowclass45 = mergedrow | label45 = {{{established_title7}}} | data45 = {{#if:{{{established_title7|}}}|{{{established_date7|}}} }} | rowclass46 = mergedrow | label46 = {{{extinct_title}}} | data46 = {{#if:{{{extinct_title|}}}|{{{extinct_date|}}} }} | rowclass47 = mergedrow | label47 = Founded by | data47 = {{{founder|}}} | rowclass48 = mergedrow | label48 = [[Namesake|Named after]] | data48 = {{{named_for|}}} <!-- ***Seat of government and subdivisions within the settlement*** --> | rowclass49 = mergedtoprow | label49 = {{if empty|{{{seat_type|}}}|Seat}} | data49 = {{{seat|}}} | rowclass50 = mergedrow | label50 = {{if empty|{{{seat1_type|}}}|Former seat}} | data50 = {{{seat1|}}} | rowclass51 = mergedrow | label51 = {{if empty|{{{seat2_type|}}}|Former seat}} | data51 = {{{seat2|}}} | rowclass52 = {{#if:{{{seat|}}}{{{seat1|}}}{{{seat2|}}}|mergedrow|mergedtoprow}} | label52 = {{if empty|{{{parts_type|}}}|Boroughs}} | data52 = {{#if:{{{parts|}}}{{{p1|}}} |{{#ifeq:{{{parts_style|}}}|para |<b>{{{parts|}}}{{#if:{{both|{{{parts|}}}|{{{p1|}}}}}|&#58;&nbsp;|}}</b>{{comma separated entries|{{{p1|}}}|{{{p2|}}}|{{{p3|}}}|{{{p4|}}}|{{{p5|}}}|{{{p6|}}}|{{{p7|}}}|{{{p8|}}}|{{{p9|}}}|{{{p10|}}}|{{{p11|}}}|{{{p12|}}}|{{{p13|}}}|{{{p14|}}}|{{{p15|}}}|{{{p16|}}}|{{{p17|}}}|{{{p18|}}}|{{{p19|}}}|{{{p20|}}}|{{{p21|}}}|{{{p22|}}}|{{{p23|}}}|{{{p24|}}}|{{{p25|}}}|{{{p26|}}}|{{{p27|}}}|{{{p28|}}}|{{{p29|}}}|{{{p30|}}}|{{{p31|}}}|{{{p32|}}}|{{{p33|}}}|{{{p34|}}}|{{{p35|}}}|{{{p36|}}}|{{{p37|}}}|{{{p38|}}}|{{{p39|}}}|{{{p40|}}}|{{{p41|}}}|{{{p42|}}}|{{{p43|}}}|{{{p44|}}}|{{{p45|}}}|{{{p46|}}}|{{{p47|}}}|{{{p48|}}}|{{{p49|}}}|{{{p50|}}}}} |{{#if:{{{p1|}}}|{{Collapsible list|title={{{parts|}}}|expand={{#switch:{{{parts_style|}}}|coll=|list=y|{{#if:{{{p6|}}}||y}}}}|1={{{p1|}}}|2={{{p2|}}}|3={{{p3|}}}|4={{{p4|}}}|5={{{p5|}}}|6={{{p6|}}}|7={{{p7|}}}|8={{{p8|}}}|9={{{p9|}}}|10={{{p10|}}}|11={{{p11|}}}|12={{{p12|}}}|13={{{p13|}}}|14={{{p14|}}}|15={{{p15|}}}|16={{{p16|}}}|17={{{p17|}}}|18={{{p18|}}}|19={{{p19|}}}|20={{{p20|}}}|21={{{p21|}}}|22={{{p22|}}}|23={{{p23|}}}|24={{{p24|}}}|25={{{p25|}}}|26={{{p26|}}}|27={{{p27|}}}|28={{{p28|}}}|29={{{p29|}}}|30={{{p30|}}}|31={{{p31|}}}|32={{{p32|}}}|33={{{p33|}}}|34={{{p34|}}}|35={{{p35|}}}|36={{{p36|}}}|37={{{p37|}}}|38={{{p38|}}}|39={{{p39|}}}|40={{{p40|}}}|41={{{p41|}}}|42={{{p42|}}}|43={{{p43|}}}|44={{{p44|}}}|45={{{p45|}}}|46={{{p46|}}}|47={{{p47|}}}|48={{{p48|}}}|49={{{p49|}}}|50={{{p50|}}}}} |{{{parts}}} }} }} }} <!-- ***Government type and Leader*** --> | rowclass53 = mergedtoprow | header53 = {{#if:{{{government_type|}}}{{{governing_body|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{leader_name2|}}}{{{leader_name3|}}}{{{leader_name4|}}}|Government<div class="ib-settlement-fn">{{{government_footnotes|}}}</div>}} <!-- ***Government*** --> | rowclass54 = mergedrow | label54 = &nbsp;•&nbsp;Type | data54 = {{{government_type|}}} | rowclass55 = mergedrow | label55 = &nbsp;•&nbsp;Body | class55 = agent | data55 = {{{governing_body|}}} | rowclass56 = mergedrow | label56 = &nbsp;•&nbsp;{{{leader_title}}} | data56 = {{#if:{{{leader_title|}}}|{{{leader_name|}}} {{#if:{{{leader_party|}}}|({{Polparty|{{{subdivision_name}}}|{{{leader_party}}}}})}}}} | rowclass57 = mergedrow | label57 = &nbsp;•&nbsp;{{{leader_title1}}} | data57 = {{#if:{{{leader_title1|}}}|{{{leader_name1|}}}}} | rowclass58 = mergedrow | label58 = &nbsp;•&nbsp;{{{leader_title2}}} | data58 = {{#if:{{{leader_title2|}}}|{{{leader_name2|}}}}} | rowclass59 = mergedrow | label59 = &nbsp;•&nbsp;{{{leader_title3}}} | data59 = {{#if:{{{leader_title3|}}}|{{{leader_name3|}}}}} | rowclass60 = mergedrow | label60 = &nbsp;•&nbsp;{{{leader_title4}}} | data60 = {{#if:{{{leader_title4|}}}|{{{leader_name4|}}}}} | rowclass61 = mergedrow | label61 = &nbsp;•&nbsp;{{{leader_title5}}} | data61 = {{#if:{{{leader_title5|}}}|{{{leader_name5|}}}}} | rowclass62 = mergedrow | label62 = {{{government_blank1_title}}} | data62 = {{#if:{{{government_blank1|}}}|{{{government_blank1|}}}}} | rowclass63 = mergedrow | label63 = {{{government_blank2_title}}} | data63 = {{#if:{{{government_blank2|}}}|{{{government_blank2|}}}}} | rowclass64 = mergedrow | label64 = {{{government_blank3_title}}} | data64 = {{#if:{{{government_blank3|}}}|{{{government_blank3|}}}}} | rowclass65 = mergedrow | label65 = {{{government_blank4_title}}} | data65 = {{#if:{{{government_blank4|}}}|{{{government_blank4|}}}}} | rowclass66 = mergedrow | label66 = {{{government_blank5_title}}} | data66 = {{#if:{{{government_blank5|}}}|{{{government_blank5|}}}}} | rowclass67 = mergedrow | label67 = {{{government_blank6_title}}} | data67 = {{#if:{{{government_blank6|}}}|{{{government_blank6|}}}}} <!-- ***Geographical characteristics*** --> <!-- ***Area*** --> | rowclass68 = mergedtoprow | header68 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_rural_sq_mi|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_km2|}}}{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_metro_sq_mi|}}}{{{area_blank1_sq_mi|}}} |{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |<!-- displayed below --> |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> }} }} | rowclass69 = {{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}}|mergedtoprow|mergedrow}} | label69 = <div style="white-space:nowrap;">{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> |&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}|{{#if:{{{settlement_type|}}}{{{type|}}}|{{if empty|{{{settlement_type|}}}|{{{type}}}}}|City}}|Total}}}} }}</div> | data69 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_total_km2|}}} |ha ={{{area_total_ha|}}} |acre ={{{area_total_acre|}}} |sqmi ={{{area_total_sq_mi|}}} |dunam={{{area_total_dunam|}}} |link ={{#switch:{{{dunam_link|}}}||on|total=on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass70 = mergedrow | label70 = &nbsp;•&nbsp;Land | data70 = {{#if:{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_land_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_land_km2|}}} |ha ={{{area_land_ha|}}} |acre ={{{area_land_acre|}}} |sqmi ={{{area_land_sq_mi|}}} |dunam={{{area_land_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|land|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass71 = mergedrow | label71 = &nbsp;•&nbsp;Water | data71 = {{#if:{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_water_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_water_km2|}}} |ha ={{{area_water_ha|}}} |acre ={{{area_water_acre|}}} |sqmi ={{{area_water_sq_mi|}}} |dunam={{{area_water_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|water|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }} {{#if:{{{area_water_percent|}}}| &nbsp;{{{area_water_percent}}}{{#ifeq:%|{{#invoke:string|sub|{{{area_water_percent|}}}|-1}}||%}}}}}} | rowclass72 = mergedrow | label72 = &nbsp;•&nbsp;Urban<div class="ib-settlement-fn">{{{area_urban_footnotes|}}}</div> | data72 = {{#if:{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_urban_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_urban_km2|}}} |ha ={{{area_urban_ha|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|urban|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass73 = mergedrow | label73 = &nbsp;•&nbsp;Rural<div class="ib-settlement-fn">{{{area_rural_footnotes|}}}</div> | data73 = {{#if:{{{area_rural_km2|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_sq_mi|}}}{{{area_rural_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_rural_km2|}}} |ha ={{{area_rural_ha|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|rural|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass74 = mergedrow | label74 =&nbsp;•&nbsp;Metro<div class="ib-settlement-fn">{{{area_metro_footnotes|}}}</div> | data74 = {{#if:{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_metro_sq_mi|}}}{{{area_metro_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_metro_km2|}}} |ha ={{{area_metro_ha|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|metro|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Area rank*** --> | rowclass75 = mergedrow | label75 = &nbsp;•&nbsp;Rank | data75 = {{{area_rank|}}} | rowclass76 = mergedrow | label76 = &nbsp;•&nbsp;{{{area_blank1_title}}} | data76 = {{#if:{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_blank1_sq_mi|}}}{{{area_blank1_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank1_km2|}}} |ha ={{{area_blank1_ha|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank1|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass77 = mergedrow | label77 = &nbsp;•&nbsp;{{{area_blank2_title}}} | data77 = {{#if:{{{area_blank2_km2|}}}{{{area_blank2_ha|}}}{{{area_blank2_acre|}}}{{{area_blank2_sq_mi|}}}{{{area_blank2_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank2_km2|}}} |ha ={{{area_blank2_ha|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank2|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass78 = mergedrow | label78 = &nbsp; | data78 = {{{area_note|}}} <!-- ***Dimensions*** --> | rowclass79 = mergedtoprow | header79 = {{#if:{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|Dimensions<div class="ib-settlement-fn">{{{dimensions_footnotes|}}}</div>}} | rowclass80 = mergedrow | label80 = &nbsp;•&nbsp;Length | data80 = {{#if:{{{length_km|}}}{{{length_mi|}}} | {{infobox_settlement/lengthdisp |km ={{{length_km|}}} |mi ={{{length_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass81 = mergedrow | label81 = &nbsp;•&nbsp;Width | data81 = {{#if:{{{width_km|}}}{{{width_mi|}}} |{{infobox_settlement/lengthdisp |km ={{{width_km|}}} |mi ={{{width_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation*** --> | rowclass82 = mergedtoprow | label82 = {{#if:{{{elevation_link|}}}|[[{{{elevation_link|}}}|Elevation]]|Elevation}}<div class="ib-settlement-fn">{{{elevation_footnotes|}}}{{#if:{{{elevation_point|}}}|&#32;({{{elevation_point}}})}}</div> | data82 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_m|}}} |ft ={{{elevation_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass83 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}}|mergedrow|mergedtoprow}} | label83 = Highest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_max_footnotes|}}}{{#if:{{{elevation_max_point|}}}|&#32;({{{elevation_max_point}}})}}</div> | data83 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_max_m|}}} |ft ={{{elevation_max_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation max rank*** --> | rowclass84 = mergedrow | label84 = &nbsp;•&nbsp;Rank | data84 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}}| {{{elevation_max_rank|}}} }} | rowclass85 = {{#if:{{{elevation_min_rank|}}}|mergedrow|mergedbottomrow}} | label85 = Lowest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_min_footnotes|}}}{{#if:{{{elevation_min_point|}}}|&#32;({{{elevation_min_point}}})}}</div> | data85 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_min_m|}}} |ft ={{{elevation_min_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation min rank*** --> | rowclass86 = mergedrow | label86 = &nbsp;•&nbsp;Rank | data86 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}}|{{{elevation_min_rank|}}}}} <!-- ***Population*** --> | rowclass87 = mergedtoprow | label87 = Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> | data87 = {{fix comma category|{{#ifeq:{{{total_type}}}|&nbsp; | {{#if:{{{population_total|}}} | {{formatnum:{{replace|{{{population_total}}}|,|}}}} }} }} }} | rowclass88 = mergedtoprow | header88 ={{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}}{{{population_urban|}}}{{{population_rural|}}}{{{population_metro|}}}{{{population_blank1|}}}{{{population_blank2|}}}{{{population_est|}}} |Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> }} }} | rowclass89 = mergedrow | label89 = <div style="white-space:nowrap;">&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}|{{#if:{{{settlement_type|}}}{{{type|}}}|{{if empty|{{{settlement_type|}}}|{{{type}}}}}|City}}|Total}}}}</div> | data89 = {{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}} | {{fix comma category|{{formatnum:{{replace|{{{population_total}}}|,|}}}}}} }} }} | rowclass90 = mergedrow | label90 = <div style="white-space:nowrap;">&nbsp;•&nbsp;Estimate&nbsp;{{#if:{{{pop_est_as_of|}}}|<div class="ib-settlement-fn">({{{pop_est_as_of}}}){{{pop_est_footnotes|}}}</div>}}</div> | data90 = {{#if:{{{population_est|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_est}}}|,|}}}}}} }} <!-- ***Population rank*** --> | rowclass91 = mergedrow | label91 =&nbsp;•&nbsp;Rank | data91 = {{{population_rank|}}} | rowclass92 = mergedrow | label92 = &nbsp;•&nbsp;Density | data92 = {{#if:{{{population_density_km2|}}}{{{population_density_sq_mi|}}}{{{population_total|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_km2|}}} |/sqmi={{{population_density_sq_mi|}}} |pop ={{{population_total|}}} |dunam={{if empty|{{{area_land_dunam|}}}|{{{area_total_dunam|}}}}} |ha ={{if empty|{{{area_land_ha|}}}|{{{area_total_ha|}}}}} |km2 ={{if empty|{{{area_land_km2|}}}|{{{area_total_km2|}}}}} |acre ={{if empty|{{{area_land_acre|}}}|{{{area_total_acre|}}}}} |sqmi ={{if empty|{{{area_land_sq_mi|}}}|{{{area_total_sq_mi|}}}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Population density rank*** --> | rowclass93 = mergedrow | label93 = &nbsp;&nbsp;•&nbsp;Rank | data93 = {{{population_density_rank|}}} | rowclass94 = mergedrow | label94 = &nbsp;•&nbsp;[[Urban area|Urban]]<div class="ib-settlement-fn">{{{population_urban_footnotes|}}}</div> | data94 = {{#if:{{{population_urban|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_urban}}}|,|}}}}}} }} | rowclass95 = mergedrow | label95 = &nbsp;•&nbsp;Urban&nbsp;density | data95 = {{#if:{{{population_density_urban_km2|}}}{{{population_density_urban_sq_mi|}}}{{{population_urban|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_urban_km2|}}} |/sqmi={{{population_density_urban_sq_mi|}}} |pop ={{{population_urban|}}} |ha ={{{area_urban_ha|}}} |km2 ={{{area_urban_km2|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass96 = mergedrow | label96 = &nbsp;•&nbsp;[[Rural area|Rural]]<div class="ib-settlement-fn">{{{population_rural_footnotes|}}}</div> | data96 = {{#if:{{{population_rural|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_rural}}}|,|}}}}}}}} | rowclass97 = mergedrow | label97 = &nbsp;•&nbsp;Rural&nbsp;density | data97 = {{#if:{{{population_density_rural_km2|}}}{{{population_density_rural_sq_mi|}}}{{{population_rural|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_rural_km2|}}} |/sqmi={{{population_density_rural_sq_mi|}}} |pop ={{{population_rural|}}} |ha ={{{area_rural_ha|}}} |km2 ={{{area_rural_km2|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass98 = mergedrow | label98 =&nbsp;•&nbsp;[[Metropolitan area|Metro]]<div class="ib-settlement-fn">{{{population_metro_footnotes|}}}</div> | data98 = {{#if:{{{population_metro|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_metro}}}|,|}}}}}} }} | rowclass99 = mergedrow | label99 = &nbsp;•&nbsp;Metro&nbsp;density | data99 = {{#if:{{{population_density_metro_km2|}}}{{{population_density_metro_sq_mi|}}}{{{population_metro|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_metro_km2|}}} |/sqmi={{{population_density_metro_sq_mi|}}} |pop ={{{population_metro|}}} |ha ={{{area_metro_ha|}}} |km2 ={{{area_metro_km2|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass100 = mergedrow | label100 = &nbsp;•&nbsp;{{{population_blank1_title|}}}<div class="ib-settlement-fn">{{{population_blank1_footnotes|}}}</div> | data100 = {{#if:{{{population_blank1|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank1}}}|,|}}}}}}}} | rowclass101 = mergedrow | label101 = &nbsp;•&nbsp;{{#if:{{{population_blank1_title|}}}|{{{population_blank1_title}}} density|Density}} | data101 = {{#if:{{{population_density_blank1_km2|}}}{{{population_density_blank1_sq_mi|}}}{{{population_blank1|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank1_km2|}}} |/sqmi={{{population_density_blank1_sq_mi|}}} |pop ={{{population_blank1|}}} |ha ={{{area_blank1_ha|}}} |km2 ={{{area_blank1_km2|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass102 = mergedrow | label102 = &nbsp;•&nbsp;{{{population_blank2_title|}}}<div class="ib-settlement-fn">{{{population_blank2_footnotes|}}}</div> | data102 = {{#if:{{{population_blank2|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank2}}}|,|}}}}}}}} | rowclass103 = mergedrow | label103 = &nbsp;•&nbsp;{{#if:{{{population_blank2_title|}}}|{{{population_blank2_title}}} density|Density}} | data103 = {{#if:{{{population_density_blank2_km2|}}}{{{population_density_blank2_sq_mi|}}}{{{population_blank2|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank2_km2|}}} |/sqmi={{{population_density_blank2_sq_mi|}}} |pop ={{{population_blank2|}}} |ha ={{{area_blank2_ha|}}} |km2 ={{{area_blank2_km2|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass104 = mergedrow | label104 = &nbsp; | data104 = {{{population_note|}}} | rowclass105 = mergedtoprow | label105 = {{Pluralize from text|{{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}{{force plural}}}}|<!-- -->link=Demonym|singular=Demonym|likely=Demonym(s)|plural=Demonyms}} | data105 = {{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}}}{{Main other|{{Pluralize from text|{{{population_demonym|}}}|likely=[[Category:Pages using infobox settlement with possible demonym list]]}}}} <!-- ***Demographics 1*** --> | rowclass106 = mergedtoprow | header106 = {{#if:{{{demographics_type1|}}} |{{{demographics_type1}}}<div class="ib-settlement-fn">{{{demographics1_footnotes|}}}</div>}} | rowclass107 = mergedrow | label107 = &nbsp;•&nbsp;{{{demographics1_title1}}} | data107 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title1|}}}|{{{demographics1_info1|}}}}}}} | rowclass108 = mergedrow | label108 = &nbsp;•&nbsp;{{{demographics1_title2}}} | data108 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title2|}}}|{{{demographics1_info2|}}}}}}} | rowclass109 = mergedrow | label109 = &nbsp;•&nbsp;{{{demographics1_title3}}} | data109 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title3|}}}|{{{demographics1_info3|}}}}}}} | rowclass110 = mergedrow | label110 = &nbsp;•&nbsp;{{{demographics1_title4}}} | data110 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title4|}}}|{{{demographics1_info4|}}}}}}} | rowclass111 = mergedrow | label111 = &nbsp;•&nbsp;{{{demographics1_title5}}} | data111 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title5|}}}|{{{demographics1_info5|}}}}}}} | rowclass112 = mergedrow | label112 = &nbsp;•&nbsp;{{{demographics1_title6}}} | data112 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title6|}}}|{{{demographics1_info6|}}}}}}} | rowclass113 = mergedrow | label113 = &nbsp;•&nbsp;{{{demographics1_title7}}} | data113 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title7|}}}|{{{demographics1_info7|}}}}}}} | rowclass114 = mergedrow | label114 = &nbsp;•&nbsp;{{{demographics1_title8}}} | data114 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title8|}}}|{{{demographics1_info8|}}}}}}} | rowclass115 = mergedrow | label115 = &nbsp;•&nbsp;{{{demographics1_title9}}} | data115 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title9|}}}|{{{demographics1_info9|}}}}}}} | rowclass116 = mergedrow | label116 = &nbsp;•&nbsp;{{{demographics1_title10}}} | data116 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title10|}}}|{{{demographics1_info10|}}}}}}} <!-- ***Demographics 2*** --> | rowclass117 = mergedtoprow | header117 = {{#if:{{{demographics_type2|}}} |{{{demographics_type2}}}<div class="ib-settlement-fn">{{{demographics2_footnotes|}}}</div>}} | rowclass118 = mergedrow | label118 = &nbsp;•&nbsp;{{{demographics2_title1}}} | data118 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title1|}}}|{{{demographics2_info1|}}}}}}} | rowclass119 = mergedrow | label119 = &nbsp;•&nbsp;{{{demographics2_title2}}} | data119 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title2|}}}|{{{demographics2_info2|}}}}}}} | rowclass120 = mergedrow | label120 = &nbsp;•&nbsp;{{{demographics2_title3}}} | data120 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title3|}}}|{{{demographics2_info3|}}}}}}} | rowclass121 = mergedrow | label121 = &nbsp;•&nbsp;{{{demographics2_title4}}} | data121 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title4|}}}|{{{demographics2_info4|}}}}}}} | rowclass122 = mergedrow | label122 = &nbsp;•&nbsp;{{{demographics2_title5}}} | data122 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title5|}}}|{{{demographics2_info5|}}}}}}} | rowclass123 = mergedrow | label123 = &nbsp;•&nbsp;{{{demographics2_title6}}} | data123 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title6|}}}|{{{demographics2_info6|}}}}}}} | rowclass124 = mergedrow | label124 = &nbsp;•&nbsp;{{{demographics2_title7}}} | data124 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title7|}}}|{{{demographics2_info7|}}}}}}} | rowclass125 = mergedrow | label125 = &nbsp;•&nbsp;{{{demographics2_title8}}} | data125 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title8|}}}|{{{demographics2_info8|}}}}}}} | rowclass126 = mergedrow | label126 = &nbsp;•&nbsp;{{{demographics2_title9}}} | data126 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title9|}}}|{{{demographics2_info9|}}}}}}} | rowclass127 = mergedrow | label127 = &nbsp;•&nbsp;{{{demographics2_title10}}} | data127 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title10|}}}|{{{demographics2_info10|}}}}}}} <!-- ***Time Zones*** --> | rowclass128 = mergedtoprow | header128 = {{#if:{{{timezone1_location|}}}|{{#if:{{{timezone2|}}}|[[{{if empty|{{{timezone_link|}}}|Time zone}}|Time zone]]s|[[{{if empty|{{{timezone_link|}}}|Time zone}}|Time zone]]}}|}} | rowclass129 = {{#if:{{{timezone1_location|}}}|mergedrow|mergedtoprow}} | label129 = {{#if:{{{timezone1_location|}}}|{{{timezone1_location}}}|{{#if:{{{timezone2_location|}}}|{{{timezone2_location}}}|{{#if:{{{timezone2|}}}|[[{{if empty|{{{timezone_link|}}}|Time zone}}|Time zone]]s|[[{{if empty|{{{timezone_link|}}}|Time zone}}|Time zone]]}}}}}} | data129 = {{#if:{{{utc_offset1|}}}{{{utc_offset|}}} |[[UTC{{if empty|{{{utc_offset1|}}}|{{{utc_offset}}}}}]] {{#if:{{{timezone1|}}}{{{timezone|}}}|({{if empty|{{{timezone1|}}}|{{{timezone}}}}})}} |{{if empty|{{{timezone1|}}}|{{{timezone|}}}}} }} | rowclass130 = mergedrow | label130 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data130 = {{#if:{{{utc_offset1_DST|}}}{{{utc_offset_DST|}}} |[[UTC{{if empty|{{{utc_offset1_DST|}}}|{{{utc_offset_DST|}}}}}]] {{#if:{{{timezone1_DST|}}}{{{timezone_DST|}}}|({{if empty|{{{timezone1_DST|}}}|{{{timezone_DST}}}}})}} |{{if empty|{{{timezone1_DST|}}}|{{{timezone_DST|}}}}} }} | rowclass131 = mergedrow | label131 = {{if empty|{{{timezone2_location|}}}|<nowiki />}} | data131 = {{#if:{{{timezone1|}}}{{{timezone|}}}{{{utc_offset1|}}}{{{utc_offset|}}} |{{#if:{{{utc_offset2|}}} |[[UTC{{{utc_offset2|}}}]] {{#if:{{{timezone2|}}}|({{{timezone2}}})}} |{{{timezone2|}}} }} }} | rowclass132 = mergedrow | label132 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data132 = {{#if:{{{utc_offset2_DST|}}}|[[UTC{{{utc_offset2_DST|}}}]] {{#if:{{{timezone2_DST|}}}|({{{timezone2_DST|}}})}} |{{{timezone2_DST|}}} }} | rowclass133 = mergedrow | label133 = {{if empty|{{{timezone3_location|}}}|<nowiki />}} | data133 = {{#if:{{{timezone1|}}}{{{timezone|}}}{{{utc_offset1|}}}{{{utc_offset|}}} |{{#if:{{{utc_offset3|}}} |[[UTC{{{utc_offset3|}}}]] {{#if:{{{timezone3|}}}|({{{timezone3}}})}} |{{{timezone3|}}} }} }} | rowclass134 = mergedrow | label134 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data134 = {{#if:{{{utc_offset3_DST|}}}|[[UTC{{{utc_offset3_DST|}}}]] {{#if:{{{timezone3_DST|}}}|({{{timezone3_DST|}}})}} |{{{timezone3_DST|}}} }} | rowclass135 = mergedrow | label135 = {{if empty|{{{timezone4_location|}}}|<nowiki />}} | data135 = {{#if:{{{timezone1|}}}{{{timezone|}}}{{{utc_offset1|}}}{{{utc_offset|}}} |{{#if:{{{utc_offset4|}}} |[[UTC{{{utc_offset4|}}}]] {{#if:{{{timezone4|}}}|({{{timezone4}}})}} |{{{timezone4|}}} }} }} | rowclass136 = mergedrow | label136 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data136 = {{#if:{{{utc_offset4_DST|}}}|[[UTC{{{utc_offset4_DST|}}}]] {{#if:{{{timezone4_DST|}}}|({{{timezone4_DST|}}})}} |{{{timezone4_DST|}}} }} | rowclass137 = mergedrow | label137 = {{if empty|{{{timezone5_location|}}}|<nowiki />}} | data137 = {{#if:{{{timezone1|}}}{{{timezone|}}}{{{utc_offset1|}}}{{{utc_offset|}}} |{{#if:{{{utc_offset5|}}} |[[UTC{{{utc_offset5|}}}]] {{#if:{{{timezone5|}}}|({{{timezone5}}})}} |{{{timezone5|}}} }} }} | rowclass138 = mergedrow | label138 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data138 = {{#if:{{{utc_offset5_DST|}}}|[[UTC{{{utc_offset5_DST|}}}]] {{#if:{{{timezone5_DST|}}}|({{{timezone5_DST|}}})}} |{{{timezone5_DST|}}} }} <!-- ***Postal Code(s)*** --> | rowclass139 = mergedtoprow | label139 = {{if empty|{{{postal_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class139 = adr | data139 = {{#if:{{{postal_code|}}}|<div class="postal-code">{{{postal_code}}}</div>}} | rowclass140 = {{#if:{{{postal_code|}}}|mergedbottomrow|mergedtoprow}} | label140 = {{if empty|{{{postal2_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal2_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class140 = adr | data140 = {{#if:{{{postal2_code|}}}|<div class="postal-code">{{{postal2_code}}}</div>}} <!-- ***Area Code(s)*** --> | rowclass141 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}|mergedrow|mergedtoprow}} | label141 = {{if empty|{{{area_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{if empty|{{{area_code|}}}|{{{area_codes|}}}{{force plural}}}}|<!-- -->link=Telephone numbering plan|singular=Area code|likely=Area code(s)|plural=Area codes}}}} | data141 = {{if empty|{{{area_code|}}}|{{{area_codes|}}}}}{{#if:{{{area_code_type|}}}||{{Main other|{{Pluralize from text|any_comma=1|parse_links=1|{{{area_code|}}}|||[[Category:Pages using infobox settlement with possible area code list]]}}}}}} <!-- Geocode--> | rowclass142 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}|mergedrow|mergedtoprow}} | label142 = [[Geocode]] | class142 = nickname | data142 = {{{geocode|}}} <!-- ISO Code--> | rowclass143 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}|mergedrow|mergedtoprow}} | label143 = [[ISO 3166|ISO 3166 code]] | class143 = nickname | data143 = {{{iso_code|}}} <!-- Vehicle registration plate--> | rowclass144 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}|mergedrow|mergedtoprow}} | label144 = {{if empty|{{{registration_plate_type|}}}|[[Vehicle registration plate|Vehicle registration]]}} | data144 = {{{registration_plate|}}} <!-- Other codes --> | rowclass145 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}|mergedrow|mergedtoprow}} | label145 = {{{code1_name|}}} | class145 = nickname | data145 = {{#if:{{{code1_name|}}}|{{{code1_info|}}}}} | rowclass146 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}{{{code1_name|}}}|mergedrow|mergedtoprow}} | label146 = {{{code2_name|}}} | class146 = nickname | data146 = {{#if:{{{code2_name|}}}|{{{code2_info|}}}}} <!-- ***Blank Fields (two sections)*** --> | rowclass147 = mergedtoprow | label147 = {{if empty|{{{blank_name_sec1|}}}|{{{blank_name|}}}}} | data147 = {{#if:{{{blank_name_sec1|}}}{{{blank_name|}}}|{{if empty|{{{blank_info_sec1|}}}|{{{blank_info|}}}}}}} | rowclass148 = mergedrow | label148 = {{if empty|{{{blank1_name_sec1|}}}|{{{blank1_name|}}}}} | data148 = {{#if:{{{blank1_name_sec1|}}}{{{blank1_name|}}}|{{if empty|{{{blank1_info_sec1|}}}|{{{blank1_info|}}}}}}} | rowclass149 = mergedrow | label149 = {{if empty|{{{blank2_name_sec1|}}}|{{{blank2_name|}}}}} | data149 = {{#if:{{{blank2_name_sec1|}}}{{{blank2_name|}}}|{{if empty|{{{blank2_info_sec1|}}}|{{{blank2_info|}}}}}}} | rowclass150 = mergedrow | label150 = {{if empty|{{{blank3_name_sec1|}}}|{{{blank3_name|}}}}} | data150 = {{#if:{{{blank3_name_sec1|}}}{{{blank3_name|}}}|{{if empty|{{{blank3_info_sec1|}}}|{{{blank3_info|}}}}}}} | rowclass151 = mergedrow | label151 = {{if empty|{{{blank4_name_sec1|}}}|{{{blank4_name|}}}}} | data151 = {{#if:{{{blank4_name_sec1|}}}{{{blank4_name|}}}|{{if empty|{{{blank4_info_sec1|}}}|{{{blank4_info|}}}}}}} | rowclass152 = mergedrow | label152 = {{if empty|{{{blank5_name_sec1|}}}|{{{blank5_name|}}}}} | data152 = {{#if:{{{blank5_name_sec1|}}}{{{blank5_name|}}}|{{if empty|{{{blank5_info_sec1|}}}|{{{blank5_info|}}}}}}} | rowclass153 = mergedrow | label153 = {{if empty|{{{blank6_name_sec1|}}}|{{{blank6_name|}}}}} | data153 = {{#if:{{{blank6_name_sec1|}}}{{{blank6_name|}}}|{{if empty|{{{blank6_info_sec1|}}}|{{{blank6_info|}}}}}}} | rowclass154 = mergedrow | label154 = {{if empty|{{{blank7_name_sec1|}}}|{{{blank7_name|}}}}} | data154 = {{#if:{{{blank7_name_sec1|}}}{{{blank7_name|}}}|{{if empty|{{{blank7_info_sec1|}}}|{{{blank7_info|}}}}}}} | rowclass155 = mergedtoprow | label155 = {{{blank_name_sec2}}} | data155 = {{#if:{{{blank_name_sec2|}}}|{{{blank_info_sec2|}}}}} | rowclass156 = mergedrow | label156 = {{{blank1_name_sec2}}} | data156 = {{#if:{{{blank1_name_sec2|}}}|{{{blank1_info_sec2|}}}}} | rowclass157 = mergedrow | label157 = {{{blank2_name_sec2}}} | data157 = {{#if:{{{blank2_name_sec2|}}}|{{{blank2_info_sec2|}}}}} | rowclass158 = mergedrow | label158 = {{{blank3_name_sec2}}} | data158 = {{#if:{{{blank3_name_sec2|}}}|{{{blank3_info_sec2|}}}}} | rowclass159 = mergedrow | label159 = {{{blank4_name_sec2}}} | data159 = {{#if:{{{blank4_name_sec2|}}}|{{{blank4_info_sec2|}}}}} | rowclass160 = mergedrow | label160 = {{{blank5_name_sec2}}} | data160 = {{#if:{{{blank5_name_sec2|}}}|{{{blank5_info_sec2|}}}}} | rowclass161 = mergedrow | label161 = {{{blank6_name_sec2}}} | data161 = {{#if:{{{blank6_name_sec2|}}}|{{{blank6_info_sec2|}}}}} | rowclass162 = mergedrow | label162 = {{{blank7_name_sec2}}} | data162 = {{#if:{{{blank7_name_sec2|}}}|{{{blank7_info_sec2|}}}}} <!-- ***Website*** --> | rowclass163 = mergedtoprow | label163 = Website | data163 = {{#if:{{{website|}}}|{{{website}}}}} | class164 = maptable | data164 = {{#if:{{{module|}}}|{{{module}}}}} <!-- ***Footnotes*** --> | belowrowclass = mergedtoprow | below = {{{footnotes|}}} }}<!-- Check for unknowns -->{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview = Page using [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y | alt | anthem | anthem_link | area_blank1_acre | area_blank1_dunam | area_blank1_ha | area_blank1_km2 | area_blank1_sq_mi | area_blank1_title | area_blank2_acre | area_blank2_dunam | area_blank2_ha | area_blank2_km2 | area_blank2_sq_mi | area_blank2_title | area_code | area_code_type | area_codes | area_footnotes | area_land_acre | area_land_dunam | area_land_ha | area_land_km2 | area_land_sq_mi | area_metro_acre | area_metro_dunam | area_metro_footnotes | area_metro_ha | area_metro_km2 | area_metro_sq_mi | area_note | area_rank | area_rural_acre | area_rural_dunam | area_rural_footnotes | area_rural_ha | area_rural_km2 | area_rural_sq_mi | area_total_acre | area_total_dunam | area_total_ha | area_total_km2 | area_total_sq_mi | area_urban_acre | area_urban_dunam | area_urban_footnotes | area_urban_ha | area_urban_km2 | area_urban_sq_mi | area_water_acre | area_water_dunam | area_water_ha | area_water_km2 | area_water_percent | area_water_sq_mi | blank_emblem_alt | blank_emblem_link | blank_emblem_size | blank_emblem_type | blank_emblem_upright | blank_info | blank_info_sec1 | blank_info_sec2 | blank_name | blank_name_sec1 | blank_name_sec2 | blank1_info | blank1_info_sec1 | blank1_info_sec2 | blank1_name | blank1_name_sec1 | blank1_name_sec2 | blank2_info | blank2_info_sec1 | blank2_info_sec2 | blank2_name | blank2_name_sec1 | blank2_name_sec2 | blank3_info | blank3_info_sec1 | blank3_info_sec2 | blank3_name | blank3_name_sec1 | blank3_name_sec2 | blank4_info | blank4_info_sec1 | blank4_info_sec2 | blank4_name | blank4_name_sec1 | blank4_name_sec2 | blank5_info | blank5_info_sec1 | blank5_info_sec2 | blank5_name | blank5_name_sec1 | blank5_name_sec2 | blank6_info | blank6_info_sec1 | blank6_info_sec2 | blank6_name | blank6_name_sec1 | blank6_name_sec2 | blank7_info | blank7_info_sec1 | blank7_info_sec2 | blank7_name | blank7_name_sec1 | blank7_name_sec2 | caption | code1_info | code1_name | code2_info | code2_name | coor_pinpoint | coor_type | coordinates | coordinates_footnotes | demographics_type1 | demographics_type2 | demographics1_footnotes | demographics1_info1 | demographics1_info10 | demographics1_info2 | demographics1_info3 | demographics1_info4 | demographics1_info5 | demographics1_info6 | demographics1_info7 | demographics1_info8 | demographics1_info9 | demographics1_title1 | demographics1_title10 | demographics1_title2 | demographics1_title3 | demographics1_title4 | demographics1_title5 | demographics1_title6 | demographics1_title7 | demographics1_title8 | demographics1_title9 | demographics2_footnotes | demographics2_info1 | demographics2_info10 | demographics2_info2 | demographics2_info3 | demographics2_info4 | demographics2_info5 | demographics2_info6 | demographics2_info7 | demographics2_info8 | demographics2_info9 | demographics2_title1 | demographics2_title10 | demographics2_title2 | demographics2_title3 | demographics2_title4 | demographics2_title5 | demographics2_title6 | demographics2_title7 | demographics2_title8 | demographics2_title9 | dimensions_footnotes | dunam_link | elevation_footnotes | elevation_ft | elevation_link | elevation_m | elevation_max_footnotes | elevation_max_ft | elevation_max_m | elevation_max_point | elevation_max_rank | elevation_min_footnotes | elevation_min_ft | elevation_min_m | elevation_min_point | elevation_min_rank | elevation_point | embed | established_date | established_date1 | established_date2 | established_date3 | established_date4 | established_date5 | established_date6 | established_date7 | established_title | established_title1 | established_title2 | established_title3 | established_title4 | established_title5 | established_title6 | established_title7 | etymology | extinct_date | extinct_title | flag_alt | flag_border | flag_link | flag_size | footnotes | founder | geocode | governing_body | government_footnotes | government_type | government_blank1_title | government_blank1 | government_blank2_title | government_blank2 | government_blank2_title | government_blank3 | government_blank3_title | government_blank3 | government_blank4_title | government_blank4 | government_blank5_title | government_blank5 | government_blank6_title | government_blank6 | grid_name | grid_position | image_alt | image_blank_emblem | image_caption | image_flag | image_map | image_map1 | image_seal | image_shield | image_size | image_skyline | imagesize | image_upright | iso_code | leader_name | leader_name1 | leader_name2 | leader_name3 | leader_name4 | leader_name5 | leader_party | leader_title | leader_title1 | leader_title2 | leader_title3 | leader_title4 | leader_title5 | length_km | length_mi | map_alt | map_alt1 | map_caption | map_caption1 | mapsize | mapsize1 | module | motto | motto_link | mottoes | name | named_for | native_name | native_name_lang | nickname | nickname_link | nicknames | official_name | other_name | p1 | p10 | p11 | p12 | p13 | p14 | p15 | p16 | p17 | p18 | p19 | p2 | p20 | p21 | p22 | p23 | p24 | p25 | p26 | p27 | p28 | p29 | p3 | p30 | p31 | p32 | p33 | p34 | p35 | p36 | p37 | p38 | p39 | p4 | p40 | p41 | p42 | p43 | p44 | p45 | p46 | p47 | p48 | p49 | p5 | p50 | p6 | p7 | p8 | p9 | parts | parts_style | parts_type | pop_est_as_of | pop_est_footnotes | population_as_of | population_blank1 | population_blank1_footnotes | population_blank1_title | population_blank2 | population_blank2_footnotes | population_blank2_title | population_demonym | population_demonyms | population_density_blank1_km2 | population_density_blank1_sq_mi | population_density_blank2_km2 | population_density_blank2_sq_mi | population_density_km2 | population_density_metro_km2 | population_density_metro_sq_mi | population_density_rank | population_density_rural_km2 | population_density_rural_sq_mi | population_density_sq_mi | population_density_urban_km2 | population_density_urban_sq_mi | population_est | population_footnotes | population_metro | population_metro_footnotes | population_note | population_rank | population_rural | population_rural_footnotes | population_total | population_urban | population_urban_footnotes | postal_code | postal_code_type | postal2_code | postal2_code_type | pushpin_image | pushpin_label | pushpin_label_position | pushpin_map | pushpin_map_alt | pushpin_map_caption | pushpin_map_caption_notsmall | pushpin_map_narrow | pushpin_mapsize | pushpin_outside | pushpin_overlay | pushpin_relief | registration_plate | registration_plate_type | seal_alt | seal_class | seal_link | seal_size | seal_type | seat | seat_type | seat1 | seat1_type | seat2 | seat2_type | settlement_type | shield_alt | shield_link | shield_size | short_description <!--used by Module:Settlement short description-->| subdivision_name | subdivision_name1 | subdivision_name2 | subdivision_name3 | subdivision_name4 | subdivision_name5 | subdivision_name6 | subdivision_type | subdivision_type1 | subdivision_type2 | subdivision_type3 | subdivision_type4 | subdivision_type5 | subdivision_type6 | template_name | timezone | timezone_DST | timezone_link | timezone1 | timezone1_DST | timezone1_location | timezone2 | timezone2_DST | timezone2_location | timezone3 | timezone3_DST | timezone3_location | timezone4 | timezone4_DST | timezone4_location | timezone5 | timezone5_DST | timezone5_location | total_type | translit_lang1 | translit_lang1_info | translit_lang1_info1 | translit_lang1_info2 | translit_lang1_info3 | translit_lang1_info4 | translit_lang1_info5 | translit_lang1_info6 | translit_lang1_type | translit_lang1_type1 | translit_lang1_type2 | translit_lang1_type3 | translit_lang1_type4 | translit_lang1_type5 | translit_lang1_type6 | translit_lang2 | translit_lang2_info | translit_lang2_info1 | translit_lang2_info2 | translit_lang2_info3 | translit_lang2_info4 | translit_lang2_info5 | translit_lang2_info6 | translit_lang2_type | translit_lang2_type1 | translit_lang2_type2 | translit_lang2_type3 | translit_lang2_type4 | translit_lang2_type5 | translit_lang2_type6 | type | unit_pref | utc_offset | utc_offset_DST | utc_offset1 | utc_offset1_DST | utc_offset2 | utc_offset2_DST | utc_offset3 | utc_offset3_DST | utc_offset4 | utc_offset4_DST | utc_offset5 | utc_offset5_DST | website | width_km | width_mi }}<!-- -->{{#invoke:Check for conflicting parameters|check | template = [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] | cat = {{main other|Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with conflicting parameters}} | settlement_type; type | image_size; imagesize | image_alt; alt | image_caption; caption | nickname; nicknames | motto; mottoes | coor_pinpoint; coor_type | population_demonym; population_demonyms | utc_offset1; utc_offset | timezone1; timezone | utc_offset1_DST; utc_offset_DST | timezone1_DST; timezone_DST | area_code; area_codes | blank_name_sec1; blank_name | blank_info_sec1; blank_info | blank1_name_sec1; blank1_name | blank1_info_sec1; blank1_info | blank2_name_sec1; blank2_name | blank2_info_sec1; blank2_info | blank3_name_sec1; blank3_name | blank3_info_sec1; blank3_info | blank4_name_sec1; blank4_name | blank4_info_sec1; blank4_info | blank5_name_sec1; blank5_name | blank5_info_sec1; blank5_info | blank6_name_sec1; blank6_name | blank6_info_sec1; blank6_info | blank7_name_sec1; blank7_name | blank7_info_sec1; blank7_info }}<!-- Wikidata -->{{#if:{{{coordinates_wikidata|}}}{{{wikidata|}}} |[[Category:Pages using infobox settlement with the wikidata parameter]] }}{{main other|<!-- Missing country -->{{#if:{{{subdivision_name|}}}||[[Category:Pages using infobox settlement with missing country]]}}<!-- No map -->{{#if:{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}||[[Category:Pages using infobox settlement with no map]]}}<!-- Image_map1 without image_map -->{{#if:{{{image_map1|}}}|{{#if:{{{image_map|}}}||[[Category:Pages using infobox settlement with image_map1 but not image_map]]}}}}<!-- No coordinates -->{{#if:{{{coordinates|}}}||[[Category:Pages using infobox settlement with no coordinates]]}}<!-- -->{{#if:{{{embed|}}}|[[Category:Pages using infobox settlement with embed]]}} }}<!-- Gathering information on over-use of maps -->{{#ifexpr:{{#invoke:ParameterCount|main|mapframe|image_map|image_map1|pushpin_map}} >2 |{{main other| [[Category:Pages using infobox settlement with potentially too many maps]]}}}}</includeonly><noinclude> {{documentation}} <!--Please add this template's categories to the /doc subpage, not here - thanks!--> </noinclude> pkqsubwyzeehptxrn9z7lec6zup5fve 72834 72782 2026-06-30T21:31:34Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun]] para [[Template:Infokaixa fatin-koabitasaun/core]] sem deixar um redirecionamento: localising 70387 wikitext text/x-wiki <includeonly>{{main other|{{#invoke:Settlement short description|main}}|}}{{Infobox | child = {{yesno|{{{embed|}}}}} | templatestyles = Infobox settlement/styles.css | bodyclass = ib-settlement vcard <!--** names, type, and transliterations ** --> | above = <div class="fn org">{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}</div> {{#if:{{{native_name|}}}|<div class="nickname ib-settlement-native" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}"}}>{{{native_name}}}</div>}}{{#if:{{{other_name|}}}|<div class="nickname ib-settlement-other-name">{{{other_name}}}</div>}} | subheader = {{#if:{{{settlement_type|}}}{{{type|}}}|<div class="category">{{if empty|{{{settlement_type|}}}|{{{type}}}}}</div>}} | rowclass1 = mergedtoprow ib-settlement-official | data1 = {{#if:{{{name|}}}|{{{official_name|}}}}} <!-- ***Transliteration language 1*** --> | rowclass2 = mergedtoprow | header2 = {{#if:{{{translit_lang1|}}}|{{{translit_lang1}}}&nbsp;transcription(s)}} | rowclass3 = {{#if:{{{translit_lang1_type1|}}}|mergedrow|mergedbottomrow}} | label3 = &nbsp;•&nbsp;{{{translit_lang1_type}}} | data3 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type|}}}|{{{translit_lang1_info|}}}}}}} | rowclass4 = {{#if:{{{translit_lang1_type2|}}}|mergedrow|mergedbottomrow}} | label4 = &nbsp;•&nbsp;{{{translit_lang1_type1}}} | data4 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type1|}}}|{{{translit_lang1_info1|}}}}}}} | rowclass5 = {{#if:{{{translit_lang1_type3|}}}|mergedrow|mergedbottomrow}} | label5 =&nbsp;•&nbsp;{{{translit_lang1_type2}}} | data5 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type2|}}}|{{{translit_lang1_info2|}}}}}}} | rowclass6 = {{#if:{{{translit_lang1_type4|}}}|mergedrow|mergedbottomrow}} | label6 = &nbsp;•&nbsp;{{{translit_lang1_type3}}} | data6 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type3|}}}|{{{translit_lang1_info3|}}}}}}} | rowclass7 = {{#if:{{{translit_lang1_type5|}}}|mergedrow|mergedbottomrow}} | label7 = &nbsp;•&nbsp;{{{translit_lang1_type4}}} | data7 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type4|}}}|{{{translit_lang1_info4|}}}}}}} | rowclass8 = {{#if:{{{translit_lang1_type6|}}}|mergedrow|mergedbottomrow}} | label8 = &nbsp;•&nbsp;{{{translit_lang1_type5}}} | data8 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type5|}}}|{{{translit_lang1_info5|}}}}}}} | rowclass9 = mergedbottomrow | label9 = &nbsp;•&nbsp;{{{translit_lang1_type6}}} | data9 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type6|}}}|{{{translit_lang1_info6|}}}}}}} <!-- ***Transliteration language 2*** --> | rowclass10 = mergedtoprow | header10 = {{#if:{{{translit_lang2|}}}|{{{translit_lang2}}}&nbsp;transcription(s)}} | rowclass11 = {{#if:{{{translit_lang2_type1|}}}|mergedrow|mergedbottomrow}} | label11 = &nbsp;•&nbsp;{{{translit_lang2_type}}} | data11 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type|}}}|{{{translit_lang2_info|}}}}}}} | rowclass12 = {{#if:{{{translit_lang2_type2|}}}|mergedrow|mergedbottomrow}} | label12 = &nbsp;•&nbsp;{{{translit_lang2_type1}}} | data12 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type1|}}}|{{{translit_lang2_info1|}}}}}}} | rowclass13 = {{#if:{{{translit_lang2_type3|}}}|mergedrow|mergedbottomrow}} | label13 =&nbsp;•&nbsp;{{{translit_lang2_type2}}} | data13 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type2|}}}|{{{translit_lang2_info2|}}}}}}} | rowclass14 = {{#if:{{{translit_lang2_type4|}}}|mergedrow|mergedbottomrow}} | label14 = &nbsp;•&nbsp;{{{translit_lang2_type3}}} | data14 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type3|}}}|{{{translit_lang2_info3|}}}}}}} | rowclass15 = {{#if:{{{translit_lang2_type5|}}}|mergedrow|mergedbottomrow}} | label15 = &nbsp;•&nbsp;{{{translit_lang2_type4}}} | data15 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type4|}}}|{{{translit_lang2_info4|}}}}}}} | rowclass16 = {{#if:{{{translit_lang2_type6|}}}|mergedrow|mergedbottomrow}} | label16 = &nbsp;•&nbsp;{{{translit_lang2_type5}}} | data16 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type5|}}}|{{{translit_lang2_info5|}}}}}}} | rowclass17 = mergedbottomrow | label17 = &nbsp;•&nbsp;{{{translit_lang2_type6}}} | data17 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type6|}}}|{{{translit_lang2_info6|}}}}}}} <!-- end ** names, type, and transliterations ** --> <!-- ***Skyline Image*** --> | rowclass18 = mergedtoprow | data18 = {{#if:{{{image_skyline|}}}|<!-- -->{{#invoke:InfoboxImage|InfoboxImage<!-- -->|image={{{image_skyline|}}}<!-- -->|size={{if empty|{{{image_size|}}}|{{{imagesize|}}}}}|sizedefault=250px|upright={{{image_upright|}}}<!-- -->|alt={{if empty|{{{image_alt|}}}|{{{alt|}}}}}<!-- -->|title={{if empty|{{{image_caption|}}}|{{{caption|}}}|{{{image_alt|}}}|{{{alt|}}}}}}}<!-- -->{{#if:{{{image_caption|}}}{{{caption|}}}|<div class="ib-settlement-caption">{{if empty|{{{image_caption|}}}|{{{caption|}}}}}</div>}} }} <!-- ***Flag, Seal, Shield and Coat of arms*** --> | rowclass19 = mergedtoprow | class19 = maptable | data19 = {{#if:{{{image_flag|}}}{{{image_seal|}}}{{{image_shield|}}}{{{image_blank_emblem|}}}{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}} |{{Infobox settlement/columns | 1 = {{#if:{{{image_flag|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_flag}}}|size={{{flag_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|125px|100x100px}}|border={{yesno |{{{flag_border|}}}|yes=yes|blank=yes}}|alt={{{flag_alt|}}}|title=Flag of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Flag|link={{{flag_link|}}}|name={{{official_name}}}}}</div>}} | 2 = {{#if:{{{image_seal|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_seal|}}}|size={{{seal_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{seal_alt|}}}|title=Official seal of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}|class={{{seal_class|}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{if empty|{{{seal_type|}}}|Seal}}|link={{{seal_link|}}}|name={{{official_name}}}}}</div>}} | 3 = {{#if:{{{image_shield|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_shield|}}}||size={{{shield_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{shield_alt|}}}|title=Coat of arms of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Coat of arms|link={{{shield_link|}}}|name={{{official_name}}}}}</div>}} | 4 = {{#if:{{{image_blank_emblem|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_blank_emblem|}}}|size={{{blank_emblem_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|upright={{{blank_emblem_upright|}}}|alt={{{blank_emblem_alt|}}}|title=Official logo of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{blank_emblem_type|}}}|{{{blank_emblem_type}}}}}|link={{{blank_emblem_link|}}}|name={{{official_name}}}}}</div>}} | 5 = {{#if:{{{image_map|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=100x100px|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption-link">{{{map_caption}}}</div>}}}} | 0 = {{#if:{{{pushpin_map_narrow|}}}|{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{{map_caption}}}}}}}}} |float = center |width = {{if empty|{{{pushpin_mapsize|}}}|150}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map --> |position = {{{pushpin_label_position|}}} }} }} }} }} }} <!-- ***Etymology*** --> | rowclass20 = mergedtoprow | data20 = {{#if:{{{etymology|}}}|Etymology: {{{etymology}}} }} <!-- ***Nickname*** --> | rowclass21 = {{#if:{{{etymology|}}}|mergedrow|mergedtoprow}} | data21 = {{#if:{{{nickname|}}}{{{nicknames|}}}|<!-- -->{{Pluralize from text|parse_links=1|{{if empty|{{{nickname|}}}|{{{nicknames|}}}{{force plural}}}}|<!-- -->link={{{nickname_link|}}}|singular=Nickname|likely=Nickname(s)|plural=Nicknames}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{nickname|}}}|{{{nicknames|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|parse_links=1|{{{nickname|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible nickname list]]}}}}}} <!-- ***Motto*** --> | rowclass22 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}|mergedrow|mergedtoprow}} | data22 = {{#if:{{{motto|}}}{{{mottoes|}}}|<!-- -->{{Pluralize from text|{{if empty|{{{motto|}}}|{{{mottoes|}}}{{force plural}}}}|<!-- -->link={{{motto_link|}}}|singular=Motto|likely=Motto(s)|plural=Mottoes}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{motto|}}}|{{{mottoes|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|{{{motto|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible motto list]]}}}}}} <!-- ***Anthem*** --> | rowclass23 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}{{{motto|}}}{{{mottoes|}}}|mergedrow|mergedtoprow}} | data23 = {{#if:{{{anthem|}}}|{{#if:{{{anthem_link|}}}|[[{{{anthem_link|}}}|Anthem:]]|Anthem:}} {{{anthem}}}}} <!-- ***Map*** --> | rowclass24 = mergedtoprow | data24 = {{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}||{{#if:{{{image_map|}}} |{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=250px|upright={{{image_upright|}}}|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption">{{{map_caption}}}</div>}} }}}} | rowclass25 = mergedrow | data25 = {{#if:{{{image_map1|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map1}}}|size={{{mapsize1|}}}|sizedefault=250px|upright={{{image_upright|}}}|alt={{{map_alt1|}}}|title={{{map_caption1|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption1|}}}|<div class="ib-settlement-caption">{{{map_caption1}}}</div>}} }} | data26 = {{#invoke:Infobox mapframe | autoWithCaption | onByDefault = {{#if:{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}|no|yes}} | mapframe-frame-width = 250 | mapframe-stroke-width = 2 | mapframe-length_km = {{{length_km|}}} | mapframe-length_mi = {{{length_mi|}}} | mapframe-width_km = {{{width_km|}}} | mapframe-width_mi = {{{width_mi|}}} | mapframe-area_km2 = {{{area_total_km2|}}} | mapframe-area_ha = {{{area_total_ha|}}} | mapframe-area_acre = {{{area_total_acre|}}} | mapframe-area_sq_mi = {{{area_total_sq_mi|}}} | mapframe-type = city | mapframe-population = {{if empty|{{{population_metro|}}}|{{{population_total|}}}}} | mapframe-marker = town | mapframe-wikidata = yes | mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}} }} <!-- ***Pushpin Map*** --> | rowclass28 = mergedtoprow | data28 = {{#if:{{{pushpin_map_narrow|}}}||{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{#if:{{{image_map|}}}||{{{map_caption}}}}}}}}}}} |float = center |width = {{{pushpin_mapsize|}}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{if empty|{{{name|}}}|{{{official_name|}}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map --> |position = {{{pushpin_label_position|}}} }} }} }} <!-- ***Coordinates*** --> | data29 = {{#if:{{{coordinates|}}}|{{#if:{{#invoke:string|match|s={{{coordinates|}}}|pattern=geo-inline-hidden|ignore_errors=true|plain=true}}|<!-- Nothing to display --> |Coordinates{{#if:{{{coor_pinpoint|}}}{{{coor_type|}}}|&#32;({{if empty|{{{coor_pinpoint|}}}|{{{coor_type|}}}}})}}: {{#invoke:ISO 3166|geocoordinsert|nocat=true|1={{{coordinates|}}}|country={{{subdivision_name|}}}|subdivision1={{{subdivision_name1|}}}|subdivision2={{{subdivision_name2|}}}|subdivision3={{{subdivision_name3|}}}|type=city{{#if:{{{population_total|}}}|{{#iferror:{{#expr:{{formatnum:{{{population_total}}}|R}}+1}}||({{formatnum:{{replace|{{{population_total}}}|,|}}|R}})}}}} }}{{{coordinates_footnotes|}}} }}}} | rowclass30 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|mergedbottomrow|mergedrow}} | label30 = {{if empty|{{{grid_name|}}}|Grid&nbsp;position}} | data30 = {{{grid_position|}}} <!-- ***Subdivisions*** --> | rowclass31 = mergedtoprow | label31 = {{{subdivision_type}}} | data31 = {{#if:{{{subdivision_type|}}}|{{{subdivision_name|}}} }} | rowclass32 = mergedrow | label32 = {{{subdivision_type1}}} | data32 = {{#if:{{{subdivision_type1|}}}|{{{subdivision_name1|}}} }} | rowclass33 = mergedrow | label33 = {{{subdivision_type2}}} | data33 = {{#if:{{{subdivision_type2|}}}|{{{subdivision_name2|}}} }} | rowclass34 = mergedrow | label34 = {{{subdivision_type3}}} | data34 = {{#if:{{{subdivision_type3|}}}|{{{subdivision_name3|}}} }} | rowclass35 = mergedrow | label35 = {{{subdivision_type4}}} | data35 = {{#if:{{{subdivision_type4|}}}|{{{subdivision_name4|}}} }} | rowclass36 = mergedrow | label36 = {{{subdivision_type5}}} | data36 = {{#if:{{{subdivision_type5|}}}|{{{subdivision_name5|}}} }} | rowclass37 = mergedrow | label37 = {{{subdivision_type6}}} | data37 = {{#if:{{{subdivision_type6|}}}|{{{subdivision_name6|}}} }} <!--***Established*** --> | rowclass38 = mergedtoprow | label38 = {{if empty|{{{established_title|}}}|Established}} | data38 = {{{established_date|}}} | rowclass39 = mergedrow | label39 = {{{established_title1}}} | data39 = {{#if:{{{established_title1|}}}|{{{established_date1|}}} }} | rowclass40 = mergedrow | label40 = {{{established_title2}}} | data40 = {{#if:{{{established_title2|}}}|{{{established_date2|}}} }} | rowclass41 = mergedrow | label41 = {{{established_title3}}} | data41 = {{#if:{{{established_title3|}}}|{{{established_date3|}}} }} | rowclass42 = mergedrow | label42 = {{{established_title4}}} | data42 = {{#if:{{{established_title4|}}}|{{{established_date4|}}} }} | rowclass43 = mergedrow | label43 = {{{established_title5}}} | data43 = {{#if:{{{established_title5|}}}|{{{established_date5|}}} }} | rowclass44 = mergedrow | label44 = {{{established_title6}}} | data44 = {{#if:{{{established_title6|}}}|{{{established_date6|}}} }} | rowclass45 = mergedrow | label45 = {{{established_title7}}} | data45 = {{#if:{{{established_title7|}}}|{{{established_date7|}}} }} | rowclass46 = mergedrow | label46 = {{{extinct_title}}} | data46 = {{#if:{{{extinct_title|}}}|{{{extinct_date|}}} }} | rowclass47 = mergedrow | label47 = Founded by | data47 = {{{founder|}}} | rowclass48 = mergedrow | label48 = [[Namesake|Named after]] | data48 = {{{named_for|}}} <!-- ***Seat of government and subdivisions within the settlement*** --> | rowclass49 = mergedtoprow | label49 = {{if empty|{{{seat_type|}}}|Seat}} | data49 = {{{seat|}}} | rowclass50 = mergedrow | label50 = {{if empty|{{{seat1_type|}}}|Former seat}} | data50 = {{{seat1|}}} | rowclass51 = mergedrow | label51 = {{if empty|{{{seat2_type|}}}|Former seat}} | data51 = {{{seat2|}}} | rowclass52 = {{#if:{{{seat|}}}{{{seat1|}}}{{{seat2|}}}|mergedrow|mergedtoprow}} | label52 = {{if empty|{{{parts_type|}}}|Boroughs}} | data52 = {{#if:{{{parts|}}}{{{p1|}}} |{{#ifeq:{{{parts_style|}}}|para |<b>{{{parts|}}}{{#if:{{both|{{{parts|}}}|{{{p1|}}}}}|&#58;&nbsp;|}}</b>{{comma separated entries|{{{p1|}}}|{{{p2|}}}|{{{p3|}}}|{{{p4|}}}|{{{p5|}}}|{{{p6|}}}|{{{p7|}}}|{{{p8|}}}|{{{p9|}}}|{{{p10|}}}|{{{p11|}}}|{{{p12|}}}|{{{p13|}}}|{{{p14|}}}|{{{p15|}}}|{{{p16|}}}|{{{p17|}}}|{{{p18|}}}|{{{p19|}}}|{{{p20|}}}|{{{p21|}}}|{{{p22|}}}|{{{p23|}}}|{{{p24|}}}|{{{p25|}}}|{{{p26|}}}|{{{p27|}}}|{{{p28|}}}|{{{p29|}}}|{{{p30|}}}|{{{p31|}}}|{{{p32|}}}|{{{p33|}}}|{{{p34|}}}|{{{p35|}}}|{{{p36|}}}|{{{p37|}}}|{{{p38|}}}|{{{p39|}}}|{{{p40|}}}|{{{p41|}}}|{{{p42|}}}|{{{p43|}}}|{{{p44|}}}|{{{p45|}}}|{{{p46|}}}|{{{p47|}}}|{{{p48|}}}|{{{p49|}}}|{{{p50|}}}}} |{{#if:{{{p1|}}}|{{Collapsible list|title={{{parts|}}}|expand={{#switch:{{{parts_style|}}}|coll=|list=y|{{#if:{{{p6|}}}||y}}}}|1={{{p1|}}}|2={{{p2|}}}|3={{{p3|}}}|4={{{p4|}}}|5={{{p5|}}}|6={{{p6|}}}|7={{{p7|}}}|8={{{p8|}}}|9={{{p9|}}}|10={{{p10|}}}|11={{{p11|}}}|12={{{p12|}}}|13={{{p13|}}}|14={{{p14|}}}|15={{{p15|}}}|16={{{p16|}}}|17={{{p17|}}}|18={{{p18|}}}|19={{{p19|}}}|20={{{p20|}}}|21={{{p21|}}}|22={{{p22|}}}|23={{{p23|}}}|24={{{p24|}}}|25={{{p25|}}}|26={{{p26|}}}|27={{{p27|}}}|28={{{p28|}}}|29={{{p29|}}}|30={{{p30|}}}|31={{{p31|}}}|32={{{p32|}}}|33={{{p33|}}}|34={{{p34|}}}|35={{{p35|}}}|36={{{p36|}}}|37={{{p37|}}}|38={{{p38|}}}|39={{{p39|}}}|40={{{p40|}}}|41={{{p41|}}}|42={{{p42|}}}|43={{{p43|}}}|44={{{p44|}}}|45={{{p45|}}}|46={{{p46|}}}|47={{{p47|}}}|48={{{p48|}}}|49={{{p49|}}}|50={{{p50|}}}}} |{{{parts}}} }} }} }} <!-- ***Government type and Leader*** --> | rowclass53 = mergedtoprow | header53 = {{#if:{{{government_type|}}}{{{governing_body|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{leader_name2|}}}{{{leader_name3|}}}{{{leader_name4|}}}|Government<div class="ib-settlement-fn">{{{government_footnotes|}}}</div>}} <!-- ***Government*** --> | rowclass54 = mergedrow | label54 = &nbsp;•&nbsp;Type | data54 = {{{government_type|}}} | rowclass55 = mergedrow | label55 = &nbsp;•&nbsp;Body | class55 = agent | data55 = {{{governing_body|}}} | rowclass56 = mergedrow | label56 = &nbsp;•&nbsp;{{{leader_title}}} | data56 = {{#if:{{{leader_title|}}}|{{{leader_name|}}} {{#if:{{{leader_party|}}}|({{Polparty|{{{subdivision_name}}}|{{{leader_party}}}}})}}}} | rowclass57 = mergedrow | label57 = &nbsp;•&nbsp;{{{leader_title1}}} | data57 = {{#if:{{{leader_title1|}}}|{{{leader_name1|}}}}} | rowclass58 = mergedrow | label58 = &nbsp;•&nbsp;{{{leader_title2}}} | data58 = {{#if:{{{leader_title2|}}}|{{{leader_name2|}}}}} | rowclass59 = mergedrow | label59 = &nbsp;•&nbsp;{{{leader_title3}}} | data59 = {{#if:{{{leader_title3|}}}|{{{leader_name3|}}}}} | rowclass60 = mergedrow | label60 = &nbsp;•&nbsp;{{{leader_title4}}} | data60 = {{#if:{{{leader_title4|}}}|{{{leader_name4|}}}}} | rowclass61 = mergedrow | label61 = &nbsp;•&nbsp;{{{leader_title5}}} | data61 = {{#if:{{{leader_title5|}}}|{{{leader_name5|}}}}} | rowclass62 = mergedrow | label62 = {{{government_blank1_title}}} | data62 = {{#if:{{{government_blank1|}}}|{{{government_blank1|}}}}} | rowclass63 = mergedrow | label63 = {{{government_blank2_title}}} | data63 = {{#if:{{{government_blank2|}}}|{{{government_blank2|}}}}} | rowclass64 = mergedrow | label64 = {{{government_blank3_title}}} | data64 = {{#if:{{{government_blank3|}}}|{{{government_blank3|}}}}} | rowclass65 = mergedrow | label65 = {{{government_blank4_title}}} | data65 = {{#if:{{{government_blank4|}}}|{{{government_blank4|}}}}} | rowclass66 = mergedrow | label66 = {{{government_blank5_title}}} | data66 = {{#if:{{{government_blank5|}}}|{{{government_blank5|}}}}} | rowclass67 = mergedrow | label67 = {{{government_blank6_title}}} | data67 = {{#if:{{{government_blank6|}}}|{{{government_blank6|}}}}} <!-- ***Geographical characteristics*** --> <!-- ***Area*** --> | rowclass68 = mergedtoprow | header68 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_rural_sq_mi|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_km2|}}}{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_metro_sq_mi|}}}{{{area_blank1_sq_mi|}}} |{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |<!-- displayed below --> |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> }} }} | rowclass69 = {{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}}|mergedtoprow|mergedrow}} | label69 = <div style="white-space:nowrap;">{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> |&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}|{{#if:{{{settlement_type|}}}{{{type|}}}|{{if empty|{{{settlement_type|}}}|{{{type}}}}}|City}}|Total}}}} }}</div> | data69 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_total_km2|}}} |ha ={{{area_total_ha|}}} |acre ={{{area_total_acre|}}} |sqmi ={{{area_total_sq_mi|}}} |dunam={{{area_total_dunam|}}} |link ={{#switch:{{{dunam_link|}}}||on|total=on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass70 = mergedrow | label70 = &nbsp;•&nbsp;Land | data70 = {{#if:{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_land_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_land_km2|}}} |ha ={{{area_land_ha|}}} |acre ={{{area_land_acre|}}} |sqmi ={{{area_land_sq_mi|}}} |dunam={{{area_land_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|land|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass71 = mergedrow | label71 = &nbsp;•&nbsp;Water | data71 = {{#if:{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_water_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_water_km2|}}} |ha ={{{area_water_ha|}}} |acre ={{{area_water_acre|}}} |sqmi ={{{area_water_sq_mi|}}} |dunam={{{area_water_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|water|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }} {{#if:{{{area_water_percent|}}}| &nbsp;{{{area_water_percent}}}{{#ifeq:%|{{#invoke:string|sub|{{{area_water_percent|}}}|-1}}||%}}}}}} | rowclass72 = mergedrow | label72 = &nbsp;•&nbsp;Urban<div class="ib-settlement-fn">{{{area_urban_footnotes|}}}</div> | data72 = {{#if:{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_urban_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_urban_km2|}}} |ha ={{{area_urban_ha|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|urban|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass73 = mergedrow | label73 = &nbsp;•&nbsp;Rural<div class="ib-settlement-fn">{{{area_rural_footnotes|}}}</div> | data73 = {{#if:{{{area_rural_km2|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_sq_mi|}}}{{{area_rural_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_rural_km2|}}} |ha ={{{area_rural_ha|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|rural|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass74 = mergedrow | label74 =&nbsp;•&nbsp;Metro<div class="ib-settlement-fn">{{{area_metro_footnotes|}}}</div> | data74 = {{#if:{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_metro_sq_mi|}}}{{{area_metro_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_metro_km2|}}} |ha ={{{area_metro_ha|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|metro|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Area rank*** --> | rowclass75 = mergedrow | label75 = &nbsp;•&nbsp;Rank | data75 = {{{area_rank|}}} | rowclass76 = mergedrow | label76 = &nbsp;•&nbsp;{{{area_blank1_title}}} | data76 = {{#if:{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_blank1_sq_mi|}}}{{{area_blank1_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank1_km2|}}} |ha ={{{area_blank1_ha|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank1|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass77 = mergedrow | label77 = &nbsp;•&nbsp;{{{area_blank2_title}}} | data77 = {{#if:{{{area_blank2_km2|}}}{{{area_blank2_ha|}}}{{{area_blank2_acre|}}}{{{area_blank2_sq_mi|}}}{{{area_blank2_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank2_km2|}}} |ha ={{{area_blank2_ha|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank2|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass78 = mergedrow | label78 = &nbsp; | data78 = {{{area_note|}}} <!-- ***Dimensions*** --> | rowclass79 = mergedtoprow | header79 = {{#if:{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|Dimensions<div class="ib-settlement-fn">{{{dimensions_footnotes|}}}</div>}} | rowclass80 = mergedrow | label80 = &nbsp;•&nbsp;Length | data80 = {{#if:{{{length_km|}}}{{{length_mi|}}} | {{infobox_settlement/lengthdisp |km ={{{length_km|}}} |mi ={{{length_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass81 = mergedrow | label81 = &nbsp;•&nbsp;Width | data81 = {{#if:{{{width_km|}}}{{{width_mi|}}} |{{infobox_settlement/lengthdisp |km ={{{width_km|}}} |mi ={{{width_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation*** --> | rowclass82 = mergedtoprow | label82 = {{#if:{{{elevation_link|}}}|[[{{{elevation_link|}}}|Elevation]]|Elevation}}<div class="ib-settlement-fn">{{{elevation_footnotes|}}}{{#if:{{{elevation_point|}}}|&#32;({{{elevation_point}}})}}</div> | data82 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_m|}}} |ft ={{{elevation_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass83 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}}|mergedrow|mergedtoprow}} | label83 = Highest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_max_footnotes|}}}{{#if:{{{elevation_max_point|}}}|&#32;({{{elevation_max_point}}})}}</div> | data83 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_max_m|}}} |ft ={{{elevation_max_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation max rank*** --> | rowclass84 = mergedrow | label84 = &nbsp;•&nbsp;Rank | data84 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}}| {{{elevation_max_rank|}}} }} | rowclass85 = {{#if:{{{elevation_min_rank|}}}|mergedrow|mergedbottomrow}} | label85 = Lowest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_min_footnotes|}}}{{#if:{{{elevation_min_point|}}}|&#32;({{{elevation_min_point}}})}}</div> | data85 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_min_m|}}} |ft ={{{elevation_min_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation min rank*** --> | rowclass86 = mergedrow | label86 = &nbsp;•&nbsp;Rank | data86 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}}|{{{elevation_min_rank|}}}}} <!-- ***Population*** --> | rowclass87 = mergedtoprow | label87 = Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> | data87 = {{fix comma category|{{#ifeq:{{{total_type}}}|&nbsp; | {{#if:{{{population_total|}}} | {{formatnum:{{replace|{{{population_total}}}|,|}}}} }} }} }} | rowclass88 = mergedtoprow | header88 ={{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}}{{{population_urban|}}}{{{population_rural|}}}{{{population_metro|}}}{{{population_blank1|}}}{{{population_blank2|}}}{{{population_est|}}} |Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> }} }} | rowclass89 = mergedrow | label89 = <div style="white-space:nowrap;">&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}|{{#if:{{{settlement_type|}}}{{{type|}}}|{{if empty|{{{settlement_type|}}}|{{{type}}}}}|City}}|Total}}}}</div> | data89 = {{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}} | {{fix comma category|{{formatnum:{{replace|{{{population_total}}}|,|}}}}}} }} }} | rowclass90 = mergedrow | label90 = <div style="white-space:nowrap;">&nbsp;•&nbsp;Estimate&nbsp;{{#if:{{{pop_est_as_of|}}}|<div class="ib-settlement-fn">({{{pop_est_as_of}}}){{{pop_est_footnotes|}}}</div>}}</div> | data90 = {{#if:{{{population_est|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_est}}}|,|}}}}}} }} <!-- ***Population rank*** --> | rowclass91 = mergedrow | label91 =&nbsp;•&nbsp;Rank | data91 = {{{population_rank|}}} | rowclass92 = mergedrow | label92 = &nbsp;•&nbsp;Density | data92 = {{#if:{{{population_density_km2|}}}{{{population_density_sq_mi|}}}{{{population_total|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_km2|}}} |/sqmi={{{population_density_sq_mi|}}} |pop ={{{population_total|}}} |dunam={{if empty|{{{area_land_dunam|}}}|{{{area_total_dunam|}}}}} |ha ={{if empty|{{{area_land_ha|}}}|{{{area_total_ha|}}}}} |km2 ={{if empty|{{{area_land_km2|}}}|{{{area_total_km2|}}}}} |acre ={{if empty|{{{area_land_acre|}}}|{{{area_total_acre|}}}}} |sqmi ={{if empty|{{{area_land_sq_mi|}}}|{{{area_total_sq_mi|}}}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Population density rank*** --> | rowclass93 = mergedrow | label93 = &nbsp;&nbsp;•&nbsp;Rank | data93 = {{{population_density_rank|}}} | rowclass94 = mergedrow | label94 = &nbsp;•&nbsp;[[Urban area|Urban]]<div class="ib-settlement-fn">{{{population_urban_footnotes|}}}</div> | data94 = {{#if:{{{population_urban|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_urban}}}|,|}}}}}} }} | rowclass95 = mergedrow | label95 = &nbsp;•&nbsp;Urban&nbsp;density | data95 = {{#if:{{{population_density_urban_km2|}}}{{{population_density_urban_sq_mi|}}}{{{population_urban|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_urban_km2|}}} |/sqmi={{{population_density_urban_sq_mi|}}} |pop ={{{population_urban|}}} |ha ={{{area_urban_ha|}}} |km2 ={{{area_urban_km2|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass96 = mergedrow | label96 = &nbsp;•&nbsp;[[Rural area|Rural]]<div class="ib-settlement-fn">{{{population_rural_footnotes|}}}</div> | data96 = {{#if:{{{population_rural|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_rural}}}|,|}}}}}}}} | rowclass97 = mergedrow | label97 = &nbsp;•&nbsp;Rural&nbsp;density | data97 = {{#if:{{{population_density_rural_km2|}}}{{{population_density_rural_sq_mi|}}}{{{population_rural|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_rural_km2|}}} |/sqmi={{{population_density_rural_sq_mi|}}} |pop ={{{population_rural|}}} |ha ={{{area_rural_ha|}}} |km2 ={{{area_rural_km2|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass98 = mergedrow | label98 =&nbsp;•&nbsp;[[Metropolitan area|Metro]]<div class="ib-settlement-fn">{{{population_metro_footnotes|}}}</div> | data98 = {{#if:{{{population_metro|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_metro}}}|,|}}}}}} }} | rowclass99 = mergedrow | label99 = &nbsp;•&nbsp;Metro&nbsp;density | data99 = {{#if:{{{population_density_metro_km2|}}}{{{population_density_metro_sq_mi|}}}{{{population_metro|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_metro_km2|}}} |/sqmi={{{population_density_metro_sq_mi|}}} |pop ={{{population_metro|}}} |ha ={{{area_metro_ha|}}} |km2 ={{{area_metro_km2|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass100 = mergedrow | label100 = &nbsp;•&nbsp;{{{population_blank1_title|}}}<div class="ib-settlement-fn">{{{population_blank1_footnotes|}}}</div> | data100 = {{#if:{{{population_blank1|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank1}}}|,|}}}}}}}} | rowclass101 = mergedrow | label101 = &nbsp;•&nbsp;{{#if:{{{population_blank1_title|}}}|{{{population_blank1_title}}} density|Density}} | data101 = {{#if:{{{population_density_blank1_km2|}}}{{{population_density_blank1_sq_mi|}}}{{{population_blank1|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank1_km2|}}} |/sqmi={{{population_density_blank1_sq_mi|}}} |pop ={{{population_blank1|}}} |ha ={{{area_blank1_ha|}}} |km2 ={{{area_blank1_km2|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass102 = mergedrow | label102 = &nbsp;•&nbsp;{{{population_blank2_title|}}}<div class="ib-settlement-fn">{{{population_blank2_footnotes|}}}</div> | data102 = {{#if:{{{population_blank2|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank2}}}|,|}}}}}}}} | rowclass103 = mergedrow | label103 = &nbsp;•&nbsp;{{#if:{{{population_blank2_title|}}}|{{{population_blank2_title}}} density|Density}} | data103 = {{#if:{{{population_density_blank2_km2|}}}{{{population_density_blank2_sq_mi|}}}{{{population_blank2|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank2_km2|}}} |/sqmi={{{population_density_blank2_sq_mi|}}} |pop ={{{population_blank2|}}} |ha ={{{area_blank2_ha|}}} |km2 ={{{area_blank2_km2|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass104 = mergedrow | label104 = &nbsp; | data104 = {{{population_note|}}} | rowclass105 = mergedtoprow | label105 = {{Pluralize from text|{{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}{{force plural}}}}|<!-- -->link=Demonym|singular=Demonym|likely=Demonym(s)|plural=Demonyms}} | data105 = {{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}}}{{Main other|{{Pluralize from text|{{{population_demonym|}}}|likely=[[Category:Pages using infobox settlement with possible demonym list]]}}}} <!-- ***Demographics 1*** --> | rowclass106 = mergedtoprow | header106 = {{#if:{{{demographics_type1|}}} |{{{demographics_type1}}}<div class="ib-settlement-fn">{{{demographics1_footnotes|}}}</div>}} | rowclass107 = mergedrow | label107 = &nbsp;•&nbsp;{{{demographics1_title1}}} | data107 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title1|}}}|{{{demographics1_info1|}}}}}}} | rowclass108 = mergedrow | label108 = &nbsp;•&nbsp;{{{demographics1_title2}}} | data108 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title2|}}}|{{{demographics1_info2|}}}}}}} | rowclass109 = mergedrow | label109 = &nbsp;•&nbsp;{{{demographics1_title3}}} | data109 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title3|}}}|{{{demographics1_info3|}}}}}}} | rowclass110 = mergedrow | label110 = &nbsp;•&nbsp;{{{demographics1_title4}}} | data110 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title4|}}}|{{{demographics1_info4|}}}}}}} | rowclass111 = mergedrow | label111 = &nbsp;•&nbsp;{{{demographics1_title5}}} | data111 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title5|}}}|{{{demographics1_info5|}}}}}}} | rowclass112 = mergedrow | label112 = &nbsp;•&nbsp;{{{demographics1_title6}}} | data112 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title6|}}}|{{{demographics1_info6|}}}}}}} | rowclass113 = mergedrow | label113 = &nbsp;•&nbsp;{{{demographics1_title7}}} | data113 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title7|}}}|{{{demographics1_info7|}}}}}}} | rowclass114 = mergedrow | label114 = &nbsp;•&nbsp;{{{demographics1_title8}}} | data114 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title8|}}}|{{{demographics1_info8|}}}}}}} | rowclass115 = mergedrow | label115 = &nbsp;•&nbsp;{{{demographics1_title9}}} | data115 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title9|}}}|{{{demographics1_info9|}}}}}}} | rowclass116 = mergedrow | label116 = &nbsp;•&nbsp;{{{demographics1_title10}}} | data116 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title10|}}}|{{{demographics1_info10|}}}}}}} <!-- ***Demographics 2*** --> | rowclass117 = mergedtoprow | header117 = {{#if:{{{demographics_type2|}}} |{{{demographics_type2}}}<div class="ib-settlement-fn">{{{demographics2_footnotes|}}}</div>}} | rowclass118 = mergedrow | label118 = &nbsp;•&nbsp;{{{demographics2_title1}}} | data118 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title1|}}}|{{{demographics2_info1|}}}}}}} | rowclass119 = mergedrow | label119 = &nbsp;•&nbsp;{{{demographics2_title2}}} | data119 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title2|}}}|{{{demographics2_info2|}}}}}}} | rowclass120 = mergedrow | label120 = &nbsp;•&nbsp;{{{demographics2_title3}}} | data120 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title3|}}}|{{{demographics2_info3|}}}}}}} | rowclass121 = mergedrow | label121 = &nbsp;•&nbsp;{{{demographics2_title4}}} | data121 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title4|}}}|{{{demographics2_info4|}}}}}}} | rowclass122 = mergedrow | label122 = &nbsp;•&nbsp;{{{demographics2_title5}}} | data122 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title5|}}}|{{{demographics2_info5|}}}}}}} | rowclass123 = mergedrow | label123 = &nbsp;•&nbsp;{{{demographics2_title6}}} | data123 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title6|}}}|{{{demographics2_info6|}}}}}}} | rowclass124 = mergedrow | label124 = &nbsp;•&nbsp;{{{demographics2_title7}}} | data124 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title7|}}}|{{{demographics2_info7|}}}}}}} | rowclass125 = mergedrow | label125 = &nbsp;•&nbsp;{{{demographics2_title8}}} | data125 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title8|}}}|{{{demographics2_info8|}}}}}}} | rowclass126 = mergedrow | label126 = &nbsp;•&nbsp;{{{demographics2_title9}}} | data126 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title9|}}}|{{{demographics2_info9|}}}}}}} | rowclass127 = mergedrow | label127 = &nbsp;•&nbsp;{{{demographics2_title10}}} | data127 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title10|}}}|{{{demographics2_info10|}}}}}}} <!-- ***Time Zones*** --> | rowclass128 = mergedtoprow | header128 = {{#if:{{{timezone1_location|}}}|{{#if:{{{timezone2|}}}|[[{{if empty|{{{timezone_link|}}}|Time zone}}|Time zone]]s|[[{{if empty|{{{timezone_link|}}}|Time zone}}|Time zone]]}}|}} | rowclass129 = {{#if:{{{timezone1_location|}}}|mergedrow|mergedtoprow}} | label129 = {{#if:{{{timezone1_location|}}}|{{{timezone1_location}}}|{{#if:{{{timezone2_location|}}}|{{{timezone2_location}}}|{{#if:{{{timezone2|}}}|[[{{if empty|{{{timezone_link|}}}|Time zone}}|Time zone]]s|[[{{if empty|{{{timezone_link|}}}|Time zone}}|Time zone]]}}}}}} | data129 = {{#if:{{{utc_offset1|}}}{{{utc_offset|}}} |[[UTC{{if empty|{{{utc_offset1|}}}|{{{utc_offset}}}}}]] {{#if:{{{timezone1|}}}{{{timezone|}}}|({{if empty|{{{timezone1|}}}|{{{timezone}}}}})}} |{{if empty|{{{timezone1|}}}|{{{timezone|}}}}} }} | rowclass130 = mergedrow | label130 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data130 = {{#if:{{{utc_offset1_DST|}}}{{{utc_offset_DST|}}} |[[UTC{{if empty|{{{utc_offset1_DST|}}}|{{{utc_offset_DST|}}}}}]] {{#if:{{{timezone1_DST|}}}{{{timezone_DST|}}}|({{if empty|{{{timezone1_DST|}}}|{{{timezone_DST}}}}})}} |{{if empty|{{{timezone1_DST|}}}|{{{timezone_DST|}}}}} }} | rowclass131 = mergedrow | label131 = {{if empty|{{{timezone2_location|}}}|<nowiki />}} | data131 = {{#if:{{{timezone1|}}}{{{timezone|}}}{{{utc_offset1|}}}{{{utc_offset|}}} |{{#if:{{{utc_offset2|}}} |[[UTC{{{utc_offset2|}}}]] {{#if:{{{timezone2|}}}|({{{timezone2}}})}} |{{{timezone2|}}} }} }} | rowclass132 = mergedrow | label132 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data132 = {{#if:{{{utc_offset2_DST|}}}|[[UTC{{{utc_offset2_DST|}}}]] {{#if:{{{timezone2_DST|}}}|({{{timezone2_DST|}}})}} |{{{timezone2_DST|}}} }} | rowclass133 = mergedrow | label133 = {{if empty|{{{timezone3_location|}}}|<nowiki />}} | data133 = {{#if:{{{timezone1|}}}{{{timezone|}}}{{{utc_offset1|}}}{{{utc_offset|}}} |{{#if:{{{utc_offset3|}}} |[[UTC{{{utc_offset3|}}}]] {{#if:{{{timezone3|}}}|({{{timezone3}}})}} |{{{timezone3|}}} }} }} | rowclass134 = mergedrow | label134 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data134 = {{#if:{{{utc_offset3_DST|}}}|[[UTC{{{utc_offset3_DST|}}}]] {{#if:{{{timezone3_DST|}}}|({{{timezone3_DST|}}})}} |{{{timezone3_DST|}}} }} | rowclass135 = mergedrow | label135 = {{if empty|{{{timezone4_location|}}}|<nowiki />}} | data135 = {{#if:{{{timezone1|}}}{{{timezone|}}}{{{utc_offset1|}}}{{{utc_offset|}}} |{{#if:{{{utc_offset4|}}} |[[UTC{{{utc_offset4|}}}]] {{#if:{{{timezone4|}}}|({{{timezone4}}})}} |{{{timezone4|}}} }} }} | rowclass136 = mergedrow | label136 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data136 = {{#if:{{{utc_offset4_DST|}}}|[[UTC{{{utc_offset4_DST|}}}]] {{#if:{{{timezone4_DST|}}}|({{{timezone4_DST|}}})}} |{{{timezone4_DST|}}} }} | rowclass137 = mergedrow | label137 = {{if empty|{{{timezone5_location|}}}|<nowiki />}} | data137 = {{#if:{{{timezone1|}}}{{{timezone|}}}{{{utc_offset1|}}}{{{utc_offset|}}} |{{#if:{{{utc_offset5|}}} |[[UTC{{{utc_offset5|}}}]] {{#if:{{{timezone5|}}}|({{{timezone5}}})}} |{{{timezone5|}}} }} }} | rowclass138 = mergedrow | label138 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data138 = {{#if:{{{utc_offset5_DST|}}}|[[UTC{{{utc_offset5_DST|}}}]] {{#if:{{{timezone5_DST|}}}|({{{timezone5_DST|}}})}} |{{{timezone5_DST|}}} }} <!-- ***Postal Code(s)*** --> | rowclass139 = mergedtoprow | label139 = {{if empty|{{{postal_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class139 = adr | data139 = {{#if:{{{postal_code|}}}|<div class="postal-code">{{{postal_code}}}</div>}} | rowclass140 = {{#if:{{{postal_code|}}}|mergedbottomrow|mergedtoprow}} | label140 = {{if empty|{{{postal2_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal2_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class140 = adr | data140 = {{#if:{{{postal2_code|}}}|<div class="postal-code">{{{postal2_code}}}</div>}} <!-- ***Area Code(s)*** --> | rowclass141 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}|mergedrow|mergedtoprow}} | label141 = {{if empty|{{{area_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{if empty|{{{area_code|}}}|{{{area_codes|}}}{{force plural}}}}|<!-- -->link=Telephone numbering plan|singular=Area code|likely=Area code(s)|plural=Area codes}}}} | data141 = {{if empty|{{{area_code|}}}|{{{area_codes|}}}}}{{#if:{{{area_code_type|}}}||{{Main other|{{Pluralize from text|any_comma=1|parse_links=1|{{{area_code|}}}|||[[Category:Pages using infobox settlement with possible area code list]]}}}}}} <!-- Geocode--> | rowclass142 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}|mergedrow|mergedtoprow}} | label142 = [[Geocode]] | class142 = nickname | data142 = {{{geocode|}}} <!-- ISO Code--> | rowclass143 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}|mergedrow|mergedtoprow}} | label143 = [[ISO 3166|ISO 3166 code]] | class143 = nickname | data143 = {{{iso_code|}}} <!-- Vehicle registration plate--> | rowclass144 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}|mergedrow|mergedtoprow}} | label144 = {{if empty|{{{registration_plate_type|}}}|[[Vehicle registration plate|Vehicle registration]]}} | data144 = {{{registration_plate|}}} <!-- Other codes --> | rowclass145 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}|mergedrow|mergedtoprow}} | label145 = {{{code1_name|}}} | class145 = nickname | data145 = {{#if:{{{code1_name|}}}|{{{code1_info|}}}}} | rowclass146 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}{{{code1_name|}}}|mergedrow|mergedtoprow}} | label146 = {{{code2_name|}}} | class146 = nickname | data146 = {{#if:{{{code2_name|}}}|{{{code2_info|}}}}} <!-- ***Blank Fields (two sections)*** --> | rowclass147 = mergedtoprow | label147 = {{if empty|{{{blank_name_sec1|}}}|{{{blank_name|}}}}} | data147 = {{#if:{{{blank_name_sec1|}}}{{{blank_name|}}}|{{if empty|{{{blank_info_sec1|}}}|{{{blank_info|}}}}}}} | rowclass148 = mergedrow | label148 = {{if empty|{{{blank1_name_sec1|}}}|{{{blank1_name|}}}}} | data148 = {{#if:{{{blank1_name_sec1|}}}{{{blank1_name|}}}|{{if empty|{{{blank1_info_sec1|}}}|{{{blank1_info|}}}}}}} | rowclass149 = mergedrow | label149 = {{if empty|{{{blank2_name_sec1|}}}|{{{blank2_name|}}}}} | data149 = {{#if:{{{blank2_name_sec1|}}}{{{blank2_name|}}}|{{if empty|{{{blank2_info_sec1|}}}|{{{blank2_info|}}}}}}} | rowclass150 = mergedrow | label150 = {{if empty|{{{blank3_name_sec1|}}}|{{{blank3_name|}}}}} | data150 = {{#if:{{{blank3_name_sec1|}}}{{{blank3_name|}}}|{{if empty|{{{blank3_info_sec1|}}}|{{{blank3_info|}}}}}}} | rowclass151 = mergedrow | label151 = {{if empty|{{{blank4_name_sec1|}}}|{{{blank4_name|}}}}} | data151 = {{#if:{{{blank4_name_sec1|}}}{{{blank4_name|}}}|{{if empty|{{{blank4_info_sec1|}}}|{{{blank4_info|}}}}}}} | rowclass152 = mergedrow | label152 = {{if empty|{{{blank5_name_sec1|}}}|{{{blank5_name|}}}}} | data152 = {{#if:{{{blank5_name_sec1|}}}{{{blank5_name|}}}|{{if empty|{{{blank5_info_sec1|}}}|{{{blank5_info|}}}}}}} | rowclass153 = mergedrow | label153 = {{if empty|{{{blank6_name_sec1|}}}|{{{blank6_name|}}}}} | data153 = {{#if:{{{blank6_name_sec1|}}}{{{blank6_name|}}}|{{if empty|{{{blank6_info_sec1|}}}|{{{blank6_info|}}}}}}} | rowclass154 = mergedrow | label154 = {{if empty|{{{blank7_name_sec1|}}}|{{{blank7_name|}}}}} | data154 = {{#if:{{{blank7_name_sec1|}}}{{{blank7_name|}}}|{{if empty|{{{blank7_info_sec1|}}}|{{{blank7_info|}}}}}}} | rowclass155 = mergedtoprow | label155 = {{{blank_name_sec2}}} | data155 = {{#if:{{{blank_name_sec2|}}}|{{{blank_info_sec2|}}}}} | rowclass156 = mergedrow | label156 = {{{blank1_name_sec2}}} | data156 = {{#if:{{{blank1_name_sec2|}}}|{{{blank1_info_sec2|}}}}} | rowclass157 = mergedrow | label157 = {{{blank2_name_sec2}}} | data157 = {{#if:{{{blank2_name_sec2|}}}|{{{blank2_info_sec2|}}}}} | rowclass158 = mergedrow | label158 = {{{blank3_name_sec2}}} | data158 = {{#if:{{{blank3_name_sec2|}}}|{{{blank3_info_sec2|}}}}} | rowclass159 = mergedrow | label159 = {{{blank4_name_sec2}}} | data159 = {{#if:{{{blank4_name_sec2|}}}|{{{blank4_info_sec2|}}}}} | rowclass160 = mergedrow | label160 = {{{blank5_name_sec2}}} | data160 = {{#if:{{{blank5_name_sec2|}}}|{{{blank5_info_sec2|}}}}} | rowclass161 = mergedrow | label161 = {{{blank6_name_sec2}}} | data161 = {{#if:{{{blank6_name_sec2|}}}|{{{blank6_info_sec2|}}}}} | rowclass162 = mergedrow | label162 = {{{blank7_name_sec2}}} | data162 = {{#if:{{{blank7_name_sec2|}}}|{{{blank7_info_sec2|}}}}} <!-- ***Website*** --> | rowclass163 = mergedtoprow | label163 = Website | data163 = {{#if:{{{website|}}}|{{{website}}}}} | class164 = maptable | data164 = {{#if:{{{module|}}}|{{{module}}}}} <!-- ***Footnotes*** --> | belowrowclass = mergedtoprow | below = {{{footnotes|}}} }}<!-- Check for unknowns -->{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview = Page using [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y | alt | anthem | anthem_link | area_blank1_acre | area_blank1_dunam | area_blank1_ha | area_blank1_km2 | area_blank1_sq_mi | area_blank1_title | area_blank2_acre | area_blank2_dunam | area_blank2_ha | area_blank2_km2 | area_blank2_sq_mi | area_blank2_title | area_code | area_code_type | area_codes | area_footnotes | area_land_acre | area_land_dunam | area_land_ha | area_land_km2 | area_land_sq_mi | area_metro_acre | area_metro_dunam | area_metro_footnotes | area_metro_ha | area_metro_km2 | area_metro_sq_mi | area_note | area_rank | area_rural_acre | area_rural_dunam | area_rural_footnotes | area_rural_ha | area_rural_km2 | area_rural_sq_mi | area_total_acre | area_total_dunam | area_total_ha | area_total_km2 | area_total_sq_mi | area_urban_acre | area_urban_dunam | area_urban_footnotes | area_urban_ha | area_urban_km2 | area_urban_sq_mi | area_water_acre | area_water_dunam | area_water_ha | area_water_km2 | area_water_percent | area_water_sq_mi | blank_emblem_alt | blank_emblem_link | blank_emblem_size | blank_emblem_type | blank_emblem_upright | blank_info | blank_info_sec1 | blank_info_sec2 | blank_name | blank_name_sec1 | blank_name_sec2 | blank1_info | blank1_info_sec1 | blank1_info_sec2 | blank1_name | blank1_name_sec1 | blank1_name_sec2 | blank2_info | blank2_info_sec1 | blank2_info_sec2 | blank2_name | blank2_name_sec1 | blank2_name_sec2 | blank3_info | blank3_info_sec1 | blank3_info_sec2 | blank3_name | blank3_name_sec1 | blank3_name_sec2 | blank4_info | blank4_info_sec1 | blank4_info_sec2 | blank4_name | blank4_name_sec1 | blank4_name_sec2 | blank5_info | blank5_info_sec1 | blank5_info_sec2 | blank5_name | blank5_name_sec1 | blank5_name_sec2 | blank6_info | blank6_info_sec1 | blank6_info_sec2 | blank6_name | blank6_name_sec1 | blank6_name_sec2 | blank7_info | blank7_info_sec1 | blank7_info_sec2 | blank7_name | blank7_name_sec1 | blank7_name_sec2 | caption | code1_info | code1_name | code2_info | code2_name | coor_pinpoint | coor_type | coordinates | coordinates_footnotes | demographics_type1 | demographics_type2 | demographics1_footnotes | demographics1_info1 | demographics1_info10 | demographics1_info2 | demographics1_info3 | demographics1_info4 | demographics1_info5 | demographics1_info6 | demographics1_info7 | demographics1_info8 | demographics1_info9 | demographics1_title1 | demographics1_title10 | demographics1_title2 | demographics1_title3 | demographics1_title4 | demographics1_title5 | demographics1_title6 | demographics1_title7 | demographics1_title8 | demographics1_title9 | demographics2_footnotes | demographics2_info1 | demographics2_info10 | demographics2_info2 | demographics2_info3 | demographics2_info4 | demographics2_info5 | demographics2_info6 | demographics2_info7 | demographics2_info8 | demographics2_info9 | demographics2_title1 | demographics2_title10 | demographics2_title2 | demographics2_title3 | demographics2_title4 | demographics2_title5 | demographics2_title6 | demographics2_title7 | demographics2_title8 | demographics2_title9 | dimensions_footnotes | dunam_link | elevation_footnotes | elevation_ft | elevation_link | elevation_m | elevation_max_footnotes | elevation_max_ft | elevation_max_m | elevation_max_point | elevation_max_rank | elevation_min_footnotes | elevation_min_ft | elevation_min_m | elevation_min_point | elevation_min_rank | elevation_point | embed | established_date | established_date1 | established_date2 | established_date3 | established_date4 | established_date5 | established_date6 | established_date7 | established_title | established_title1 | established_title2 | established_title3 | established_title4 | established_title5 | established_title6 | established_title7 | etymology | extinct_date | extinct_title | flag_alt | flag_border | flag_link | flag_size | footnotes | founder | geocode | governing_body | government_footnotes | government_type | government_blank1_title | government_blank1 | government_blank2_title | government_blank2 | government_blank2_title | government_blank3 | government_blank3_title | government_blank3 | government_blank4_title | government_blank4 | government_blank5_title | government_blank5 | government_blank6_title | government_blank6 | grid_name | grid_position | image_alt | image_blank_emblem | image_caption | image_flag | image_map | image_map1 | image_seal | image_shield | image_size | image_skyline | imagesize | image_upright | iso_code | leader_name | leader_name1 | leader_name2 | leader_name3 | leader_name4 | leader_name5 | leader_party | leader_title | leader_title1 | leader_title2 | leader_title3 | leader_title4 | leader_title5 | length_km | length_mi | map_alt | map_alt1 | map_caption | map_caption1 | mapsize | mapsize1 | module | motto | motto_link | mottoes | name | named_for | native_name | native_name_lang | nickname | nickname_link | nicknames | official_name | other_name | p1 | p10 | p11 | p12 | p13 | p14 | p15 | p16 | p17 | p18 | p19 | p2 | p20 | p21 | p22 | p23 | p24 | p25 | p26 | p27 | p28 | p29 | p3 | p30 | p31 | p32 | p33 | p34 | p35 | p36 | p37 | p38 | p39 | p4 | p40 | p41 | p42 | p43 | p44 | p45 | p46 | p47 | p48 | p49 | p5 | p50 | p6 | p7 | p8 | p9 | parts | parts_style | parts_type | pop_est_as_of | pop_est_footnotes | population_as_of | population_blank1 | population_blank1_footnotes | population_blank1_title | population_blank2 | population_blank2_footnotes | population_blank2_title | population_demonym | population_demonyms | population_density_blank1_km2 | population_density_blank1_sq_mi | population_density_blank2_km2 | population_density_blank2_sq_mi | population_density_km2 | population_density_metro_km2 | population_density_metro_sq_mi | population_density_rank | population_density_rural_km2 | population_density_rural_sq_mi | population_density_sq_mi | population_density_urban_km2 | population_density_urban_sq_mi | population_est | population_footnotes | population_metro | population_metro_footnotes | population_note | population_rank | population_rural | population_rural_footnotes | population_total | population_urban | population_urban_footnotes | postal_code | postal_code_type | postal2_code | postal2_code_type | pushpin_image | pushpin_label | pushpin_label_position | pushpin_map | pushpin_map_alt | pushpin_map_caption | pushpin_map_caption_notsmall | pushpin_map_narrow | pushpin_mapsize | pushpin_outside | pushpin_overlay | pushpin_relief | registration_plate | registration_plate_type | seal_alt | seal_class | seal_link | seal_size | seal_type | seat | seat_type | seat1 | seat1_type | seat2 | seat2_type | settlement_type | shield_alt | shield_link | shield_size | short_description <!--used by Module:Settlement short description-->| subdivision_name | subdivision_name1 | subdivision_name2 | subdivision_name3 | subdivision_name4 | subdivision_name5 | subdivision_name6 | subdivision_type | subdivision_type1 | subdivision_type2 | subdivision_type3 | subdivision_type4 | subdivision_type5 | subdivision_type6 | template_name | timezone | timezone_DST | timezone_link | timezone1 | timezone1_DST | timezone1_location | timezone2 | timezone2_DST | timezone2_location | timezone3 | timezone3_DST | timezone3_location | timezone4 | timezone4_DST | timezone4_location | timezone5 | timezone5_DST | timezone5_location | total_type | translit_lang1 | translit_lang1_info | translit_lang1_info1 | translit_lang1_info2 | translit_lang1_info3 | translit_lang1_info4 | translit_lang1_info5 | translit_lang1_info6 | translit_lang1_type | translit_lang1_type1 | translit_lang1_type2 | translit_lang1_type3 | translit_lang1_type4 | translit_lang1_type5 | translit_lang1_type6 | translit_lang2 | translit_lang2_info | translit_lang2_info1 | translit_lang2_info2 | translit_lang2_info3 | translit_lang2_info4 | translit_lang2_info5 | translit_lang2_info6 | translit_lang2_type | translit_lang2_type1 | translit_lang2_type2 | translit_lang2_type3 | translit_lang2_type4 | translit_lang2_type5 | translit_lang2_type6 | type | unit_pref | utc_offset | utc_offset_DST | utc_offset1 | utc_offset1_DST | utc_offset2 | utc_offset2_DST | utc_offset3 | utc_offset3_DST | utc_offset4 | utc_offset4_DST | utc_offset5 | utc_offset5_DST | website | width_km | width_mi }}<!-- -->{{#invoke:Check for conflicting parameters|check | template = [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] | cat = {{main other|Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with conflicting parameters}} | settlement_type; type | image_size; imagesize | image_alt; alt | image_caption; caption | nickname; nicknames | motto; mottoes | coor_pinpoint; coor_type | population_demonym; population_demonyms | utc_offset1; utc_offset | timezone1; timezone | utc_offset1_DST; utc_offset_DST | timezone1_DST; timezone_DST | area_code; area_codes | blank_name_sec1; blank_name | blank_info_sec1; blank_info | blank1_name_sec1; blank1_name | blank1_info_sec1; blank1_info | blank2_name_sec1; blank2_name | blank2_info_sec1; blank2_info | blank3_name_sec1; blank3_name | blank3_info_sec1; blank3_info | blank4_name_sec1; blank4_name | blank4_info_sec1; blank4_info | blank5_name_sec1; blank5_name | blank5_info_sec1; blank5_info | blank6_name_sec1; blank6_name | blank6_info_sec1; blank6_info | blank7_name_sec1; blank7_name | blank7_info_sec1; blank7_info }}<!-- Wikidata -->{{#if:{{{coordinates_wikidata|}}}{{{wikidata|}}} |[[Category:Pages using infobox settlement with the wikidata parameter]] }}{{main other|<!-- Missing country -->{{#if:{{{subdivision_name|}}}||[[Category:Pages using infobox settlement with missing country]]}}<!-- No map -->{{#if:{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}||[[Category:Pages using infobox settlement with no map]]}}<!-- Image_map1 without image_map -->{{#if:{{{image_map1|}}}|{{#if:{{{image_map|}}}||[[Category:Pages using infobox settlement with image_map1 but not image_map]]}}}}<!-- No coordinates -->{{#if:{{{coordinates|}}}||[[Category:Pages using infobox settlement with no coordinates]]}}<!-- -->{{#if:{{{embed|}}}|[[Category:Pages using infobox settlement with embed]]}} }}<!-- Gathering information on over-use of maps -->{{#ifexpr:{{#invoke:ParameterCount|main|mapframe|image_map|image_map1|pushpin_map}} >2 |{{main other| [[Category:Pages using infobox settlement with potentially too many maps]]}}}}</includeonly><noinclude> {{documentation}} <!--Please add this template's categories to the /doc subpage, not here - thanks!--> </noinclude> pkqsubwyzeehptxrn9z7lec6zup5fve 72852 72834 2026-07-01T02:02:40Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/core]] para [[Template:Infobox settlement/core]] sem deixar um redirecionamento: fixing 70387 wikitext text/x-wiki <includeonly>{{main other|{{#invoke:Settlement short description|main}}|}}{{Infobox | child = {{yesno|{{{embed|}}}}} | templatestyles = Infobox settlement/styles.css | bodyclass = ib-settlement vcard <!--** names, type, and transliterations ** --> | above = <div class="fn org">{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}</div> {{#if:{{{native_name|}}}|<div class="nickname ib-settlement-native" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}"}}>{{{native_name}}}</div>}}{{#if:{{{other_name|}}}|<div class="nickname ib-settlement-other-name">{{{other_name}}}</div>}} | subheader = {{#if:{{{settlement_type|}}}{{{type|}}}|<div class="category">{{if empty|{{{settlement_type|}}}|{{{type}}}}}</div>}} | rowclass1 = mergedtoprow ib-settlement-official | data1 = {{#if:{{{name|}}}|{{{official_name|}}}}} <!-- ***Transliteration language 1*** --> | rowclass2 = mergedtoprow | header2 = {{#if:{{{translit_lang1|}}}|{{{translit_lang1}}}&nbsp;transcription(s)}} | rowclass3 = {{#if:{{{translit_lang1_type1|}}}|mergedrow|mergedbottomrow}} | label3 = &nbsp;•&nbsp;{{{translit_lang1_type}}} | data3 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type|}}}|{{{translit_lang1_info|}}}}}}} | rowclass4 = {{#if:{{{translit_lang1_type2|}}}|mergedrow|mergedbottomrow}} | label4 = &nbsp;•&nbsp;{{{translit_lang1_type1}}} | data4 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type1|}}}|{{{translit_lang1_info1|}}}}}}} | rowclass5 = {{#if:{{{translit_lang1_type3|}}}|mergedrow|mergedbottomrow}} | label5 =&nbsp;•&nbsp;{{{translit_lang1_type2}}} | data5 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type2|}}}|{{{translit_lang1_info2|}}}}}}} | rowclass6 = {{#if:{{{translit_lang1_type4|}}}|mergedrow|mergedbottomrow}} | label6 = &nbsp;•&nbsp;{{{translit_lang1_type3}}} | data6 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type3|}}}|{{{translit_lang1_info3|}}}}}}} | rowclass7 = {{#if:{{{translit_lang1_type5|}}}|mergedrow|mergedbottomrow}} | label7 = &nbsp;•&nbsp;{{{translit_lang1_type4}}} | data7 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type4|}}}|{{{translit_lang1_info4|}}}}}}} | rowclass8 = {{#if:{{{translit_lang1_type6|}}}|mergedrow|mergedbottomrow}} | label8 = &nbsp;•&nbsp;{{{translit_lang1_type5}}} | data8 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type5|}}}|{{{translit_lang1_info5|}}}}}}} | rowclass9 = mergedbottomrow | label9 = &nbsp;•&nbsp;{{{translit_lang1_type6}}} | data9 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type6|}}}|{{{translit_lang1_info6|}}}}}}} <!-- ***Transliteration language 2*** --> | rowclass10 = mergedtoprow | header10 = {{#if:{{{translit_lang2|}}}|{{{translit_lang2}}}&nbsp;transcription(s)}} | rowclass11 = {{#if:{{{translit_lang2_type1|}}}|mergedrow|mergedbottomrow}} | label11 = &nbsp;•&nbsp;{{{translit_lang2_type}}} | data11 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type|}}}|{{{translit_lang2_info|}}}}}}} | rowclass12 = {{#if:{{{translit_lang2_type2|}}}|mergedrow|mergedbottomrow}} | label12 = &nbsp;•&nbsp;{{{translit_lang2_type1}}} | data12 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type1|}}}|{{{translit_lang2_info1|}}}}}}} | rowclass13 = {{#if:{{{translit_lang2_type3|}}}|mergedrow|mergedbottomrow}} | label13 =&nbsp;•&nbsp;{{{translit_lang2_type2}}} | data13 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type2|}}}|{{{translit_lang2_info2|}}}}}}} | rowclass14 = {{#if:{{{translit_lang2_type4|}}}|mergedrow|mergedbottomrow}} | label14 = &nbsp;•&nbsp;{{{translit_lang2_type3}}} | data14 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type3|}}}|{{{translit_lang2_info3|}}}}}}} | rowclass15 = {{#if:{{{translit_lang2_type5|}}}|mergedrow|mergedbottomrow}} | label15 = &nbsp;•&nbsp;{{{translit_lang2_type4}}} | data15 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type4|}}}|{{{translit_lang2_info4|}}}}}}} | rowclass16 = {{#if:{{{translit_lang2_type6|}}}|mergedrow|mergedbottomrow}} | label16 = &nbsp;•&nbsp;{{{translit_lang2_type5}}} | data16 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type5|}}}|{{{translit_lang2_info5|}}}}}}} | rowclass17 = mergedbottomrow | label17 = &nbsp;•&nbsp;{{{translit_lang2_type6}}} | data17 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type6|}}}|{{{translit_lang2_info6|}}}}}}} <!-- end ** names, type, and transliterations ** --> <!-- ***Skyline Image*** --> | rowclass18 = mergedtoprow | data18 = {{#if:{{{image_skyline|}}}|<!-- -->{{#invoke:InfoboxImage|InfoboxImage<!-- -->|image={{{image_skyline|}}}<!-- -->|size={{if empty|{{{image_size|}}}|{{{imagesize|}}}}}|sizedefault=250px|upright={{{image_upright|}}}<!-- -->|alt={{if empty|{{{image_alt|}}}|{{{alt|}}}}}<!-- -->|title={{if empty|{{{image_caption|}}}|{{{caption|}}}|{{{image_alt|}}}|{{{alt|}}}}}}}<!-- -->{{#if:{{{image_caption|}}}{{{caption|}}}|<div class="ib-settlement-caption">{{if empty|{{{image_caption|}}}|{{{caption|}}}}}</div>}} }} <!-- ***Flag, Seal, Shield and Coat of arms*** --> | rowclass19 = mergedtoprow | class19 = maptable | data19 = {{#if:{{{image_flag|}}}{{{image_seal|}}}{{{image_shield|}}}{{{image_blank_emblem|}}}{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}} |{{Infobox settlement/columns | 1 = {{#if:{{{image_flag|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_flag}}}|size={{{flag_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|125px|100x100px}}|border={{yesno |{{{flag_border|}}}|yes=yes|blank=yes}}|alt={{{flag_alt|}}}|title=Flag of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Flag|link={{{flag_link|}}}|name={{{official_name}}}}}</div>}} | 2 = {{#if:{{{image_seal|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_seal|}}}|size={{{seal_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{seal_alt|}}}|title=Official seal of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}|class={{{seal_class|}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{if empty|{{{seal_type|}}}|Seal}}|link={{{seal_link|}}}|name={{{official_name}}}}}</div>}} | 3 = {{#if:{{{image_shield|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_shield|}}}||size={{{shield_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{shield_alt|}}}|title=Coat of arms of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Coat of arms|link={{{shield_link|}}}|name={{{official_name}}}}}</div>}} | 4 = {{#if:{{{image_blank_emblem|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_blank_emblem|}}}|size={{{blank_emblem_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|upright={{{blank_emblem_upright|}}}|alt={{{blank_emblem_alt|}}}|title=Official logo of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{blank_emblem_type|}}}|{{{blank_emblem_type}}}}}|link={{{blank_emblem_link|}}}|name={{{official_name}}}}}</div>}} | 5 = {{#if:{{{image_map|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=100x100px|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption-link">{{{map_caption}}}</div>}}}} | 0 = {{#if:{{{pushpin_map_narrow|}}}|{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{{map_caption}}}}}}}}} |float = center |width = {{if empty|{{{pushpin_mapsize|}}}|150}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map --> |position = {{{pushpin_label_position|}}} }} }} }} }} }} <!-- ***Etymology*** --> | rowclass20 = mergedtoprow | data20 = {{#if:{{{etymology|}}}|Etymology: {{{etymology}}} }} <!-- ***Nickname*** --> | rowclass21 = {{#if:{{{etymology|}}}|mergedrow|mergedtoprow}} | data21 = {{#if:{{{nickname|}}}{{{nicknames|}}}|<!-- -->{{Pluralize from text|parse_links=1|{{if empty|{{{nickname|}}}|{{{nicknames|}}}{{force plural}}}}|<!-- -->link={{{nickname_link|}}}|singular=Nickname|likely=Nickname(s)|plural=Nicknames}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{nickname|}}}|{{{nicknames|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|parse_links=1|{{{nickname|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible nickname list]]}}}}}} <!-- ***Motto*** --> | rowclass22 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}|mergedrow|mergedtoprow}} | data22 = {{#if:{{{motto|}}}{{{mottoes|}}}|<!-- -->{{Pluralize from text|{{if empty|{{{motto|}}}|{{{mottoes|}}}{{force plural}}}}|<!-- -->link={{{motto_link|}}}|singular=Motto|likely=Motto(s)|plural=Mottoes}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{motto|}}}|{{{mottoes|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|{{{motto|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible motto list]]}}}}}} <!-- ***Anthem*** --> | rowclass23 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}{{{motto|}}}{{{mottoes|}}}|mergedrow|mergedtoprow}} | data23 = {{#if:{{{anthem|}}}|{{#if:{{{anthem_link|}}}|[[{{{anthem_link|}}}|Anthem:]]|Anthem:}} {{{anthem}}}}} <!-- ***Map*** --> | rowclass24 = mergedtoprow | data24 = {{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}||{{#if:{{{image_map|}}} |{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=250px|upright={{{image_upright|}}}|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption">{{{map_caption}}}</div>}} }}}} | rowclass25 = mergedrow | data25 = {{#if:{{{image_map1|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map1}}}|size={{{mapsize1|}}}|sizedefault=250px|upright={{{image_upright|}}}|alt={{{map_alt1|}}}|title={{{map_caption1|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption1|}}}|<div class="ib-settlement-caption">{{{map_caption1}}}</div>}} }} | data26 = {{#invoke:Infobox mapframe | autoWithCaption | onByDefault = {{#if:{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}|no|yes}} | mapframe-frame-width = 250 | mapframe-stroke-width = 2 | mapframe-length_km = {{{length_km|}}} | mapframe-length_mi = {{{length_mi|}}} | mapframe-width_km = {{{width_km|}}} | mapframe-width_mi = {{{width_mi|}}} | mapframe-area_km2 = {{{area_total_km2|}}} | mapframe-area_ha = {{{area_total_ha|}}} | mapframe-area_acre = {{{area_total_acre|}}} | mapframe-area_sq_mi = {{{area_total_sq_mi|}}} | mapframe-type = city | mapframe-population = {{if empty|{{{population_metro|}}}|{{{population_total|}}}}} | mapframe-marker = town | mapframe-wikidata = yes | mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}} }} <!-- ***Pushpin Map*** --> | rowclass28 = mergedtoprow | data28 = {{#if:{{{pushpin_map_narrow|}}}||{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{#if:{{{image_map|}}}||{{{map_caption}}}}}}}}}}} |float = center |width = {{{pushpin_mapsize|}}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{if empty|{{{name|}}}|{{{official_name|}}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map --> |position = {{{pushpin_label_position|}}} }} }} }} <!-- ***Coordinates*** --> | data29 = {{#if:{{{coordinates|}}}|{{#if:{{#invoke:string|match|s={{{coordinates|}}}|pattern=geo-inline-hidden|ignore_errors=true|plain=true}}|<!-- Nothing to display --> |Coordinates{{#if:{{{coor_pinpoint|}}}{{{coor_type|}}}|&#32;({{if empty|{{{coor_pinpoint|}}}|{{{coor_type|}}}}})}}: {{#invoke:ISO 3166|geocoordinsert|nocat=true|1={{{coordinates|}}}|country={{{subdivision_name|}}}|subdivision1={{{subdivision_name1|}}}|subdivision2={{{subdivision_name2|}}}|subdivision3={{{subdivision_name3|}}}|type=city{{#if:{{{population_total|}}}|{{#iferror:{{#expr:{{formatnum:{{{population_total}}}|R}}+1}}||({{formatnum:{{replace|{{{population_total}}}|,|}}|R}})}}}} }}{{{coordinates_footnotes|}}} }}}} | rowclass30 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|mergedbottomrow|mergedrow}} | label30 = {{if empty|{{{grid_name|}}}|Grid&nbsp;position}} | data30 = {{{grid_position|}}} <!-- ***Subdivisions*** --> | rowclass31 = mergedtoprow | label31 = {{{subdivision_type}}} | data31 = {{#if:{{{subdivision_type|}}}|{{{subdivision_name|}}} }} | rowclass32 = mergedrow | label32 = {{{subdivision_type1}}} | data32 = {{#if:{{{subdivision_type1|}}}|{{{subdivision_name1|}}} }} | rowclass33 = mergedrow | label33 = {{{subdivision_type2}}} | data33 = {{#if:{{{subdivision_type2|}}}|{{{subdivision_name2|}}} }} | rowclass34 = mergedrow | label34 = {{{subdivision_type3}}} | data34 = {{#if:{{{subdivision_type3|}}}|{{{subdivision_name3|}}} }} | rowclass35 = mergedrow | label35 = {{{subdivision_type4}}} | data35 = {{#if:{{{subdivision_type4|}}}|{{{subdivision_name4|}}} }} | rowclass36 = mergedrow | label36 = {{{subdivision_type5}}} | data36 = {{#if:{{{subdivision_type5|}}}|{{{subdivision_name5|}}} }} | rowclass37 = mergedrow | label37 = {{{subdivision_type6}}} | data37 = {{#if:{{{subdivision_type6|}}}|{{{subdivision_name6|}}} }} <!--***Established*** --> | rowclass38 = mergedtoprow | label38 = {{if empty|{{{established_title|}}}|Established}} | data38 = {{{established_date|}}} | rowclass39 = mergedrow | label39 = {{{established_title1}}} | data39 = {{#if:{{{established_title1|}}}|{{{established_date1|}}} }} | rowclass40 = mergedrow | label40 = {{{established_title2}}} | data40 = {{#if:{{{established_title2|}}}|{{{established_date2|}}} }} | rowclass41 = mergedrow | label41 = {{{established_title3}}} | data41 = {{#if:{{{established_title3|}}}|{{{established_date3|}}} }} | rowclass42 = mergedrow | label42 = {{{established_title4}}} | data42 = {{#if:{{{established_title4|}}}|{{{established_date4|}}} }} | rowclass43 = mergedrow | label43 = {{{established_title5}}} | data43 = {{#if:{{{established_title5|}}}|{{{established_date5|}}} }} | rowclass44 = mergedrow | label44 = {{{established_title6}}} | data44 = {{#if:{{{established_title6|}}}|{{{established_date6|}}} }} | rowclass45 = mergedrow | label45 = {{{established_title7}}} | data45 = {{#if:{{{established_title7|}}}|{{{established_date7|}}} }} | rowclass46 = mergedrow | label46 = {{{extinct_title}}} | data46 = {{#if:{{{extinct_title|}}}|{{{extinct_date|}}} }} | rowclass47 = mergedrow | label47 = Founded by | data47 = {{{founder|}}} | rowclass48 = mergedrow | label48 = [[Namesake|Named after]] | data48 = {{{named_for|}}} <!-- ***Seat of government and subdivisions within the settlement*** --> | rowclass49 = mergedtoprow | label49 = {{if empty|{{{seat_type|}}}|Seat}} | data49 = {{{seat|}}} | rowclass50 = mergedrow | label50 = {{if empty|{{{seat1_type|}}}|Former seat}} | data50 = {{{seat1|}}} | rowclass51 = mergedrow | label51 = {{if empty|{{{seat2_type|}}}|Former seat}} | data51 = {{{seat2|}}} | rowclass52 = {{#if:{{{seat|}}}{{{seat1|}}}{{{seat2|}}}|mergedrow|mergedtoprow}} | label52 = {{if empty|{{{parts_type|}}}|Boroughs}} | data52 = {{#if:{{{parts|}}}{{{p1|}}} |{{#ifeq:{{{parts_style|}}}|para |<b>{{{parts|}}}{{#if:{{both|{{{parts|}}}|{{{p1|}}}}}|&#58;&nbsp;|}}</b>{{comma separated entries|{{{p1|}}}|{{{p2|}}}|{{{p3|}}}|{{{p4|}}}|{{{p5|}}}|{{{p6|}}}|{{{p7|}}}|{{{p8|}}}|{{{p9|}}}|{{{p10|}}}|{{{p11|}}}|{{{p12|}}}|{{{p13|}}}|{{{p14|}}}|{{{p15|}}}|{{{p16|}}}|{{{p17|}}}|{{{p18|}}}|{{{p19|}}}|{{{p20|}}}|{{{p21|}}}|{{{p22|}}}|{{{p23|}}}|{{{p24|}}}|{{{p25|}}}|{{{p26|}}}|{{{p27|}}}|{{{p28|}}}|{{{p29|}}}|{{{p30|}}}|{{{p31|}}}|{{{p32|}}}|{{{p33|}}}|{{{p34|}}}|{{{p35|}}}|{{{p36|}}}|{{{p37|}}}|{{{p38|}}}|{{{p39|}}}|{{{p40|}}}|{{{p41|}}}|{{{p42|}}}|{{{p43|}}}|{{{p44|}}}|{{{p45|}}}|{{{p46|}}}|{{{p47|}}}|{{{p48|}}}|{{{p49|}}}|{{{p50|}}}}} |{{#if:{{{p1|}}}|{{Collapsible list|title={{{parts|}}}|expand={{#switch:{{{parts_style|}}}|coll=|list=y|{{#if:{{{p6|}}}||y}}}}|1={{{p1|}}}|2={{{p2|}}}|3={{{p3|}}}|4={{{p4|}}}|5={{{p5|}}}|6={{{p6|}}}|7={{{p7|}}}|8={{{p8|}}}|9={{{p9|}}}|10={{{p10|}}}|11={{{p11|}}}|12={{{p12|}}}|13={{{p13|}}}|14={{{p14|}}}|15={{{p15|}}}|16={{{p16|}}}|17={{{p17|}}}|18={{{p18|}}}|19={{{p19|}}}|20={{{p20|}}}|21={{{p21|}}}|22={{{p22|}}}|23={{{p23|}}}|24={{{p24|}}}|25={{{p25|}}}|26={{{p26|}}}|27={{{p27|}}}|28={{{p28|}}}|29={{{p29|}}}|30={{{p30|}}}|31={{{p31|}}}|32={{{p32|}}}|33={{{p33|}}}|34={{{p34|}}}|35={{{p35|}}}|36={{{p36|}}}|37={{{p37|}}}|38={{{p38|}}}|39={{{p39|}}}|40={{{p40|}}}|41={{{p41|}}}|42={{{p42|}}}|43={{{p43|}}}|44={{{p44|}}}|45={{{p45|}}}|46={{{p46|}}}|47={{{p47|}}}|48={{{p48|}}}|49={{{p49|}}}|50={{{p50|}}}}} |{{{parts}}} }} }} }} <!-- ***Government type and Leader*** --> | rowclass53 = mergedtoprow | header53 = {{#if:{{{government_type|}}}{{{governing_body|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{leader_name2|}}}{{{leader_name3|}}}{{{leader_name4|}}}|Government<div class="ib-settlement-fn">{{{government_footnotes|}}}</div>}} <!-- ***Government*** --> | rowclass54 = mergedrow | label54 = &nbsp;•&nbsp;Type | data54 = {{{government_type|}}} | rowclass55 = mergedrow | label55 = &nbsp;•&nbsp;Body | class55 = agent | data55 = {{{governing_body|}}} | rowclass56 = mergedrow | label56 = &nbsp;•&nbsp;{{{leader_title}}} | data56 = {{#if:{{{leader_title|}}}|{{{leader_name|}}} {{#if:{{{leader_party|}}}|({{Polparty|{{{subdivision_name}}}|{{{leader_party}}}}})}}}} | rowclass57 = mergedrow | label57 = &nbsp;•&nbsp;{{{leader_title1}}} | data57 = {{#if:{{{leader_title1|}}}|{{{leader_name1|}}}}} | rowclass58 = mergedrow | label58 = &nbsp;•&nbsp;{{{leader_title2}}} | data58 = {{#if:{{{leader_title2|}}}|{{{leader_name2|}}}}} | rowclass59 = mergedrow | label59 = &nbsp;•&nbsp;{{{leader_title3}}} | data59 = {{#if:{{{leader_title3|}}}|{{{leader_name3|}}}}} | rowclass60 = mergedrow | label60 = &nbsp;•&nbsp;{{{leader_title4}}} | data60 = {{#if:{{{leader_title4|}}}|{{{leader_name4|}}}}} | rowclass61 = mergedrow | label61 = &nbsp;•&nbsp;{{{leader_title5}}} | data61 = {{#if:{{{leader_title5|}}}|{{{leader_name5|}}}}} | rowclass62 = mergedrow | label62 = {{{government_blank1_title}}} | data62 = {{#if:{{{government_blank1|}}}|{{{government_blank1|}}}}} | rowclass63 = mergedrow | label63 = {{{government_blank2_title}}} | data63 = {{#if:{{{government_blank2|}}}|{{{government_blank2|}}}}} | rowclass64 = mergedrow | label64 = {{{government_blank3_title}}} | data64 = {{#if:{{{government_blank3|}}}|{{{government_blank3|}}}}} | rowclass65 = mergedrow | label65 = {{{government_blank4_title}}} | data65 = {{#if:{{{government_blank4|}}}|{{{government_blank4|}}}}} | rowclass66 = mergedrow | label66 = {{{government_blank5_title}}} | data66 = {{#if:{{{government_blank5|}}}|{{{government_blank5|}}}}} | rowclass67 = mergedrow | label67 = {{{government_blank6_title}}} | data67 = {{#if:{{{government_blank6|}}}|{{{government_blank6|}}}}} <!-- ***Geographical characteristics*** --> <!-- ***Area*** --> | rowclass68 = mergedtoprow | header68 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_rural_sq_mi|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_km2|}}}{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_metro_sq_mi|}}}{{{area_blank1_sq_mi|}}} |{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |<!-- displayed below --> |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> }} }} | rowclass69 = {{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}}|mergedtoprow|mergedrow}} | label69 = <div style="white-space:nowrap;">{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> |&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}|{{#if:{{{settlement_type|}}}{{{type|}}}|{{if empty|{{{settlement_type|}}}|{{{type}}}}}|City}}|Total}}}} }}</div> | data69 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_total_km2|}}} |ha ={{{area_total_ha|}}} |acre ={{{area_total_acre|}}} |sqmi ={{{area_total_sq_mi|}}} |dunam={{{area_total_dunam|}}} |link ={{#switch:{{{dunam_link|}}}||on|total=on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass70 = mergedrow | label70 = &nbsp;•&nbsp;Land | data70 = {{#if:{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_land_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_land_km2|}}} |ha ={{{area_land_ha|}}} |acre ={{{area_land_acre|}}} |sqmi ={{{area_land_sq_mi|}}} |dunam={{{area_land_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|land|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass71 = mergedrow | label71 = &nbsp;•&nbsp;Water | data71 = {{#if:{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_water_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_water_km2|}}} |ha ={{{area_water_ha|}}} |acre ={{{area_water_acre|}}} |sqmi ={{{area_water_sq_mi|}}} |dunam={{{area_water_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|water|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }} {{#if:{{{area_water_percent|}}}| &nbsp;{{{area_water_percent}}}{{#ifeq:%|{{#invoke:string|sub|{{{area_water_percent|}}}|-1}}||%}}}}}} | rowclass72 = mergedrow | label72 = &nbsp;•&nbsp;Urban<div class="ib-settlement-fn">{{{area_urban_footnotes|}}}</div> | data72 = {{#if:{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_urban_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_urban_km2|}}} |ha ={{{area_urban_ha|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|urban|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass73 = mergedrow | label73 = &nbsp;•&nbsp;Rural<div class="ib-settlement-fn">{{{area_rural_footnotes|}}}</div> | data73 = {{#if:{{{area_rural_km2|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_sq_mi|}}}{{{area_rural_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_rural_km2|}}} |ha ={{{area_rural_ha|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|rural|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass74 = mergedrow | label74 =&nbsp;•&nbsp;Metro<div class="ib-settlement-fn">{{{area_metro_footnotes|}}}</div> | data74 = {{#if:{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_metro_sq_mi|}}}{{{area_metro_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_metro_km2|}}} |ha ={{{area_metro_ha|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|metro|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Area rank*** --> | rowclass75 = mergedrow | label75 = &nbsp;•&nbsp;Rank | data75 = {{{area_rank|}}} | rowclass76 = mergedrow | label76 = &nbsp;•&nbsp;{{{area_blank1_title}}} | data76 = {{#if:{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_blank1_sq_mi|}}}{{{area_blank1_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank1_km2|}}} |ha ={{{area_blank1_ha|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank1|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass77 = mergedrow | label77 = &nbsp;•&nbsp;{{{area_blank2_title}}} | data77 = {{#if:{{{area_blank2_km2|}}}{{{area_blank2_ha|}}}{{{area_blank2_acre|}}}{{{area_blank2_sq_mi|}}}{{{area_blank2_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank2_km2|}}} |ha ={{{area_blank2_ha|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank2|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass78 = mergedrow | label78 = &nbsp; | data78 = {{{area_note|}}} <!-- ***Dimensions*** --> | rowclass79 = mergedtoprow | header79 = {{#if:{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|Dimensions<div class="ib-settlement-fn">{{{dimensions_footnotes|}}}</div>}} | rowclass80 = mergedrow | label80 = &nbsp;•&nbsp;Length | data80 = {{#if:{{{length_km|}}}{{{length_mi|}}} | {{infobox_settlement/lengthdisp |km ={{{length_km|}}} |mi ={{{length_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass81 = mergedrow | label81 = &nbsp;•&nbsp;Width | data81 = {{#if:{{{width_km|}}}{{{width_mi|}}} |{{infobox_settlement/lengthdisp |km ={{{width_km|}}} |mi ={{{width_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation*** --> | rowclass82 = mergedtoprow | label82 = {{#if:{{{elevation_link|}}}|[[{{{elevation_link|}}}|Elevation]]|Elevation}}<div class="ib-settlement-fn">{{{elevation_footnotes|}}}{{#if:{{{elevation_point|}}}|&#32;({{{elevation_point}}})}}</div> | data82 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_m|}}} |ft ={{{elevation_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass83 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}}|mergedrow|mergedtoprow}} | label83 = Highest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_max_footnotes|}}}{{#if:{{{elevation_max_point|}}}|&#32;({{{elevation_max_point}}})}}</div> | data83 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_max_m|}}} |ft ={{{elevation_max_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation max rank*** --> | rowclass84 = mergedrow | label84 = &nbsp;•&nbsp;Rank | data84 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}}| {{{elevation_max_rank|}}} }} | rowclass85 = {{#if:{{{elevation_min_rank|}}}|mergedrow|mergedbottomrow}} | label85 = Lowest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_min_footnotes|}}}{{#if:{{{elevation_min_point|}}}|&#32;({{{elevation_min_point}}})}}</div> | data85 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_min_m|}}} |ft ={{{elevation_min_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation min rank*** --> | rowclass86 = mergedrow | label86 = &nbsp;•&nbsp;Rank | data86 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}}|{{{elevation_min_rank|}}}}} <!-- ***Population*** --> | rowclass87 = mergedtoprow | label87 = Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> | data87 = {{fix comma category|{{#ifeq:{{{total_type}}}|&nbsp; | {{#if:{{{population_total|}}} | {{formatnum:{{replace|{{{population_total}}}|,|}}}} }} }} }} | rowclass88 = mergedtoprow | header88 ={{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}}{{{population_urban|}}}{{{population_rural|}}}{{{population_metro|}}}{{{population_blank1|}}}{{{population_blank2|}}}{{{population_est|}}} |Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> }} }} | rowclass89 = mergedrow | label89 = <div style="white-space:nowrap;">&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}|{{#if:{{{settlement_type|}}}{{{type|}}}|{{if empty|{{{settlement_type|}}}|{{{type}}}}}|City}}|Total}}}}</div> | data89 = {{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}} | {{fix comma category|{{formatnum:{{replace|{{{population_total}}}|,|}}}}}} }} }} | rowclass90 = mergedrow | label90 = <div style="white-space:nowrap;">&nbsp;•&nbsp;Estimate&nbsp;{{#if:{{{pop_est_as_of|}}}|<div class="ib-settlement-fn">({{{pop_est_as_of}}}){{{pop_est_footnotes|}}}</div>}}</div> | data90 = {{#if:{{{population_est|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_est}}}|,|}}}}}} }} <!-- ***Population rank*** --> | rowclass91 = mergedrow | label91 =&nbsp;•&nbsp;Rank | data91 = {{{population_rank|}}} | rowclass92 = mergedrow | label92 = &nbsp;•&nbsp;Density | data92 = {{#if:{{{population_density_km2|}}}{{{population_density_sq_mi|}}}{{{population_total|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_km2|}}} |/sqmi={{{population_density_sq_mi|}}} |pop ={{{population_total|}}} |dunam={{if empty|{{{area_land_dunam|}}}|{{{area_total_dunam|}}}}} |ha ={{if empty|{{{area_land_ha|}}}|{{{area_total_ha|}}}}} |km2 ={{if empty|{{{area_land_km2|}}}|{{{area_total_km2|}}}}} |acre ={{if empty|{{{area_land_acre|}}}|{{{area_total_acre|}}}}} |sqmi ={{if empty|{{{area_land_sq_mi|}}}|{{{area_total_sq_mi|}}}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Population density rank*** --> | rowclass93 = mergedrow | label93 = &nbsp;&nbsp;•&nbsp;Rank | data93 = {{{population_density_rank|}}} | rowclass94 = mergedrow | label94 = &nbsp;•&nbsp;[[Urban area|Urban]]<div class="ib-settlement-fn">{{{population_urban_footnotes|}}}</div> | data94 = {{#if:{{{population_urban|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_urban}}}|,|}}}}}} }} | rowclass95 = mergedrow | label95 = &nbsp;•&nbsp;Urban&nbsp;density | data95 = {{#if:{{{population_density_urban_km2|}}}{{{population_density_urban_sq_mi|}}}{{{population_urban|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_urban_km2|}}} |/sqmi={{{population_density_urban_sq_mi|}}} |pop ={{{population_urban|}}} |ha ={{{area_urban_ha|}}} |km2 ={{{area_urban_km2|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass96 = mergedrow | label96 = &nbsp;•&nbsp;[[Rural area|Rural]]<div class="ib-settlement-fn">{{{population_rural_footnotes|}}}</div> | data96 = {{#if:{{{population_rural|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_rural}}}|,|}}}}}}}} | rowclass97 = mergedrow | label97 = &nbsp;•&nbsp;Rural&nbsp;density | data97 = {{#if:{{{population_density_rural_km2|}}}{{{population_density_rural_sq_mi|}}}{{{population_rural|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_rural_km2|}}} |/sqmi={{{population_density_rural_sq_mi|}}} |pop ={{{population_rural|}}} |ha ={{{area_rural_ha|}}} |km2 ={{{area_rural_km2|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass98 = mergedrow | label98 =&nbsp;•&nbsp;[[Metropolitan area|Metro]]<div class="ib-settlement-fn">{{{population_metro_footnotes|}}}</div> | data98 = {{#if:{{{population_metro|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_metro}}}|,|}}}}}} }} | rowclass99 = mergedrow | label99 = &nbsp;•&nbsp;Metro&nbsp;density | data99 = {{#if:{{{population_density_metro_km2|}}}{{{population_density_metro_sq_mi|}}}{{{population_metro|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_metro_km2|}}} |/sqmi={{{population_density_metro_sq_mi|}}} |pop ={{{population_metro|}}} |ha ={{{area_metro_ha|}}} |km2 ={{{area_metro_km2|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass100 = mergedrow | label100 = &nbsp;•&nbsp;{{{population_blank1_title|}}}<div class="ib-settlement-fn">{{{population_blank1_footnotes|}}}</div> | data100 = {{#if:{{{population_blank1|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank1}}}|,|}}}}}}}} | rowclass101 = mergedrow | label101 = &nbsp;•&nbsp;{{#if:{{{population_blank1_title|}}}|{{{population_blank1_title}}} density|Density}} | data101 = {{#if:{{{population_density_blank1_km2|}}}{{{population_density_blank1_sq_mi|}}}{{{population_blank1|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank1_km2|}}} |/sqmi={{{population_density_blank1_sq_mi|}}} |pop ={{{population_blank1|}}} |ha ={{{area_blank1_ha|}}} |km2 ={{{area_blank1_km2|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass102 = mergedrow | label102 = &nbsp;•&nbsp;{{{population_blank2_title|}}}<div class="ib-settlement-fn">{{{population_blank2_footnotes|}}}</div> | data102 = {{#if:{{{population_blank2|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank2}}}|,|}}}}}}}} | rowclass103 = mergedrow | label103 = &nbsp;•&nbsp;{{#if:{{{population_blank2_title|}}}|{{{population_blank2_title}}} density|Density}} | data103 = {{#if:{{{population_density_blank2_km2|}}}{{{population_density_blank2_sq_mi|}}}{{{population_blank2|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank2_km2|}}} |/sqmi={{{population_density_blank2_sq_mi|}}} |pop ={{{population_blank2|}}} |ha ={{{area_blank2_ha|}}} |km2 ={{{area_blank2_km2|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass104 = mergedrow | label104 = &nbsp; | data104 = {{{population_note|}}} | rowclass105 = mergedtoprow | label105 = {{Pluralize from text|{{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}{{force plural}}}}|<!-- -->link=Demonym|singular=Demonym|likely=Demonym(s)|plural=Demonyms}} | data105 = {{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}}}{{Main other|{{Pluralize from text|{{{population_demonym|}}}|likely=[[Category:Pages using infobox settlement with possible demonym list]]}}}} <!-- ***Demographics 1*** --> | rowclass106 = mergedtoprow | header106 = {{#if:{{{demographics_type1|}}} |{{{demographics_type1}}}<div class="ib-settlement-fn">{{{demographics1_footnotes|}}}</div>}} | rowclass107 = mergedrow | label107 = &nbsp;•&nbsp;{{{demographics1_title1}}} | data107 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title1|}}}|{{{demographics1_info1|}}}}}}} | rowclass108 = mergedrow | label108 = &nbsp;•&nbsp;{{{demographics1_title2}}} | data108 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title2|}}}|{{{demographics1_info2|}}}}}}} | rowclass109 = mergedrow | label109 = &nbsp;•&nbsp;{{{demographics1_title3}}} | data109 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title3|}}}|{{{demographics1_info3|}}}}}}} | rowclass110 = mergedrow | label110 = &nbsp;•&nbsp;{{{demographics1_title4}}} | data110 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title4|}}}|{{{demographics1_info4|}}}}}}} | rowclass111 = mergedrow | label111 = &nbsp;•&nbsp;{{{demographics1_title5}}} | data111 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title5|}}}|{{{demographics1_info5|}}}}}}} | rowclass112 = mergedrow | label112 = &nbsp;•&nbsp;{{{demographics1_title6}}} | data112 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title6|}}}|{{{demographics1_info6|}}}}}}} | rowclass113 = mergedrow | label113 = &nbsp;•&nbsp;{{{demographics1_title7}}} | data113 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title7|}}}|{{{demographics1_info7|}}}}}}} | rowclass114 = mergedrow | label114 = &nbsp;•&nbsp;{{{demographics1_title8}}} | data114 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title8|}}}|{{{demographics1_info8|}}}}}}} | rowclass115 = mergedrow | label115 = &nbsp;•&nbsp;{{{demographics1_title9}}} | data115 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title9|}}}|{{{demographics1_info9|}}}}}}} | rowclass116 = mergedrow | label116 = &nbsp;•&nbsp;{{{demographics1_title10}}} | data116 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title10|}}}|{{{demographics1_info10|}}}}}}} <!-- ***Demographics 2*** --> | rowclass117 = mergedtoprow | header117 = {{#if:{{{demographics_type2|}}} |{{{demographics_type2}}}<div class="ib-settlement-fn">{{{demographics2_footnotes|}}}</div>}} | rowclass118 = mergedrow | label118 = &nbsp;•&nbsp;{{{demographics2_title1}}} | data118 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title1|}}}|{{{demographics2_info1|}}}}}}} | rowclass119 = mergedrow | label119 = &nbsp;•&nbsp;{{{demographics2_title2}}} | data119 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title2|}}}|{{{demographics2_info2|}}}}}}} | rowclass120 = mergedrow | label120 = &nbsp;•&nbsp;{{{demographics2_title3}}} | data120 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title3|}}}|{{{demographics2_info3|}}}}}}} | rowclass121 = mergedrow | label121 = &nbsp;•&nbsp;{{{demographics2_title4}}} | data121 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title4|}}}|{{{demographics2_info4|}}}}}}} | rowclass122 = mergedrow | label122 = &nbsp;•&nbsp;{{{demographics2_title5}}} | data122 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title5|}}}|{{{demographics2_info5|}}}}}}} | rowclass123 = mergedrow | label123 = &nbsp;•&nbsp;{{{demographics2_title6}}} | data123 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title6|}}}|{{{demographics2_info6|}}}}}}} | rowclass124 = mergedrow | label124 = &nbsp;•&nbsp;{{{demographics2_title7}}} | data124 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title7|}}}|{{{demographics2_info7|}}}}}}} | rowclass125 = mergedrow | label125 = &nbsp;•&nbsp;{{{demographics2_title8}}} | data125 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title8|}}}|{{{demographics2_info8|}}}}}}} | rowclass126 = mergedrow | label126 = &nbsp;•&nbsp;{{{demographics2_title9}}} | data126 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title9|}}}|{{{demographics2_info9|}}}}}}} | rowclass127 = mergedrow | label127 = &nbsp;•&nbsp;{{{demographics2_title10}}} | data127 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title10|}}}|{{{demographics2_info10|}}}}}}} <!-- ***Time Zones*** --> | rowclass128 = mergedtoprow | header128 = {{#if:{{{timezone1_location|}}}|{{#if:{{{timezone2|}}}|[[{{if empty|{{{timezone_link|}}}|Time zone}}|Time zone]]s|[[{{if empty|{{{timezone_link|}}}|Time zone}}|Time zone]]}}|}} | rowclass129 = {{#if:{{{timezone1_location|}}}|mergedrow|mergedtoprow}} | label129 = {{#if:{{{timezone1_location|}}}|{{{timezone1_location}}}|{{#if:{{{timezone2_location|}}}|{{{timezone2_location}}}|{{#if:{{{timezone2|}}}|[[{{if empty|{{{timezone_link|}}}|Time zone}}|Time zone]]s|[[{{if empty|{{{timezone_link|}}}|Time zone}}|Time zone]]}}}}}} | data129 = {{#if:{{{utc_offset1|}}}{{{utc_offset|}}} |[[UTC{{if empty|{{{utc_offset1|}}}|{{{utc_offset}}}}}]] {{#if:{{{timezone1|}}}{{{timezone|}}}|({{if empty|{{{timezone1|}}}|{{{timezone}}}}})}} |{{if empty|{{{timezone1|}}}|{{{timezone|}}}}} }} | rowclass130 = mergedrow | label130 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data130 = {{#if:{{{utc_offset1_DST|}}}{{{utc_offset_DST|}}} |[[UTC{{if empty|{{{utc_offset1_DST|}}}|{{{utc_offset_DST|}}}}}]] {{#if:{{{timezone1_DST|}}}{{{timezone_DST|}}}|({{if empty|{{{timezone1_DST|}}}|{{{timezone_DST}}}}})}} |{{if empty|{{{timezone1_DST|}}}|{{{timezone_DST|}}}}} }} | rowclass131 = mergedrow | label131 = {{if empty|{{{timezone2_location|}}}|<nowiki />}} | data131 = {{#if:{{{timezone1|}}}{{{timezone|}}}{{{utc_offset1|}}}{{{utc_offset|}}} |{{#if:{{{utc_offset2|}}} |[[UTC{{{utc_offset2|}}}]] {{#if:{{{timezone2|}}}|({{{timezone2}}})}} |{{{timezone2|}}} }} }} | rowclass132 = mergedrow | label132 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data132 = {{#if:{{{utc_offset2_DST|}}}|[[UTC{{{utc_offset2_DST|}}}]] {{#if:{{{timezone2_DST|}}}|({{{timezone2_DST|}}})}} |{{{timezone2_DST|}}} }} | rowclass133 = mergedrow | label133 = {{if empty|{{{timezone3_location|}}}|<nowiki />}} | data133 = {{#if:{{{timezone1|}}}{{{timezone|}}}{{{utc_offset1|}}}{{{utc_offset|}}} |{{#if:{{{utc_offset3|}}} |[[UTC{{{utc_offset3|}}}]] {{#if:{{{timezone3|}}}|({{{timezone3}}})}} |{{{timezone3|}}} }} }} | rowclass134 = mergedrow | label134 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data134 = {{#if:{{{utc_offset3_DST|}}}|[[UTC{{{utc_offset3_DST|}}}]] {{#if:{{{timezone3_DST|}}}|({{{timezone3_DST|}}})}} |{{{timezone3_DST|}}} }} | rowclass135 = mergedrow | label135 = {{if empty|{{{timezone4_location|}}}|<nowiki />}} | data135 = {{#if:{{{timezone1|}}}{{{timezone|}}}{{{utc_offset1|}}}{{{utc_offset|}}} |{{#if:{{{utc_offset4|}}} |[[UTC{{{utc_offset4|}}}]] {{#if:{{{timezone4|}}}|({{{timezone4}}})}} |{{{timezone4|}}} }} }} | rowclass136 = mergedrow | label136 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data136 = {{#if:{{{utc_offset4_DST|}}}|[[UTC{{{utc_offset4_DST|}}}]] {{#if:{{{timezone4_DST|}}}|({{{timezone4_DST|}}})}} |{{{timezone4_DST|}}} }} | rowclass137 = mergedrow | label137 = {{if empty|{{{timezone5_location|}}}|<nowiki />}} | data137 = {{#if:{{{timezone1|}}}{{{timezone|}}}{{{utc_offset1|}}}{{{utc_offset|}}} |{{#if:{{{utc_offset5|}}} |[[UTC{{{utc_offset5|}}}]] {{#if:{{{timezone5|}}}|({{{timezone5}}})}} |{{{timezone5|}}} }} }} | rowclass138 = mergedrow | label138 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data138 = {{#if:{{{utc_offset5_DST|}}}|[[UTC{{{utc_offset5_DST|}}}]] {{#if:{{{timezone5_DST|}}}|({{{timezone5_DST|}}})}} |{{{timezone5_DST|}}} }} <!-- ***Postal Code(s)*** --> | rowclass139 = mergedtoprow | label139 = {{if empty|{{{postal_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class139 = adr | data139 = {{#if:{{{postal_code|}}}|<div class="postal-code">{{{postal_code}}}</div>}} | rowclass140 = {{#if:{{{postal_code|}}}|mergedbottomrow|mergedtoprow}} | label140 = {{if empty|{{{postal2_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal2_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class140 = adr | data140 = {{#if:{{{postal2_code|}}}|<div class="postal-code">{{{postal2_code}}}</div>}} <!-- ***Area Code(s)*** --> | rowclass141 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}|mergedrow|mergedtoprow}} | label141 = {{if empty|{{{area_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{if empty|{{{area_code|}}}|{{{area_codes|}}}{{force plural}}}}|<!-- -->link=Telephone numbering plan|singular=Area code|likely=Area code(s)|plural=Area codes}}}} | data141 = {{if empty|{{{area_code|}}}|{{{area_codes|}}}}}{{#if:{{{area_code_type|}}}||{{Main other|{{Pluralize from text|any_comma=1|parse_links=1|{{{area_code|}}}|||[[Category:Pages using infobox settlement with possible area code list]]}}}}}} <!-- Geocode--> | rowclass142 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}|mergedrow|mergedtoprow}} | label142 = [[Geocode]] | class142 = nickname | data142 = {{{geocode|}}} <!-- ISO Code--> | rowclass143 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}|mergedrow|mergedtoprow}} | label143 = [[ISO 3166|ISO 3166 code]] | class143 = nickname | data143 = {{{iso_code|}}} <!-- Vehicle registration plate--> | rowclass144 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}|mergedrow|mergedtoprow}} | label144 = {{if empty|{{{registration_plate_type|}}}|[[Vehicle registration plate|Vehicle registration]]}} | data144 = {{{registration_plate|}}} <!-- Other codes --> | rowclass145 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}|mergedrow|mergedtoprow}} | label145 = {{{code1_name|}}} | class145 = nickname | data145 = {{#if:{{{code1_name|}}}|{{{code1_info|}}}}} | rowclass146 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}{{{code1_name|}}}|mergedrow|mergedtoprow}} | label146 = {{{code2_name|}}} | class146 = nickname | data146 = {{#if:{{{code2_name|}}}|{{{code2_info|}}}}} <!-- ***Blank Fields (two sections)*** --> | rowclass147 = mergedtoprow | label147 = {{if empty|{{{blank_name_sec1|}}}|{{{blank_name|}}}}} | data147 = {{#if:{{{blank_name_sec1|}}}{{{blank_name|}}}|{{if empty|{{{blank_info_sec1|}}}|{{{blank_info|}}}}}}} | rowclass148 = mergedrow | label148 = {{if empty|{{{blank1_name_sec1|}}}|{{{blank1_name|}}}}} | data148 = {{#if:{{{blank1_name_sec1|}}}{{{blank1_name|}}}|{{if empty|{{{blank1_info_sec1|}}}|{{{blank1_info|}}}}}}} | rowclass149 = mergedrow | label149 = {{if empty|{{{blank2_name_sec1|}}}|{{{blank2_name|}}}}} | data149 = {{#if:{{{blank2_name_sec1|}}}{{{blank2_name|}}}|{{if empty|{{{blank2_info_sec1|}}}|{{{blank2_info|}}}}}}} | rowclass150 = mergedrow | label150 = {{if empty|{{{blank3_name_sec1|}}}|{{{blank3_name|}}}}} | data150 = {{#if:{{{blank3_name_sec1|}}}{{{blank3_name|}}}|{{if empty|{{{blank3_info_sec1|}}}|{{{blank3_info|}}}}}}} | rowclass151 = mergedrow | label151 = {{if empty|{{{blank4_name_sec1|}}}|{{{blank4_name|}}}}} | data151 = {{#if:{{{blank4_name_sec1|}}}{{{blank4_name|}}}|{{if empty|{{{blank4_info_sec1|}}}|{{{blank4_info|}}}}}}} | rowclass152 = mergedrow | label152 = {{if empty|{{{blank5_name_sec1|}}}|{{{blank5_name|}}}}} | data152 = {{#if:{{{blank5_name_sec1|}}}{{{blank5_name|}}}|{{if empty|{{{blank5_info_sec1|}}}|{{{blank5_info|}}}}}}} | rowclass153 = mergedrow | label153 = {{if empty|{{{blank6_name_sec1|}}}|{{{blank6_name|}}}}} | data153 = {{#if:{{{blank6_name_sec1|}}}{{{blank6_name|}}}|{{if empty|{{{blank6_info_sec1|}}}|{{{blank6_info|}}}}}}} | rowclass154 = mergedrow | label154 = {{if empty|{{{blank7_name_sec1|}}}|{{{blank7_name|}}}}} | data154 = {{#if:{{{blank7_name_sec1|}}}{{{blank7_name|}}}|{{if empty|{{{blank7_info_sec1|}}}|{{{blank7_info|}}}}}}} | rowclass155 = mergedtoprow | label155 = {{{blank_name_sec2}}} | data155 = {{#if:{{{blank_name_sec2|}}}|{{{blank_info_sec2|}}}}} | rowclass156 = mergedrow | label156 = {{{blank1_name_sec2}}} | data156 = {{#if:{{{blank1_name_sec2|}}}|{{{blank1_info_sec2|}}}}} | rowclass157 = mergedrow | label157 = {{{blank2_name_sec2}}} | data157 = {{#if:{{{blank2_name_sec2|}}}|{{{blank2_info_sec2|}}}}} | rowclass158 = mergedrow | label158 = {{{blank3_name_sec2}}} | data158 = {{#if:{{{blank3_name_sec2|}}}|{{{blank3_info_sec2|}}}}} | rowclass159 = mergedrow | label159 = {{{blank4_name_sec2}}} | data159 = {{#if:{{{blank4_name_sec2|}}}|{{{blank4_info_sec2|}}}}} | rowclass160 = mergedrow | label160 = {{{blank5_name_sec2}}} | data160 = {{#if:{{{blank5_name_sec2|}}}|{{{blank5_info_sec2|}}}}} | rowclass161 = mergedrow | label161 = {{{blank6_name_sec2}}} | data161 = {{#if:{{{blank6_name_sec2|}}}|{{{blank6_info_sec2|}}}}} | rowclass162 = mergedrow | label162 = {{{blank7_name_sec2}}} | data162 = {{#if:{{{blank7_name_sec2|}}}|{{{blank7_info_sec2|}}}}} <!-- ***Website*** --> | rowclass163 = mergedtoprow | label163 = Website | data163 = {{#if:{{{website|}}}|{{{website}}}}} | class164 = maptable | data164 = {{#if:{{{module|}}}|{{{module}}}}} <!-- ***Footnotes*** --> | belowrowclass = mergedtoprow | below = {{{footnotes|}}} }}<!-- Check for unknowns -->{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview = Page using [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y | alt | anthem | anthem_link | area_blank1_acre | area_blank1_dunam | area_blank1_ha | area_blank1_km2 | area_blank1_sq_mi | area_blank1_title | area_blank2_acre | area_blank2_dunam | area_blank2_ha | area_blank2_km2 | area_blank2_sq_mi | area_blank2_title | area_code | area_code_type | area_codes | area_footnotes | area_land_acre | area_land_dunam | area_land_ha | area_land_km2 | area_land_sq_mi | area_metro_acre | area_metro_dunam | area_metro_footnotes | area_metro_ha | area_metro_km2 | area_metro_sq_mi | area_note | area_rank | area_rural_acre | area_rural_dunam | area_rural_footnotes | area_rural_ha | area_rural_km2 | area_rural_sq_mi | area_total_acre | area_total_dunam | area_total_ha | area_total_km2 | area_total_sq_mi | area_urban_acre | area_urban_dunam | area_urban_footnotes | area_urban_ha | area_urban_km2 | area_urban_sq_mi | area_water_acre | area_water_dunam | area_water_ha | area_water_km2 | area_water_percent | area_water_sq_mi | blank_emblem_alt | blank_emblem_link | blank_emblem_size | blank_emblem_type | blank_emblem_upright | blank_info | blank_info_sec1 | blank_info_sec2 | blank_name | blank_name_sec1 | blank_name_sec2 | blank1_info | blank1_info_sec1 | blank1_info_sec2 | blank1_name | blank1_name_sec1 | blank1_name_sec2 | blank2_info | blank2_info_sec1 | blank2_info_sec2 | blank2_name | blank2_name_sec1 | blank2_name_sec2 | blank3_info | blank3_info_sec1 | blank3_info_sec2 | blank3_name | blank3_name_sec1 | blank3_name_sec2 | blank4_info | blank4_info_sec1 | blank4_info_sec2 | blank4_name | blank4_name_sec1 | blank4_name_sec2 | blank5_info | blank5_info_sec1 | blank5_info_sec2 | blank5_name | blank5_name_sec1 | blank5_name_sec2 | blank6_info | blank6_info_sec1 | blank6_info_sec2 | blank6_name | blank6_name_sec1 | blank6_name_sec2 | blank7_info | blank7_info_sec1 | blank7_info_sec2 | blank7_name | blank7_name_sec1 | blank7_name_sec2 | caption | code1_info | code1_name | code2_info | code2_name | coor_pinpoint | coor_type | coordinates | coordinates_footnotes | demographics_type1 | demographics_type2 | demographics1_footnotes | demographics1_info1 | demographics1_info10 | demographics1_info2 | demographics1_info3 | demographics1_info4 | demographics1_info5 | demographics1_info6 | demographics1_info7 | demographics1_info8 | demographics1_info9 | demographics1_title1 | demographics1_title10 | demographics1_title2 | demographics1_title3 | demographics1_title4 | demographics1_title5 | demographics1_title6 | demographics1_title7 | demographics1_title8 | demographics1_title9 | demographics2_footnotes | demographics2_info1 | demographics2_info10 | demographics2_info2 | demographics2_info3 | demographics2_info4 | demographics2_info5 | demographics2_info6 | demographics2_info7 | demographics2_info8 | demographics2_info9 | demographics2_title1 | demographics2_title10 | demographics2_title2 | demographics2_title3 | demographics2_title4 | demographics2_title5 | demographics2_title6 | demographics2_title7 | demographics2_title8 | demographics2_title9 | dimensions_footnotes | dunam_link | elevation_footnotes | elevation_ft | elevation_link | elevation_m | elevation_max_footnotes | elevation_max_ft | elevation_max_m | elevation_max_point | elevation_max_rank | elevation_min_footnotes | elevation_min_ft | elevation_min_m | elevation_min_point | elevation_min_rank | elevation_point | embed | established_date | established_date1 | established_date2 | established_date3 | established_date4 | established_date5 | established_date6 | established_date7 | established_title | established_title1 | established_title2 | established_title3 | established_title4 | established_title5 | established_title6 | established_title7 | etymology | extinct_date | extinct_title | flag_alt | flag_border | flag_link | flag_size | footnotes | founder | geocode | governing_body | government_footnotes | government_type | government_blank1_title | government_blank1 | government_blank2_title | government_blank2 | government_blank2_title | government_blank3 | government_blank3_title | government_blank3 | government_blank4_title | government_blank4 | government_blank5_title | government_blank5 | government_blank6_title | government_blank6 | grid_name | grid_position | image_alt | image_blank_emblem | image_caption | image_flag | image_map | image_map1 | image_seal | image_shield | image_size | image_skyline | imagesize | image_upright | iso_code | leader_name | leader_name1 | leader_name2 | leader_name3 | leader_name4 | leader_name5 | leader_party | leader_title | leader_title1 | leader_title2 | leader_title3 | leader_title4 | leader_title5 | length_km | length_mi | map_alt | map_alt1 | map_caption | map_caption1 | mapsize | mapsize1 | module | motto | motto_link | mottoes | name | named_for | native_name | native_name_lang | nickname | nickname_link | nicknames | official_name | other_name | p1 | p10 | p11 | p12 | p13 | p14 | p15 | p16 | p17 | p18 | p19 | p2 | p20 | p21 | p22 | p23 | p24 | p25 | p26 | p27 | p28 | p29 | p3 | p30 | p31 | p32 | p33 | p34 | p35 | p36 | p37 | p38 | p39 | p4 | p40 | p41 | p42 | p43 | p44 | p45 | p46 | p47 | p48 | p49 | p5 | p50 | p6 | p7 | p8 | p9 | parts | parts_style | parts_type | pop_est_as_of | pop_est_footnotes | population_as_of | population_blank1 | population_blank1_footnotes | population_blank1_title | population_blank2 | population_blank2_footnotes | population_blank2_title | population_demonym | population_demonyms | population_density_blank1_km2 | population_density_blank1_sq_mi | population_density_blank2_km2 | population_density_blank2_sq_mi | population_density_km2 | population_density_metro_km2 | population_density_metro_sq_mi | population_density_rank | population_density_rural_km2 | population_density_rural_sq_mi | population_density_sq_mi | population_density_urban_km2 | population_density_urban_sq_mi | population_est | population_footnotes | population_metro | population_metro_footnotes | population_note | population_rank | population_rural | population_rural_footnotes | population_total | population_urban | population_urban_footnotes | postal_code | postal_code_type | postal2_code | postal2_code_type | pushpin_image | pushpin_label | pushpin_label_position | pushpin_map | pushpin_map_alt | pushpin_map_caption | pushpin_map_caption_notsmall | pushpin_map_narrow | pushpin_mapsize | pushpin_outside | pushpin_overlay | pushpin_relief | registration_plate | registration_plate_type | seal_alt | seal_class | seal_link | seal_size | seal_type | seat | seat_type | seat1 | seat1_type | seat2 | seat2_type | settlement_type | shield_alt | shield_link | shield_size | short_description <!--used by Module:Settlement short description-->| subdivision_name | subdivision_name1 | subdivision_name2 | subdivision_name3 | subdivision_name4 | subdivision_name5 | subdivision_name6 | subdivision_type | subdivision_type1 | subdivision_type2 | subdivision_type3 | subdivision_type4 | subdivision_type5 | subdivision_type6 | template_name | timezone | timezone_DST | timezone_link | timezone1 | timezone1_DST | timezone1_location | timezone2 | timezone2_DST | timezone2_location | timezone3 | timezone3_DST | timezone3_location | timezone4 | timezone4_DST | timezone4_location | timezone5 | timezone5_DST | timezone5_location | total_type | translit_lang1 | translit_lang1_info | translit_lang1_info1 | translit_lang1_info2 | translit_lang1_info3 | translit_lang1_info4 | translit_lang1_info5 | translit_lang1_info6 | translit_lang1_type | translit_lang1_type1 | translit_lang1_type2 | translit_lang1_type3 | translit_lang1_type4 | translit_lang1_type5 | translit_lang1_type6 | translit_lang2 | translit_lang2_info | translit_lang2_info1 | translit_lang2_info2 | translit_lang2_info3 | translit_lang2_info4 | translit_lang2_info5 | translit_lang2_info6 | translit_lang2_type | translit_lang2_type1 | translit_lang2_type2 | translit_lang2_type3 | translit_lang2_type4 | translit_lang2_type5 | translit_lang2_type6 | type | unit_pref | utc_offset | utc_offset_DST | utc_offset1 | utc_offset1_DST | utc_offset2 | utc_offset2_DST | utc_offset3 | utc_offset3_DST | utc_offset4 | utc_offset4_DST | utc_offset5 | utc_offset5_DST | website | width_km | width_mi }}<!-- -->{{#invoke:Check for conflicting parameters|check | template = [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] | cat = {{main other|Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with conflicting parameters}} | settlement_type; type | image_size; imagesize | image_alt; alt | image_caption; caption | nickname; nicknames | motto; mottoes | coor_pinpoint; coor_type | population_demonym; population_demonyms | utc_offset1; utc_offset | timezone1; timezone | utc_offset1_DST; utc_offset_DST | timezone1_DST; timezone_DST | area_code; area_codes | blank_name_sec1; blank_name | blank_info_sec1; blank_info | blank1_name_sec1; blank1_name | blank1_info_sec1; blank1_info | blank2_name_sec1; blank2_name | blank2_info_sec1; blank2_info | blank3_name_sec1; blank3_name | blank3_info_sec1; blank3_info | blank4_name_sec1; blank4_name | blank4_info_sec1; blank4_info | blank5_name_sec1; blank5_name | blank5_info_sec1; blank5_info | blank6_name_sec1; blank6_name | blank6_info_sec1; blank6_info | blank7_name_sec1; blank7_name | blank7_info_sec1; blank7_info }}<!-- Wikidata -->{{#if:{{{coordinates_wikidata|}}}{{{wikidata|}}} |[[Category:Pages using infobox settlement with the wikidata parameter]] }}{{main other|<!-- Missing country -->{{#if:{{{subdivision_name|}}}||[[Category:Pages using infobox settlement with missing country]]}}<!-- No map -->{{#if:{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}||[[Category:Pages using infobox settlement with no map]]}}<!-- Image_map1 without image_map -->{{#if:{{{image_map1|}}}|{{#if:{{{image_map|}}}||[[Category:Pages using infobox settlement with image_map1 but not image_map]]}}}}<!-- No coordinates -->{{#if:{{{coordinates|}}}||[[Category:Pages using infobox settlement with no coordinates]]}}<!-- -->{{#if:{{{embed|}}}|[[Category:Pages using infobox settlement with embed]]}} }}<!-- Gathering information on over-use of maps -->{{#ifexpr:{{#invoke:ParameterCount|main|mapframe|image_map|image_map1|pushpin_map}} >2 |{{main other| [[Category:Pages using infobox settlement with potentially too many maps]]}}}}</includeonly><noinclude> {{documentation}} <!--Please add this template's categories to the /doc subpage, not here - thanks!--> </noinclude> pkqsubwyzeehptxrn9z7lec6zup5fve Template:Short description 10 7207 72745 2026-02-04T19:08:44Z en>Fayenatic london 0 edit requested on talk page by [[user:GhostInTheMachine]] 72745 wikitext text/x-wiki {{#ifeq:{{lc:{{{1|}}}}}|none|{{SHORTDESC:|{{{2|}}}}}<nowiki/><!--Prevents whitespace issues when used with adjacent newlines-->|<div class="shortdescription nomobile noexcerpt noprint searchaux" style="display:none">{{{1|}}}{{SHORTDESC:{{{1|}}}|{{{2|}}}}}</div>}}<includeonly>{{#ifeq:{{{pagetype}}}|Disambiguation pages||{{#ifeq:{{pagetype |defaultns = all |user=exclude}}|exclude||{{#ifeq:{{#switch: {{NAMESPACENUMBER}} | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 100 | 101 | 118 | 119 | 828 | 829 | = exclude|#default=}}|exclude||[[Category:{{{pagetype|{{pagetype |defaultns = extended |plural=y}}}}} with short description]]}}}}}}</includeonly><!-- Start tracking -->{{#invoke:Check for unknown parameters|check|unknown={{Main other|[[Category:Pages using short description with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Short description]] with unknown parameter "_VALUE_"|ignoreblank=y| 1 | 2 | pagetype | bot |plural }}<!-- -->{{#ifexpr: {{#invoke:String|len|{{{1|}}}}}>100 | [[Category:{{{pagetype|{{pagetype |defaultns = extended |plural=y}}}}} with long short description]]}}<!-- --><includeonly>{{#if:{{{1|}}}||[[Category:Pages with empty short description]]}}</includeonly><!-- -->{{Short description/lowercasecheck|{{{1|}}}}}<!-- -->{{Main other |{{SDcat |sd={{{1|}}} }} }}<noinclude> {{Documentation}} </noinclude> kneamzwadjt95irj9gnv7bocpjuw4uz 72746 70394 2026-06-30T21:16:25Z Robertsky 10424 1 versaun husi [[:en:Template:Short_description]] 70394 wikitext text/x-wiki {{#ifeq:{{lc:{{{1|}}}}}|none|{{SHORTDESC:|{{{2|}}}}}<nowiki/><!--Prevents whitespace issues when used with adjacent newlines-->|<div class="shortdescription nomobile noexcerpt noprint searchaux" style="display:none">{{{1|}}}{{SHORTDESC:{{{1|}}}|{{{2|}}}}}</div>}}<includeonly>{{#ifeq:{{{pagetype}}}|Disambiguation pages||{{#ifeq:{{pagetype |defaultns = all |user=exclude}}|exclude||{{#ifeq:{{#switch: {{NAMESPACENUMBER}} | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 100 | 101 | 118 | 119 | 828 | 829 | = exclude|#default=}}|exclude||[[Category:{{{pagetype|{{pagetype |defaultns = extended |plural=y}}}}} with short description]]}}}}}}</includeonly><!-- Start tracking -->{{#invoke:Check for unknown parameters|check|unknown={{Main other|[[Category:Pages using short description with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Short description]] with unknown parameter "_VALUE_"|ignoreblank=y| 1 | 2 | pagetype | bot |plural }}<!-- -->{{#ifexpr: {{#invoke:String|len|{{{1|}}}}}>100 | [[Category:{{{pagetype|{{pagetype |defaultns = extended |plural=y}}}}} with long short description]]}}<!-- --><includeonly>{{#if:{{{1|}}}||[[Category:Pages with empty short description]]}}</includeonly><!-- -->{{Short description/lowercasecheck|{{{1|}}}}}<!-- -->{{Main other |{{SDcat |sd={{{1|}}} }} }}<noinclude> {{Documentation}} </noinclude> kneamzwadjt95irj9gnv7bocpjuw4uz Template:Short description/lowercasecheck 10 7208 72747 2022-02-12T16:35:05Z en>ToBeFree 0 Changed protection settings for "[[Template:Short description/lowercasecheck]]": 4 million transclusions, through [[Template:Short description]] ([[WP:HRT]]) ([Edit=Require administrator access] (indefinite) [Move=Require administrator access] (indefinite)) 72747 wikitext text/x-wiki {{#ifeq:<!--test first character for lower-case letter-->{{#invoke:string|find|1={{{1|}}}|2=^%l|plain=false}}|1 |<!-- first character is a lower case letter; test against whitelist -->{{#switch: {{First word|{{{1|}}}}}<!--begin whitelist--> |c. <!--for circa--> |gTLD |iMac |iOS |iOS, |iPad |iPhone |iTunes |macOS |none |pH |pH-dependent=<!-- end whitelist; short description starts with an allowed lower-case string; whitelist matched; do nothing --> |#default=<!-- apply category to track lower-case short descriptions -->{{main other|[[Category:Pages with lower-case short description|{{trim|{{{1|}}}}}]]}}{{Testcases other|{{red|CATEGORY APPLIED}}}}<!-- end whitelist test -->}} |<!-- short description does not start with lower-case letter; do nothing; end lower-case test --> }}<noinclude> {{documentation}} </noinclude> i1e9w8d3rdcgxtws9nvbvfopq7y0nnk 72748 70395 2026-06-30T21:16:25Z Robertsky 10424 1 versaun husi [[:en:Template:Short_description/lowercasecheck]] 70395 wikitext text/x-wiki {{#ifeq:<!--test first character for lower-case letter-->{{#invoke:string|find|1={{{1|}}}|2=^%l|plain=false}}|1 |<!-- first character is a lower case letter; test against whitelist -->{{#switch: {{First word|{{{1|}}}}}<!--begin whitelist--> |c. <!--for circa--> |gTLD |iMac |iOS |iOS, |iPad |iPhone |iTunes |macOS |none |pH |pH-dependent=<!-- end whitelist; short description starts with an allowed lower-case string; whitelist matched; do nothing --> |#default=<!-- apply category to track lower-case short descriptions -->{{main other|[[Category:Pages with lower-case short description|{{trim|{{{1|}}}}}]]}}{{Testcases other|{{red|CATEGORY APPLIED}}}}<!-- end whitelist test -->}} |<!-- short description does not start with lower-case letter; do nothing; end lower-case test --> }}<noinclude> {{documentation}} </noinclude> i1e9w8d3rdcgxtws9nvbvfopq7y0nnk Módulo:Infobox/styles.css 828 7496 72695 72147 2026-06-30T19:10:33Z Robertsky 10424 Robertsky moveu [[Módulo:Infobox/styles.css]] para [[Módulo:Infokaixa/styles.css]] sem deixar um redirecionamento: localise 72146 sanitized-css text/css /* {{pp|small=y}} */ /* * This TemplateStyles sheet deliberately does NOT include the full set of * infobox styles. We are still working to migrate all of the manual * infoboxes. See [[MediaWiki talk:Common.css/to do#Infobox]] * DO NOT ADD THEM HERE */ /* NOTE: This is maintained both here and in [[MediaWiki:Common.css]] until migration is complete. * Starting with bare minimum for the benefit of [[mw:Manual:Safemode]]. */ @media (min-width: 640px) { .infobox { /* @noflip */ margin-left: 1em; /* @noflip */ float: right; /* @noflip */ clear: right; width: 22em; } } /* * not strictly certain these styles are necessary since the modules now * exclusively output infobox-subbox or infobox, not both * just replicating the module faithfully */ .infobox-subbox { padding: 0; border: none; margin: -3px; width: auto; min-width: 100%; font-size: 100%; clear: none; float: none; background-color: transparent; color:inherit; } .infobox-3cols-child { margin: -3px; } .infobox .navbar { font-size: 100%; } /* Base infobox styling, adapted from enwiki MediaWiki:Common.css. * Keep here because Módulo:Infobox loads this page via TemplateStyles. */ .infobox { border: 1px solid #a2a9b1; color: black; padding: 0.2em; font-size: 88%; line-height: 1.5em; border-spacing: 3px; margin: 0.5em 0; background-color: var(--background-color-neutral-subtle, #f8f9fa); } /* Desktop layout */ @media (min-width: 640px) { .infobox { /* @noflip */ float: right; /* @noflip */ clear: right; /* @noflip */ margin-left: 1em; width: 22em; } } /* Mobile layout */ @media (max-width: 640px) { .infobox { width: 100%; } .infobox .nowrap { white-space: normal; } } /* Cell alignment */ .infobox-header, .infobox-label, .infobox-above, .infobox-full-data, .infobox-data, .infobox-below, .infobox-subheader, .infobox-image, .infobox-navbar, .infobox th, .infobox td { vertical-align: top; } .infobox-label, .infobox-data, .infobox th, .infobox td { /* @noflip */ text-align: left; } /* Title / caption */ .infobox .infobox-above, .infobox .infobox-title, .infobox caption { font-size: 125%; font-weight: bold; text-align: center; } .infobox-title, .infobox caption { padding: 0.2em; } /* Full-width rows */ .infobox .infobox-header, .infobox .infobox-subheader, .infobox .infobox-image, .infobox .infobox-full-data, .infobox .infobox-below { text-align: center; } /* Navbar */ .infobox .infobox-navbar { /* @noflip */ text-align: right; } /* Captions under images */ .infobox-caption { font-size: 88%; line-height: 1.35em; } /* Nested/sub infoboxes */ .infobox-subbox { padding: 0; border: 0; margin: -3px; width: auto; min-width: 100%; font-size: 100%; clear: none; float: none; background-color: transparent; } /* Empty rows generated by child boxes */ .infobox-hiddenrow { display: none; } /* close Base infobox styling */ /* remove when infobox is not a table anymore */ .infobox-hiddenrow, /* we mean it, Minerva. but also Vector 2022 in the future at some point */ body.skin--responsive.skin--responsive .infobox .infobox-hiddenrow { display: none; } /* Dark theme: [[William Wragg]], [[Coral Castle]] */ @media screen { html.skin-theme-clientpref-night .infobox-full-data:not(.notheme) > div:not(.notheme)[style] { background: #1f1f23 !important; /* switch with var( --color-base ) when supported. */ color: #f8f9fa; } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .infobox-full-data:not(.notheme) > div:not(.notheme)[style] { background: #1f1f23 !important; /* switch with var( --color-base ) when supported. */ color: #f8f9fa; } } /* Since infobox is a table, many infobox templates take advantage of this to * add columns and rows to the infobox itself rather than as part of a new table * inside them. This class should be discouraged and removed on the long term, * but allows us to at least identify these tables going forward * Currently in use on: [[Module:Infobox3cols]] * Fixes issue described in [[phab:F55300125]] on Vector 2022. */ @media (min-width: 640px) { body.skin--responsive .infobox-table { display: table !important; } body.skin--responsive .infobox-table > caption { display: table-caption !important; } body.skin--responsive .infobox-table > tbody { display: table-row-group; } body.skin--responsive .infobox-table th, body.skin--responsive .infobox-table td { padding-left: inherit; padding-right: inherit; } } 87p78rbwxhsj2x4141qsh77l3iutezi 72700 72695 2026-06-30T21:01:41Z Robertsky 10424 Robertsky moveu [[Módulo:Infokaixa/styles.css]] para [[Módulo:Infobox/styles.css]] sem deixar um redirecionamento: revert due to style.css 72146 sanitized-css text/css /* {{pp|small=y}} */ /* * This TemplateStyles sheet deliberately does NOT include the full set of * infobox styles. We are still working to migrate all of the manual * infoboxes. See [[MediaWiki talk:Common.css/to do#Infobox]] * DO NOT ADD THEM HERE */ /* NOTE: This is maintained both here and in [[MediaWiki:Common.css]] until migration is complete. * Starting with bare minimum for the benefit of [[mw:Manual:Safemode]]. */ @media (min-width: 640px) { .infobox { /* @noflip */ margin-left: 1em; /* @noflip */ float: right; /* @noflip */ clear: right; width: 22em; } } /* * not strictly certain these styles are necessary since the modules now * exclusively output infobox-subbox or infobox, not both * just replicating the module faithfully */ .infobox-subbox { padding: 0; border: none; margin: -3px; width: auto; min-width: 100%; font-size: 100%; clear: none; float: none; background-color: transparent; color:inherit; } .infobox-3cols-child { margin: -3px; } .infobox .navbar { font-size: 100%; } /* Base infobox styling, adapted from enwiki MediaWiki:Common.css. * Keep here because Módulo:Infobox loads this page via TemplateStyles. */ .infobox { border: 1px solid #a2a9b1; color: black; padding: 0.2em; font-size: 88%; line-height: 1.5em; border-spacing: 3px; margin: 0.5em 0; background-color: var(--background-color-neutral-subtle, #f8f9fa); } /* Desktop layout */ @media (min-width: 640px) { .infobox { /* @noflip */ float: right; /* @noflip */ clear: right; /* @noflip */ margin-left: 1em; width: 22em; } } /* Mobile layout */ @media (max-width: 640px) { .infobox { width: 100%; } .infobox .nowrap { white-space: normal; } } /* Cell alignment */ .infobox-header, .infobox-label, .infobox-above, .infobox-full-data, .infobox-data, .infobox-below, .infobox-subheader, .infobox-image, .infobox-navbar, .infobox th, .infobox td { vertical-align: top; } .infobox-label, .infobox-data, .infobox th, .infobox td { /* @noflip */ text-align: left; } /* Title / caption */ .infobox .infobox-above, .infobox .infobox-title, .infobox caption { font-size: 125%; font-weight: bold; text-align: center; } .infobox-title, .infobox caption { padding: 0.2em; } /* Full-width rows */ .infobox .infobox-header, .infobox .infobox-subheader, .infobox .infobox-image, .infobox .infobox-full-data, .infobox .infobox-below { text-align: center; } /* Navbar */ .infobox .infobox-navbar { /* @noflip */ text-align: right; } /* Captions under images */ .infobox-caption { font-size: 88%; line-height: 1.35em; } /* Nested/sub infoboxes */ .infobox-subbox { padding: 0; border: 0; margin: -3px; width: auto; min-width: 100%; font-size: 100%; clear: none; float: none; background-color: transparent; } /* Empty rows generated by child boxes */ .infobox-hiddenrow { display: none; } /* close Base infobox styling */ /* remove when infobox is not a table anymore */ .infobox-hiddenrow, /* we mean it, Minerva. but also Vector 2022 in the future at some point */ body.skin--responsive.skin--responsive .infobox .infobox-hiddenrow { display: none; } /* Dark theme: [[William Wragg]], [[Coral Castle]] */ @media screen { html.skin-theme-clientpref-night .infobox-full-data:not(.notheme) > div:not(.notheme)[style] { background: #1f1f23 !important; /* switch with var( --color-base ) when supported. */ color: #f8f9fa; } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .infobox-full-data:not(.notheme) > div:not(.notheme)[style] { background: #1f1f23 !important; /* switch with var( --color-base ) when supported. */ color: #f8f9fa; } } /* Since infobox is a table, many infobox templates take advantage of this to * add columns and rows to the infobox itself rather than as part of a new table * inside them. This class should be discouraged and removed on the long term, * but allows us to at least identify these tables going forward * Currently in use on: [[Module:Infobox3cols]] * Fixes issue described in [[phab:F55300125]] on Vector 2022. */ @media (min-width: 640px) { body.skin--responsive .infobox-table { display: table !important; } body.skin--responsive .infobox-table > caption { display: table-caption !important; } body.skin--responsive .infobox-table > tbody { display: table-row-group; } body.skin--responsive .infobox-table th, body.skin--responsive .infobox-table td { padding-left: inherit; padding-right: inherit; } } 87p78rbwxhsj2x4141qsh77l3iutezi Template:Infobox settlement/areadisp 10 7883 72792 72206 2026-06-30T21:30:47Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/areadisp]] para [[Template:Infokaixa fatin-koabitasaun/areadisp]]: localise 72205 wikitext text/x-wiki <includeonly>{{#invoke:ConvertIB|area}}</includeonly><noinclude> {{documentation}} </noinclude> ssk9xtxciqyfcjp55grw02okglo90be 72844 72792 2026-07-01T02:02:36Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/areadisp]] para o seu redirecionamento [[Template:Infobox settlement/areadisp]], suprimindo o primeiro: fixing 72205 wikitext text/x-wiki <includeonly>{{#invoke:ConvertIB|area}}</includeonly><noinclude> {{documentation}} </noinclude> ssk9xtxciqyfcjp55grw02okglo90be Template:Infobox settlement/columns 10 7884 72802 72208 2026-06-30T21:30:48Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/columns]] para [[Template:Infokaixa fatin-koabitasaun/columns]]: localise 72207 wikitext text/x-wiki <templatestyles src="Infobox settlement/columns/styles.css"/> <div class="ib-settlement-cols"> <div class="ib-settlement-cols-row">{{#if:{{{0|}}} |<!-- if 0 -->{{#if:{{{1|}}}{{{2|}}}{{{3|}}}{{{4|}}}{{{5|}}} |<!-- if 0 and (1 or 2 or 3 or 4 or 5) --><div class="ib-settlement-cols-cellt"> {{#if:{{{1|}}}|<div>{{{1}}}</div>}} {{#if:{{{2|}}}|<div>{{{2}}}</div>}} {{#if:{{{3|}}}|<div>{{{3}}}</div>}} {{#if:{{{4|}}}|<div>{{{4}}}</div>}} {{#if:{{{5|}}}|<div>{{{5}}}</div>}} </div> }}<div class="ib-settlement-cols-cellt">{{{0}}}</div> |<!-- if not 0 -->{{#ifexpr:({{#if:{{{1|}}}|1|0}}+{{#if:{{{2|}}}|1|0}}+{{#if:{{{3|}}}|1|0}}+{{#if:{{{4|}}}|1|0}}) > 2 |<!-- if more than two images -->{{#if:{{{1|}}} |<div class="ib-settlement-cols-cell">{{{1}}}</div>{{#if:{{{2|}}}||</div></div><div class="ib-settlement-cols"><!-- TODO: The "3" element case currently produces two div-tables, which is non-optimal, but someone else should figure out how to fix it; 4 and 2 cases output as one "table". --><div class="ib-settlement-cols-row">}} }}{{#if:{{{2|}}} |<div class="ib-settlement-cols-cell">{{{2}}}</div>{{#if:{{{1|}}}||</div></div><div class="ib-settlement-cols"><div class="ib-settlement-cols-row">}} }}</div><div class="ib-settlement-cols-row">{{#if:{{{3|}}} |{{#if:{{{4|}}}||</div></div><div class="ib-settlement-cols"><div class="ib-settlement-cols-row">}}<div class="ib-settlement-cols-cell">{{{3}}}</div> }}{{#if:{{{4|}}} |{{#if:{{{3|}}}||</div></div><div class="ib-settlement-cols"><div class="ib-settlement-cols-row">}}<div class="ib-settlement-cols-cell">{{{4}}}</div> }} |<!-- if two or fewer images -->{{#if:{{{1|}}}|<div class="ib-settlement-cols-cell">{{{1}}}</div>}}<!-- -->{{#if:{{{2|}}}|<div class="ib-settlement-cols-cell">{{{2}}}</div>}}<!-- -->{{#if:{{{3|}}}|<div class="ib-settlement-cols-cell">{{{3}}}</div>}}<!-- -->{{#if:{{{4|}}}|<div class="ib-settlement-cols-cell">{{{4}}}</div>}} }} }}</div></div><noinclude> {{documentation}} </noinclude> m6cltb8m7e7fjw8dkkm6lmpt9mdftji 72849 72802 2026-07-01T02:02:39Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/columns]] para o seu redirecionamento [[Template:Infobox settlement/columns]], suprimindo o primeiro: fixing 72207 wikitext text/x-wiki <templatestyles src="Infobox settlement/columns/styles.css"/> <div class="ib-settlement-cols"> <div class="ib-settlement-cols-row">{{#if:{{{0|}}} |<!-- if 0 -->{{#if:{{{1|}}}{{{2|}}}{{{3|}}}{{{4|}}}{{{5|}}} |<!-- if 0 and (1 or 2 or 3 or 4 or 5) --><div class="ib-settlement-cols-cellt"> {{#if:{{{1|}}}|<div>{{{1}}}</div>}} {{#if:{{{2|}}}|<div>{{{2}}}</div>}} {{#if:{{{3|}}}|<div>{{{3}}}</div>}} {{#if:{{{4|}}}|<div>{{{4}}}</div>}} {{#if:{{{5|}}}|<div>{{{5}}}</div>}} </div> }}<div class="ib-settlement-cols-cellt">{{{0}}}</div> |<!-- if not 0 -->{{#ifexpr:({{#if:{{{1|}}}|1|0}}+{{#if:{{{2|}}}|1|0}}+{{#if:{{{3|}}}|1|0}}+{{#if:{{{4|}}}|1|0}}) > 2 |<!-- if more than two images -->{{#if:{{{1|}}} |<div class="ib-settlement-cols-cell">{{{1}}}</div>{{#if:{{{2|}}}||</div></div><div class="ib-settlement-cols"><!-- TODO: The "3" element case currently produces two div-tables, which is non-optimal, but someone else should figure out how to fix it; 4 and 2 cases output as one "table". --><div class="ib-settlement-cols-row">}} }}{{#if:{{{2|}}} |<div class="ib-settlement-cols-cell">{{{2}}}</div>{{#if:{{{1|}}}||</div></div><div class="ib-settlement-cols"><div class="ib-settlement-cols-row">}} }}</div><div class="ib-settlement-cols-row">{{#if:{{{3|}}} |{{#if:{{{4|}}}||</div></div><div class="ib-settlement-cols"><div class="ib-settlement-cols-row">}}<div class="ib-settlement-cols-cell">{{{3}}}</div> }}{{#if:{{{4|}}} |{{#if:{{{3|}}}||</div></div><div class="ib-settlement-cols"><div class="ib-settlement-cols-row">}}<div class="ib-settlement-cols-cell">{{{4}}}</div> }} |<!-- if two or fewer images -->{{#if:{{{1|}}}|<div class="ib-settlement-cols-cell">{{{1}}}</div>}}<!-- -->{{#if:{{{2|}}}|<div class="ib-settlement-cols-cell">{{{2}}}</div>}}<!-- -->{{#if:{{{3|}}}|<div class="ib-settlement-cols-cell">{{{3}}}</div>}}<!-- -->{{#if:{{{4|}}}|<div class="ib-settlement-cols-cell">{{{4}}}</div>}} }} }}</div></div><noinclude> {{documentation}} </noinclude> m6cltb8m7e7fjw8dkkm6lmpt9mdftji Template:Infobox settlement/columns/styles.css 10 7885 72806 72210 2026-06-30T21:30:49Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/columns/styles.css]] para [[Template:Infokaixa fatin-koabitasaun/columns/styles.css]] sem deixar um redirecionamento: localise 72209 sanitized-css text/css /* {{pp|small=y}} */ .ib-settlement-cols { text-align: center; display: table; width: 100%; } .ib-settlement-cols-row { display: table-row; } .ib-settlement-cols-cell { display: table-cell; vertical-align: middle; } .ib-settlement-cols-cellt { display: table-cell; vertical-align: top; } eoq56w19zfw3akcqfxtw079peuodz3k 72851 72806 2026-07-01T02:02:40Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/columns/styles.css]] para [[Template:Infobox settlement/columns/styles.css]] sem deixar um redirecionamento: fixing 72209 sanitized-css text/css /* {{pp|small=y}} */ .ib-settlement-cols { text-align: center; display: table; width: 100%; } .ib-settlement-cols-row { display: table-row; } .ib-settlement-cols-cell { display: table-cell; vertical-align: middle; } .ib-settlement-cols-cellt { display: table-cell; vertical-align: top; } eoq56w19zfw3akcqfxtw079peuodz3k Template:Infobox settlement/densdisp 10 7886 72807 72212 2026-06-30T21:30:49Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/densdisp]] para [[Template:Infokaixa fatin-koabitasaun/densdisp]]: localise 72211 wikitext text/x-wiki <includeonly>{{#invoke:ConvertIB|density}}</includeonly><noinclude> {{documentation}} </noinclude> q5m7iugxijnh3rv6jucbvcon7hzui0v 72853 72807 2026-07-01T02:02:40Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/densdisp]] para o seu redirecionamento [[Template:Infobox settlement/densdisp]], suprimindo o primeiro: fixing 72211 wikitext text/x-wiki <includeonly>{{#invoke:ConvertIB|density}}</includeonly><noinclude> {{documentation}} </noinclude> q5m7iugxijnh3rv6jucbvcon7hzui0v Template:Infobox settlement/lengthdisp 10 7887 72815 72214 2026-06-30T21:30:50Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/lengthdisp]] para [[Template:Infokaixa fatin-koabitasaun/lengthdisp]]: localise 72213 wikitext text/x-wiki <includeonly>{{#invoke:ConvertIB|length}}</includeonly><noinclude> {{Documentation}} </noinclude> e768qsml1qirs0ewlz6hghb5njmo0hv 72857 72815 2026-07-01T02:02:43Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/lengthdisp]] para o seu redirecionamento [[Template:Infobox settlement/lengthdisp]], suprimindo o primeiro: fixing 72213 wikitext text/x-wiki <includeonly>{{#invoke:ConvertIB|length}}</includeonly><noinclude> {{Documentation}} </noinclude> e768qsml1qirs0ewlz6hghb5njmo0hv Template:Infobox settlement/link 10 7888 72823 72216 2026-06-30T21:30:51Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/link]] para [[Template:Infokaixa fatin-koabitasaun/link]]: localise 72215 wikitext text/x-wiki {{#if:{{{link|}}}<!-- -->|[[{{{link}}}|{{{type}}}]]<!-- -->|{{#ifexist:{{{type}}} of {{PAGENAME}}<!-- -->|[[{{{type}}} of {{PAGENAME}}|{{{type|}}}]]<!-- -->|{{#if:{{{name|}}}<!-- -->|{{#ifexist:{{{type}}} of {{{name}}}<!-- -->|[[{{{type}}} of {{{name}}}|{{{type|}}}]]<!-- -->|{{{type}}}<!-- -->}}<!-- -->|{{{type}}}<!-- -->}}<!-- -->}}<!-- -->}}<noinclude> {{documentation}} </noinclude> euckr3nxynvcunu7on6g2ncksojbb5a 72861 72823 2026-07-01T02:02:45Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/link]] para o seu redirecionamento [[Template:Infobox settlement/link]], suprimindo o primeiro: fixing 72215 wikitext text/x-wiki {{#if:{{{link|}}}<!-- -->|[[{{{link}}}|{{{type}}}]]<!-- -->|{{#ifexist:{{{type}}} of {{PAGENAME}}<!-- -->|[[{{{type}}} of {{PAGENAME}}|{{{type|}}}]]<!-- -->|{{#if:{{{name|}}}<!-- -->|{{#ifexist:{{{type}}} of {{{name}}}<!-- -->|[[{{{type}}} of {{{name}}}|{{{type|}}}]]<!-- -->|{{{type}}}<!-- -->}}<!-- -->|{{{type}}}<!-- -->}}<!-- -->}}<!-- -->}}<noinclude> {{documentation}} </noinclude> euckr3nxynvcunu7on6g2ncksojbb5a Template:Infobox settlement/styles.css 10 7889 72833 72218 2026-06-30T21:30:52Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/styles.css]] para [[Template:Infokaixa fatin-koabitasaun/styles.css]] sem deixar um redirecionamento: localise 72217 sanitized-css text/css /* {{pp|small=y}} */ .ib-settlement { border-collapse: collapse; line-height: 1.2em; } @media (min-width: 640px) { .ib-settlement { width: 23em; } } /* TODO split definitions to appropriate class names when live from HTML element */ .ib-settlement td, .ib-settlement th { border-top: 1px solid #a2a9b1; padding: 0.4em 0.6em 0.4em 0.6em; } .ib-settlement .mergedtoprow .infobox-full-data, .ib-settlement .mergedtoprow .infobox-header, .ib-settlement .mergedtoprow .infobox-data, .ib-settlement .mergedtoprow .infobox-label, .ib-settlement .mergedtoprow .infobox-below { border-top: 1px solid #a2a9b1; padding: 0.4em 0.6em 0.2em 0.6em; } .ib-settlement .mergedrow .infobox-full-data, .ib-settlement .mergedrow .infobox-data, .ib-settlement .mergedrow .infobox-label { border: 0; padding: 0 0.6em 0.2em 0.6em; } .ib-settlement .mergedbottomrow .infobox-full-data, .ib-settlement .mergedbottomrow .infobox-data, .ib-settlement .mergedbottomrow .infobox-label { border-top: 0; border-bottom: 1px solid #a2a9b1; padding: 0 0.6em 0.4em 0.6em; } .ib-settlement .maptable { border: 0; padding: 0; } .ib-settlement .infobox-header, .ib-settlement .infobox-below { text-align: left; } .ib-settlement .infobox-above { font-size: 125%; line-height: 1.3em; } .ib-settlement .infobox-subheader { background-color: #cddeff;color:inherit; font-weight: bold; } .ib-settlement-native { font-weight: normal; padding-top: 0.2em; } .ib-settlement-other-name { font-size: 78%; } .ib-settlement-official { font-weight: bold; } .ib-settlement-caption { padding: 0.3em 0 0 0; } .ib-settlement-caption-link { padding: 0.2em 0; } .ib-settlement-nickname { display: inline; } .ib-settlement-fn { font-weight: normal; display: inline; } r64slwko84pew5lxs3tepin9znpz4pc 72866 72833 2026-07-01T02:02:46Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/styles.css]] para [[Template:Infobox settlement/styles.css]] sem deixar um redirecionamento: fixing 72217 sanitized-css text/css /* {{pp|small=y}} */ .ib-settlement { border-collapse: collapse; line-height: 1.2em; } @media (min-width: 640px) { .ib-settlement { width: 23em; } } /* TODO split definitions to appropriate class names when live from HTML element */ .ib-settlement td, .ib-settlement th { border-top: 1px solid #a2a9b1; padding: 0.4em 0.6em 0.4em 0.6em; } .ib-settlement .mergedtoprow .infobox-full-data, .ib-settlement .mergedtoprow .infobox-header, .ib-settlement .mergedtoprow .infobox-data, .ib-settlement .mergedtoprow .infobox-label, .ib-settlement .mergedtoprow .infobox-below { border-top: 1px solid #a2a9b1; padding: 0.4em 0.6em 0.2em 0.6em; } .ib-settlement .mergedrow .infobox-full-data, .ib-settlement .mergedrow .infobox-data, .ib-settlement .mergedrow .infobox-label { border: 0; padding: 0 0.6em 0.2em 0.6em; } .ib-settlement .mergedbottomrow .infobox-full-data, .ib-settlement .mergedbottomrow .infobox-data, .ib-settlement .mergedbottomrow .infobox-label { border-top: 0; border-bottom: 1px solid #a2a9b1; padding: 0 0.6em 0.4em 0.6em; } .ib-settlement .maptable { border: 0; padding: 0; } .ib-settlement .infobox-header, .ib-settlement .infobox-below { text-align: left; } .ib-settlement .infobox-above { font-size: 125%; line-height: 1.3em; } .ib-settlement .infobox-subheader { background-color: #cddeff;color:inherit; font-weight: bold; } .ib-settlement-native { font-weight: normal; padding-top: 0.2em; } .ib-settlement-other-name { font-size: 78%; } .ib-settlement-official { font-weight: bold; } .ib-settlement-caption { padding: 0.3em 0 0 0; } .ib-settlement-caption-link { padding: 0.2em 0; } .ib-settlement-nickname { display: inline; } .ib-settlement-fn { font-weight: normal; display: inline; } r64slwko84pew5lxs3tepin9znpz4pc Template:Infobox settlement/doc 10 7921 72813 72321 2026-06-30T21:30:49Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/doc]] para [[Template:Infokaixa fatin-koabitasaun/doc]]: localise 72321 wikitext text/x-wiki {{Documentation subpage}} <!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])--> {{Auto short description}} {{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Check for conflicting parameters|Module:Settlement short description|Module:Wikidata}} {{Uses TemplateStyles|Template:Infobox settlement/styles.css}} {{Uses Wikidata|P41|P94|P158|P625|P856}} This template should be used to produce an [[WP:Infobox|Infobox]] for human settlements (cities, towns, villages, communities) as well as other administrative districts, counties, provinces, et cetera—in fact, any subdivision below the level of a country, for which {{tl|Infobox country}} should be used. Parameters are described in the table below. For questions, see the [[Template talk:Infobox settlement|talk page]]. For a US city guideline, see [[WP:USCITIES]]. The template is aliased or used as a sub-template for several infobox front-end templates. ==Usage== * '''Important''': Please enter all numeric values in a raw, unformatted fashion. References and {{tl|citation needed}} tags are to be included in their respective section footnotes field. Numeric values that are not "raw" may create an "Expression error". Raw values will be automatically formatted by the template. If you find a raw value is not formatted in your usage of the template, please post a notice on the discussion page for this template. * An expression error may also occur when any coordinate parameter has a value, but one or more coordinate parameters are blank or invalid. * To specify CSS class "X" should be applied to an image, append to the filename: <code><nowiki>{{!}}class=X</nowiki></code> Basic blank template, ready to cut and paste. See the next section for a copy of the template with all parameters and comments. See the table below that for a full description of each parameter. ===Using metric units=== <syntaxhighlight lang="wikitext" style="overflow:auto"> {{Infobox settlement |name = |native_name = <!-- Settlement name in the dominant local language(s), if different from the English name --> |native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> |settlement_type = |image_skyline = |imagesize = |image_alt = |image_caption = |image_flag = |flag_alt = |image_seal = |seal_alt = |image_shield = |shield_alt = |etymology = |nickname = |motto = |image_map = |map_alt = |map_caption = |pushpin_map = |pushpin_map_alt = |pushpin_map_caption = |pushpin_mapsize = |pushpin_label_position = |mapframe = <!-- "yes" to show an interactive map --> |coordinates = <!-- {{coord|latitude|longitude|type:city|display=inline,title}} --> |coor_pinpoint = |coordinates_footnotes = |subdivision_type = Country |subdivision_name = |subdivision_type1 = |subdivision_name1 = |subdivision_type2 = |subdivision_name2 = |subdivision_type3 = |subdivision_name3 = |established_title = |established_date = |founder = |seat_type = |seat = |government_footnotes = |government_type = |governing_body = |leader_party = |leader_title = |leader_name = |leader_title1 = |leader_name1 = |leader_title2 = |leader_name2 = |leader_title3 = |leader_name3 = |leader_title4 = |leader_name4 = |unit_pref = Metric <!-- ALL fields with measurements have automatic unit conversion --> <!-- for references: use <ref> tags --> |area_footnotes = |area_urban_footnotes = <!-- <ref> </ref> --> |area_rural_footnotes = <!-- <ref> </ref> --> |area_metro_footnotes = <!-- <ref> </ref> --> |area_note = |area_water_percent = |area_rank = |area_blank1_title = |area_blank2_title = <!-- square kilometers --> |area_total_km2 = |area_land_km2 = |area_water_km2 = |area_urban_km2 = |area_rural_km2 = |area_metro_km2 = |area_blank1_km2 = |area_blank2_km2 = <!-- hectares --> |area_total_ha = |area_land_ha = |area_water_ha = |area_urban_ha = |area_rural_ha = |area_metro_ha = |area_blank1_ha = |area_blank2_ha = |length_km = |width_km = |dimensions_footnotes = |elevation_footnotes = |elevation_m = |population_footnotes = |population_as_of = |population_total = |population_density_km2 = auto |population_note = |population_demonym = |timezone1 = |utc_offset1 = |timezone1_DST = |utc_offset1_DST = |postal_code_type = |postal_code = |area_code_type = |area_code = |area_codes = <!-- for multiple area codes --> |iso_code = |website = <!-- {{Official URL}} --> |module = |footnotes = }} </syntaxhighlight> ===Using non-metric units=== <syntaxhighlight lang="wikitext" style="overflow:auto"> {{Infobox settlement |name = |native_name = |native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> |settlement_type = |image_skyline = |imagesize = |image_alt = |image_caption = |image_flag = |flag_alt = |image_seal = |seal_alt = |image_shield = |shield_alt = |etymology = |nickname = |motto = |image_map = |map_alt = |map_caption = |pushpin_map = |pushpin_map_alt = |pushpin_map_caption = |pushpin_label_position = |mapframe = <!-- "yes" to show an interactive map --> |coordinates = <!-- {{coord|latitude|longitude|type:city|display=inline,title}} --> |coor_pinpoint = |coordinates_footnotes = |subdivision_type = Country |subdivision_name = |subdivision_type1 = |subdivision_name1 = |subdivision_type2 = |subdivision_name2 = |subdivision_type3 = |subdivision_name3 = |established_title = |established_date = |founder = |seat_type = |seat = |government_footnotes = |leader_party = |leader_title = |leader_name = |unit_pref = Imperial <!-- ALL fields with measurements have automatic unit conversion --> <!-- for references: use <ref> tags --> |area_footnotes = |area_urban_footnotes = <!-- <ref> </ref> --> |area_rural_footnotes = <!-- <ref> </ref> --> |area_metro_footnotes = <!-- <ref> </ref> --> |area_note = |area_water_percent = |area_rank = |area_blank1_title = |area_blank2_title = <!-- square miles --> |area_total_sq_mi = |area_land_sq_mi = |area_water_sq_mi = |area_urban_sq_mi = |area_rural_sq_mi = |area_metro_sq_mi = |area_blank1_sq_mi = |area_blank2_sq_mi = <!-- acres --> |area_total_acre = |area_land_acre = |area_water_acre = |area_urban_acre = |area_rural_acre = |area_metro_acre = |area_blank1_acre = |area_blank2_acre = |length_mi = |width_mi = |dimensions_footnotes = |elevation_footnotes = |elevation_ft = |population_footnotes = |population_as_of = |population_total = |population_density_sq_mi = auto |population_note = |population_demonym = |timezone1 = |utc_offset1 = |timezone1_DST = |utc_offset1_DST = |postal_code_type = |postal_code = |area_code_type = |area_code = |iso_code = |website = <!-- {{Official URL}} --> |module = |footnotes = }} </syntaxhighlight> ===Short version=== <syntaxhighlight lang="wikitext" style="overflow:auto"> {{Infobox settlement |name = |native_name = |native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> |settlement_type = |image_skyline = |imagesize = |image_alt = |image_caption = |etymology = |nickname = |coordinates = <!-- {{Coord}} --> |population_total = |subdivision_type = Country |subdivision_name = |subdivision_type1 = |subdivision_name1 = |subdivision_type2 = |subdivision_name2 = |website = <!-- {{Official URL}} --> }} </syntaxhighlight> ===Complete empty syntax, with comments=== This copy of the template lists all parameters except for some of the repeating numbered parameters which are noted in the comments. Comments here should be brief; see the table below for full descriptions of each parameter. <syntaxhighlight lang="wikitext" style="overflow:auto;"> {{Infobox settlement | name = <!-- at least one of the first two fields must be filled in --> | official_name = <!-- avoid if redundant with e.g. `settlement_type` of `name` | native_name = <!-- if different from the English name --> | native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> | other_name = | settlement_type = <!-- such as Town, Village, City, Borough etc. --> <!-- transliteration(s) --> | translit_lang1 = | translit_lang1_type = | translit_lang1_info = | translit_lang1_type1 = | translit_lang1_info1 = | translit_lang1_type2 = | translit_lang1_info2 = <!-- etc., up to translit_lang1_type6 / translit_lang1_info6 --> | translit_lang2 = | translit_lang2_type = | translit_lang2_info = | translit_lang2_type1 = | translit_lang2_info1 = | translit_lang2_type2 = | translit_lang2_info2 = <!-- etc., up to translit_lang2_type6 / translit_lang2_info6 --> <!-- images, nickname, motto --> | image_skyline = | imagesize = | image_alt = | image_caption = | image_flag = | flag_size = | flag_alt = | flag_border = | flag_link = | image_seal = | seal_size = | seal_alt = | seal_link = | seal_type = | seal_class = | image_shield = | shield_size = | shield_alt = | shield_link = | image_blank_emblem = | blank_emblem_type = | blank_emblem_size = | blank_emblem_alt = | blank_emblem_link = | etymology = | nickname = | nicknames = | motto = | mottoes = | anthem = <!-- maps and coordinates --> | image_map = | mapsize = | map_alt = | map_caption = | image_map1 = | mapsize1 = | map_alt1 = | map_caption1 = | pushpin_map = <!-- name of a location map as per Template:Location_map --> | pushpin_mapsize = | pushpin_map_alt = | pushpin_map_caption = | pushpin_map_caption_notsmall = | pushpin_label = <!-- only necessary if "name" or "official_name" are too long --> | pushpin_label_position = <!-- position of the pushpin label: left, right, top, bottom, none --> | pushpin_outside = | pushpin_relief = | pushpin_image = | pushpin_overlay = | mapframe = <!-- "yes" to show an interactive map --> | coordinates = <!-- {{Coord}} --> | coor_pinpoint = <!-- to specify exact location of coordinates (was coor_type) --> | coordinates_footnotes = <!-- for references: use <ref> tags --> | grid_name = <!-- name of a regional grid system --> | grid_position = <!-- position on the regional grid system --> <!-- location --> | subdivision_type = Country | subdivision_name = <!-- the name of the country --> | subdivision_type1 = | subdivision_name1 = | subdivision_type2 = | subdivision_name2 = <!-- etc., subdivision_type6 / subdivision_name6 --> <!-- established --> | established_title = <!-- Founded --> | established_date = <!-- requires established_title= --> | established_title1 = <!-- Incorporated (town) --> | established_date1 = <!-- requires established_title1= --> | established_title2 = <!-- Incorporated (city) --> | established_date2 = <!-- requires established_title2= --> | established_title3 = | established_date3 = <!-- requires established_title3= --> | established_title4 = | established_date4 = <!-- requires established_title4= --> | established_title5 = | established_date5 = <!-- requires established_title5= --> | established_title6 = | established_date6 = <!-- requires established_title6= --> | established_title7 = | established_date7 = <!-- requires established_title7= --> | extinct_title = | extinct_date = <!-- requires extinct_title= --> | founder = | named_for = <!-- seat, smaller parts --> | seat_type = <!-- defaults to: Seat --> | seat = | seat1_type = <!-- defaults to: Former seat --> | seat1 = | parts_type = <!-- defaults to: Boroughs --> | parts_style = <!-- list, coll (collapsed list), para (paragraph format) --> | parts = <!-- parts text, or header for parts list --> | p1 = | p2 = <!-- etc., up to p50: for separate parts to be listed--> <!-- government type, leaders --> | government_footnotes = <!-- for references: use <ref> tags --> | government_type = | governing_body = | leader_party = | leader_title = | leader_name = <!-- add &amp;nbsp; (no-break space) to disable automatic links --> | leader_title1 = | leader_name1 = <!-- etc., up to leader_title4 / leader_name4 --> <!-- display settings --> | total_type = <!-- to set a non-standard label for total area and population rows --> | unit_pref = <!-- enter: Imperial, to display imperial before metric --> <!-- area --> | area_footnotes = <!-- for references: use <ref> tags --> | dunam_link = <!-- If dunams are used, this specifies which dunam to link. --> | area_total_km2 = <!-- ALL fields with measurements have automatic unit conversion --> | area_total_sq_mi = <!-- see table @ Template:Infobox settlement for details --> | area_total_ha = | area_total_acre = | area_total_dunam = <!-- used in Middle East articles only --> | area_land_km2 = | area_land_sq_mi = | area_land_ha = | area_land_acre = | area_land_dunam = <!-- used in Middle East articles only --> | area_water_km2 = | area_water_sq_mi = | area_water_ha = | area_water_acre = | area_water_dunam = <!-- used in Middle East articles only --> | area_water_percent = | area_urban_footnotes = <!-- for references: use <ref> tags --> | area_urban_km2 = | area_urban_sq_mi = | area_urban_ha = | area_urban_acre = | area_urban_dunam = <!-- used in Middle East articles only --> | area_rural_footnotes = <!-- for references: use <ref> tags --> | area_rural_km2 = | area_rural_sq_mi = | area_rural_ha = | area_rural_acre = | area_rural_dunam = <!-- used in Middle East articles only --> | area_metro_footnotes = <!-- for references: use <ref> tags --> | area_metro_km2 = | area_metro_sq_mi = | area_metro_ha = | area_metro_acre = | area_metro_dunam = <!-- used in Middle East articles only --> | area_rank = | area_blank1_title = | area_blank1_km2 = | area_blank1_sq_mi = | area_blank1_ha = | area_blank1_acre = | area_blank1_dunam = <!-- used in Middle East articles only --> | area_blank2_title = | area_blank2_km2 = | area_blank2_sq_mi = | area_blank2_ha = | area_blank2_acre = | area_blank2_dunam = <!-- used in Middle East articles only --> | area_note = <!-- dimensions --> | dimensions_footnotes = <!-- for references: use <ref> tags --> | length_km = | length_mi = | width_km = | width_mi = <!-- elevation --> | elevation_footnotes = <!-- for references: use <ref> tags --> | elevation_m = | elevation_ft = | elevation_point = <!-- for denoting the measurement point --> | elevation_max_footnotes = <!-- for references: use <ref> tags --> | elevation_max_m = | elevation_max_ft = | elevation_max_point = <!-- for denoting the measurement point --> | elevation_max_rank = | elevation_min_footnotes = <!-- for references: use <ref> tags --> | elevation_min_m = | elevation_min_ft = | elevation_min_point = <!-- for denoting the measurement point --> | elevation_min_rank = <!-- population --> | population_footnotes = <!-- for references: use <ref> tags --> | population_as_of = | population_total = | pop_est_footnotes = | pop_est_as_of = | population_est = | population_rank = | population_density_km2 = <!-- for automatic calculation of any density field, use: auto --> | population_density_sq_mi = | population_urban_footnotes = | population_urban = | population_density_urban_km2 = | population_density_urban_sq_mi = | population_rural_footnotes = | population_rural = | population_density_rural_km2 = | population_density_rural_sq_mi = | population_metro_footnotes = | population_metro = | population_density_metro_km2 = | population_density_metro_sq_mi = | population_density_rank = | population_blank1_title = | population_blank1 = | population_density_blank1_km2 = | population_density_blank1_sq_mi = | population_blank2_title = | population_blank2 = | population_density_blank2_km2 = | population_density_blank2_sq_mi = | population_demonym = <!-- demonym, e.g. Liverpudlian for someone from Liverpool --> | population_demonyms = | population_note = <!-- demographics (section 1) --> | demographics_type1 = | demographics1_footnotes = <!-- for references: use <ref> tags --> | demographics1_title1 = | demographics1_info1 = <!-- etc., up to demographics1_title7 / demographics1_info7 --> <!-- demographics (section 2) --> | demographics_type2 = | demographics2_footnotes = <!-- for references: use <ref> tags --> | demographics2_title1 = | demographics2_info1 = <!-- etc., up to demographics2_title10 / demographics2_info10 --> <!-- time zone(s) --> | timezone_link = | timezone1_location = | timezone1 = | utc_offset1 = | timezone1_DST = | utc_offset1_DST = | timezone2_location = | timezone2 = | utc_offset2 = | timezone2_DST = | utc_offset2_DST = | timezone3_location = | timezone3 = | utc_offset3 = | timezone3_DST = | utc_offset3_DST = | timezone4_location = | timezone4 = | utc_offset4 = | timezone4_DST = | utc_offset4_DST = | timezone5_location = | timezone5 = | utc_offset5 = | timezone5_DST = | utc_offset5_DST = <!-- postal codes, area code --> | postal_code_type = <!-- enter ZIP Code, Postcode, Post code, Postal code... --> | postal_code = | postal2_code_type = <!-- enter ZIP Code, Postcode, Post code, Postal code... --> | postal2_code = | area_code_type = <!-- defaults to: Area code(s) --> | area_code = | area_codes = | geocode = | iso_code = | registration_plate_type = | registration_plate = | code1_name = | code1_info = | code2_name = | code2_info = <!-- blank fields (section 1) --> | blank_name_sec1 = | blank_info_sec1 = | blank1_name_sec1 = | blank1_info_sec1 = | blank2_name_sec1 = | blank2_info_sec1 = <!-- etc., up to blank7_name_sec1 / blank7_info_sec1 --> <!-- blank fields (section 2) --> | blank_name_sec2 = | blank_info_sec2 = | blank1_name_sec2 = | blank1_info_sec2 = | blank2_name_sec2 = | blank2_info_sec2 = <!-- etc., up to blank7_name_sec2 / blank7_info_sec2 --> <!-- website, footnotes --> | website = <!-- {{Official URL}} --> | module = | footnotes = }} </syntaxhighlight> ==Parameter names and descriptions== {| class="wikitable" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Name and transliteration=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" | '''name''' || optional || This is the usual name in English. If it's not specified, the infobox will use the '''official_name''' as a title unless this too is missing, in which case the page name will be used. |- style="vertical-align:top;" | '''official_name''' || optional || The official name in English. Avoid using '''official_name''' if it leads to redundancy with '''name''' and '''settlement_type'''. Use '''official_name''' if the official name is unusual or cannot be simply deduced from the name and settlement type. |- style="vertical-align:top;" | '''native_name''' || optional || Name or names in the local language, if different from 'name', and if not English. This parameter may be used for the name in the de facto local language (e.g. German for [[Munich]]). Per the [[Template talk:Infobox settlement/Archive 32#RFC on usage of native name parameter for First Nations placenames|2023 RfC]], it may also be used for names used by First Nations/[[Indigenous peoples]], '''regardless''' of whether they are the dominant ethnic group in the location. |- style="vertical-align:top;" | '''native_name_lang''' || optional || Use [[List of ISO 639-1 codes|ISO 639-1 code]], e.g. "fr" for French. If there is more than one dominant name, in different languages, enter those names using {{tl|lang}}, instead. |- style="vertical-align:top;" | '''other_name''' || optional || For places with other commonly used names like Bombay or Saigon |- style="vertical-align:top;" | '''settlement_type''' || optional || Any type can be entered, such as City, Town, Village, Hamlet, Municipality, Reservation, etc. If set, will be displayed under the names. Might also be used as a label for total population/area (defaulting to ''City''), if needed to distinguish from ''Urban'', ''Rural'' or ''Metro'' (if urban, rural or metro figures are not present, the label is ''Total'' unless '''total_type''' is set). |- style="vertical-align:top;" | '''short_description''' || optional || Set to <code>no</code> to suppress the Short description generated by the infobox. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Transliteration(s) |- style="vertical-align:top;" | '''translit_lang1''' || optional || Will place the "entry" before the word "transliteration(s)". Can be used to specify a particular language like in [[Dêlêg]] or one may just enter "Other", like in [[Gaza City|Gaza]]'s article. |- style="vertical-align:top;" | '''translit_lang1_type'''<br />'''translit_lang1_type1'''<br />to<br />'''translit_lang1_type6''' || optional || |- style="vertical-align:top;" | '''translit_lang1_info'''<br />'''translit_lang1_info1'''<br />to<br />'''translit_lang1_info6''' || optional || |- style="vertical-align:top;" | '''translit_lang2''' || optional || Will place a second transliteration. See [[Dêlêg]] |- style="vertical-align:top;" | '''translit_lang2_type'''<br />'''translit_lang2_type1'''<br />to<br />'''translit_lang2_type6''' || optional || |- style="vertical-align:top;" | '''translit_lang2_info'''<br />'''translit_lang2_info1'''<br />to<br />'''translit_lang2_info6''' || optional || |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Images, nickname, motto=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Image |- style="vertical-align:top;" | '''image_skyline''' || optional || Primary image representing the settlement. Commonly a photo of the settlement’s skyline. For large urban areas, the <nowiki>{{multiple image}}</nowiki> template is often used in place of a single image to create a collage of the settlement's skyline and several notable landmarks. |- style="vertical-align:top;" | '''imagesize''' || optional || Can be used to tweak the size of the image_skyline up or down. This can be helpful if an editor wants to make the infobox wider. If used, '''px''' must be specified; default size is 250px. Note [[WP:IMGSIZELEAD]] recommends that images should be no wider than <code>upright=1.35</code> -equivalent to 300px |- style="vertical-align:top;" | '''image_alt''' || optional || [[Alt text]] for the image, used by visually impaired readers who cannot see the image. See [[WP:ALT]]. |- style="vertical-align:top;" | '''image_caption''' || optional || Will place a caption under the image_skyline (if present) |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Flag image |- style="vertical-align:top;" | '''image_flag''' || optional || Used for a flag. |- style="vertical-align:top;" | '''flag_size''' || optional || Can be used to tweak the size of the image_flag up or down from 100px as desired. If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''flag_alt''' || optional || Alt text for the flag. |- style="vertical-align:top;" | '''flag_border''' || optional || Set to 'no' to remove the border from the flag |- style="vertical-align:top;" | '''flag_link''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Seal image |- style="vertical-align:top;" | '''image_seal''' || optional || If the place has an official seal. |- style="vertical-align:top;" | '''seal_size''' || optional || If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''seal_alt''' || optional || Alt text for the seal. |- style="vertical-align:top;" | '''seal_link'''<br />'''seal_type''' || optional || |- style="vertical-align:top;" | '''seal_class''' || optional || CSS class for the seal image. Parameter {{para|seal_class|skin-invert}} can be used for dark mode support if the seal image is monochrome. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Coat of arms image |- style="vertical-align:top;" | '''image_shield''' || optional || Can be used for a place with a coat of arms. |- style="vertical-align:top;" | '''shield_size''' || optional || If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''shield_alt''' || optional || Alt text for the shield. |- style="vertical-align:top;" | '''shield_link''' || optional || Can be used if a wiki article if known but is not automatically linked by the template. See [[Coquitlam, British Columbia]]'s infobox for an example. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Logo or emblem image |- style="vertical-align:top;" | '''image_blank_emblem''' || optional || Can be used if a place has an official logo, crest, emblem, etc. |- style="vertical-align:top;" | '''blank_emblem_type''' || optional || Caption beneath "image_blank_emblem" to specify what type of emblem it is. |- style="vertical-align:top;" | '''blank_emblem_size''' || optional || If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''blank_emblem_alt''' || optional || Alt text for blank emblem. |- style="vertical-align:top;" | '''blank_emblem_link''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Nickname, motto |- style="vertical-align:top;" | '''etymology''' || optional || origin of name |- style="vertical-align:top;" | '''nickname''' || optional || well-known nickname |- style="vertical-align:top;" | '''nicknames''' || optional || if more than one well-known nickname, use this |- style="vertical-align:top;" | '''motto''' || optional || Will place the motto under the nicknames |- style="vertical-align:top;" | '''mottoes''' || optional || if more than one motto, use this |- style="vertical-align:top;" | '''anthem''' || optional || Will place the anthem (song) under the nicknames |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Maps, coordinates=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Map images |- style="vertical-align:top;" | '''image_map''' || optional || |- style="vertical-align:top;" | '''mapsize''' || optional || If used, '''px''' must be specified; default is 250px. |- style="vertical-align:top;" | '''map_alt''' || optional || Alt text for map. |- style="vertical-align:top;" | '''map_caption''' || optional || |- style="vertical-align:top;" | '''image_map1''' || optional || A secondary map image. The field '''image_map''' must be filled in first. Example see: [[Bloomsburg, Pennsylvania]]. |- style="vertical-align:top;" | '''mapsize1''' || optional || If used, '''px''' must be specified; default is 250px. |- style="vertical-align:top;" | '''map_alt1''' || optional || Alt text for secondary map. |- style="vertical-align:top;" | '''map_caption1''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Pushpin map(s), coordinates |- style="vertical-align:top;" | '''pushpin_map''' || optional || The name of a location map as per [[Template:Location map]] (e.g. ''Indonesia'' or ''Russia''). The coordinate fields (from {{para|coordinates}}) position a pushpin coordinate marker and label on the map '''automatically'''. Example: [[Padang, Indonesia]]. To show multiple pushpin maps, provide a list of maps separated by #, e.g., ''California#USA'' |- style="vertical-align:top;" | '''pushpin_mapsize''' || optional || Must be entered as only a number—'''do not use px'''. The default value is 250.<br/>''Equivalent to <code>width</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_map_alt''' || optional || Alt text for pushpin map; used by [[screen reader]]s, see [[WP:ALT]].<br/>''Equivalent to <code>alt</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_map_caption''' || optional || Fill out if a different caption from ''map_caption'' is desired.<br/>''Equivalent to <code>caption</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_map_caption_notsmall''' || optional || <!-- add documentation here --> |- style="vertical-align:top;" | '''pushpin_label''' || optional || The text of the label to display next to the identifying mark; a [[Wiki markup|wikilink]] can be used. If not specified, the label will be the text assigned to the ''name'' or ''official_name'' parameters (if {{para|pushpin_label_position|none}}, no label is displayed).<br/>''Equivalent to <code>label</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_label_position''' || optional || The position of the label on the pushpin map relative to the pushpin coordinate marker. Valid options are {left, right, top, bottom, none}. If this field is not specified, the default value is ''right''.<br/>''Equivalent to <code>position</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_outside''' || optional || ''Equivalent to <code>outside</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_relief''' || optional || Set this to <code>y</code> or any non-blank value to use an alternative relief map provided by the selected location map (if a relief map is available). <br/>''Equivalent to <code>relief</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_image''' || optional || Allows the use of an alternative map; the image must have the same edge coordinates as the location map template.<br/>''Equivalent to <code>AlternativeMap</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_overlay''' || optional || Can be used to specify an image to be superimposed on the regular pushpin map.<br/>''Equivalent to <code>overlay_image</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''mapframe''' || optional || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage. |- style="vertical-align:top;" | '''coordinates''' || optional || Latitude and longitude. Use {{tl|Coord}}. See the documentation for {{tl|Coord}} for more details on usage. |- style="vertical-align:top;" | '''coor_pinpoint''' || optional || If needed, to specify more exactly where (or what) coordinates are given (e.g. ''Town Hall'') or a specific place in a larger area (e.g. a city in a county). Example: In the article [[Masovian Voivodeship]], <code>coor_pinpoint=Warsaw</code> specifies [[Warsaw]]. |- style="vertical-align:top;" | '''coordinates_footnotes''' || optional || Reference(s) for coordinates, placed within <code><nowiki><ref> </ref></nowiki></code> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''grid_name'''<br />'''grid_position''' || optional || Name of a regional grid system and position on the regional grid |} ====Mapframe maps==== {{Infobox mapframe/doc/parameters | onByDefault = yes, unless any of the other map parameters are present: {{para|pushpin_map}}, {{para|image_map}}, {{para|image_map1}} | mapframe-frame-width = 250 | mapframe-length_km = {{para|length_km}} | mapframe-length_mi = {{para|length_mi}} | mapframe-width_km = {{para|width_km}} | mapframe-width_mi = {{para|width_mi}} | mapframe-area_km2 = {{para|area_total_km2}} | mapframe-area_ha = {{para|area_total_ha}} | mapframe-area_acre = {{para|area_total_acre}} | mapframe-area_sq_mi = {{para|area_total_sq_mi}} | mapframe-type = city | mapframe-population = {{para|population_metro}} or {{para|population_total}} | mapframe-marker = town | mapframe-caption = Interactive map of {{para|name}} or {{para|official_name}} or {{tl|PAGENAMEBASE}} }} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Location, established, seat, subdivisions, government, leaders=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Location |- style="vertical-align:top;" | {{anchor|subdivision_type}}'''subdivision_type''' || optional || almost always <code><nowiki>Country</nowiki></code> |- style="vertical-align:top;" | '''subdivision_name''' || optional || Depends on the subdivision_type — use the name in text form, sample: <code>United States</code>. Per [[MOS:INFOBOXFLAG]], flag icons or flag templates may be used in this field |- style="vertical-align:top;" | '''subdivision_type1'''<br />to<br />'''subdivision_type6''' || optional || Can be State/Province, region, county. These labels are for subdivisions ''above'' the level of the settlement described in the article. For subdivisions ''below'' or ''within'' the place described in the article, use {{para|parts_type}}. |- style="vertical-align:top;" | '''subdivision_name1'''<br />to<br />'''subdivision_name6''' || optional || Use the name in text form, sample: <code>Florida</code> or <code><nowiki>[[Florida]]</nowiki></code>. Per [[MOS:INFOBOXFLAG]], settlements "may have flags of the country and first-level administrative subdivision in infoboxes". Flag icons or flag templates is permitted for subdivision_name1 (which is usually state or province); flag icons or flag templates should '''not''' be used in subdivision_name2-6. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Established |- style="vertical-align:top;" | '''established_title''' || optional || Example: Founded |- style="vertical-align:top;" | '''established_date''' || optional || Requires established_title= |- style="vertical-align:top;" | '''established_title1''' || optional || Example: Incorporated (town) <br/>[Note that "established_title1" is distinct from "established_title"; you can think of "established_title" as behaving like "established_title0".] |- style="vertical-align:top;" | '''established_date1''' || optional || [See note for "established_title1".] Requires established_title1= |- style="vertical-align:top;" | '''established_title2''' || optional || Example: Incorporated (city) |- style="vertical-align:top;" | '''established_date2''' || optional || Requires established_title2= |- style="vertical-align:top;" | '''established_title3''' || optional || |- style="vertical-align:top;" | '''established_date3''' || optional || Requires established_title3= |- style="vertical-align:top;" | '''established_title4''' || optional || |- style="vertical-align:top;" | '''established_date4''' || optional || Requires established_title4= |- style="vertical-align:top;" | '''established_title5''' || optional || |- style="vertical-align:top;" | '''established_date5''' || optional || Requires established_title5= |- style="vertical-align:top;" | '''established_title6''' || optional || |- style="vertical-align:top;" | '''established_date6''' || optional || Requires established_title6= |- style="vertical-align:top;" | '''established_title7''' || optional || |- style="vertical-align:top;" | '''established_date7''' || optional || Requires established_title7= |- style="vertical-align:top;" | '''extinct_title''' || optional || For when a settlement ceases to exist |- style="vertical-align:top;" | '''extinct_date''' || optional || Requires extinct_title= |- style="vertical-align:top;" | '''founder''' || optional || Who the settlement was founded by |- style="vertical-align:top;" | '''named_for''' || optional || The source of the name of the settlement (a person, a place, et cetera) |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Seat of government |- style="vertical-align:top;" | '''seat_type''' || optional || The label for the seat of government (defaults to ''Seat''). |- style="vertical-align:top;" | '''seat''' || optional || The seat of government. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Smaller parts (e.g. boroughs of a city) |- style="vertical-align:top;" | '''parts_type''' || optional || The label for the smaller subdivisions (defaults to ''Boroughs''). |- style="vertical-align:top;" | '''parts_style''' || optional || Set to ''list'' to display as a collapsible list, ''coll'' as a collapsed list, or ''para'' to use paragraph style. Default is ''list'' for up to 5 items, otherwise ''coll''. |- style="vertical-align:top;" | '''parts''' || optional || Text or header of the list of smaller subdivisions. |- style="vertical-align:top;" | '''p1'''<br />'''p2'''<br />to<br />'''p50''' || optional || The smaller subdivisions to be listed. Example: [[Warsaw]] |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Government type, leaders |- style="vertical-align:top;" | '''government_footnotes''' || optional || Reference(s) for government, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''government_type''' || optional || Examples: [[Mayor–council government]], [[Council–manager government]], [[City commission government]], ... |- style="vertical-align:top;" | '''governing_body''' || optional || Name of the place's governing body |- style="vertical-align:top;" | '''leader_party''' || optional || Political party of the place's leader |- style="vertical-align:top;" | '''leader_title''' || optional || First title of the place's leader, e.g. Mayor |- style="vertical-align:top;" | '''leader_name''' || optional || Name of the place's leader |- style="vertical-align:top;" | '''leader_title1'''<br />to<br />'''leader_title4''' || optional || |- style="vertical-align:top;" | '''leader_name1'''<br />to<br />'''leader_name4''' || optional || For long lists use {{tl|Collapsible list}}. See [[Halifax Regional Municipality|Halifax]] for an example. |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Geographic information=== |- style="vertical-align:top;" | colspan=3 | These fields have '''dual automatic unit conversion''' meaning that if only metric values are entered, the imperial values will be automatically converted and vice versa. If an editor wishes to over-ride the automatic conversion, e.g. if the source gives both metric and imperial or if a range of values is needed, they should enter both values in their respective fields. All values must be entered in a '''raw format: no commas, spaces, or unit symbols'''. The template will format them automatically. |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Display settings |- style="vertical-align:top;" | '''total_type''' || optional || Specifies what "total" area and population figure refer to, e.g. ''Greater London''. This overrides other labels for total population/area. To make the total area and population display on the same line as the words "Area" and "Population", with no "Total" or similar label, set the value of this parameter to '''&amp;nbsp;'''. |- style="vertical-align:top;" | '''unit_pref''' || optional || To change the unit order to ''imperial (metric)'', enter '''imperial'''. The default display style is ''metric (imperial)''. However, the template will swap the order automatically if the '''subdivision_name''' equals some variation of the US or the UK.<br />For the Middle East, a unit preference of [[dunam]] can be entered (only affects total area). <br /> |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Area |- style="vertical-align:top;" | '''area_footnotes''' || optional || Reference(s) for area, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''dunam_link''' || optional || If dunams are used, the default is to link the word ''dunams'' in the total area section. This can be changed by setting <code>dunam_link</code> to another measure (e.g. <code>dunam_link=water</code>). Linking can also be turned off by setting the parameter to something else (e.g. <code>dunam_link=none</code> or <code>dunam_link=off</code>). |- style="vertical-align:top;" | '''area_total_km2''' || optional || Total area in square kilometers—symbol: km<sup>2</sup>. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square miles if area_total_sq_mi is empty. |- style="vertical-align:top;" | '''area_total_ha''' || optional || Total area in hectares—symbol: ha. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display acres if area_total_acre is empty. |- style="vertical-align:top;" | '''area_total_sq_mi''' || optional || Total area in square miles—symbol: sq&nbsp;mi. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers if area_total_km2 is empty. |- style="vertical-align:top;" | '''area_total_acre''' || optional || Total area in acres. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display hectares if area_total_ha is empty. |- style="vertical-align:top;" | '''area_total_dunam''' || optional || Total area in dunams, which is wiki-linked. Used in middle eastern places like Israel, Gaza, and the West Bank. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers or hectares and square miles or acreds if area_total_km2, area_total_ha, area_total_sq_mi, and area_total_acre are empty. Examples: [[Gaza City|Gaza]] and [[Ramallah]] |- style="vertical-align:top;" | '''area_land_km2''' || optional || Land area in square kilometers—symbol: km<sup>2</sup>. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square miles if area_land_sq_mi is empty. |- style="vertical-align:top;" | '''area_land_sq_mi''' || optional || Land area in square miles—symbol: sq&nbsp;mi. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers if area_land_km2 is empty. |- style="vertical-align:top;" | '''area_land_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_land_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_land_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_water_km2''' || optional || Water area in square kilometers—symbol: km<sup>2</sup>. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square miles if area_water_sq_mi is empty. |- style="vertical-align:top;" | '''area_water_sq_mi''' || optional || Water area in square miles—symbol: sq&nbsp;mi. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers if area_water_km2 is empty. |- style="vertical-align:top;" | '''area_water_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_water_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_water_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_water_percent''' || optional || percent of water without the "%" |- style="vertical-align:top;" | '''area_urban_km2''' || optional || |- style="vertical-align:top;" | '''area_urban_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_urban_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_urban_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_urban_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_rural_km2''' || optional || |- style="vertical-align:top;" | '''area_rural_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_rural_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_rural_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_rural_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_metro_km2''' || optional || |- style="vertical-align:top;" | '''area_metro_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_metro_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_metro_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_metro_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_rank''' || optional || The settlement's area, as ranked within its parent sub-division |- style="vertical-align:top;" | '''area_blank1_title''' || optional || Example see London |- style="vertical-align:top;" | '''area_blank1_km2''' || optional || |- style="vertical-align:top;" | '''area_blank1_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_blank1_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_blank1_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_blank1_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_blank2_title''' || optional || |- style="vertical-align:top;" | '''area_blank2_km2''' || optional || |- style="vertical-align:top;" | '''area_blank2_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_blank2_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_blank2_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_blank2_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_note''' || optional || A place for additional information such as the name of the source. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Dimensions |- style="vertical-align:top;" | '''dimensions_footnotes''' || optional || Reference(s) for dimensions, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''length_km''' || optional || Raw number entered in kilometers. Will automatically convert to display length in miles if length_mi is empty. |- style="vertical-align:top;" | '''length_mi''' || optional || Raw number entered in miles. Will automatically convert to display length in kilometers if length_km is empty. |- style="vertical-align:top;" | '''width_km''' || optional || Raw number entered in kilometers. Will automatically convert to display width in miles if length_mi is empty. |- style="vertical-align:top;" | '''width_mi''' || optional || Raw number entered in miles. Will automatically convert to display width in kilometers if length_km is empty. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Elevation |- style="vertical-align:top;" | '''elevation_footnotes''' || optional || Reference(s) for elevation, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''elevation_m''' || optional || Raw number entered in meters. Will automatically convert to display elevation in feet if elevation_ft is empty. However, if a range in elevation (i.e. 5–50 m ) is desired, use the "max" and "min" fields below |- style="vertical-align:top;" | '''elevation_ft''' || optional || Raw number, entered in feet. Will automatically convert to display the average elevation in meters if '''elevation_m''' field is empty. However, if a range in elevation (e.g. 50–500&nbsp;ft ) is desired, use the "max" and "min" fields below |- style="vertical-align:top;" | '''elevation_max_footnotes'''<br />'''elevation_min_footnotes''' || optional || Same as above, but for the "max" and "min" elevations. See [[City of Leeds]]. |- style="vertical-align:top;" | '''elevation_max_m'''<br />'''elevation_max_ft'''<br />'''elevation_max_rank'''<br />'''elevation_min_m'''<br />'''elevation_min_ft'''<br />'''elevation_min_rank''' || optional || Used to give highest & lowest elevations and rank, instead of just a single value. Example: [[Halifax Regional Municipality]]. |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Population, demographics=== |- style="vertical-align:top;" | colspan=3 | The density fields have '''dual automatic unit conversion''' meaning that if only metric values are entered, the imperial values will be automatically converted and vice versa. If an editor wishes to over-ride the automatic conversion, e.g. if the source gives both metric and imperial or if a range of values is needed, they can enter both values in their respective fields. '''To calculate density with respect to the total area automatically, type ''auto'' in place of any density value.''' |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Population |- style="vertical-align:top;" | '''population_total''' || optional || Actual population (see below for estimates) preferably consisting of digits only (without any commas) |- style="vertical-align:top;" | '''population_as_of''' || optional || The year for the population total (usually a census year) |- style="vertical-align:top;" | '''population_footnotes''' || optional || Reference(s) for population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_km2''' || optional || Set to {{code|auto}} to auto generate based on {{para|population_total}} and {{para|area_total_km2}} |- style="vertical-align:top;" | '''population_density_sq_mi''' || optional || Set to {{code|auto}} to auto generate based on {{para|population_total}} and {{para|area_total_sq_mi}} |- style="vertical-align:top;" | '''population_est''' || optional || Population estimate. |- style="vertical-align:top;" | '''pop_est_as_of''' || optional || The year or month & year of the population estimate |- style="vertical-align:top;" | '''pop_est_footnotes''' || optional || Reference(s) for population estimate, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_urban''' || optional || |- style="vertical-align:top;" | '''population_urban_footnotes''' || optional || Reference(s) for urban population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_urban_km2''' || optional || |- style="vertical-align:top;" | '''population_density_urban_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_rural''' || optional || |- style="vertical-align:top;" | '''population_rural_footnotes''' || optional || Reference(s) for rural population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_rural_km2''' || optional || |- style="vertical-align:top;" | '''population_density_rural_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_metro''' || optional || |- style="vertical-align:top;" | '''population_metro_footnotes''' || optional || Reference(s) for metro population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_metro_km2''' || optional || |- style="vertical-align:top;" | '''population_density_metro_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_rank''' || optional || The settlement's population, as ranked within its parent sub-division |- style="vertical-align:top;" | '''population_density_rank''' || optional || The settlement's population density, as ranked within its parent sub-division |- style="vertical-align:top;" | '''population_blank1_title''' || optional || Can be used for estimates. Example: [[Windsor, Ontario]] |- style="vertical-align:top;" | '''population_blank1''' || optional || The population value for blank1_title |- style="vertical-align:top;" | '''population_density_blank1_km2''' || optional || |- style="vertical-align:top;" | '''population_density_blank1_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_blank2_title''' || optional || |- style="vertical-align:top;" | '''population_blank2''' || optional || |- style="vertical-align:top;" | '''population_density_blank2_km2''' || optional || |- style="vertical-align:top;" | '''population_density_blank2_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_demonym''' || optional || A demonym or gentilic is a word that denotes the members of a people or the inhabitants of a place. For example, a citizen in [[Liverpool]] is known as a [[Liverpudlian]]. |- style="vertical-align:top;" | '''population_demonyms''' || optional || If more than one demonym, use this |- style="vertical-align:top;" | '''population_note''' || optional || A place for additional information such as the name of the source. See [[Windsor, Ontario]] for example. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Demographics (section 1) |- style="vertical-align:top;" | '''demographics_type1''' || optional || Section Header. For example: Ethnicity |- style="vertical-align:top;" | '''demographics1_footnotes''' || optional || Reference(s) for demographics section 1, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''demographics1_title1'''<br />to<br />'''demographics1_title7''' || optional || Titles related to demographics_type1. For example: White, Black, Hispanic... |- style="vertical-align:top;" | '''demographics1_info1'''<br />to<br />'''demographics1_info7''' || optional || Information related to the "titles". For example: 50%, 25%, 10%... |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Demographics (section 2) |- style="vertical-align:top;" | '''demographics_type2''' || optional || A second section header. For example: Languages |- style="vertical-align:top;" | '''demographics2_footnotes''' || optional || Reference(s) for demographics section 2, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''demographics2_title1'''<br />to<br />'''demographics2_title10''' || optional || Titles related to '''demographics_type2'''. For example: English, French, Arabic... |- style="vertical-align:top;" | '''demographics2_info1'''<br />to<br />'''demographics2_info10''' || optional || Information related to the "titles" for type2. For example: 50%, 25%, 10%... |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Other information=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Time zone(s) |- style="vertical-align:top;" | '''timezone1''' || optional || |- style="vertical-align:top;" | '''utc_offset1''' || optional || Plain text, e.g. "+05:00" or "−08:00". Auto-linked, so do not include references or additional text. |- style="vertical-align:top;" | '''timezone1_DST''' || optional || |- style="vertical-align:top;" | '''utc_offset1_DST''' || optional || |- style="vertical-align:top;" | '''timezone2''' || optional || A second timezone field for larger areas. Up to five timezones may be included. |- style="vertical-align:top;" | '''utc_offset2''' || optional || |- style="vertical-align:top;" | '''timezone2_DST''' || optional || |- style="vertical-align:top;" | '''utc_offset2_DST''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Postal code(s) & area code |- style="vertical-align:top;" | '''postal_code_type''' || optional || |- style="vertical-align:top;" | '''postal_code''' || optional || |- style="vertical-align:top;" | '''postal2_code_type''' || optional || |- style="vertical-align:top;" | '''postal2_code''' || optional || |- style="vertical-align:top;" | '''area_code_type''' || optional || If left blank/not used template will default to "[[Telephone numbering plan|Area code(s)]]" |- style="vertical-align:top;" | '''area_code''' || optional || Refers to the telephone dialing code for the settlement, ''not'' a geographic area code. |- style="vertical-align:top;" | '''area_codes''' || optional || If more than one area code, use this |- style="vertical-align:top;" | '''geocode''' || optional || See [[Geocode]] |- style="vertical-align:top;" | '''iso_code''' || optional || See [[ISO 3166]] |- style="vertical-align:top;" | '''registration_plate_type''' || optional || If left blank/not used template will default to "[[Vehicle registration plate|Vehicle registration]]" |- style="vertical-align:top;" | '''registration_plate''' || optional || See [[Vehicle registration plate]] |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Blank fields (section 1) |- style="vertical-align:top;" | '''blank_name_sec1''' || optional || Fields used to display other information. The name is displayed in bold on the left side of the infobox. |- style="vertical-align:top;" | '''blank_info_sec1''' || optional || The information associated with the ''blank_name'' heading. The info is displayed on right side of infobox, in the same row as the name. For an example, see: [[Warsaw]] |- style="vertical-align:top;" | '''blank1_name_sec1'''<br />to<br />'''blank7_name_sec1''' || optional || Up to 7 additional fields (8 total) can be displayed in this section |- style="vertical-align:top;" | '''blank1_info_sec1'''<br />to<br />'''blank7_info_sec1''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Blank fields (section 2) |- style="vertical-align:top;" | '''blank_name_sec2''' || optional || For a second section of blank fields |- style="vertical-align:top;" | '''blank_info_sec2''' || optional || Example: [[Beijing]] |- style="vertical-align:top;" | '''blank1_name_sec2'''<br />to<br />'''blank7_name_sec2''' || optional || Up to 7 additional fields (8 total) can be displayed in this section |- style="vertical-align:top;" | '''blank1_info_sec2'''<br />to<br />'''blank7_info_sec2''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Website, footnotes |- style="vertical-align:top;" | '''website''' || optional || External link to official website, use {{Tl|Official URL}} if Property P856 "official website" exists on Wikidata, or <nowiki>{{URL|example.com}}</nowiki> |- style="vertical-align:top;" | '''module''' || optional || To embed infoboxes at the bottom of the infobox |- style="vertical-align:top;" | '''footnotes''' || optional || Text to be displayed at the bottom of the infobox |} <!-- End of parameter name/description table --> ==Examples== ;Example 1: <!-- NOTE: This differs from the actual Chicago infobox in order to provide examples. --> {{Infobox settlement | name = Chicago | settlement_type = [[City (Illinois)|City]] | image_skyline = Chicago montage.jpg | imagesize = 275px <!--default is 250px--> | image_caption = Clockwise from top: [[Downtown Chicago]], the [[Chicago Theatre]], the [[Chicago 'L']], [[Navy Pier]], [[Millennium Park]], the [[Field Museum]], and the [[Willis Tower|Willis (formerly Sears) Tower]] | image_flag = Flag of Chicago, Illinois.svg | image_seal = | etymology = {{langx|mia|shikaakwa}} ("wild onion" or "wild garlic") | nickname = [[Origin of Chicago's "Windy City" nickname|The Windy City]], The Second City, Chi-Town, Chi-City, Hog Butcher for the World, City of the Big Shoulders, The City That Works, and others found at [[List of nicknames for Chicago]] | motto = {{langx|la|Urbs in Horto}} (City in a Garden), Make Big Plans (Make No Small Plans), I Will | image_map = US-IL-Chicago.png | map_caption = Location in the [[Chicago metropolitan area]] and Illinois | pushpin_map = USA | pushpin_map_caption = Location in the United States | mapframe = yes | mapframe-zoom = 8 | mapframe-stroke-width = 1 | mapframe-shape-fill = #0096ff | mapframe-marker = building-alt1 | mapframe-wikidata = yes | mapframe-id = Q1297 | coordinates = {{coord|41|50|15|N|87|40|55|W}} | coordinates_footnotes = <ref name="USCB Gazetteer 2010"/> | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = [[Illinois]] | subdivision_type2 = [[List of counties in Illinois|Counties]] | subdivision_name2 = [[Cook County, Illinois|Cook]], [[DuPage County, Illinois|DuPage]] | established_title = Settled | established_date = 1770s | established_title2 = [[Municipal corporation|Incorporated]] | established_date2 = March 4, 1837 | founder = | named_for = {{langx|mia|shikaakwa}}<br /> ("Wild onion") | government_type = [[Mayor–council government|Mayor–council]] | leader_title = [[Mayor of Chicago|Mayor]] | leader_name = [[Rahm Emanuel]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[City council|Council]] | leader_name1 = [[Chicago City Council]] | unit_pref = Imperial | area_footnotes = <ref name="USCB Gazetteer 2010">{{cite web | url = https://www.census.gov/geo/www/gazetteer/files/Gaz_places_national.txt | title = 2010 United States Census Gazetteer for Places: January 1, 2010 | format = text | work = 2010 United States Census | publisher = [[United States Census Bureau]] | date = April 2010 | access-date = August 1, 2012}}</ref> | area_total_sq_mi = 234.114 | area_land_sq_mi = 227.635 | area_water_sq_mi = 6.479 | area_water_percent = 3 | area_urban_sq_mi = 2123 | area_metro_sq_mi = 10874 | elevation_footnotes = <ref name="GNIS"/> | elevation_ft = 594 | elevation_m = 181 | population_footnotes = <ref name="USCB PopEstCities 2011">{{cite web | url = https://www.census.gov/popest/data/cities/totals/2011/tables/SUB-EST2011-01.csv | title = Annual Estimates of the Resident Population for Incorporated Places Over 50,000, Ranked by July 1, 2011 Population | format = [[comma-separated values|CSV]] | work = 2011 Population Estimates | publisher = [[United States Census Bureau]], Population Division | date = June 2012 | access-date = August 1, 2012}}</ref><ref name="USCB Metro 2010">{{cite web | url=https://www.census.gov/prod/cen2010/briefs/c2010br-01.pdf | title = Population Change for the Ten Most Populous and Fastest Growing Metropolitan Statiscal Areas: 2000 to 2010 | date = March 2011 | publisher = [[U.S. Census Bureau]] | page = 6 |access-date = April 12, 2011}}</ref> | population_as_of = [[2010 United States census|2010]] | population_total = 2695598 | pop_est_footnotes = | pop_est_as_of = 2011 | population_est = 2707120 | population_rank = [[List of United States cities by population|3rd US]] | population_density_sq_mi = 11,892.4<!-- 2011 population_est / area_land_sq_mi --> | population_urban = 8711000 | population_density_urban_sq_mi = auto | population_metro = 9461105 | population_density_metro_sq_mi = auto | population_demonym = Chicagoan | timezone = [[Central Standard Time|CST]] | utc_offset = −06:00 | timezone_DST = [[Central Daylight Time|CDT]] | utc_offset_DST = −05:00 | area_code_type = [[North American Numbering Plan|Area codes]] | area_codes = [[Area code 312|312]], [[Area code 773|773]], [[Area code 872|872]] | blank_name = [[Federal Information Processing Standards|FIPS]] code | blank_info = {{FIPS|17|14000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|423587}}, {{GNIS 4|428803}} | website = {{URL|www.cityofchicago.org}} | footnotes = <ref name="GNIS">{{Cite gnis|428803|City of Chicago|April 12, 2011}}</ref> }} <syntaxhighlight lang="wikitext" style="overflow:auto; white-space: pre-wrap;"> <!-- NOTE: This differs from the actual Chicago infobox in order to provide examples. --> {{Infobox settlement | name = Chicago | settlement_type = [[City (Illinois)|City]] | image_skyline = Chicago montage.jpg | imagesize = 275px <!--default is 250px--> | image_caption = Clockwise from top: [[Downtown Chicago]], the [[Chicago Theatre]], the [[Chicago 'L']], [[Navy Pier]], [[Millennium Park]], the [[Field Museum]], and the [[Willis Tower|Willis (formerly Sears) Tower]] | image_flag = Flag of Chicago, Illinois.svg | image_seal = | etymology = {{langx|mia|shikaakwa}} ("wild onion" or "wild garlic") | nickname = [[Origin of Chicago's "Windy City" nickname|The Windy City]], The Second City, Chi-Town, Chi-City, Hog Butcher for the World, City of the Big Shoulders, The City That Works, and others found at [[List of nicknames for Chicago]] | motto = {{langx|la|Urbs in Horto}} (City in a Garden), Make Big Plans (Make No Small Plans), I Will | image_map = US-IL-Chicago.png | map_caption = Location in the [[Chicago metropolitan area]] and Illinois | pushpin_map = USA | pushpin_map_caption = Location in the United States | mapframe = yes | mapframe-zoom = 8 | mapframe-stroke-width = 1 | mapframe-shape-fill = #0096ff | mapframe-marker = building-alt1 | coordinates = {{coord|41|50|15|N|87|40|55|W}} | coordinates_footnotes = <ref name="USCB Gazetteer 2010"/> | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = [[Illinois]] | subdivision_type2 = [[List of counties in Illinois|Counties]] | subdivision_name2 = [[Cook County, Illinois|Cook]], [[DuPage County, Illinois|DuPage]] | established_title = Settled | established_date = 1770s | established_title2 = [[Municipal corporation|Incorporated]] | established_date2 = March 4, 1837 | founder = | named_for = {{langx|mia|shikaakwa}}<br /> ("Wild onion") | government_type = [[Mayor–council government|Mayor–council]] | leader_title = [[Mayor of Chicago|Mayor]] | leader_name = [[Rahm Emanuel]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[City council|Council]] | leader_name1 = [[Chicago City Council]] | unit_pref = Imperial | area_footnotes = <ref name="USCB Gazetteer 2010">{{cite web | url = https://www.census.gov/geo/www/gazetteer/files/Gaz_places_national.txt | title = 2010 United States Census Gazetteer for Places: January 1, 2010 | format = text | work = 2010 United States Census | publisher = [[United States Census Bureau]] | date = April 2010 | access-date = August 1, 2012}}</ref> | area_total_sq_mi = 234.114 | area_land_sq_mi = 227.635 | area_water_sq_mi = 6.479 | area_water_percent = 3 | area_urban_sq_mi = 2123 | area_metro_sq_mi = 10874 | elevation_footnotes = <ref name="GNIS"/> | elevation_ft = 594 | elevation_m = 181 | population_footnotes = <ref name="USCB PopEstCities 2011">{{cite web | url = https://www.census.gov/popest/data/cities/totals/2011/tables/SUB-EST2011-01.csv | title = Annual Estimates of the Resident Population for Incorporated Places Over 50,000, Ranked by July 1, 2011 Population | format = [[comma-separated values|CSV]] | work = 2011 Population Estimates | publisher = [[United States Census Bureau]], Population Division | date = June 2012 | access-date = August 1, 2012}}</ref><ref name="USCB Metro 2010">{{cite web | url=https://www.census.gov/prod/cen2010/briefs/c2010br-01.pdf | title = Population Change for the Ten Most Populous and Fastest Growing Metropolitan Statiscal Areas: 2000 to 2010 | date = March 2011 | publisher = [[U.S. Census Bureau]] | page = 6 |access-date = April 12, 2011}}</ref> | population_as_of = [[2010 United States census|2010]] | population_total = 2695598 | pop_est_footnotes = | pop_est_as_of = 2011 | population_est = 2707120 | population_rank = [[List of United States cities by population|3rd US]] | population_density_sq_mi = 11,892.4<!-- 2011 population_est / area_land_sq_mi --> | population_urban = 8711000 | population_density_urban_sq_mi = auto | population_metro = 9461105 | population_density_metro_sq_mi = auto | population_demonym = Chicagoan | timezone = [[Central Standard Time|CST]] | utc_offset = −06:00 | timezone_DST = [[Central Daylight Time|CDT]] | utc_offset_DST = −05:00 | area_code_type = [[North American Numbering Plan|Area codes]] | area_codes = [[Area code 312|312]], [[Area code 773|773]], [[Area code 872|872]] | blank_name = [[Federal Information Processing Standards|FIPS]] code | blank_info = {{FIPS|17|14000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|423587}}, {{GNIS 4|428803}} | website = {{URL|www.cityofchicago.org}} | footnotes = <ref name="GNIS">{{Cite gnis|428803|City of Chicago|April 12, 2011}}</ref> }} </syntaxhighlight> '''References''' {{reflist}} {{clear}} ---- ;Example 2: {{Infobox settlement | name = Detroit | settlement_type = [[City (Michigan)|City]] | image_skyline = Detroit Montage.jpg | imagesize = 290px | image_caption = Images from top to bottom, left to right: [[Downtown Detroit]] skyline, [[Spirit of Detroit]], [[Greektown Historic District|Greektown]], [[Ambassador Bridge]], [[Michigan Soldiers' and Sailors' Monument]], [[Fox Theatre (Detroit)|Fox Theatre]], and [[Comerica Park]]. | image_flag = Flag of Detroit.svg | image_seal = Seal of Detroit.svg | etymology = {{langx|fr|détroit}} ([[strait]]) | nickname = The Motor City, Motown, Renaissance City, The D, Hockeytown, The Automotive Capital of the World, Rock City, The 313 | motto = ''Speramus Meliora; Resurget Cineribus''<br />([[Latin]]: We Hope For Better Things; It Shall Rise From the Ashes) | image_map = Wayne County Michigan Incorporated and Unincorporated areas Detroit highlighted.svg | mapsize = 250x200px | map_caption = Location within [[Wayne County, Michigan|Wayne County]] and the state of [[Michigan]] | pushpin_map = USA | pushpin_map_caption = Location within the [[contiguous United States]] | mapframe = yes | mapframe-stroke-width = 1 | mapframe-marker = city | mapframe-zoom = 9 | mapframe-wikidata = yes | mapframe-id = Q12439 | coordinates = {{coord|42|19|53|N|83|2|45|W}} | coordinates_footnotes = | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = [[Michigan]] | subdivision_type2 = [[List of counties in Michigan|County]] | subdivision_name2 = [[Wayne County, Michigan|Wayne]] | established_title = Founded | established_date = 1701 | established_title2 = Incorporated | established_date2 = 1806 | government_footnotes = <!-- for references: use<ref> tags --> | government_type = [[Mayor–council government|Mayor–council]] | leader_title = [[List of mayors of Detroit|Mayor]] | leader_name = [[Mike Duggan]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[Detroit City Council|City Council]] | leader_name1 = {{collapsible list|bullets=yes | title = Members | 1 = [[Charles Pugh]] – Council President | 2 = [[Gary Brown (Detroit politician)|Gary Brown]] – Council President Pro-Tem | 3 = [[JoAnn Watson]] | 4 = [[Kenneth Cockrel, Jr.]] | 5 = [[Saunteel Jenkins]] | 6 = [[Andre Spivey]] | 7 = [[James Tate (Detroit politician)|James Tate]] | 8 = [[Brenda Jones (Detroit politician)|Brenda Jones]] | 9 = [[Kwame Kenyatta]] }} | unit_pref = Imperial | area_footnotes = | area_total_sq_mi = 142.87 | area_total_km2 = 370.03 | area_land_sq_mi = 138.75 | area_land_km2 = 359.36 | area_water_sq_mi = 4.12 | area_water_km2 = 10.67 | area_urban_sq_mi = 1295 | area_metro_sq_mi = 3913 | elevation_footnotes = | elevation_ft = 600 | population_footnotes = | population_as_of = 2011 | population_total = 706585 | population_rank = [[List of United States cities by population|18th in U.S.]] | population_urban = 3863924 | population_metro = 4285832 (US: [[List of United States metropolitan statistical areas|13th]]) | population_blank1_title = [[Combined statistical area|CSA]] | population_blank1 = 5207434 (US: [[List of United States combined statistical areas|11th]]) | population_density_sq_mi= {{#expr:713777/138.8 round 0}} | population_demonym = Detroiter | population_note = | timezone = [[Eastern Time Zone (North America)|EST]] | utc_offset = −5 | timezone_DST = [[Eastern Daylight Time|EDT]] | utc_offset_DST = −4 | postal_code_type = | postal_code = | area_code = [[Area code 313|313]] | blank_name = [[Federal Information Processing Standards|FIPS code]] | blank_info = {{FIPS|26|22000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|1617959}}, {{GNIS 4|1626181}} | website = [http://www.detroitmi.gov/ DetroitMI.gov] | footnotes = }} <syntaxhighlight lang="wikitext" style="overflow:auto; white-space: pre-wrap;"> {{Infobox settlement | name = Detroit | settlement_type = [[City (Michigan)|City]] | image_skyline = Detroit Montage.jpg | imagesize = 290px | image_caption = Images from top to bottom, left to right: [[Downtown Detroit]] skyline, [[Spirit of Detroit]], [[Greektown Historic District|Greektown]], [[Ambassador Bridge]], [[Michigan Soldiers' and Sailors' Monument]], [[Fox Theatre (Detroit)|Fox Theatre]], and [[Comerica Park]]. | image_flag = Flag of Detroit, Michigan.svg | image_seal = Seal of Detroit, Michigan.svg | etymology = {{langx|fr|détroit}} ([[strait]]) | nickname = The Motor City, Motown, Renaissance City, The D, Hockeytown, The Automotive Capital of the World, Rock City, The 313 | motto = ''Speramus Meliora; Resurget Cineribus''<br />([[Latin]]: We Hope For Better Things; It Shall Rise From the Ashes) | image_map = Wayne County Michigan Incorporated and Unincorporated areas Detroit highlighted.svg | mapsize = 250x200px | map_caption = Location within [[Wayne County, Michigan|Wayne County]] and the state of [[Michigan]] | pushpin_map = USA | pushpin_map_caption = Location within the [[contiguous United States]] | mapframe = yes | mapframe-stroke-width = 1 | mapframe-marker = city | mapframe-zoom = 9 | coordinates = {{coord|42|19|53|N|83|2|45|W}} | coordinates_footnotes = | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = Michigan | subdivision_type2 = [[List of counties in Michigan|County]] | subdivision_name2 = [[Wayne County, Michigan|Wayne]] | established_title = Founded | established_date = 1701 | established_title2 = Incorporated | established_date2 = 1806 | government_footnotes = <!-- for references: use<ref> tags --> | government_type = [[Mayor-council government|Mayor-Council]] | leader_title = [[List of mayors of Detroit|Mayor]] | leader_name = [[Mike Duggan]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[Detroit City Council|City Council]] | leader_name1 = {{collapsible list|bullets=yes | title = Members | 1 = [[Charles Pugh]] – Council President | 2 = [[Gary Brown (Detroit politician)|Gary Brown]] – Council President Pro-Tem | 3 = [[JoAnn Watson]] | 4 = [[Kenneth Cockrel, Jr.]] | 5 = [[Saunteel Jenkins]] | 6 = [[Andre Spivey]] | 7 = [[James Tate (Detroit politician)|James Tate]] | 8 = [[Brenda Jones (Detroit politician)|Brenda Jones]] | 9 = [[Kwame Kenyatta]] }} | unit_pref = Imperial | area_footnotes = | area_total_sq_mi = 142.87 | area_total_km2 = 370.03 | area_land_sq_mi = 138.75 | area_land_km2 = 359.36 | area_water_sq_mi = 4.12 | area_water_km2 = 10.67 | area_urban_sq_mi = 1295 | area_metro_sq_mi = 3913 | elevation_footnotes = | elevation_ft = 600 | population_footnotes = | population_as_of = 2011 | population_total = 706585 | population_rank = [[List of United States cities by population|18th in U.S.]] | population_urban = 3863924 | population_metro = 4285832 (US: [[List of United States metropolitan statistical areas|13th]]) | population_blank1_title = [[Combined statistical area|CSA]] | population_blank1 = 5207434 (US: [[List of United States combined statistical areas|11th]]) | population_density_sq_mi= {{#expr:713777/138.8 round 0}} | population_demonym = Detroiter | population_note = | timezone = [[Eastern Time Zone (North America)|EST]] | utc_offset = −5 | timezone_DST = [[Eastern Daylight Time|EDT]] | utc_offset_DST = −4 | postal_code_type = | postal_code = | area_code = [[Area code 313|313]] | blank_name = [[Federal Information Processing Standards|FIPS code]] | blank_info = {{FIPS|26|22000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|1617959}}, {{GNIS 4|1626181}} | website = [http://www.detroitmi.gov/ DetroitMI.gov] | footnotes = }} </syntaxhighlight> {{clear}} ==Supporting templates== The following is a list of sub-templates used by Infobox settlement. See the [{{fullurl:Special:PrefixIndex|prefix=Infobox+settlement%2F&namespace=10&hideredirects=1}} current list of all sub-templates] for documentation, sandboxes, testcases, etc. * {{tl|Infobox settlement/areadisp}} * {{tl|Infobox settlement/densdisp}} * {{tl|Infobox settlement/lengthdisp}} * {{tl|Infobox settlement/link}} ==Microformat== {{UF-hcard-geo}} == TemplateData == {{TemplateData header}} {{collapse top|title=TemplateData}} <templatedata> { "description": "Infobox for human settlements (cities, towns, villages, communities) as well as other administrative districts, counties, provinces, etc.", "format": "block", "params": { "name": { "label": "Common name", "description": "This is the usual name in English. If it's not specified, the infobox will use the 'official_name' as a title unless this too is missing, in which case the page name will be used.", "type": "string", "suggested": true }, "official_name": { "label": "Official name", "description": "The official name in English, if different from 'name'.", "type": "string", "suggested": true }, "native_name": { "label": "Native name", "description": "This will display under the name/official name.", "type": "string", "example": "Distrito Federal de México" }, "native_name_lang": { "label": "Native name language", "description": "Use ISO 639-1 code, e.g. 'fr' for French. If there is more than one native name in different languages, enter those names using {{lang}} instead.", "type": "string", "example": "zh" }, "other_name": { "label": "Other name", "description": "For places with other commonly used names like Bombay or Saigon.", "type": "string" }, "settlement_type": { "label": "Type of settlement", "description": "Any type can be entered, such as 'City', 'Town', 'Village', 'Hamlet', 'Municipality', 'Reservation', etc. If set, will be displayed under the names, provided either 'name' or 'official_name' is filled in. Might also be used as a label for total population/area (defaulting to 'City'), if needed to distinguish from 'Urban', 'Rural' or 'Metro' (if urban, rural or metro figures are not present, the label is 'Total' unless 'total_type' is set).", "type": "string", "aliases": [ "type" ] }, "translit_lang1": { "label": "Transliteration from language 1", "description": "Will place the entry before the word 'transliteration(s)'. Can be used to specify a particular language, like in Dêlêg, or one may just enter 'Other', like in Gaza's article.", "type": "string" }, "translit_lang1_type": { "label": "Transliteration type for language 1", "type": "line", "example": "[[Hanyu pinyin]]", "description": "The type of transliteration used for the first language." }, "translit_lang1_info": { "label": "Transliteration language 1 info", "description": "Parameters 'translit_lang2_info1' ... 'translit_lang2_info6' are also available, but not documented here.", "type": "string" }, "translit_lang2": { "label": "Transliteration language 2", "description": "Will place a second transliteration. See Dêlêg.", "type": "string" }, "image_skyline": { "label": "Image", "description": "Primary image representing the settlement. Commonly a photo of the settlement’s skyline.", "type": "wiki-file-name" }, "imagesize": { "label": "Image size", "description": "Can be used to tweak the size of 'image_skyline' up or down. This can be helpful if an editor wants to make the infobox wider. If used, 'px' must be specified; default size is 250px.", "type": "string" }, "image_alt": { "label": "Image alt text", "description": "Alt (hover) text for the image, used by visually impaired readers who cannot see the image.", "type": "string" }, "image_caption": { "label": "Image caption", "description": "Will place a caption under 'image_skyline' (if present).", "type": "content", "aliases": [ "caption" ] }, "image_flag": { "label": "Flag image", "description": "Used for a flag.", "type": "wiki-file-name" }, "flag_size": { "label": "Flag size", "description": "Can be used to tweak the size of 'image_flag' up or down from 100px as desired. If used, 'px' must be specified; default size is 100px.", "type": "string" }, "flag_alt": { "label": "Flag alt text", "description": "Alt text for the flag.", "type": "string" }, "flag_border": { "label": "Flag border?", "description": "Set to 'no' to remove the border from the flag.", "type": "boolean", "example": "no" }, "flag_link": { "label": "Flag link", "type": "string", "description": "Link to the flag." }, "image_seal": { "label": "Official seal image", "description": "An image of an official seal, if the place has one.", "type": "wiki-file-name" }, "seal_size": { "label": "Seal size", "description": "If used, 'px' must be specified; default size is 100px.", "type": "string" }, "seal_alt": { "label": "Seal alt text", "description": "Alt (hover) text for the seal.", "type": "string" }, "seal_link": { "label": "Seal link", "type": "string", "description": "Link to the seal." }, "seal_class": { "label": "Seal class", "description": "CSS class for the seal image", "type": "line", "suggestedvalues": [ "skin-invert" ] }, "image_shield": { "label": "Coat of arms/shield image", "description": "Can be used for a place with a coat of arms.", "type": "wiki-file-name" }, "shield_size": { "label": "Shield size", "description": "If used, 'px' must be specified; default size is 100px.", "type": "string", "example": "200px" }, "shield_alt": { "label": "Shield alt text", "description": "Alternate text for the shield.", "type": "string" }, "shield_link": { "label": "Shield link", "description": "Can be used if a wiki article if known but is not automatically linked by the template. See Coquitlam, British Columbia's infobox for an example.", "type": "string" }, "image_blank_emblem": { "label": "Blank emblem image", "description": "Can be used if a place has an official logo, crest, emblem, etc.", "type": "wiki-file-name" }, "blank_emblem_type": { "label": "Blank emblem type", "description": "Caption beneath 'image_blank_emblem' to specify what type of emblem it is.", "type": "string", "example": "Logo" }, "blank_emblem_size": { "label": "Blank emblem size", "description": "If used, 'px' must be specified; default size is 100px.", "type": "string", "example": "200px" }, "blank_emblem_alt": { "label": "Blank emblem alt text", "description": "Alt text for blank emblem.", "type": "string" }, "blank_emblem_link": { "label": "Blank emblem link", "type": "string", "description": "A link to the emblem of custom type." }, "nickname": { "label": "Nickname", "description": "Well-known nickname(s).", "type": "string", "example": "Sin City" }, "motto": { "label": "Motto", "description": "Will place the motto under the nicknames.", "type": "string" }, "anthem": { "label": "Anthem", "description": "Will place the anthem (song) under the nicknames.", "type": "string", "example": "[[Hatikvah]]" }, "image_map": { "label": "Map image", "description": "A map of the region, or a map with the region highlighted within a parent region.", "type": "wiki-file-name" }, "mapsize": { "label": "Map size", "description": "If used, 'px' must be specified; default is 250px.", "type": "string" }, "map_alt": { "label": "Map alt text", "description": "Alternate (hover) text for the map.", "type": "string" }, "map_caption": { "label": "Map caption", "type": "content", "description": "Caption for the map displayed." }, "image_map1": { "label": "Map 2 image", "description": "A secondary map image. The field 'image_map' must be filled in first. For an example, see [[Bloomsburg, Pennsylvania]].", "example": "File:Columbia County Pennsylvania Incorporated and Unincorporated areas Bloomsburg Highlighted.svg", "type": "wiki-file-name" }, "mapsize1": { "label": "Map 2 size", "description": "If used, 'px' must be specified; default is 250px.", "type": "string", "example": "300px" }, "map_alt1": { "label": "Map 2 alt text", "description": "Alt (hover) text for the second map.", "type": "string" }, "map_caption1": { "label": "Map 2 caption", "type": "content", "description": "Caption of the second map." }, "pushpin_map": { "label": "Pushpin map", "description": "The name of a location map (e.g. 'Indonesia' or 'Russia'). The coordinates information (from the coordinates parameter) positions a pushpin coordinate marker and label on the map automatically. For an example, see Padang, Indonesia.", "type": "string", "example": "Indonesia" }, "pushpin_mapsize": { "label": "Pushpin map size", "description": "Must be entered as only a number—do not use 'px'. The default value is 250.", "type": "number", "example": "200" }, "pushpin_map_alt": { "label": "Pushpin map alt text", "description": "Alt (hover) text for the pushpin map.", "type": "string" }, "pushpin_map_caption": { "label": "Pushpin map caption", "description": "Fill out if a different caption from 'map_caption' is desired.", "type": "string", "example": "Map showing Bloomsburg in Pennsylvania" }, "pushpin_label": { "label": "Pushpin label", "type": "line", "example": "Bloomsburg", "description": "Label of the pushpin." }, "pushpin_label_position": { "label": "Pushpin label position", "description": "The position of the label on the pushpin map relative to the pushpin coordinate marker. Valid options are 'left', 'right', 'top', 'bottom', and 'none'. If this field is not specified, the default value is 'right'.", "type": "string", "example": "left", "default": "right" }, "pushpin_outside": { "label": "Pushpin outside?", "type": "line" }, "pushpin_relief": { "label": "Pushpin relief", "description": "Set this to 'y' or any non-blank value to use an alternative relief map provided by the selected location map (if a relief map is available).", "type": "string", "example": "y" }, "pushpin_image": { "label": "Pushpin image", "type": "wiki-file-name", "description": "Image to use for the pushpin." }, "pushpin_overlay": { "label": "Pushpin overlay", "description": "Can be used to specify an image to be superimposed on the regular pushpin map.", "type": "wiki-file-name" }, "coordinates": { "label": "Coordinates", "description": "Latitude and longitude. Use {{Coord}}. See the documentation for {{Coord}} for more details on usage.", "type": "wiki-template-name", "example": "{{coord|41|50|15|N|87|40|55|W}}" }, "coor_pinpoint": { "label": "Coordinate pinpoint", "description": "If needed, to specify more exactly where (or what) coordinates are given (e.g. 'Town Hall') or a specific place in a larger area (e.g. a city in a county). Example: Masovian Voivodeship.", "type": "string" }, "coordinates_footnotes": { "label": "Coordinates footnotes", "description": "Reference(s) for coordinates. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "subdivision_type": { "label": "Subdivision type 1", "description": "Almost always 'Country'.", "type": "string", "example": "Country", "suggestedvalues": [ "Country" ] }, "subdivision_name": { "label": "Subdivision name 1", "description": "Depends on 'subdivision_type'. Use the name in text form, e.g., 'United States'. Per MOS:INFOBOXFLAG, flag icons or flag templates may be used in this field.", "type": "string" }, "subdivision_type1": { "label": "Subdivision type 2", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type2": { "label": "Subdivision type 3", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type3": { "label": "Subdivision type 4", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type4": { "label": "Subdivision type 5", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type5": { "label": "Subdivision type 6", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type6": { "label": "Subdivision type 7", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_name1": { "label": "Subdivision name 2", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Connecticut]]" }, "subdivision_name2": { "label": "Subdivision name 3", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Florida]]" }, "subdivision_name3": { "label": "Subdivision name 4", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Utah]]" }, "subdivision_name4": { "label": "Subdivision name 5", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[California]]" }, "subdivision_name5": { "label": "Subdivision name 6", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Vermont]]" }, "subdivision_name6": { "label": "Subdivision name 7", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Wyoming]]" }, "established_title": { "label": "First establishment event", "description": "Title of the first establishment event.", "type": "string", "example": "First settled" }, "established_date": { "label": "First establishment date", "type": "date", "description": "Date of the first establishment event." }, "established_title1": { "label": "Second establishment event", "description": "Title of the second establishment event.", "type": "string", "example": "Incorporated as a town" }, "established_date1": { "label": "Second establishment date", "type": "date", "description": "Date of the second establishment event." }, "established_title2": { "label": "Third establishment event", "description": "Title of the third establishment event.", "type": "string", "example": "Incorporated as a city" }, "established_date2": { "label": "Third establishment date", "type": "date", "description": "Date of the third establishment event." }, "established_title3": { "label": "Fourth establishment event", "type": "string", "description": "Title of the fourth establishment event.", "example": "Incorporated as a county" }, "established_date3": { "label": "Fourth establishment date", "type": "date", "description": "Date of the fourth establishment event." }, "extinct_title": { "label": "Extinction event title", "description": "For when a settlement ceases to exist.", "type": "string", "example": "[[Sack of Rome]]" }, "extinct_date": { "label": "Extinction date", "type": "string", "description": "Date the settlement ceased to exist." }, "founder": { "label": "Founder", "description": "Who the settlement was founded by.", "type": "string" }, "named_for": { "label": "Named for", "description": "The source of the name of the settlement (a person, a place, et cetera).", "type": "string", "example": "[[Ho Chi Minh]]" }, "seat_type": { "label": "Seat of government type", "description": "The label for the seat of government (defaults to 'Seat').", "type": "string", "default": "Seat" }, "seat": { "label": "Seat of government", "description": "The seat of government.", "type": "string", "example": "[[White House]]" }, "parts_type": { "label": "Type of smaller subdivisions", "description": "The label for the smaller subdivisions (defaults to 'Boroughs').", "type": "string", "default": "Boroughs" }, "parts_style": { "label": "Parts style", "description": "Set to 'list' to display as a collapsible list, 'coll' as a collapsed list, or 'para' to use paragraph style. Default is 'list' for up to 5 items, otherwise 'coll'.", "type": "string", "example": "list" }, "parts": { "label": "Smaller subdivisions", "description": "Text or header of the list of smaller subdivisions.", "type": "string" }, "p1": { "label": "Smaller subdivision 1", "description": "The smaller subdivisions to be listed. Parameters 'p1' to 'p50' can also be used.", "type": "string" }, "government_footnotes": { "label": "Government footnotes", "description": "Reference(s) for government. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "content" }, "government_type": { "label": "Government type", "description": "The place's type of government.", "type": "string", "example": "[[Mayor–council government]]" }, "governing_body": { "label": "Governing body", "description": "Name of the place's governing body.", "type": "wiki-page-name", "example": "Legislative Council of Hong Kong" }, "leader_party": { "label": "Leader political party", "description": "Political party of the place's leader.", "type": "string" }, "leader_title": { "label": "Leader title", "description": "First title of the place's leader, e.g. 'Mayor'.", "type": "string", "example": "[[Governor (United States)|Governor]]" }, "leader_name": { "label": "Leader's name", "description": "Name of the place's leader.", "type": "string", "example": "[[Jay Inslee]]" }, "leader_title1": { "label": "Leader title 1", "description": "First title of the place's leader, e.g. 'Mayor'.", "type": "string", "example": "Mayor" }, "leader_name1": { "label": "Leader name 1", "description": "Additional names for leaders. Parameters 'leader_name1' .. 'leader_name4' are available. For long lists, use {{Collapsible list}}.", "type": "string" }, "total_type": { "label": "Total type", "description": "Specifies what total area and population figure refer to, e.g. 'Greater London'. This overrides other labels for total population/area. To make the total area and population display on the same line as the words ''Area'' and ''Population'', with no ''Total'' or similar label, set the value of this parameter to '&nbsp;'.", "type": "string" }, "unit_pref": { "label": "Unit preference", "description": "To change the unit order to 'imperial (metric)', enter 'imperial'. The default display style is 'metric (imperial)'. However, the template will swap the order automatically if the 'subdivision_name' equals some variation of the US or the UK. For the Middle East, a unit preference of dunam can be entered (only affects total area). All values must be entered in a raw format (no commas, spaces, or unit symbols). The template will format them automatically.", "type": "string", "example": "imperial" }, "area_footnotes": { "label": "Area footnotes", "description": "Reference(s) for area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "dunam_link": { "label": "Link dunams?", "description": "If dunams are used, the default is to link the word ''dunams'' in the total area section. This can be changed by setting 'dunam_link' to another measure (e.g. 'dunam_link=water'). Linking can also be turned off by setting the parameter to something else (e.g., 'dunam_link=none' or 'dunam_link=off').", "type": "boolean", "example": "none" }, "area_total_km2": { "label": "Total area (km2)", "description": "Total area in square kilometers (symbol: km²). Value must be entered in raw format (no commas or spaces). Auto-converted to display square miles if 'area_total_sq_mi' is empty.", "type": "number" }, "area_total_sq_mi": { "label": "Total area (sq. mi)", "description": "Total area in square miles (symbol: sq mi). Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers if 'area_total_km2' is empty.", "type": "number" }, "area_total_ha": { "label": "Total area (hectares)", "description": "Total area in hectares (symbol: ha). Value must be entered in raw format (no commas or spaces). Auto-converted to display acres if 'area_total_acre' is empty.", "type": "number" }, "area_total_acre": { "label": "Total area (acres)", "description": "Total area in acres. Value must be entered in raw format (no commas or spaces). Auto-converted to display hectares if 'area_total_ha' is empty.", "type": "number" }, "area_total_dunam": { "label": "Total area (dunams)", "description": "Total area in dunams, which is wikilinked. Used in Middle Eastern places like Israel, Gaza, and the West Bank. Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers or hectares and square miles or acres if 'area_total_km2', 'area_total_ha', 'area_total_sq_mi', and 'area_total_acre' are empty. Examples: Gaza and Ramallah.", "type": "number" }, "area_land_km2": { "label": "Land area (sq. km)", "description": "Land area in square kilometers (symbol: km²). Value must be entered in raw format (no commas or spaces). Auto-converted to display square miles if 'area_land_sq_mi' is empty.", "type": "number" }, "area_land_sq_mi": { "label": "Land area (sq. mi)", "description": "Land area in square miles (symbol: sq mi). Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers if 'area_land_km2' is empty.", "type": "number" }, "area_land_ha": { "label": "Land area (hectares)", "description": "The place's land area in hectares.", "type": "number" }, "area_land_dunam": { "label": "Land area (dunams)", "description": "The place's land area in dunams.", "type": "number" }, "area_land_acre": { "label": "Land area (acres)", "description": "The place's land area in acres.", "type": "number" }, "area_water_km2": { "label": "Water area (sq. km)", "description": "Water area in square kilometers (symbol: km²). Value must be entered in raw format (no commas or spaces). Auto-converted to display square miles if 'area_water_sq_mi' is empty.", "type": "number" }, "area_water_sq_mi": { "label": "Water area (sq. mi)", "description": "Water area in square miles (symbol: sq mi). Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers if 'area_water_km2' is empty.", "type": "number" }, "area_water_ha": { "label": "Water area (hectares)", "description": "The place's water area in hectares.", "type": "number" }, "area_water_dunam": { "label": "Water area (dunams)", "description": "The place's water area in dunams.", "type": "number" }, "area_water_acre": { "label": "Water area (acres)", "description": "The place's water area in acres.", "type": "number" }, "area_water_percent": { "label": "Percent water area", "description": "Percent of water without the %.", "type": "number", "example": "21" }, "area_urban_km2": { "label": "Urban area (sq. km)", "type": "number", "description": "Area of the place's urban area in square kilometers." }, "area_urban_sq_mi": { "label": "Urban area (sq. mi)", "type": "number", "description": "Area of the place's urban area in square miles." }, "area_urban_ha": { "label": "Urban area (hectares)", "description": "Area of the place's urban area in hectares.", "type": "number" }, "area_urban_dunam": { "label": "Urban area (dunams)", "description": "Area of the place's urban area in dunams.", "type": "number" }, "area_urban_acre": { "label": "Urban area (acres)", "description": "Area of the place's urban area in acres.", "type": "number" }, "area_urban_footnotes": { "label": "Urban area footnotes", "description": "Reference(s) for the urban area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "area_rural_km2": { "label": "Rural area (sq. km)", "type": "number", "description": "Area of the place's rural area in square kilometers." }, "area_rural_sq_mi": { "label": "Rural area (sq. mi)", "type": "number", "description": "Area of the place's rural area in square miles." }, "area_rural_ha": { "label": "Rural area (hectares)", "description": "Area of the place's rural area in hectares.", "type": "number" }, "area_rural_dunam": { "label": "Rural area (dunams)", "description": "Area of the place's rural area in dunams.", "type": "number" }, "area_rural_acre": { "label": "Rural area (acres)", "description": "Area of the place's rural area in acres.", "type": "number" }, "area_rural_footnotes": { "label": "Rural area footnotes", "description": "Reference(s) for the urban area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "area_metro_km2": { "label": "Metropolitan area (sq. km)", "type": "number", "description": "Area of the place's metropolitan area in square kilometers." }, "area_metro_sq_mi": { "label": "Metropolitan area (sq. mi)", "type": "number", "description": "Area of the place's metropolitan area in square miles." }, "area_metro_ha": { "label": "Metropolitan area (hectares)", "description": "Area of the place's metropolitan area in hectares.", "type": "number" }, "area_metro_dunam": { "label": "Metropolitan area (dunams)", "description": "Area of the place's metropolitan area in dunams.", "type": "number" }, "area_metro_acre": { "label": "Metropolitan area (acres)", "description": "Area of the place's metropolitan area in acres.", "type": "number" }, "area_metro_footnotes": { "label": "Metropolitan area footnotes", "description": "Reference(s) for the urban area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "area_rank": { "label": "Area rank", "description": "The settlement's area, as ranked within its parent sub-division.", "type": "string" }, "area_blank1_title": { "label": "First blank area section title", "description": "Title of the place's first custom area section.", "type": "string", "example": "see [[London]]" }, "area_blank1_km2": { "label": "Area blank 1 (sq. km)", "type": "number", "description": "Area of the place's first blank area section in square kilometers." }, "area_blank1_sq_mi": { "label": "Area blank 1 (sq. mi)", "type": "number", "description": "Area of the place's first blank area section in square miles." }, "area_blank1_ha": { "label": "Area blank 1 (hectares)", "description": "Area of the place's first blank area section in hectares.", "type": "number" }, "area_blank1_dunam": { "label": "Area blank 1 (dunams)", "description": "Area of the place's first blank area section in dunams.", "type": "number" }, "area_blank1_acre": { "label": "Area blank 1 (acres)", "description": "Area of the place's first blank area section in acres.", "type": "number" }, "area_blank2_title": { "label": "Second blank area section title", "type": "string", "description": "Title of the place's second custom area section." }, "area_blank2_km2": { "label": "Area blank 2 (sq. km)", "type": "number", "description": "Area of the place's second blank area section in square kilometers." }, "area_blank2_sq_mi": { "label": "Area blank 2 (sq. mi)", "type": "number", "description": "Area of the place's second blank area section in square miles." }, "area_blank2_ha": { "label": "Area blank 2 (hectares)", "description": "Area of the place's third blank area section in hectares.", "type": "number" }, "area_blank2_dunam": { "label": "Area blank 2 (dunams)", "description": "Area of the place's third blank area section in dunams.", "type": "number" }, "area_blank2_acre": { "label": "Area blank 2 (acres)", "description": "Area of the place's third blank area section in acres.", "type": "number" }, "area_note": { "label": "Area footnotes", "description": "A place for additional information such as the name of the source.", "type": "content", "example": "<ref name=\"CenPopGazetteer2016\">{{cite web|title=2016 U.S. Gazetteer Files|url=https://www2.census.gov/geo/docs/maps-data/data/gazetteer/2016_Gazetteer/2016_gaz_place_42.txt|publisher=United States Census Bureau|access-date=August 13, 2017}}</ref>" }, "dimensions_footnotes": { "label": "Dimensions footnotes", "description": "Reference(s) for dimensions. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "content" }, "length_km": { "label": "Length in km", "description": "Raw number entered in kilometers. Will automatically convert to display length in miles if 'length_mi' is empty.", "type": "number" }, "length_mi": { "label": "Length in miles", "description": "Raw number entered in miles. Will automatically convert to display length in kilometers if 'length_km' is empty.", "type": "number" }, "width_km": { "label": "Width in kilometers", "description": "Raw number entered in kilometers. Will automatically convert to display width in miles if 'length_mi' is empty.", "type": "number" }, "width_mi": { "label": "Width in miles", "description": "Raw number entered in miles. Will automatically convert to display width in kilometers if 'length_km' is empty.", "type": "number" }, "elevation_m": { "label": "Elevation in meters", "description": "Raw number entered in meters. Will automatically convert to display elevation in feet if 'elevation_ft' is empty. However, if a range in elevation (i.e. 5–50&nbsp;m) is desired, use the 'max' and 'min' fields below.", "type": "number" }, "elevation_ft": { "label": "Elevation in feet", "description": "Raw number, entered in feet. Will automatically convert to display the average elevation in meters if 'elevation_m' field is empty. However, if a range in elevation (i.e. 50–500&nbsp;ft) is desired, use the 'max' and 'min' fields below.", "type": "number" }, "elevation_footnotes": { "label": "Elevation footnotes", "description": "Reference(s) for elevation. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "elevation_min_point": { "type": "line", "label": "Point of min elevation", "description": "The name of the point of lowest elevation in the place.", "example": "[[Death Valley]]" }, "elevation_min_m": { "label": "Minimum elevation (m)", "type": "number", "description": "The minimum elevation in meters." }, "elevation_min_ft": { "label": "Minimum elevation (ft)", "type": "number", "description": "The minimum elevation in feet." }, "elevation_min_rank": { "type": "line", "label": "Minimum elevation rank", "description": "The point of minimum elevation's rank in the parent region.", "example": "1st" }, "elevation_min_footnotes": { "label": "Min elevation footnotes", "type": "content", "description": "Footnotes or citations for the minimum elevation." }, "elevation_max_point": { "type": "line", "label": "Point of max elevation", "description": "The name of the point of highest elevation in the place.", "example": "[[Mount Everest]]" }, "elevation_max_m": { "label": "Maximum elevation (m)", "type": "number", "description": "The maximum elevation in meters." }, "elevation_max_ft": { "label": "Maximum elevation (ft)", "type": "number", "description": "The maximum elevation in feet." }, "elevation_max_rank": { "type": "line", "label": "Maximum elevation rank", "description": "The point of maximum elevation's rank in the parent region.", "example": "2nd" }, "elevation_max_footnotes": { "label": "Max elevation footnotes", "type": "content", "description": "Footnotes or citations for the maximum elevation." }, "population_total": { "label": "Population total", "description": "Actual population (see below for estimates) preferably consisting of digits only (without any commas).", "type": "number" }, "population_as_of": { "label": "Population total figure's year", "description": "The year for the population total (usually a census year).", "type": "number" }, "population_footnotes": { "label": "Population footnotes", "description": "Reference(s) for population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content" }, "population_density_km2": { "label": "Population density (per square km)", "type": "string", "description": "The place's population density per square kilometer.", "example": "auto" }, "population_density_sq_mi": { "label": "Population density (per square mi)", "type": "string", "description": "The place's population density per square mile.", "example": "auto" }, "population_est": { "label": "Population estimate", "description": "Population estimate, e.g. for growth projections 4 years after a census.", "type": "number", "example": "331000000" }, "pop_est_as_of": { "label": "Population estimate figure as of", "description": "The year, or the month and year, of the population estimate.", "type": "date" }, "pop_est_footnotes": { "label": "Population estimate footnotes", "description": "Reference(s) for population estimate; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content", "example": "<ref name=\"USCensusEst2016\"/>" }, "population_urban": { "label": "Urban population", "type": "number", "description": "The place's urban population." }, "population_urban_footnotes": { "label": "Urban population footnotes", "description": "Reference(s) for urban population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content" }, "population_density_urban_km2": { "label": "Urban population density (per square km)", "type": "string", "description": "The place's urban population density per square kilometer.", "example": "auto" }, "population_density_urban_sq_mi": { "label": "Urban population density (per square mi)", "type": "string", "description": "The place's urban population density per square mile.", "example": "auto" }, "population_rural": { "label": "Rural population", "type": "number", "description": "The place's rural population." }, "population_rural_footnotes": { "label": "Rural population footnotes", "description": "Reference(s) for rural population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content" }, "population_density_rural_km2": { "label": "Rural population density per sq. km", "type": "line", "description": "The place's rural population density per square kilometer.", "example": "auto" }, "population_density_rural_sq_mi": { "label": "Rural population density per sq. mi", "type": "line", "description": "The place's rural population density per square mile.", "example": "auto" }, "population_metro": { "label": "Metropolitan area population", "type": "number", "description": "Population of the place's metropolitan area." }, "population_metro_footnotes": { "label": "Metropolitan area population footnotes", "description": "Reference(s) for metro population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "string" }, "population_density_metro_km2": { "label": "Metropolitan population density per sq. km", "type": "number", "description": "The place's metropolitan area's population density per square kilometer.", "example": "auto" }, "population_density_metro_sq_mi": { "label": "Metropolitan population density per sq. mi", "type": "number", "description": "The place's metropolitan area's population density per square mile.", "example": "auto" }, "population_rank": { "label": "Population rank", "description": "The settlement's population, as ranked within its parent sub-division.", "type": "string" }, "population_density_rank": { "label": "Population density rank", "description": "The settlement's population density, as ranked within its parent sub-division.", "type": "string" }, "population_blank1_title": { "label": "Custom population type 1 title", "description": "Can be used for estimates. For an example, see Windsor, Ontario.", "type": "string", "example": "See: [[Windsor, Ontario]]" }, "population_blank1": { "label": "Custom population type 1", "description": "The population value for 'blank1_title'.", "type": "string" }, "population_density_blank1_km2": { "label": "Custom population type 1 density per sq. km", "type": "string", "description": "Population density per square kilometer, according to the 1st custom population type." }, "population_density_blank1_sq_mi": { "label": "Custom population type 1 density per sq. mi", "type": "string", "description": "Population density per square mile, according to the 1st custom population type." }, "population_blank2_title": { "label": "Custom population type 2 title", "description": "Can be used for estimates. For an example, see Windsor, Ontario.", "type": "string", "example": "See: [[Windsor, Ontario]]" }, "population_blank2": { "label": "Custom population type 2", "description": "The population value for 'blank2_title'.", "type": "string" }, "population_density_blank2_km2": { "label": "Custom population type 2 density per sq. km", "type": "string", "description": "Population density per square kilometer, according to the 2nd custom population type." }, "population_density_blank2_sq_mi": { "label": "Custom population type 2 density per sq. mi", "type": "string", "description": "Population density per square mile, according to the 2nd custom population type." }, "population_demonym": { "label": "Demonym", "description": "A demonym or gentilic is a word that denotes the members of a people or the inhabitants of a place. For example, a citizen in Liverpool is known as a Liverpudlian.", "type": "line", "example": "Liverpudlian" }, "population_note": { "label": "Population note", "description": "A place for additional information such as the name of the source. See Windsor, Ontario, for an example.", "type": "content" }, "demographics_type1": { "label": "Demographics type 1", "description": "A sub-section header.", "type": "string", "example": "Ethnicities" }, "demographics1_footnotes": { "label": "Demographics section 1 footnotes", "description": "Reference(s) for demographics section 1. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "content" }, "demographics1_title1": { "label": "Demographics section 1 title 1", "description": "Titles related to demographics_type1. For example: 'White', 'Black', 'Hispanic'... Additional rows 'demographics1_title1' to 'demographics1_title5' are also available.", "type": "string" }, "demographics_type2": { "label": "Demographics type 2", "description": "A second sub-section header.", "type": "line", "example": "Languages" }, "demographics2_footnotes": { "label": "Demographics section 2 footnotes", "description": "Reference(s) for demographics section 2. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "demographics2_title1": { "label": "Demographics section 2 title 1", "description": "Titles related to 'demographics_type1'. For example: 'English', 'French', 'Arabic'... Additional rows 'demographics2_title2' to 'demographics1_title5' are also available.", "type": "string" }, "demographics2_info1": { "label": "Demographics section 2 info 1", "description": "Information related to the titles. For example: '50%', '25%', '10%'... Additional rows 'demographics2_info2' to 'demographics2_info5' are also available.", "type": "content" }, "timezone1": { "label": "Timezone 1", "type": "string", "description": "The place's primary time-zone. Use 'timezone' or 'timezone1', but not both.", "example": "[[Eastern Standard Time]]", "aliases": [ "timezone" ] }, "utc_offset": { "label": "UTC offset", "type": "string", "description": "The place's time-zone's offset from UTC.", "example": "+8" }, "timezone_DST": { "label": "Timezone during DST", "type": "string", "description": "The place's time-zone during daylight savings time, if applicable.", "example": "[[Eastern Daylight Time]]" }, "utc_offset_DST": { "label": "UTC offset during DST", "type": "string", "description": "The place's time-zone's UTC offset during daylight savings time, if applicable.", "example": "+9" }, "utc_offset1": { "label": "UTC offset 1", "type": "string", "description": "The place's primary time-zone's offset from UTC.", "example": "−5" }, "timezone1_DST": { "label": "Timezone 1 (during DST)", "type": "string", "description": "The place's primary time-zone during daylight savings time, if applicable.", "example": "[[Eastern Daylight Time]]" }, "utc_offset1_DST": { "label": "UTC offset 1 (during DST)", "type": "string", "description": "The place's primary time-zone's UTC offset during daylight savings time, if applicable.", "example": "−6" }, "timezone2": { "label": "Timezone 2", "description": "A second timezone field for larger areas such as a province.", "type": "string", "example": "[[Central Standard Time]]" }, "utc_offset2": { "label": "UTC offset 2", "type": "string", "description": "The place's secondary time-zone's offset from UTC.", "example": "−6" }, "timezone2_DST": { "label": "Timezone 2 during DST", "type": "string", "description": "The place's secondary time-zone during daylight savings time, if applicable.", "example": "[[Central Daylight Time]]" }, "utc_offset2_DST": { "label": "UTC offset 2 during DST", "type": "string", "description": "The place's secondary time-zone's offset from UTC during daylight savings time, if applicable.", "example": "−7" }, "postal_code_type": { "label": "Postal code type", "description": "Label used for postal code info, e.g. 'ZIP Code'. Defaults to 'Postal code'.", "example": "[[Postal code of China|Postal code]]", "type": "string" }, "postal_code": { "label": "Postal code", "description": "The place's postal code/zip code.", "type": "string", "example": "90210" }, "postal2_code_type": { "label": "Postal code 2 type", "type": "string", "description": "If applicable, the place's second postal code type." }, "postal2_code": { "label": "Postal code 2", "type": "string", "description": "A second postal code of the place, if applicable.", "example": "90007" }, "area_code": { "label": "Area code", "description": "The regions' telephone area code.", "type": "string", "aliases": [ "area_codes" ] }, "area_code_type": { "label": "Area code type", "description": "If left blank/not used, template will default to 'Area code(s)'.", "type": "string" }, "geocode": { "label": "Geocode", "description": "See [[Geocode]].", "type": "string" }, "iso_code": { "label": "ISO 3166 code", "description": "See ISO 3166.", "type": "string" }, "registration_plate": { "label": "Registration/license plate info", "description": "See Vehicle registration plate.", "type": "string" }, "blank_name_sec1": { "label": "Blank name section 1", "description": "Fields used to display other information. The name is displayed in bold on the left side of the infobox.", "type": "string", "aliases": [ "blank_name" ] }, "blank_info_sec1": { "label": "Blank info section 1", "description": "The information associated with the 'blank_name_sec1' heading. The info is displayed on the right side of the infobox in the same row as the name. For an example, see [[Warsaw]].", "type": "content", "aliases": [ "blank_info" ] }, "blank1_name_sec1": { "label": "Blank 1 name section 1", "description": "Up to 7 additional fields 'blank1_name_sec1' ... 'blank7_name_sec1' can be specified.", "type": "string" }, "blank1_info_sec1": { "label": "Blank 1 info section 1", "description": "Up to 7 additional fields 'blank1_info_sec1' ... 'blank7_info_sec1' can be specified.", "type": "content" }, "blank_name_sec2": { "label": "Blank name section 2", "description": "For a second section of blank fields.", "type": "string" }, "blank_info_sec2": { "label": "Blank info section 2", "example": "Beijing", "type": "content", "description": "The information associated with the 'blank_name_sec2' heading. The info is displayed on right side of infobox, in the same row as the name. For an example, see [[Warsaw]]." }, "blank1_name_sec2": { "label": "Blank 1 name section 2", "description": "Up to 7 additional fields 'blank1_name_sec2' ... 'blank7_name_sec2' can be specified.", "type": "string" }, "blank1_info_sec2": { "label": "Blank 1 info section 2", "description": "Up to 7 additional fields 'blank1_info_sec2' ... 'blank7_info_sec2' can be specified.", "type": "content" }, "website": { "label": "Official website in English", "description": "External link to official website. Use the {{URL}} template, thus: {{URL|example.com}}.", "type": "string" }, "footnotes": { "label": "Footnotes", "description": "Text to be displayed at the bottom of the infobox.", "type": "content" }, "translit_lang1_info1": { "label": "Language 1 first transcription ", "description": "Transcription of type 1 in the first other language.", "example": "{{langx|zh|森美兰}}", "type": "line" }, "translit_lang1_type1": { "label": "Language 1 first transcription type", "description": "Type of transcription used in the first language's first transcription.", "example": "[[Chinese Language|Chinese]]", "type": "line" }, "translit_lang1_info2": { "label": "Language 1 second transcription ", "description": "Transcription of type 1 in the first other language.", "example": "{{langx|ta|நெகிரி செம்பிலான்}}", "type": "line" }, "translit_lang1_type2": { "label": "Language 1 second transcription type", "description": "Type of transcription used in the first language's first transcription.", "example": "[[Tamil Language|Tamil]]", "type": "line" }, "demographics1_info1": { "label": "Demographics section 1 info 1", "description": "Information related to the titles. For example: '50%', '25%', '10%'... Additional rows 'demographics1_info1' to 'demographics1_info5' are also available.", "type": "content" }, "mapframe": { "label": "Show mapframe map", "description": "Specify yes or no to show or hide the map, overriding the default", "example": "yes", "type": "string", "default": "no", "suggested": true }, "mapframe-caption": { "label": "Mapframe caption", "description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"", "type": "string" }, "mapframe-custom": { "label": "Custom mapframe", "description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.", "type": "wiki-template-name" }, "mapframe-id": { "aliases": [ "id", "qid" ], "label": "Mapframe Wikidata item", "description": "Id (Q-number) of Wikidata item to use.", "type": "string", "default": "(item for current page)" }, "mapframe-coordinates": { "aliases": [ "mapframe-coord", "coordinates", "coord" ], "label": "Mapframe coordinates ", "description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.", "example": "{{Coord|12.34|N|56.78|E}}", "type": "wiki-template-name", "default": "(coordinates from Wikidata)" }, "mapframe-wikidata": { "label": "Mapframe shapes from Wikidata", "description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter", "example": "yes", "type": "string" }, "mapframe-shape": { "label": "Mapframe shape feature", "description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"", "type": "string" }, "mapframe-point": { "label": "Mapframe point feature", "description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"", "type": "string" }, "mapframe-geomask": { "label": "Mapframe geomask", "description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)", "example": "Q100", "type": "wiki-page-name" }, "mapframe-switcher": { "label": "Mapframe switcher", "description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.", "type": "string" }, "mapframe-frame-width": { "aliases": [ "mapframe-width" ], "label": "Mapframe width", "description": "Frame width in pixels", "type": "number", "default": "270" }, "mapframe-frame-height": { "aliases": [ "mapframe-height" ], "label": "Mapframe height", "description": "Frame height in pixels", "type": "number", "default": "200" }, "mapframe-shape-fill": { "label": "Mapframe shape fill", "description": "Color used to fill shape features", "type": "string", "default": "#606060" }, "mapframe-shape-fill-opacity": { "label": "Mapframe shape fill opacity", "description": "Opacity level of shape fill, a number between 0 and 1", "type": "number", "default": "0.5" }, "mapframe-stroke-color": { "aliases": [ "mapframe-stroke-colour" ], "label": "Mapframe stroke color", "description": "Color of line features, and outlines of shape features", "type": "string", "default": "#ff0000" }, "mapframe-stroke-width": { "label": "Mapframe stroke width", "description": "Width of line features, and outlines of shape features", "type": "number", "default": "5" }, "mapframe-marker": { "label": "Mapframe marker", "description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options", "example": "museum", "type": "string" }, "mapframe-marker-color": { "aliases": [ "mapframe-marker-colour" ], "label": "Mapframe marker color", "description": "Background color for the marker", "type": "string", "default": "#5E74F3" }, "mapframe-geomask-stroke-color": { "aliases": [ "mapframe-geomask-stroke-colour" ], "label": "Mapframe geomask stroke color", "description": "Color of outline of geomask shape", "type": "string", "default": "#555555" }, "mapframe-geomask-stroke-width": { "label": "Mapframe geomask stroke width", "description": "Width of outline of geomask shape", "type": "number", "default": "2" }, "mapframe-geomask-fill": { "label": "Mapframe geomask fill", "description": "Color used to fill outside geomask features", "type": "string", "default": "#606060" }, "mapframe-geomask-fill-opacity": { "label": "Mapframe geomask fill opacity", "description": "Opacity level of fill outside geomask features, a number between 0 and 1", "type": "number", "default": "0.5" }, "mapframe-zoom": { "label": "Mapframe zoom", "description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area", "example": "12", "type": "number", "default": "10" }, "mapframe-length_km": { "label": "Mapframe length (km)", "description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-length_mi": { "label": "Mapframe length (mi)", "description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-area_km2": { "label": "Mapframe area (km^2)", "description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-area_mi2": { "label": "Mapframe area (mi^2)", "description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-frame-coordinates": { "aliases": [ "mapframe-frame-coord" ], "label": "Mapframe frame coordinates", "description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}", "example": "{{Coord|12.35|N|56.71|E}}", "type": "wiki-template-name" }, "mapframe-line": {}, "embed": {}, "translit_lang1_type3": {}, "translit_lang1_type4": {}, "translit_lang1_info3": {}, "translit_lang1_type5": {}, "translit_lang1_info4": {}, "translit_lang1_type6": {}, "translit_lang1_info5": {}, "translit_lang1_info6": {}, "translit_lang2_type1": {}, "translit_lang2_type": {}, "translit_lang2_info": {}, "translit_lang2_type2": {}, "translit_lang2_info1": {}, "translit_lang2_type3": {}, "translit_lang2_info2": {}, "translit_lang2_type4": {}, "translit_lang2_info3": {}, "translit_lang2_type5": {}, "translit_lang2_info4": {}, "translit_lang2_type6": {}, "translit_lang2_info5": {}, "translit_lang2_info6": {}, "image_size": {}, "alt": {}, "pushpin_map_narrow": {}, "seal_type": {}, "pushpin_map_caption_notsmall": {}, "etymology": {}, "nicknames": {}, "nickname_link": {}, "mottoes": {}, "motto_link": {}, "anthem_link": {}, "grid_position": {}, "coor_type": {}, "grid_name": {}, "established_title4": {}, "established_date4": {}, "established_title5": {}, "established_date5": {}, "established_title6": {}, "established_date6": {}, "established_title7": {}, "established_date7": {}, "seat1_type": {}, "seat1": {}, "seat2_type": {}, "seat2": {}, "p2": {}, "p3": {}, "p4": {}, "p5": {}, "p6": {}, "p7": {}, "p8": {}, "p9": {}, "p10": {}, "p11": {}, "p12": {}, "p13": {}, "p14": {}, "p15": {}, "p16": {}, "p17": {}, "p18": {}, "p19": {}, "p20": {}, "p21": {}, "p22": {}, "p23": {}, "p24": {}, "p25": {}, "p26": {}, "p27": {}, "p28": {}, "p29": {}, "p30": {}, "p31": {}, "p32": {}, "p33": {}, "p34": {}, "p35": {}, "p36": {}, "p37": {}, "p38": {}, "p39": {}, "p40": {}, "p41": {}, "p42": {}, "p43": {}, "p44": {}, "p45": {}, "p46": {}, "p47": {}, "p48": {}, "p49": {}, "p50": {}, "leader_name2": {}, "leader_name3": {}, "leader_name4": {}, "leader_title2": {}, "leader_title3": {}, "leader_title4": {}, "government_blank1_title": {}, "government_blank1": {}, "government_blank2_title": {}, "government_blank2": {}, "government_blank3_title": {}, "government_blank3": {}, "government_blank4_title": {}, "government_blank4": {}, "government_blank5_title": {}, "government_blank5": {}, "government_blank6_title": {}, "government_blank6": {}, "elevation_link": {}, "elevation_point": {}, "population_blank1_footnotes": {}, "population_blank2_footnotes": {}, "population_demonyms": {}, "demographics1_title2": {}, "demographics1_info2": {}, "demographics1_title3": {}, "demographics1_info3": {}, "demographics1_title4": {}, "demographics1_info4": {}, "demographics1_title5": {}, "demographics1_info5": {}, "demographics1_title6": {}, "demographics1_info6": {}, "demographics1_title7": {}, "demographics1_info7": {}, "demographics1_title8": {}, "demographics1_info8": {}, "demographics1_title9": {}, "demographics1_info9": {}, "demographics1_title10": {}, "demographics1_info10": {}, "demographics2_title2": {}, "demographics2_info2": {}, "demographics2_title3": {}, "demographics2_info3": {}, "demographics2_title4": {}, "demographics2_info4": {}, "demographics2_title5": {}, "demographics2_info5": {}, "demographics2_title6": {}, "demographics2_info6": {}, "demographics2_title7": {}, "demographics2_info7": {}, "demographics2_title8": {}, "demographics2_info8": {}, "demographics2_title9": {}, "demographics2_info9": {}, "demographics2_title10": {}, "demographics2_info10": {}, "timezone1_location": {}, "timezone_link": {}, "timezone2_location": {}, "timezone3_location": {}, "utc_offset3": {}, "timezone3": {}, "utc_offset3_DST": {}, "timezone3_DST": {}, "timezone4_location": {}, "utc_offset4": {}, "timezone4": {}, "utc_offset4_DST": {}, "timezone4_DST": {}, "timezone5_location": {}, "utc_offset5": {}, "timezone5": {}, "utc_offset5_DST": {}, "timezone5_DST": {}, "registration_plate_type": { "label": "Registration/license plate type", "description": "The place's registration/license plate type", "type": "content" }, "code1_name": {}, "code1_info": {}, "code2_name": {}, "code2_info": {}, "blank1_name": {}, "blank1_info": {}, "blank2_name_sec1": {}, "blank2_name": {}, "blank2_info_sec1": {}, "blank2_info": {}, "blank3_name_sec1": {}, "blank3_name": {}, "blank3_info_sec1": {}, "blank3_info": {}, "blank4_name_sec1": {}, "blank4_name": {}, "blank4_info_sec1": {}, "blank4_info": {}, "blank5_name_sec1": {}, "blank5_name": {}, "blank5_info_sec1": {}, "blank5_info": {}, "blank6_name_sec1": {}, "blank6_name": {}, "blank6_info_sec1": {}, "blank6_info": {}, "blank7_name_sec1": {}, "blank7_name": {}, "blank7_info_sec1": {}, "blank7_info": {}, "blank2_name_sec2": {}, "blank2_info_sec2": {}, "blank3_name_sec2": {}, "blank3_info_sec2": {}, "blank4_name_sec2": {}, "blank4_info_sec2": {}, "blank5_name_sec2": {}, "blank5_info_sec2": {}, "blank6_name_sec2": {}, "blank6_info_sec2": {}, "blank7_name_sec2": {}, "blank7_info_sec2": {}, "module": {}, "coordinates_wikidata": {}, "wikidata": {}, "image_upright": {}, "blank_emblem_upright": {}, "leader_title5": {}, "leader_name5": {} }, "paramOrder": [ "name", "official_name", "native_name", "native_name_lang", "other_name", "settlement_type", "translit_lang1", "translit_lang1_type", "translit_lang1_info", "translit_lang2", "image_skyline", "imagesize", "image_upright", "image_alt", "image_caption", "image_flag", "flag_size", "flag_alt", "flag_border", "flag_link", "image_seal", "seal_size", "seal_alt", "seal_link", "seal_type", "seal_class", "image_shield", "shield_size", "shield_alt", "shield_link", "image_blank_emblem", "blank_emblem_type", "blank_emblem_size", "blank_emblem_upright", "blank_emblem_alt", "blank_emblem_link", "nickname", "motto", "anthem", "image_map", "mapsize", "map_alt", "map_caption", "image_map1", "mapsize1", "map_alt1", "map_caption1", "pushpin_map", "pushpin_mapsize", "pushpin_map_alt", "pushpin_map_caption", "pushpin_label", "pushpin_label_position", "pushpin_outside", "pushpin_relief", "pushpin_image", "pushpin_overlay", "mapframe", "mapframe-caption", "mapframe-custom", "mapframe-id", "mapframe-coordinates", "mapframe-wikidata", "mapframe-point", "mapframe-shape", "mapframe-frame-width", "mapframe-frame-height", "mapframe-shape-fill", "mapframe-shape-fill-opacity", "mapframe-stroke-color", "mapframe-stroke-width", "mapframe-marker", "mapframe-marker-color", "mapframe-geomask", "mapframe-geomask-stroke-color", "mapframe-geomask-stroke-width", "mapframe-geomask-fill", "mapframe-geomask-fill-opacity", "mapframe-zoom", "mapframe-length_km", "mapframe-length_mi", "mapframe-area_km2", "mapframe-area_mi2", "mapframe-frame-coordinates", "mapframe-switcher", "mapframe-line", "coordinates", "coor_pinpoint", "coordinates_footnotes", "subdivision_type", "subdivision_name", "subdivision_type1", "subdivision_name1", "subdivision_type2", "subdivision_name2", "subdivision_type3", "subdivision_name3", "subdivision_type4", "subdivision_name4", "subdivision_type5", "subdivision_name5", "subdivision_type6", "subdivision_name6", "established_title", "established_date", "established_title1", "established_date1", "established_title2", "established_date2", "established_title3", "established_date3", "established_title4", "established_date4", "established_title5", "established_date5", "established_title6", "established_date6", "established_title7", "established_date7", "extinct_title", "extinct_date", "founder", "named_for", "seat_type", "seat", "parts_type", "parts_style", "parts", "government_footnotes", "government_type", "governing_body", "leader_party", "leader_title", "leader_name", "leader_title1", "leader_name1", "total_type", "unit_pref", "area_footnotes", "dunam_link", "area_total_km2", "area_total_sq_mi", "area_total_ha", "area_total_acre", "area_total_dunam", "area_land_km2", "area_land_sq_mi", "area_land_ha", "area_land_dunam", "area_land_acre", "area_water_km2", "area_water_sq_mi", "area_water_ha", "area_water_dunam", "area_water_acre", "area_water_percent", "area_urban_km2", "area_urban_sq_mi", "area_urban_ha", "area_urban_dunam", "area_urban_acre", "area_urban_footnotes", "area_rural_km2", "area_rural_sq_mi", "area_rural_ha", "area_rural_dunam", "area_rural_acre", "area_rural_footnotes", "area_metro_km2", "area_metro_sq_mi", "area_metro_ha", "area_metro_dunam", "area_metro_acre", "area_metro_footnotes", "area_rank", "area_blank1_title", "area_blank1_km2", "area_blank1_sq_mi", "area_blank1_ha", "area_blank1_dunam", "area_blank1_acre", "area_blank2_title", "area_blank2_km2", "area_blank2_sq_mi", "area_blank2_ha", "area_blank2_dunam", "area_blank2_acre", "area_note", "dimensions_footnotes", "length_km", "length_mi", "width_km", "width_mi", "elevation_m", "elevation_ft", "elevation_footnotes", "elevation_min_point", "elevation_min_m", "elevation_min_ft", "elevation_min_rank", "elevation_min_footnotes", "elevation_max_point", "elevation_max_m", "elevation_max_ft", "elevation_max_rank", "elevation_max_footnotes", "population_total", "population_as_of", "population_footnotes", "population_density_km2", "population_density_sq_mi", "population_est", "pop_est_as_of", "pop_est_footnotes", "population_urban", "population_urban_footnotes", "population_density_urban_km2", "population_density_urban_sq_mi", "population_rural", "population_rural_footnotes", "population_density_rural_km2", "population_density_rural_sq_mi", "population_metro", "population_metro_footnotes", "population_density_metro_km2", "population_density_metro_sq_mi", "population_rank", "population_density_rank", "population_blank1_title", "population_blank1", "population_density_blank1_km2", "population_density_blank1_sq_mi", "population_blank2_title", "population_blank2", "population_density_blank2_km2", "population_density_blank2_sq_mi", "population_demonym", "population_note", "demographics_type1", "demographics1_footnotes", "demographics1_title1", "demographics_type2", "demographics2_footnotes", "demographics2_title1", "demographics2_info1", "timezone1", "utc_offset", "timezone_DST", "utc_offset_DST", "utc_offset1", "timezone1_DST", "utc_offset1_DST", "timezone2", "utc_offset2", "timezone2_DST", "utc_offset2_DST", "postal_code_type", "postal_code", "postal2_code_type", "postal2_code", "area_code", "area_code_type", "geocode", "iso_code", "registration_plate_type", "registration_plate", "blank_name_sec1", "blank_info_sec1", "blank1_name_sec1", "blank1_info_sec1", "blank_name_sec2", "blank_info_sec2", "blank1_name_sec2", "blank1_info_sec2", "website", "footnotes", "translit_lang1_info1", "translit_lang1_type1", "translit_lang1_info2", "translit_lang1_type2", "demographics1_info1", "embed", "translit_lang1_type3", "translit_lang1_type4", "translit_lang1_info3", "translit_lang1_type5", "translit_lang1_info4", "translit_lang1_type6", "translit_lang1_info5", "translit_lang1_info6", "translit_lang2_type1", "translit_lang2_type", "translit_lang2_info", "translit_lang2_type2", "translit_lang2_info1", "translit_lang2_type3", "translit_lang2_info2", "translit_lang2_type4", "translit_lang2_info3", "translit_lang2_type5", "translit_lang2_info4", "translit_lang2_type6", "translit_lang2_info5", "translit_lang2_info6", "image_size", "alt", "pushpin_map_narrow", "pushpin_map_caption_notsmall", "etymology", "nicknames", "nickname_link", "mottoes", "motto_link", "anthem_link", "grid_position", "coor_type", "grid_name", "seat1_type", "seat1", "seat2_type", "seat2", "p1", "p2", "p3", "p4", "p5", "p6", "p7", "p8", "p9", "p10", "p11", "p12", "p13", "p14", "p15", "p16", "p17", "p18", "p19", "p20", "p21", "p22", "p23", "p24", "p25", "p26", "p27", "p28", "p29", "p30", "p31", "p32", "p33", "p34", "p35", "p36", "p37", "p38", "p39", "p40", "p41", "p42", "p43", "p44", "p45", "p46", "p47", "p48", "p49", "p50", "leader_name2", "leader_name3", "leader_name4", "leader_name5", "leader_title2", "leader_title3", "leader_title4", "leader_title5", "government_blank1_title", "government_blank1", "government_blank2_title", "government_blank2", "government_blank3_title", "government_blank3", "government_blank4_title", "government_blank4", "government_blank5_title", "government_blank5", "government_blank6_title", "government_blank6", "elevation_link", "elevation_point", "population_blank1_footnotes", "population_blank2_footnotes", "population_demonyms", "demographics1_title2", "demographics1_info2", "demographics1_title3", "demographics1_info3", "demographics1_title4", "demographics1_info4", "demographics1_title5", "demographics1_info5", "demographics1_title6", "demographics1_info6", "demographics1_title7", "demographics1_info7", "demographics1_title8", "demographics1_info8", "demographics1_title9", "demographics1_info9", "demographics1_title10", "demographics1_info10", "demographics2_title2", "demographics2_info2", "demographics2_title3", "demographics2_info3", "demographics2_title4", "demographics2_info4", "demographics2_title5", "demographics2_info5", "demographics2_title6", "demographics2_info6", "demographics2_title7", "demographics2_info7", "demographics2_title8", "demographics2_info8", "demographics2_title9", "demographics2_info9", "demographics2_title10", "demographics2_info10", "timezone1_location", "timezone_link", "timezone2_location", "timezone3_location", "utc_offset3", "timezone3", "utc_offset3_DST", "timezone3_DST", "timezone4_location", "utc_offset4", "timezone4", "utc_offset4_DST", "timezone4_DST", "timezone5_location", "utc_offset5", "timezone5", "utc_offset5_DST", "timezone5_DST", "code1_name", "code1_info", "code2_name", "code2_info", "blank1_name", "blank1_info", "blank2_name_sec1", "blank2_name", "blank2_info_sec1", "blank2_info", "blank3_name_sec1", "blank3_name", "blank3_info_sec1", "blank3_info", "blank4_name_sec1", "blank4_name", "blank4_info_sec1", "blank4_info", "blank5_name_sec1", "blank5_name", "blank5_info_sec1", "blank5_info", "blank6_name_sec1", "blank6_name", "blank6_info_sec1", "blank6_info", "blank7_name_sec1", "blank7_name", "blank7_info_sec1", "blank7_info", "blank2_name_sec2", "blank2_info_sec2", "blank3_name_sec2", "blank3_info_sec2", "blank4_name_sec2", "blank4_info_sec2", "blank5_name_sec2", "blank5_info_sec2", "blank6_name_sec2", "blank6_info_sec2", "blank7_name_sec2", "blank7_info_sec2", "module", "coordinates_wikidata", "wikidata" ] } </templatedata> {{collapse bottom}} ==Calls and redirects == At least {{PAGESINCATEGORY:Templates calling Infobox settlement}} other [[:Category:Templates calling Infobox settlement|templates call this one]]. [{{fullurl:Special:WhatLinksHere/Template:Infobox_settlement|namespace=10&hidetrans=1&hidelinks=1}} Several templates redirect here]. == Tracking categories == # {{clc|Pages using infobox settlement with bad settlement type}} # {{clc|Pages using infobox settlement with bad density arguments}} # {{clc|Pages using infobox settlement with image map1 but not image map}} # {{clc|Pages using infobox settlement with missing country}} # {{clc|Pages using infobox settlement with no map}} # {{clc|Pages using infobox settlement with no coordinates}} # {{clc|Pages using infobox settlement with possible area code list}} # {{clc|Pages using infobox settlement with possible demonym list}} # {{clc|Pages using infobox settlement with possible motto list}} # {{clc|Pages using infobox settlement with possible nickname list}} # {{clc|Pages using infobox settlement with the wikidata parameter}} # {{clc|Pages using infobox settlement with unknown parameters}} # {{clc|Pages using infobox settlement with conflicting parameters}} # {{clc|Templates calling Infobox settlement}} ==See also== *[[Help:Coordinates]] *[[Help:Elevation]] *[[Help:GNIS data for U.S. infoboxes]] *{{tl|Infobox too long}} <includeonly>{{Sandbox other|| <!--Categories below this line, please; interwikis at Wikidata--> [[Category:Place infobox templates|Settlement]] [[Category:Embeddable templates]] [[Category:Infobox templates using Wikidata]] [[Category:Templates that add a tracking category]] }}</includeonly> lu7uqveavvgljv0nul996cx6lc9n8v1 72836 72813 2026-06-30T21:36:52Z Robertsky 10424 /* Usage */ parameters in tetun 72836 wikitext text/x-wiki {{Documentation subpage}} <!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])--> {{Auto short description}} {{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Check for conflicting parameters|Module:Settlement short description|Module:Wikidata}} {{Uses TemplateStyles|Template:Infobox settlement/styles.css}} {{Uses Wikidata|P41|P94|P158|P625|P856}} This template should be used to produce an [[WP:Infobox|Infobox]] for human settlements (cities, towns, villages, communities) as well as other administrative districts, counties, provinces, et cetera—in fact, any subdivision below the level of a country, for which {{tl|Infobox country}} should be used. Parameters are described in the table below. For questions, see the [[Template talk:Infobox settlement|talk page]]. For a US city guideline, see [[WP:USCITIES]]. The template is aliased or used as a sub-template for several infobox front-end templates. == Atualizasaun parámetru sira == Agora {{tl|Infobox settlement}} bele uza parámetru ho naran Tetun. Parámetru Inglés kontinua servisu hanesan alias. Se parámetru Tetun no Inglés rua hotu iha valor, valor iha parámetru Tetun mak uza. '''Nota:''' naran parámetru sira uza forma simples la ho aksentu barak atu fasilita hakerek iha wikitext. === Naran no transliterasaun === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>naran</code> || <code>name</code> |- | <code>naran_ofisial</code> || <code>official_name</code> |- | <code>naran_lokal</code> || <code>native_name</code> |- | <code>lian_naran_lokal</code> || <code>native_name_lang</code> |- | <code>naran_seluk</code> || <code>other_name</code> |- | <code>tipu_fatin</code> || <code>settlement_type</code> |- | <code>deskrisaun_badak</code> || <code>short_description</code> |- | <code>transliterasaun_lian1</code> || <code>translit_lang1</code> |- | <code>transliterasaun_lian1_tipu</code> || <code>translit_lang1_type</code> |- | <code>transliterasaun_lian1_info</code> || <code>translit_lang1_info</code> |- | <code>transliterasaun_lian1_tipu1</code> || <code>translit_lang1_type1</code> |- | <code>transliterasaun_lian1_info1</code> || <code>translit_lang1_info1</code> |- | <code>transliterasaun_lian1_tipu2</code> || <code>translit_lang1_type2</code> |- | <code>transliterasaun_lian1_info2</code> || <code>translit_lang1_info2</code> |- | <code>transliterasaun_lian1_tipu3</code> || <code>translit_lang1_type3</code> |- | <code>transliterasaun_lian1_info3</code> || <code>translit_lang1_info3</code> |- | <code>transliterasaun_lian1_tipu4</code> || <code>translit_lang1_type4</code> |- | <code>transliterasaun_lian1_info4</code> || <code>translit_lang1_info4</code> |- | <code>transliterasaun_lian1_tipu5</code> || <code>translit_lang1_type5</code> |- | <code>transliterasaun_lian1_info5</code> || <code>translit_lang1_info5</code> |- | <code>transliterasaun_lian1_tipu6</code> || <code>translit_lang1_type6</code> |- | <code>transliterasaun_lian1_info6</code> || <code>translit_lang1_info6</code> |- | <code>transliterasaun_lian2</code> || <code>translit_lang2</code> |- | <code>transliterasaun_lian2_tipu</code> || <code>translit_lang2_type</code> |- | <code>transliterasaun_lian2_info</code> || <code>translit_lang2_info</code> |- | <code>transliterasaun_lian2_tipu1</code> || <code>translit_lang2_type1</code> |- | <code>transliterasaun_lian2_info1</code> || <code>translit_lang2_info1</code> |- | <code>transliterasaun_lian2_tipu2</code> || <code>translit_lang2_type2</code> |- | <code>transliterasaun_lian2_info2</code> || <code>translit_lang2_info2</code> |- | <code>transliterasaun_lian2_tipu3</code> || <code>translit_lang2_type3</code> |- | <code>transliterasaun_lian2_info3</code> || <code>translit_lang2_info3</code> |- | <code>transliterasaun_lian2_tipu4</code> || <code>translit_lang2_type4</code> |- | <code>transliterasaun_lian2_info4</code> || <code>translit_lang2_info4</code> |- | <code>transliterasaun_lian2_tipu5</code> || <code>translit_lang2_type5</code> |- | <code>transliterasaun_lian2_info5</code> || <code>translit_lang2_info5</code> |- | <code>transliterasaun_lian2_tipu6</code> || <code>translit_lang2_type6</code> |- | <code>transliterasaun_lian2_info6</code> || <code>translit_lang2_info6</code> |} === Imajen, bandeira, selu, lema === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>imajen_paisajen</code> || <code>image_skyline</code> |- | <code>tamanu_imajen</code> || <code>imagesize</code> |- | <code>alt_imajen</code> || <code>image_alt</code> |- | <code>legenda_imajen</code> || <code>image_caption</code> |- | <code>imajen_bandeira</code> || <code>image_flag</code> |- | <code>tamanu_bandeira</code> || <code>flag_size</code> |- | <code>alt_bandeira</code> || <code>flag_alt</code> |- | <code>borda_bandeira</code> || <code>flag_border</code> |- | <code>ligasaun_bandeira</code> || <code>flag_link</code> |- | <code>imajen_selu</code> || <code>image_seal</code> |- | <code>tamanu_selu</code> || <code>seal_size</code> |- | <code>alt_selu</code> || <code>seal_alt</code> |- | <code>ligasaun_selu</code> || <code>seal_link</code> |- | <code>tipu_selu</code> || <code>seal_type</code> |- | <code>klase_selu</code> || <code>seal_class</code> |- | <code>imajen_brasau</code> || <code>image_shield</code> |- | <code>tamanu_brasau</code> || <code>shield_size</code> |- | <code>alt_brasau</code> || <code>shield_alt</code> |- | <code>ligasaun_brasau</code> || <code>shield_link</code> |- | <code>imajen_emblema</code> || <code>image_blank_emblem</code> |- | <code>tipu_emblema</code> || <code>blank_emblem_type</code> |- | <code>tamanu_emblema</code> || <code>blank_emblem_size</code> |- | <code>alt_emblema</code> || <code>blank_emblem_alt</code> |- | <code>ligasaun_emblema</code> || <code>blank_emblem_link</code> |- | <code>etimolojia</code> || <code>etymology</code> |- | <code>naran_popular</code> || <code>nickname</code> |- | <code>naran_popular_sira</code> || <code>nicknames</code> |- | <code>lema</code> || <code>motto</code> |- | <code>lema_sira</code> || <code>mottoes</code> |- | <code>hino</code> || <code>anthem</code> |- | <code>imajen_mapa</code> || <code>image_map</code> |- | <code>imajen_mapa1</code> || <code>image_map1</code> |} === Mapa no koordenadas === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>tamanu_mapa</code> || <code>mapsize</code> |- | <code>alt_mapa</code> || <code>map_alt</code> |- | <code>legenda_mapa</code> || <code>map_caption</code> |- | <code>tamanu_mapa1</code> || <code>mapsize1</code> |- | <code>alt_mapa1</code> || <code>map_alt1</code> |- | <code>legenda_mapa1</code> || <code>map_caption1</code> |- | <code>mapa_lokalizasaun</code> || <code>pushpin_map</code> |- | <code>tamanu_mapa_lokalizasaun</code> || <code>pushpin_mapsize</code> |- | <code>alt_mapa_lokalizasaun</code> || <code>pushpin_map_alt</code> |- | <code>legenda_mapa_lokalizasaun</code> || <code>pushpin_map_caption</code> |- | <code>legenda_mapa_lokalizasaun_la_kiik</code> || <code>pushpin_map_caption_notsmall</code> |- | <code>label_mapa_lokalizasaun</code> || <code>pushpin_label</code> |- | <code>pozisaun_label_mapa_lokalizasaun</code> || <code>pushpin_label_position</code> |- | <code>liur_mapa_lokalizasaun</code> || <code>pushpin_outside</code> |- | <code>relefu_mapa_lokalizasaun</code> || <code>pushpin_relief</code> |- | <code>imajen_mapa_lokalizasaun</code> || <code>pushpin_image</code> |- | <code>kamada_mapa_lokalizasaun</code> || <code>pushpin_overlay</code> |- | <code>mapa_interativu</code> || <code>mapframe</code> |- | <code>koordenadas</code> || <code>coordinates</code> |- | <code>koord</code> || <code>coord</code> |- | <code>pontu_koordenadas</code> || <code>coor_pinpoint</code> |- | <code>nota_koordenadas</code> || <code>coordinates_footnotes</code> |- | <code>naran_grid</code> || <code>grid_name</code> |- | <code>pozisaun_grid</code> || <code>grid_position</code> |- | <code>mapframe_koordenadas</code> || <code>mapframe-coordinates</code> |- | <code>mapframe_koord</code> || <code>mapframe-coord</code> |- | <code>mapframe_legenda</code> || <code>mapframe-caption</code> |- | <code>mapframe_custom</code> || <code>mapframe-custom</code> |- | <code>mapframe_id</code> || <code>mapframe-id</code> |- | <code>id</code> || <code>id</code> |- | <code>qid</code> || <code>qid</code> |- | <code>mapframe_wikidata</code> || <code>mapframe-wikidata</code> |- | <code>mapframe_pontu</code> || <code>mapframe-point</code> |- | <code>mapframe_forma</code> || <code>mapframe-shape</code> |- | <code>mapframe_lina</code> || <code>mapframe-line</code> |- | <code>mapframe_geomask</code> || <code>mapframe-geomask</code> |- | <code>mapframe_switcher</code> || <code>mapframe-switcher</code> |- | <code>mapframe_luan_frame</code> || <code>mapframe-frame-width</code> |- | <code>mapframe_luan</code> || <code>mapframe-width</code> |- | <code>mapframe_aas_frame</code> || <code>mapframe-frame-height</code> |- | <code>mapframe_aas</code> || <code>mapframe-height</code> |- | <code>mapframe_kor_forma</code> || <code>mapframe-shape-fill</code> |- | <code>mapframe_opasidade_kor_forma</code> || <code>mapframe-shape-fill-opacity</code> |- | <code>mapframe_kor_lina</code> || <code>mapframe-stroke-color</code> |- | <code>mapframe_kor_lina_uk</code> || <code>mapframe-stroke-colour</code> |- | <code>mapframe_kor_lina_line</code> || <code>mapframe-line-stroke-color</code> |- | <code>mapframe_kor_lina_line_uk</code> || <code>mapframe-line-stroke-colour</code> |- | <code>mapframe_kor_borda_forma</code> || <code>mapframe-shape-stroke-color</code> |- | <code>mapframe_kor_borda_forma_uk</code> || <code>mapframe-shape-stroke-colour</code> |- | <code>mapframe_luan_lina</code> || <code>mapframe-stroke-width</code> |- | <code>mapframe_luan_borda_forma</code> || <code>mapframe-shape-stroke-width</code> |- | <code>mapframe_luan_lina_line</code> || <code>mapframe-line-stroke-width</code> |- | <code>mapframe_marker</code> || <code>mapframe-marker</code> |- | <code>mapframe_kor_marker</code> || <code>mapframe-marker-color</code> |- | <code>mapframe_kor_marker_uk</code> || <code>mapframe-marker-colour</code> |- | <code>mapframe_kor_borda_geomask</code> || <code>mapframe-geomask-stroke-color</code> |- | <code>mapframe_kor_borda_geomask_uk</code> || <code>mapframe-geomask-stroke-colour</code> |- | <code>mapframe_luan_borda_geomask</code> || <code>mapframe-geomask-stroke-width</code> |- | <code>mapframe_kor_geomask</code> || <code>mapframe-geomask-fill</code> |- | <code>mapframe_opasidade_kor_geomask</code> || <code>mapframe-geomask-fill-opacity</code> |- | <code>mapframe_zoom</code> || <code>mapframe-zoom</code> |- | <code>mapframe_naruk_km</code> || <code>mapframe-length_km</code> |- | <code>mapframe_naruk_mi</code> || <code>mapframe-length_mi</code> |- | <code>mapframe_area_km2</code> || <code>mapframe-area_km2</code> |- | <code>mapframe_area_mi2</code> || <code>mapframe-area_mi2</code> |- | <code>mapframe_frame_koordenadas</code> || <code>mapframe-frame-coordinates</code> |- | <code>mapframe_frame_koord</code> || <code>mapframe-frame-coord</code> |- | <code>mapframe_tipu</code> || <code>mapframe-type</code> |- | <code>mapframe_populasaun</code> || <code>mapframe-population</code> |} === Fatin, subdivizaun, fundasaun, sede, parte sira === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>tipu_subdivizaun</code> || <code>subdivision_type</code> |- | <code>naran_subdivizaun</code> || <code>subdivision_name</code> |- | <code>tipu_subdivizaun1</code> || <code>subdivision_type1</code> |- | <code>naran_subdivizaun1</code> || <code>subdivision_name1</code> |- | <code>tipu_subdivizaun2</code> || <code>subdivision_type2</code> |- | <code>naran_subdivizaun2</code> || <code>subdivision_name2</code> |- | <code>tipu_subdivizaun3</code> || <code>subdivision_type3</code> |- | <code>naran_subdivizaun3</code> || <code>subdivision_name3</code> |- | <code>tipu_subdivizaun4</code> || <code>subdivision_type4</code> |- | <code>naran_subdivizaun4</code> || <code>subdivision_name4</code> |- | <code>tipu_subdivizaun5</code> || <code>subdivision_type5</code> |- | <code>naran_subdivizaun5</code> || <code>subdivision_name5</code> |- | <code>tipu_subdivizaun6</code> || <code>subdivision_type6</code> |- | <code>naran_subdivizaun6</code> || <code>subdivision_name6</code> |- | <code>titulu_estabelesimentu</code> || <code>established_title</code> |- | <code>data_estabelesimentu</code> || <code>established_date</code> |- | <code>titulu_estabelesimentu1</code> || <code>established_title1</code> |- | <code>data_estabelesimentu1</code> || <code>established_date1</code> |- | <code>titulu_estabelesimentu2</code> || <code>established_title2</code> |- | <code>data_estabelesimentu2</code> || <code>established_date2</code> |- | <code>titulu_estabelesimentu3</code> || <code>established_title3</code> |- | <code>data_estabelesimentu3</code> || <code>established_date3</code> |- | <code>titulu_estabelesimentu4</code> || <code>established_title4</code> |- | <code>data_estabelesimentu4</code> || <code>established_date4</code> |- | <code>titulu_estabelesimentu5</code> || <code>established_title5</code> |- | <code>data_estabelesimentu5</code> || <code>established_date5</code> |- | <code>titulu_estabelesimentu6</code> || <code>established_title6</code> |- | <code>data_estabelesimentu6</code> || <code>established_date6</code> |- | <code>titulu_estabelesimentu7</code> || <code>established_title7</code> |- | <code>data_estabelesimentu7</code> || <code>established_date7</code> |- | <code>titulu_extinta</code> || <code>extinct_title</code> |- | <code>data_extinta</code> || <code>extinct_date</code> |- | <code>fundador</code> || <code>founder</code> |- | <code>naran_husi</code> || <code>named_for</code> |- | <code>tipu_sede</code> || <code>seat_type</code> |- | <code>sede</code> || <code>seat</code> |- | <code>tipu_sede1</code> || <code>seat1_type</code> |- | <code>sede1</code> || <code>seat1</code> |- | <code>tipu_parte</code> || <code>parts_type</code> |- | <code>estilu_parte</code> || <code>parts_style</code> |- | <code>parte_sira</code> || <code>parts</code> |- | <code>parte1</code> || <code>p1</code> |- | <code>parte2</code> || <code>p2</code> |- | <code>parte3</code> || <code>p3</code> |- | <code>parte4</code> || <code>p4</code> |- | <code>parte5</code> || <code>p5</code> |- | <code>parte6</code> || <code>p6</code> |- | <code>parte7</code> || <code>p7</code> |- | <code>parte8</code> || <code>p8</code> |- | <code>parte9</code> || <code>p9</code> |- | <code>parte10</code> || <code>p10</code> |- | <code>parte11</code> || <code>p11</code> |- | <code>parte12</code> || <code>p12</code> |- | <code>parte13</code> || <code>p13</code> |- | <code>parte14</code> || <code>p14</code> |- | <code>parte15</code> || <code>p15</code> |- | <code>parte16</code> || <code>p16</code> |- | <code>parte17</code> || <code>p17</code> |- | <code>parte18</code> || <code>p18</code> |- | <code>parte19</code> || <code>p19</code> |- | <code>parte20</code> || <code>p20</code> |- | <code>parte21</code> || <code>p21</code> |- | <code>parte22</code> || <code>p22</code> |- | <code>parte23</code> || <code>p23</code> |- | <code>parte24</code> || <code>p24</code> |- | <code>parte25</code> || <code>p25</code> |- | <code>parte26</code> || <code>p26</code> |- | <code>parte27</code> || <code>p27</code> |- | <code>parte28</code> || <code>p28</code> |- | <code>parte29</code> || <code>p29</code> |- | <code>parte30</code> || <code>p30</code> |- | <code>parte31</code> || <code>p31</code> |- | <code>parte32</code> || <code>p32</code> |- | <code>parte33</code> || <code>p33</code> |- | <code>parte34</code> || <code>p34</code> |- | <code>parte35</code> || <code>p35</code> |- | <code>parte36</code> || <code>p36</code> |- | <code>parte37</code> || <code>p37</code> |- | <code>parte38</code> || <code>p38</code> |- | <code>parte39</code> || <code>p39</code> |- | <code>parte40</code> || <code>p40</code> |- | <code>parte41</code> || <code>p41</code> |- | <code>parte42</code> || <code>p42</code> |- | <code>parte43</code> || <code>p43</code> |- | <code>parte44</code> || <code>p44</code> |- | <code>parte45</code> || <code>p45</code> |- | <code>parte46</code> || <code>p46</code> |- | <code>parte47</code> || <code>p47</code> |- | <code>parte48</code> || <code>p48</code> |- | <code>parte49</code> || <code>p49</code> |- | <code>parte50</code> || <code>p50</code> |- | <code>nota_populasaun</code> || <code>population_footnotes</code> |- | <code>data_populasaun</code> || <code>population_as_of</code> |- | <code>populasaun_total</code> || <code>population_total</code> |- | <code>nota_estimasaun_populasaun</code> || <code>pop_est_footnotes</code> |- | <code>data_estimasaun_populasaun</code> || <code>pop_est_as_of</code> |- | <code>estimasaun_populasaun</code> || <code>population_est</code> |- | <code>rank_populasaun</code> || <code>population_rank</code> |- | <code>densidade_populasaun_km2</code> || <code>population_density_km2</code> |- | <code>densidade_populasaun_sq_mi</code> || <code>population_density_sq_mi</code> |- | <code>nota_populasaun_urbana</code> || <code>population_urban_footnotes</code> |- | <code>populasaun_urbana</code> || <code>population_urban</code> |- | <code>densidade_populasaun_urbana_km2</code> || <code>population_density_urban_km2</code> |- | <code>densidade_populasaun_urbana_sq_mi</code> || <code>population_density_urban_sq_mi</code> |- | <code>nota_populasaun_rural</code> || <code>population_rural_footnotes</code> |- | <code>populasaun_rural</code> || <code>population_rural</code> |- | <code>densidade_populasaun_rural_km2</code> || <code>population_density_rural_km2</code> |- | <code>densidade_populasaun_rural_sq_mi</code> || <code>population_density_rural_sq_mi</code> |- | <code>nota_populasaun_metropolitana</code> || <code>population_metro_footnotes</code> |- | <code>populasaun_metropolitana</code> || <code>population_metro</code> |- | <code>densidade_populasaun_metropolitana_km2</code> || <code>population_density_metro_km2</code> |- | <code>densidade_populasaun_metropolitana_sq_mi</code> || <code>population_density_metro_sq_mi</code> |- | <code>rank_densidade_populasaun</code> || <code>population_density_rank</code> |- | <code>titulu_populasaun_seluk1</code> || <code>population_blank1_title</code> |- | <code>populasaun_seluk1</code> || <code>population_blank1</code> |- | <code>densidade_populasaun_seluk1_km2</code> || <code>population_density_blank1_km2</code> |- | <code>densidade_populasaun_seluk1_sq_mi</code> || <code>population_density_blank1_sq_mi</code> |- | <code>titulu_populasaun_seluk2</code> || <code>population_blank2_title</code> |- | <code>populasaun_seluk2</code> || <code>population_blank2</code> |- | <code>densidade_populasaun_seluk2_km2</code> || <code>population_density_blank2_km2</code> |- | <code>densidade_populasaun_seluk2_sq_mi</code> || <code>population_density_blank2_sq_mi</code> |- | <code>demonimu_populasaun</code> || <code>population_demonym</code> |- | <code>demonimu_populasaun_sira</code> || <code>population_demonyms</code> |- | <code>nota_populasaun</code> || <code>population_note</code> |- | <code>tipu_kodigu_postal</code> || <code>postal_code_type</code> |- | <code>kodigu_postal</code> || <code>postal_code</code> |- | <code>tipu_kodigu_postal2</code> || <code>postal2_code_type</code> |- | <code>kodigu_postal2</code> || <code>postal2_code</code> |} === Governu no lideransa === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>nota_governu</code> || <code>government_footnotes</code> |- | <code>tipu_governu</code> || <code>government_type</code> |- | <code>orgaun_governu</code> || <code>governing_body</code> |- | <code>partidu_lider</code> || <code>leader_party</code> |- | <code>titulu_lider</code> || <code>leader_title</code> |- | <code>naran_lider</code> || <code>leader_name</code> |- | <code>titulu_lider1</code> || <code>leader_title1</code> |- | <code>naran_lider1</code> || <code>leader_name1</code> |- | <code>partidu_lider1</code> || <code>leader_party1</code> |- | <code>titulu_lider2</code> || <code>leader_title2</code> |- | <code>naran_lider2</code> || <code>leader_name2</code> |- | <code>partidu_lider2</code> || <code>leader_party2</code> |- | <code>titulu_lider3</code> || <code>leader_title3</code> |- | <code>naran_lider3</code> || <code>leader_name3</code> |- | <code>partidu_lider3</code> || <code>leader_party3</code> |- | <code>titulu_lider4</code> || <code>leader_title4</code> |- | <code>naran_lider4</code> || <code>leader_name4</code> |- | <code>partidu_lider4</code> || <code>leader_party4</code> |} === Area, dimensaun no altitude === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>tipu_total</code> || <code>total_type</code> |- | <code>unidade_preferida</code> || <code>unit_pref</code> |- | <code>nota_area</code> || <code>area_footnotes</code> |- | <code>ligasaun_dunam</code> || <code>dunam_link</code> |- | <code>area_total_km2</code> || <code>area_total_km2</code> |- | <code>area_total_sq_mi</code> || <code>area_total_sq_mi</code> |- | <code>area_total_ha</code> || <code>area_total_ha</code> |- | <code>area_total_acre</code> || <code>area_total_acre</code> |- | <code>area_total_dunam</code> || <code>area_total_dunam</code> |- | <code>area_rai_km2</code> || <code>area_land_km2</code> |- | <code>area_rai_sq_mi</code> || <code>area_land_sq_mi</code> |- | <code>area_rai_ha</code> || <code>area_land_ha</code> |- | <code>area_rai_acre</code> || <code>area_land_acre</code> |- | <code>area_rai_dunam</code> || <code>area_land_dunam</code> |- | <code>area_bee_km2</code> || <code>area_water_km2</code> |- | <code>area_bee_sq_mi</code> || <code>area_water_sq_mi</code> |- | <code>area_bee_ha</code> || <code>area_water_ha</code> |- | <code>area_bee_acre</code> || <code>area_water_acre</code> |- | <code>area_bee_dunam</code> || <code>area_water_dunam</code> |- | <code>area_urbana_km2</code> || <code>area_urban_km2</code> |- | <code>area_urbana_sq_mi</code> || <code>area_urban_sq_mi</code> |- | <code>area_urbana_ha</code> || <code>area_urban_ha</code> |- | <code>area_urbana_acre</code> || <code>area_urban_acre</code> |- | <code>area_urbana_dunam</code> || <code>area_urban_dunam</code> |- | <code>area_rural_km2</code> || <code>area_rural_km2</code> |- | <code>area_rural_sq_mi</code> || <code>area_rural_sq_mi</code> |- | <code>area_rural_ha</code> || <code>area_rural_ha</code> |- | <code>area_rural_acre</code> || <code>area_rural_acre</code> |- | <code>area_rural_dunam</code> || <code>area_rural_dunam</code> |- | <code>area_metropolitana_km2</code> || <code>area_metro_km2</code> |- | <code>area_metropolitana_sq_mi</code> || <code>area_metro_sq_mi</code> |- | <code>area_metropolitana_ha</code> || <code>area_metro_ha</code> |- | <code>area_metropolitana_acre</code> || <code>area_metro_acre</code> |- | <code>area_metropolitana_dunam</code> || <code>area_metro_dunam</code> |- | <code>persentajen_bee</code> || <code>area_water_percent</code> |- | <code>nota_area_urbana</code> || <code>area_urban_footnotes</code> |- | <code>nota_area_rural</code> || <code>area_rural_footnotes</code> |- | <code>nota_area_metropolitana</code> || <code>area_metro_footnotes</code> |- | <code>rank_area</code> || <code>area_rank</code> |- | <code>nota_area</code> || <code>area_note</code> |- | <code>titulu_area_seluk1</code> || <code>area_blank1_title</code> |- | <code>area_seluk1_km2</code> || <code>area_blank1_km2</code> |- | <code>area_seluk1_sq_mi</code> || <code>area_blank1_sq_mi</code> |- | <code>area_seluk1_ha</code> || <code>area_blank1_ha</code> |- | <code>area_seluk1_acre</code> || <code>area_blank1_acre</code> |- | <code>area_seluk1_dunam</code> || <code>area_blank1_dunam</code> |- | <code>titulu_area_seluk2</code> || <code>area_blank2_title</code> |- | <code>area_seluk2_km2</code> || <code>area_blank2_km2</code> |- | <code>area_seluk2_sq_mi</code> || <code>area_blank2_sq_mi</code> |- | <code>area_seluk2_ha</code> || <code>area_blank2_ha</code> |- | <code>area_seluk2_acre</code> || <code>area_blank2_acre</code> |- | <code>area_seluk2_dunam</code> || <code>area_blank2_dunam</code> |- | <code>nota_dimensaun</code> || <code>dimensions_footnotes</code> |- | <code>naruk_km</code> || <code>length_km</code> |- | <code>naruk_mi</code> || <code>length_mi</code> |- | <code>luan_km</code> || <code>width_km</code> |- | <code>luan_mi</code> || <code>width_mi</code> |- | <code>nota_altitude</code> || <code>elevation_footnotes</code> |- | <code>altitude_m</code> || <code>elevation_m</code> |- | <code>altitude_ft</code> || <code>elevation_ft</code> |- | <code>pontu_altitude</code> || <code>elevation_point</code> |- | <code>nota_altitude_max</code> || <code>elevation_max_footnotes</code> |- | <code>altitude_max_m</code> || <code>elevation_max_m</code> |- | <code>altitude_max_ft</code> || <code>elevation_max_ft</code> |- | <code>pontu_altitude_max</code> || <code>elevation_max_point</code> |- | <code>rank_altitude_max</code> || <code>elevation_max_rank</code> |- | <code>nota_altitude_min</code> || <code>elevation_min_footnotes</code> |- | <code>altitude_min_m</code> || <code>elevation_min_m</code> |- | <code>altitude_min_ft</code> || <code>elevation_min_ft</code> |- | <code>pontu_altitude_min</code> || <code>elevation_min_point</code> |- | <code>rank_altitude_min</code> || <code>elevation_min_rank</code> |- | <code>tipu_kodigu_area</code> || <code>area_code_type</code> |- | <code>kodigu_area</code> || <code>area_code</code> |- | <code>kodigu_area_sira</code> || <code>area_codes</code> |} === Populasaun no demografia === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>tipu_demografia1</code> || <code>demographics_type1</code> |- | <code>nota_demografia1</code> || <code>demographics1_footnotes</code> |- | <code>titulu_demografia1_1</code> || <code>demographics1_title1</code> |- | <code>info_demografia1_1</code> || <code>demographics1_info1</code> |- | <code>titulu_demografia1_2</code> || <code>demographics1_title2</code> |- | <code>info_demografia1_2</code> || <code>demographics1_info2</code> |- | <code>titulu_demografia1_3</code> || <code>demographics1_title3</code> |- | <code>info_demografia1_3</code> || <code>demographics1_info3</code> |- | <code>titulu_demografia1_4</code> || <code>demographics1_title4</code> |- | <code>info_demografia1_4</code> || <code>demographics1_info4</code> |- | <code>titulu_demografia1_5</code> || <code>demographics1_title5</code> |- | <code>info_demografia1_5</code> || <code>demographics1_info5</code> |- | <code>titulu_demografia1_6</code> || <code>demographics1_title6</code> |- | <code>info_demografia1_6</code> || <code>demographics1_info6</code> |- | <code>titulu_demografia1_7</code> || <code>demographics1_title7</code> |- | <code>info_demografia1_7</code> || <code>demographics1_info7</code> |- | <code>tipu_demografia2</code> || <code>demographics_type2</code> |- | <code>nota_demografia2</code> || <code>demographics2_footnotes</code> |- | <code>titulu_demografia2_1</code> || <code>demographics2_title1</code> |- | <code>info_demografia2_1</code> || <code>demographics2_info1</code> |- | <code>titulu_demografia2_2</code> || <code>demographics2_title2</code> |- | <code>info_demografia2_2</code> || <code>demographics2_info2</code> |- | <code>titulu_demografia2_3</code> || <code>demographics2_title3</code> |- | <code>info_demografia2_3</code> || <code>demographics2_info3</code> |- | <code>titulu_demografia2_4</code> || <code>demographics2_title4</code> |- | <code>info_demografia2_4</code> || <code>demographics2_info4</code> |- | <code>titulu_demografia2_5</code> || <code>demographics2_title5</code> |- | <code>info_demografia2_5</code> || <code>demographics2_info5</code> |- | <code>titulu_demografia2_6</code> || <code>demographics2_title6</code> |- | <code>info_demografia2_6</code> || <code>demographics2_info6</code> |- | <code>titulu_demografia2_7</code> || <code>demographics2_title7</code> |- | <code>info_demografia2_7</code> || <code>demographics2_info7</code> |- | <code>titulu_demografia2_8</code> || <code>demographics2_title8</code> |- | <code>info_demografia2_8</code> || <code>demographics2_info8</code> |- | <code>titulu_demografia2_9</code> || <code>demographics2_title9</code> |- | <code>info_demografia2_9</code> || <code>demographics2_info9</code> |- | <code>titulu_demografia2_10</code> || <code>demographics2_title10</code> |- | <code>info_demografia2_10</code> || <code>demographics2_info10</code> |} === Zona tempu === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>ligasaun_zona_tempu</code> || <code>timezone_link</code> |- | <code>zona_tempu</code> || <code>timezone</code> |- | <code>diferensa_utc</code> || <code>utc_offset</code> |- | <code>zona_tempu_DST</code> || <code>timezone_DST</code> |- | <code>diferensa_utc_DST</code> || <code>utc_offset_DST</code> |- | <code>fatin_zona_tempu1</code> || <code>timezone1_location</code> |- | <code>zona_tempu1</code> || <code>timezone1</code> |- | <code>diferensa_utc1</code> || <code>utc_offset1</code> |- | <code>zona_tempu1_DST</code> || <code>timezone1_DST</code> |- | <code>diferensa_utc1_DST</code> || <code>utc_offset1_DST</code> |- | <code>fatin_zona_tempu2</code> || <code>timezone2_location</code> |- | <code>zona_tempu2</code> || <code>timezone2</code> |- | <code>diferensa_utc2</code> || <code>utc_offset2</code> |- | <code>zona_tempu2_DST</code> || <code>timezone2_DST</code> |- | <code>diferensa_utc2_DST</code> || <code>utc_offset2_DST</code> |- | <code>fatin_zona_tempu3</code> || <code>timezone3_location</code> |- | <code>zona_tempu3</code> || <code>timezone3</code> |- | <code>diferensa_utc3</code> || <code>utc_offset3</code> |- | <code>zona_tempu3_DST</code> || <code>timezone3_DST</code> |- | <code>diferensa_utc3_DST</code> || <code>utc_offset3_DST</code> |- | <code>fatin_zona_tempu4</code> || <code>timezone4_location</code> |- | <code>zona_tempu4</code> || <code>timezone4</code> |- | <code>diferensa_utc4</code> || <code>utc_offset4</code> |- | <code>zona_tempu4_DST</code> || <code>timezone4_DST</code> |- | <code>diferensa_utc4_DST</code> || <code>utc_offset4_DST</code> |- | <code>fatin_zona_tempu5</code> || <code>timezone5_location</code> |- | <code>zona_tempu5</code> || <code>timezone5</code> |- | <code>diferensa_utc5</code> || <code>utc_offset5</code> |- | <code>zona_tempu5_DST</code> || <code>timezone5_DST</code> |- | <code>diferensa_utc5_DST</code> || <code>utc_offset5_DST</code> |} === Kodigu no kampu seluk === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>geokodigu</code> || <code>geocode</code> |- | <code>kodigu_iso</code> || <code>iso_code</code> |- | <code>tipu_plaka_veiklu</code> || <code>registration_plate_type</code> |- | <code>plaka_veiklu</code> || <code>registration_plate</code> |- | <code>naran_kodigu1</code> || <code>code1_name</code> |- | <code>info_kodigu1</code> || <code>code1_info</code> |- | <code>naran_kodigu2</code> || <code>code2_name</code> |- | <code>info_kodigu2</code> || <code>code2_info</code> |- | <code>naran_kampu</code> || <code>blank_name</code> |- | <code>info_kampu</code> || <code>blank_info</code> |- | <code>naran_kampu1</code> || <code>blank1_name</code> |- | <code>info_kampu1</code> || <code>blank1_info</code> |- | <code>naran_kampu2</code> || <code>blank2_name</code> |- | <code>info_kampu2</code> || <code>blank2_info</code> |- | <code>naran_kampu_sec1</code> || <code>blank_name_sec1</code> |- | <code>info_kampu_sec1</code> || <code>blank_info_sec1</code> |- | <code>naran_kampu1_sec1</code> || <code>blank1_name_sec1</code> |- | <code>info_kampu1_sec1</code> || <code>blank1_info_sec1</code> |- | <code>naran_kampu2_sec1</code> || <code>blank2_name_sec1</code> |- | <code>info_kampu2_sec1</code> || <code>blank2_info_sec1</code> |- | <code>naran_kampu3_sec1</code> || <code>blank3_name_sec1</code> |- | <code>info_kampu3_sec1</code> || <code>blank3_info_sec1</code> |- | <code>naran_kampu4_sec1</code> || <code>blank4_name_sec1</code> |- | <code>info_kampu4_sec1</code> || <code>blank4_info_sec1</code> |- | <code>naran_kampu5_sec1</code> || <code>blank5_name_sec1</code> |- | <code>info_kampu5_sec1</code> || <code>blank5_info_sec1</code> |- | <code>naran_kampu6_sec1</code> || <code>blank6_name_sec1</code> |- | <code>info_kampu6_sec1</code> || <code>blank6_info_sec1</code> |- | <code>naran_kampu7_sec1</code> || <code>blank7_name_sec1</code> |- | <code>info_kampu7_sec1</code> || <code>blank7_info_sec1</code> |- | <code>naran_kampu_sec2</code> || <code>blank_name_sec2</code> |- | <code>info_kampu_sec2</code> || <code>blank_info_sec2</code> |- | <code>naran_kampu1_sec2</code> || <code>blank1_name_sec2</code> |- | <code>info_kampu1_sec2</code> || <code>blank1_info_sec2</code> |- | <code>naran_kampu2_sec2</code> || <code>blank2_name_sec2</code> |- | <code>info_kampu2_sec2</code> || <code>blank2_info_sec2</code> |- | <code>naran_kampu3_sec2</code> || <code>blank3_name_sec2</code> |- | <code>info_kampu3_sec2</code> || <code>blank3_info_sec2</code> |- | <code>naran_kampu4_sec2</code> || <code>blank4_name_sec2</code> |- | <code>info_kampu4_sec2</code> || <code>blank4_info_sec2</code> |- | <code>naran_kampu5_sec2</code> || <code>blank5_name_sec2</code> |- | <code>info_kampu5_sec2</code> || <code>blank5_info_sec2</code> |- | <code>naran_kampu6_sec2</code> || <code>blank6_name_sec2</code> |- | <code>info_kampu6_sec2</code> || <code>blank6_info_sec2</code> |- | <code>naran_kampu7_sec2</code> || <code>blank7_name_sec2</code> |- | <code>info_kampu7_sec2</code> || <code>blank7_info_sec2</code> |} === Website, modulu no nota === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>sitiu_web</code> || <code>website</code> |- | <code>modulu</code> || <code>module</code> |- | <code>nota_sira</code> || <code>footnotes</code> |- | <code>labarik</code> || <code>child</code> |- | <code>hatama</code> || <code>embed</code> |} ==Usage== * '''Important''': Please enter all numeric values in a raw, unformatted fashion. References and {{tl|citation needed}} tags are to be included in their respective section footnotes field. Numeric values that are not "raw" may create an "Expression error". Raw values will be automatically formatted by the template. If you find a raw value is not formatted in your usage of the template, please post a notice on the discussion page for this template. * An expression error may also occur when any coordinate parameter has a value, but one or more coordinate parameters are blank or invalid. * To specify CSS class "X" should be applied to an image, append to the filename: <code><nowiki>{{!}}class=X</nowiki></code> Basic blank template, ready to cut and paste. See the next section for a copy of the template with all parameters and comments. See the table below that for a full description of each parameter. ===Using metric units=== <syntaxhighlight lang="wikitext" style="overflow:auto"> {{Infobox settlement |name = |native_name = <!-- Settlement name in the dominant local language(s), if different from the English name --> |native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> |settlement_type = |image_skyline = |imagesize = |image_alt = |image_caption = |image_flag = |flag_alt = |image_seal = |seal_alt = |image_shield = |shield_alt = |etymology = |nickname = |motto = |image_map = |map_alt = |map_caption = |pushpin_map = |pushpin_map_alt = |pushpin_map_caption = |pushpin_mapsize = |pushpin_label_position = |mapframe = <!-- "yes" to show an interactive map --> |coordinates = <!-- {{coord|latitude|longitude|type:city|display=inline,title}} --> |coor_pinpoint = |coordinates_footnotes = |subdivision_type = Country |subdivision_name = |subdivision_type1 = |subdivision_name1 = |subdivision_type2 = |subdivision_name2 = |subdivision_type3 = |subdivision_name3 = |established_title = |established_date = |founder = |seat_type = |seat = |government_footnotes = |government_type = |governing_body = |leader_party = |leader_title = |leader_name = |leader_title1 = |leader_name1 = |leader_title2 = |leader_name2 = |leader_title3 = |leader_name3 = |leader_title4 = |leader_name4 = |unit_pref = Metric <!-- ALL fields with measurements have automatic unit conversion --> <!-- for references: use <ref> tags --> |area_footnotes = |area_urban_footnotes = <!-- <ref> </ref> --> |area_rural_footnotes = <!-- <ref> </ref> --> |area_metro_footnotes = <!-- <ref> </ref> --> |area_note = |area_water_percent = |area_rank = |area_blank1_title = |area_blank2_title = <!-- square kilometers --> |area_total_km2 = |area_land_km2 = |area_water_km2 = |area_urban_km2 = |area_rural_km2 = |area_metro_km2 = |area_blank1_km2 = |area_blank2_km2 = <!-- hectares --> |area_total_ha = |area_land_ha = |area_water_ha = |area_urban_ha = |area_rural_ha = |area_metro_ha = |area_blank1_ha = |area_blank2_ha = |length_km = |width_km = |dimensions_footnotes = |elevation_footnotes = |elevation_m = |population_footnotes = |population_as_of = |population_total = |population_density_km2 = auto |population_note = |population_demonym = |timezone1 = |utc_offset1 = |timezone1_DST = |utc_offset1_DST = |postal_code_type = |postal_code = |area_code_type = |area_code = |area_codes = <!-- for multiple area codes --> |iso_code = |website = <!-- {{Official URL}} --> |module = |footnotes = }} </syntaxhighlight> ===Using non-metric units=== <syntaxhighlight lang="wikitext" style="overflow:auto"> {{Infobox settlement |name = |native_name = |native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> |settlement_type = |image_skyline = |imagesize = |image_alt = |image_caption = |image_flag = |flag_alt = |image_seal = |seal_alt = |image_shield = |shield_alt = |etymology = |nickname = |motto = |image_map = |map_alt = |map_caption = |pushpin_map = |pushpin_map_alt = |pushpin_map_caption = |pushpin_label_position = |mapframe = <!-- "yes" to show an interactive map --> |coordinates = <!-- {{coord|latitude|longitude|type:city|display=inline,title}} --> |coor_pinpoint = |coordinates_footnotes = |subdivision_type = Country |subdivision_name = |subdivision_type1 = |subdivision_name1 = |subdivision_type2 = |subdivision_name2 = |subdivision_type3 = |subdivision_name3 = |established_title = |established_date = |founder = |seat_type = |seat = |government_footnotes = |leader_party = |leader_title = |leader_name = |unit_pref = Imperial <!-- ALL fields with measurements have automatic unit conversion --> <!-- for references: use <ref> tags --> |area_footnotes = |area_urban_footnotes = <!-- <ref> </ref> --> |area_rural_footnotes = <!-- <ref> </ref> --> |area_metro_footnotes = <!-- <ref> </ref> --> |area_note = |area_water_percent = |area_rank = |area_blank1_title = |area_blank2_title = <!-- square miles --> |area_total_sq_mi = |area_land_sq_mi = |area_water_sq_mi = |area_urban_sq_mi = |area_rural_sq_mi = |area_metro_sq_mi = |area_blank1_sq_mi = |area_blank2_sq_mi = <!-- acres --> |area_total_acre = |area_land_acre = |area_water_acre = |area_urban_acre = |area_rural_acre = |area_metro_acre = |area_blank1_acre = |area_blank2_acre = |length_mi = |width_mi = |dimensions_footnotes = |elevation_footnotes = |elevation_ft = |population_footnotes = |population_as_of = |population_total = |population_density_sq_mi = auto |population_note = |population_demonym = |timezone1 = |utc_offset1 = |timezone1_DST = |utc_offset1_DST = |postal_code_type = |postal_code = |area_code_type = |area_code = |iso_code = |website = <!-- {{Official URL}} --> |module = |footnotes = }} </syntaxhighlight> ===Short version=== <syntaxhighlight lang="wikitext" style="overflow:auto"> {{Infobox settlement |name = |native_name = |native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> |settlement_type = |image_skyline = |imagesize = |image_alt = |image_caption = |etymology = |nickname = |coordinates = <!-- {{Coord}} --> |population_total = |subdivision_type = Country |subdivision_name = |subdivision_type1 = |subdivision_name1 = |subdivision_type2 = |subdivision_name2 = |website = <!-- {{Official URL}} --> }} </syntaxhighlight> ===Complete empty syntax, with comments=== This copy of the template lists all parameters except for some of the repeating numbered parameters which are noted in the comments. Comments here should be brief; see the table below for full descriptions of each parameter. <syntaxhighlight lang="wikitext" style="overflow:auto;"> {{Infobox settlement | name = <!-- at least one of the first two fields must be filled in --> | official_name = <!-- avoid if redundant with e.g. `settlement_type` of `name` | native_name = <!-- if different from the English name --> | native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> | other_name = | settlement_type = <!-- such as Town, Village, City, Borough etc. --> <!-- transliteration(s) --> | translit_lang1 = | translit_lang1_type = | translit_lang1_info = | translit_lang1_type1 = | translit_lang1_info1 = | translit_lang1_type2 = | translit_lang1_info2 = <!-- etc., up to translit_lang1_type6 / translit_lang1_info6 --> | translit_lang2 = | translit_lang2_type = | translit_lang2_info = | translit_lang2_type1 = | translit_lang2_info1 = | translit_lang2_type2 = | translit_lang2_info2 = <!-- etc., up to translit_lang2_type6 / translit_lang2_info6 --> <!-- images, nickname, motto --> | image_skyline = | imagesize = | image_alt = | image_caption = | image_flag = | flag_size = | flag_alt = | flag_border = | flag_link = | image_seal = | seal_size = | seal_alt = | seal_link = | seal_type = | seal_class = | image_shield = | shield_size = | shield_alt = | shield_link = | image_blank_emblem = | blank_emblem_type = | blank_emblem_size = | blank_emblem_alt = | blank_emblem_link = | etymology = | nickname = | nicknames = | motto = | mottoes = | anthem = <!-- maps and coordinates --> | image_map = | mapsize = | map_alt = | map_caption = | image_map1 = | mapsize1 = | map_alt1 = | map_caption1 = | pushpin_map = <!-- name of a location map as per Template:Location_map --> | pushpin_mapsize = | pushpin_map_alt = | pushpin_map_caption = | pushpin_map_caption_notsmall = | pushpin_label = <!-- only necessary if "name" or "official_name" are too long --> | pushpin_label_position = <!-- position of the pushpin label: left, right, top, bottom, none --> | pushpin_outside = | pushpin_relief = | pushpin_image = | pushpin_overlay = | mapframe = <!-- "yes" to show an interactive map --> | coordinates = <!-- {{Coord}} --> | coor_pinpoint = <!-- to specify exact location of coordinates (was coor_type) --> | coordinates_footnotes = <!-- for references: use <ref> tags --> | grid_name = <!-- name of a regional grid system --> | grid_position = <!-- position on the regional grid system --> <!-- location --> | subdivision_type = Country | subdivision_name = <!-- the name of the country --> | subdivision_type1 = | subdivision_name1 = | subdivision_type2 = | subdivision_name2 = <!-- etc., subdivision_type6 / subdivision_name6 --> <!-- established --> | established_title = <!-- Founded --> | established_date = <!-- requires established_title= --> | established_title1 = <!-- Incorporated (town) --> | established_date1 = <!-- requires established_title1= --> | established_title2 = <!-- Incorporated (city) --> | established_date2 = <!-- requires established_title2= --> | established_title3 = | established_date3 = <!-- requires established_title3= --> | established_title4 = | established_date4 = <!-- requires established_title4= --> | established_title5 = | established_date5 = <!-- requires established_title5= --> | established_title6 = | established_date6 = <!-- requires established_title6= --> | established_title7 = | established_date7 = <!-- requires established_title7= --> | extinct_title = | extinct_date = <!-- requires extinct_title= --> | founder = | named_for = <!-- seat, smaller parts --> | seat_type = <!-- defaults to: Seat --> | seat = | seat1_type = <!-- defaults to: Former seat --> | seat1 = | parts_type = <!-- defaults to: Boroughs --> | parts_style = <!-- list, coll (collapsed list), para (paragraph format) --> | parts = <!-- parts text, or header for parts list --> | p1 = | p2 = <!-- etc., up to p50: for separate parts to be listed--> <!-- government type, leaders --> | government_footnotes = <!-- for references: use <ref> tags --> | government_type = | governing_body = | leader_party = | leader_title = | leader_name = <!-- add &amp;nbsp; (no-break space) to disable automatic links --> | leader_title1 = | leader_name1 = <!-- etc., up to leader_title4 / leader_name4 --> <!-- display settings --> | total_type = <!-- to set a non-standard label for total area and population rows --> | unit_pref = <!-- enter: Imperial, to display imperial before metric --> <!-- area --> | area_footnotes = <!-- for references: use <ref> tags --> | dunam_link = <!-- If dunams are used, this specifies which dunam to link. --> | area_total_km2 = <!-- ALL fields with measurements have automatic unit conversion --> | area_total_sq_mi = <!-- see table @ Template:Infobox settlement for details --> | area_total_ha = | area_total_acre = | area_total_dunam = <!-- used in Middle East articles only --> | area_land_km2 = | area_land_sq_mi = | area_land_ha = | area_land_acre = | area_land_dunam = <!-- used in Middle East articles only --> | area_water_km2 = | area_water_sq_mi = | area_water_ha = | area_water_acre = | area_water_dunam = <!-- used in Middle East articles only --> | area_water_percent = | area_urban_footnotes = <!-- for references: use <ref> tags --> | area_urban_km2 = | area_urban_sq_mi = | area_urban_ha = | area_urban_acre = | area_urban_dunam = <!-- used in Middle East articles only --> | area_rural_footnotes = <!-- for references: use <ref> tags --> | area_rural_km2 = | area_rural_sq_mi = | area_rural_ha = | area_rural_acre = | area_rural_dunam = <!-- used in Middle East articles only --> | area_metro_footnotes = <!-- for references: use <ref> tags --> | area_metro_km2 = | area_metro_sq_mi = | area_metro_ha = | area_metro_acre = | area_metro_dunam = <!-- used in Middle East articles only --> | area_rank = | area_blank1_title = | area_blank1_km2 = | area_blank1_sq_mi = | area_blank1_ha = | area_blank1_acre = | area_blank1_dunam = <!-- used in Middle East articles only --> | area_blank2_title = | area_blank2_km2 = | area_blank2_sq_mi = | area_blank2_ha = | area_blank2_acre = | area_blank2_dunam = <!-- used in Middle East articles only --> | area_note = <!-- dimensions --> | dimensions_footnotes = <!-- for references: use <ref> tags --> | length_km = | length_mi = | width_km = | width_mi = <!-- elevation --> | elevation_footnotes = <!-- for references: use <ref> tags --> | elevation_m = | elevation_ft = | elevation_point = <!-- for denoting the measurement point --> | elevation_max_footnotes = <!-- for references: use <ref> tags --> | elevation_max_m = | elevation_max_ft = | elevation_max_point = <!-- for denoting the measurement point --> | elevation_max_rank = | elevation_min_footnotes = <!-- for references: use <ref> tags --> | elevation_min_m = | elevation_min_ft = | elevation_min_point = <!-- for denoting the measurement point --> | elevation_min_rank = <!-- population --> | population_footnotes = <!-- for references: use <ref> tags --> | population_as_of = | population_total = | pop_est_footnotes = | pop_est_as_of = | population_est = | population_rank = | population_density_km2 = <!-- for automatic calculation of any density field, use: auto --> | population_density_sq_mi = | population_urban_footnotes = | population_urban = | population_density_urban_km2 = | population_density_urban_sq_mi = | population_rural_footnotes = | population_rural = | population_density_rural_km2 = | population_density_rural_sq_mi = | population_metro_footnotes = | population_metro = | population_density_metro_km2 = | population_density_metro_sq_mi = | population_density_rank = | population_blank1_title = | population_blank1 = | population_density_blank1_km2 = | population_density_blank1_sq_mi = | population_blank2_title = | population_blank2 = | population_density_blank2_km2 = | population_density_blank2_sq_mi = | population_demonym = <!-- demonym, e.g. Liverpudlian for someone from Liverpool --> | population_demonyms = | population_note = <!-- demographics (section 1) --> | demographics_type1 = | demographics1_footnotes = <!-- for references: use <ref> tags --> | demographics1_title1 = | demographics1_info1 = <!-- etc., up to demographics1_title7 / demographics1_info7 --> <!-- demographics (section 2) --> | demographics_type2 = | demographics2_footnotes = <!-- for references: use <ref> tags --> | demographics2_title1 = | demographics2_info1 = <!-- etc., up to demographics2_title10 / demographics2_info10 --> <!-- time zone(s) --> | timezone_link = | timezone1_location = | timezone1 = | utc_offset1 = | timezone1_DST = | utc_offset1_DST = | timezone2_location = | timezone2 = | utc_offset2 = | timezone2_DST = | utc_offset2_DST = | timezone3_location = | timezone3 = | utc_offset3 = | timezone3_DST = | utc_offset3_DST = | timezone4_location = | timezone4 = | utc_offset4 = | timezone4_DST = | utc_offset4_DST = | timezone5_location = | timezone5 = | utc_offset5 = | timezone5_DST = | utc_offset5_DST = <!-- postal codes, area code --> | postal_code_type = <!-- enter ZIP Code, Postcode, Post code, Postal code... --> | postal_code = | postal2_code_type = <!-- enter ZIP Code, Postcode, Post code, Postal code... --> | postal2_code = | area_code_type = <!-- defaults to: Area code(s) --> | area_code = | area_codes = | geocode = | iso_code = | registration_plate_type = | registration_plate = | code1_name = | code1_info = | code2_name = | code2_info = <!-- blank fields (section 1) --> | blank_name_sec1 = | blank_info_sec1 = | blank1_name_sec1 = | blank1_info_sec1 = | blank2_name_sec1 = | blank2_info_sec1 = <!-- etc., up to blank7_name_sec1 / blank7_info_sec1 --> <!-- blank fields (section 2) --> | blank_name_sec2 = | blank_info_sec2 = | blank1_name_sec2 = | blank1_info_sec2 = | blank2_name_sec2 = | blank2_info_sec2 = <!-- etc., up to blank7_name_sec2 / blank7_info_sec2 --> <!-- website, footnotes --> | website = <!-- {{Official URL}} --> | module = | footnotes = }} </syntaxhighlight> ==Parameter names and descriptions== {| class="wikitable" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Name and transliteration=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" | '''name''' || optional || This is the usual name in English. If it's not specified, the infobox will use the '''official_name''' as a title unless this too is missing, in which case the page name will be used. |- style="vertical-align:top;" | '''official_name''' || optional || The official name in English. Avoid using '''official_name''' if it leads to redundancy with '''name''' and '''settlement_type'''. Use '''official_name''' if the official name is unusual or cannot be simply deduced from the name and settlement type. |- style="vertical-align:top;" | '''native_name''' || optional || Name or names in the local language, if different from 'name', and if not English. This parameter may be used for the name in the de facto local language (e.g. German for [[Munich]]). Per the [[Template talk:Infobox settlement/Archive 32#RFC on usage of native name parameter for First Nations placenames|2023 RfC]], it may also be used for names used by First Nations/[[Indigenous peoples]], '''regardless''' of whether they are the dominant ethnic group in the location. |- style="vertical-align:top;" | '''native_name_lang''' || optional || Use [[List of ISO 639-1 codes|ISO 639-1 code]], e.g. "fr" for French. If there is more than one dominant name, in different languages, enter those names using {{tl|lang}}, instead. |- style="vertical-align:top;" | '''other_name''' || optional || For places with other commonly used names like Bombay or Saigon |- style="vertical-align:top;" | '''settlement_type''' || optional || Any type can be entered, such as City, Town, Village, Hamlet, Municipality, Reservation, etc. If set, will be displayed under the names. Might also be used as a label for total population/area (defaulting to ''City''), if needed to distinguish from ''Urban'', ''Rural'' or ''Metro'' (if urban, rural or metro figures are not present, the label is ''Total'' unless '''total_type''' is set). |- style="vertical-align:top;" | '''short_description''' || optional || Set to <code>no</code> to suppress the Short description generated by the infobox. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Transliteration(s) |- style="vertical-align:top;" | '''translit_lang1''' || optional || Will place the "entry" before the word "transliteration(s)". Can be used to specify a particular language like in [[Dêlêg]] or one may just enter "Other", like in [[Gaza City|Gaza]]'s article. |- style="vertical-align:top;" | '''translit_lang1_type'''<br />'''translit_lang1_type1'''<br />to<br />'''translit_lang1_type6''' || optional || |- style="vertical-align:top;" | '''translit_lang1_info'''<br />'''translit_lang1_info1'''<br />to<br />'''translit_lang1_info6''' || optional || |- style="vertical-align:top;" | '''translit_lang2''' || optional || Will place a second transliteration. See [[Dêlêg]] |- style="vertical-align:top;" | '''translit_lang2_type'''<br />'''translit_lang2_type1'''<br />to<br />'''translit_lang2_type6''' || optional || |- style="vertical-align:top;" | '''translit_lang2_info'''<br />'''translit_lang2_info1'''<br />to<br />'''translit_lang2_info6''' || optional || |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Images, nickname, motto=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Image |- style="vertical-align:top;" | '''image_skyline''' || optional || Primary image representing the settlement. Commonly a photo of the settlement’s skyline. For large urban areas, the <nowiki>{{multiple image}}</nowiki> template is often used in place of a single image to create a collage of the settlement's skyline and several notable landmarks. |- style="vertical-align:top;" | '''imagesize''' || optional || Can be used to tweak the size of the image_skyline up or down. This can be helpful if an editor wants to make the infobox wider. If used, '''px''' must be specified; default size is 250px. Note [[WP:IMGSIZELEAD]] recommends that images should be no wider than <code>upright=1.35</code> -equivalent to 300px |- style="vertical-align:top;" | '''image_alt''' || optional || [[Alt text]] for the image, used by visually impaired readers who cannot see the image. See [[WP:ALT]]. |- style="vertical-align:top;" | '''image_caption''' || optional || Will place a caption under the image_skyline (if present) |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Flag image |- style="vertical-align:top;" | '''image_flag''' || optional || Used for a flag. |- style="vertical-align:top;" | '''flag_size''' || optional || Can be used to tweak the size of the image_flag up or down from 100px as desired. If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''flag_alt''' || optional || Alt text for the flag. |- style="vertical-align:top;" | '''flag_border''' || optional || Set to 'no' to remove the border from the flag |- style="vertical-align:top;" | '''flag_link''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Seal image |- style="vertical-align:top;" | '''image_seal''' || optional || If the place has an official seal. |- style="vertical-align:top;" | '''seal_size''' || optional || If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''seal_alt''' || optional || Alt text for the seal. |- style="vertical-align:top;" | '''seal_link'''<br />'''seal_type''' || optional || |- style="vertical-align:top;" | '''seal_class''' || optional || CSS class for the seal image. Parameter {{para|seal_class|skin-invert}} can be used for dark mode support if the seal image is monochrome. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Coat of arms image |- style="vertical-align:top;" | '''image_shield''' || optional || Can be used for a place with a coat of arms. |- style="vertical-align:top;" | '''shield_size''' || optional || If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''shield_alt''' || optional || Alt text for the shield. |- style="vertical-align:top;" | '''shield_link''' || optional || Can be used if a wiki article if known but is not automatically linked by the template. See [[Coquitlam, British Columbia]]'s infobox for an example. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Logo or emblem image |- style="vertical-align:top;" | '''image_blank_emblem''' || optional || Can be used if a place has an official logo, crest, emblem, etc. |- style="vertical-align:top;" | '''blank_emblem_type''' || optional || Caption beneath "image_blank_emblem" to specify what type of emblem it is. |- style="vertical-align:top;" | '''blank_emblem_size''' || optional || If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''blank_emblem_alt''' || optional || Alt text for blank emblem. |- style="vertical-align:top;" | '''blank_emblem_link''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Nickname, motto |- style="vertical-align:top;" | '''etymology''' || optional || origin of name |- style="vertical-align:top;" | '''nickname''' || optional || well-known nickname |- style="vertical-align:top;" | '''nicknames''' || optional || if more than one well-known nickname, use this |- style="vertical-align:top;" | '''motto''' || optional || Will place the motto under the nicknames |- style="vertical-align:top;" | '''mottoes''' || optional || if more than one motto, use this |- style="vertical-align:top;" | '''anthem''' || optional || Will place the anthem (song) under the nicknames |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Maps, coordinates=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Map images |- style="vertical-align:top;" | '''image_map''' || optional || |- style="vertical-align:top;" | '''mapsize''' || optional || If used, '''px''' must be specified; default is 250px. |- style="vertical-align:top;" | '''map_alt''' || optional || Alt text for map. |- style="vertical-align:top;" | '''map_caption''' || optional || |- style="vertical-align:top;" | '''image_map1''' || optional || A secondary map image. The field '''image_map''' must be filled in first. Example see: [[Bloomsburg, Pennsylvania]]. |- style="vertical-align:top;" | '''mapsize1''' || optional || If used, '''px''' must be specified; default is 250px. |- style="vertical-align:top;" | '''map_alt1''' || optional || Alt text for secondary map. |- style="vertical-align:top;" | '''map_caption1''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Pushpin map(s), coordinates |- style="vertical-align:top;" | '''pushpin_map''' || optional || The name of a location map as per [[Template:Location map]] (e.g. ''Indonesia'' or ''Russia''). The coordinate fields (from {{para|coordinates}}) position a pushpin coordinate marker and label on the map '''automatically'''. Example: [[Padang, Indonesia]]. To show multiple pushpin maps, provide a list of maps separated by #, e.g., ''California#USA'' |- style="vertical-align:top;" | '''pushpin_mapsize''' || optional || Must be entered as only a number—'''do not use px'''. The default value is 250.<br/>''Equivalent to <code>width</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_map_alt''' || optional || Alt text for pushpin map; used by [[screen reader]]s, see [[WP:ALT]].<br/>''Equivalent to <code>alt</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_map_caption''' || optional || Fill out if a different caption from ''map_caption'' is desired.<br/>''Equivalent to <code>caption</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_map_caption_notsmall''' || optional || <!-- add documentation here --> |- style="vertical-align:top;" | '''pushpin_label''' || optional || The text of the label to display next to the identifying mark; a [[Wiki markup|wikilink]] can be used. If not specified, the label will be the text assigned to the ''name'' or ''official_name'' parameters (if {{para|pushpin_label_position|none}}, no label is displayed).<br/>''Equivalent to <code>label</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_label_position''' || optional || The position of the label on the pushpin map relative to the pushpin coordinate marker. Valid options are {left, right, top, bottom, none}. If this field is not specified, the default value is ''right''.<br/>''Equivalent to <code>position</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_outside''' || optional || ''Equivalent to <code>outside</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_relief''' || optional || Set this to <code>y</code> or any non-blank value to use an alternative relief map provided by the selected location map (if a relief map is available). <br/>''Equivalent to <code>relief</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_image''' || optional || Allows the use of an alternative map; the image must have the same edge coordinates as the location map template.<br/>''Equivalent to <code>AlternativeMap</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_overlay''' || optional || Can be used to specify an image to be superimposed on the regular pushpin map.<br/>''Equivalent to <code>overlay_image</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''mapframe''' || optional || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage. |- style="vertical-align:top;" | '''coordinates''' || optional || Latitude and longitude. Use {{tl|Coord}}. See the documentation for {{tl|Coord}} for more details on usage. |- style="vertical-align:top;" | '''coor_pinpoint''' || optional || If needed, to specify more exactly where (or what) coordinates are given (e.g. ''Town Hall'') or a specific place in a larger area (e.g. a city in a county). Example: In the article [[Masovian Voivodeship]], <code>coor_pinpoint=Warsaw</code> specifies [[Warsaw]]. |- style="vertical-align:top;" | '''coordinates_footnotes''' || optional || Reference(s) for coordinates, placed within <code><nowiki><ref> </ref></nowiki></code> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''grid_name'''<br />'''grid_position''' || optional || Name of a regional grid system and position on the regional grid |} ====Mapframe maps==== {{Infobox mapframe/doc/parameters | onByDefault = yes, unless any of the other map parameters are present: {{para|pushpin_map}}, {{para|image_map}}, {{para|image_map1}} | mapframe-frame-width = 250 | mapframe-length_km = {{para|length_km}} | mapframe-length_mi = {{para|length_mi}} | mapframe-width_km = {{para|width_km}} | mapframe-width_mi = {{para|width_mi}} | mapframe-area_km2 = {{para|area_total_km2}} | mapframe-area_ha = {{para|area_total_ha}} | mapframe-area_acre = {{para|area_total_acre}} | mapframe-area_sq_mi = {{para|area_total_sq_mi}} | mapframe-type = city | mapframe-population = {{para|population_metro}} or {{para|population_total}} | mapframe-marker = town | mapframe-caption = Interactive map of {{para|name}} or {{para|official_name}} or {{tl|PAGENAMEBASE}} }} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Location, established, seat, subdivisions, government, leaders=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Location |- style="vertical-align:top;" | {{anchor|subdivision_type}}'''subdivision_type''' || optional || almost always <code><nowiki>Country</nowiki></code> |- style="vertical-align:top;" | '''subdivision_name''' || optional || Depends on the subdivision_type — use the name in text form, sample: <code>United States</code>. Per [[MOS:INFOBOXFLAG]], flag icons or flag templates may be used in this field |- style="vertical-align:top;" | '''subdivision_type1'''<br />to<br />'''subdivision_type6''' || optional || Can be State/Province, region, county. These labels are for subdivisions ''above'' the level of the settlement described in the article. For subdivisions ''below'' or ''within'' the place described in the article, use {{para|parts_type}}. |- style="vertical-align:top;" | '''subdivision_name1'''<br />to<br />'''subdivision_name6''' || optional || Use the name in text form, sample: <code>Florida</code> or <code><nowiki>[[Florida]]</nowiki></code>. Per [[MOS:INFOBOXFLAG]], settlements "may have flags of the country and first-level administrative subdivision in infoboxes". Flag icons or flag templates is permitted for subdivision_name1 (which is usually state or province); flag icons or flag templates should '''not''' be used in subdivision_name2-6. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Established |- style="vertical-align:top;" | '''established_title''' || optional || Example: Founded |- style="vertical-align:top;" | '''established_date''' || optional || Requires established_title= |- style="vertical-align:top;" | '''established_title1''' || optional || Example: Incorporated (town) <br/>[Note that "established_title1" is distinct from "established_title"; you can think of "established_title" as behaving like "established_title0".] |- style="vertical-align:top;" | '''established_date1''' || optional || [See note for "established_title1".] Requires established_title1= |- style="vertical-align:top;" | '''established_title2''' || optional || Example: Incorporated (city) |- style="vertical-align:top;" | '''established_date2''' || optional || Requires established_title2= |- style="vertical-align:top;" | '''established_title3''' || optional || |- style="vertical-align:top;" | '''established_date3''' || optional || Requires established_title3= |- style="vertical-align:top;" | '''established_title4''' || optional || |- style="vertical-align:top;" | '''established_date4''' || optional || Requires established_title4= |- style="vertical-align:top;" | '''established_title5''' || optional || |- style="vertical-align:top;" | '''established_date5''' || optional || Requires established_title5= |- style="vertical-align:top;" | '''established_title6''' || optional || |- style="vertical-align:top;" | '''established_date6''' || optional || Requires established_title6= |- style="vertical-align:top;" | '''established_title7''' || optional || |- style="vertical-align:top;" | '''established_date7''' || optional || Requires established_title7= |- style="vertical-align:top;" | '''extinct_title''' || optional || For when a settlement ceases to exist |- style="vertical-align:top;" | '''extinct_date''' || optional || Requires extinct_title= |- style="vertical-align:top;" | '''founder''' || optional || Who the settlement was founded by |- style="vertical-align:top;" | '''named_for''' || optional || The source of the name of the settlement (a person, a place, et cetera) |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Seat of government |- style="vertical-align:top;" | '''seat_type''' || optional || The label for the seat of government (defaults to ''Seat''). |- style="vertical-align:top;" | '''seat''' || optional || The seat of government. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Smaller parts (e.g. boroughs of a city) |- style="vertical-align:top;" | '''parts_type''' || optional || The label for the smaller subdivisions (defaults to ''Boroughs''). |- style="vertical-align:top;" | '''parts_style''' || optional || Set to ''list'' to display as a collapsible list, ''coll'' as a collapsed list, or ''para'' to use paragraph style. Default is ''list'' for up to 5 items, otherwise ''coll''. |- style="vertical-align:top;" | '''parts''' || optional || Text or header of the list of smaller subdivisions. |- style="vertical-align:top;" | '''p1'''<br />'''p2'''<br />to<br />'''p50''' || optional || The smaller subdivisions to be listed. Example: [[Warsaw]] |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Government type, leaders |- style="vertical-align:top;" | '''government_footnotes''' || optional || Reference(s) for government, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''government_type''' || optional || Examples: [[Mayor–council government]], [[Council–manager government]], [[City commission government]], ... |- style="vertical-align:top;" | '''governing_body''' || optional || Name of the place's governing body |- style="vertical-align:top;" | '''leader_party''' || optional || Political party of the place's leader |- style="vertical-align:top;" | '''leader_title''' || optional || First title of the place's leader, e.g. Mayor |- style="vertical-align:top;" | '''leader_name''' || optional || Name of the place's leader |- style="vertical-align:top;" | '''leader_title1'''<br />to<br />'''leader_title4''' || optional || |- style="vertical-align:top;" | '''leader_name1'''<br />to<br />'''leader_name4''' || optional || For long lists use {{tl|Collapsible list}}. See [[Halifax Regional Municipality|Halifax]] for an example. |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Geographic information=== |- style="vertical-align:top;" | colspan=3 | These fields have '''dual automatic unit conversion''' meaning that if only metric values are entered, the imperial values will be automatically converted and vice versa. If an editor wishes to over-ride the automatic conversion, e.g. if the source gives both metric and imperial or if a range of values is needed, they should enter both values in their respective fields. All values must be entered in a '''raw format: no commas, spaces, or unit symbols'''. The template will format them automatically. |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Display settings |- style="vertical-align:top;" | '''total_type''' || optional || Specifies what "total" area and population figure refer to, e.g. ''Greater London''. This overrides other labels for total population/area. To make the total area and population display on the same line as the words "Area" and "Population", with no "Total" or similar label, set the value of this parameter to '''&amp;nbsp;'''. |- style="vertical-align:top;" | '''unit_pref''' || optional || To change the unit order to ''imperial (metric)'', enter '''imperial'''. The default display style is ''metric (imperial)''. However, the template will swap the order automatically if the '''subdivision_name''' equals some variation of the US or the UK.<br />For the Middle East, a unit preference of [[dunam]] can be entered (only affects total area). <br /> |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Area |- style="vertical-align:top;" | '''area_footnotes''' || optional || Reference(s) for area, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''dunam_link''' || optional || If dunams are used, the default is to link the word ''dunams'' in the total area section. This can be changed by setting <code>dunam_link</code> to another measure (e.g. <code>dunam_link=water</code>). Linking can also be turned off by setting the parameter to something else (e.g. <code>dunam_link=none</code> or <code>dunam_link=off</code>). |- style="vertical-align:top;" | '''area_total_km2''' || optional || Total area in square kilometers—symbol: km<sup>2</sup>. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square miles if area_total_sq_mi is empty. |- style="vertical-align:top;" | '''area_total_ha''' || optional || Total area in hectares—symbol: ha. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display acres if area_total_acre is empty. |- style="vertical-align:top;" | '''area_total_sq_mi''' || optional || Total area in square miles—symbol: sq&nbsp;mi. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers if area_total_km2 is empty. |- style="vertical-align:top;" | '''area_total_acre''' || optional || Total area in acres. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display hectares if area_total_ha is empty. |- style="vertical-align:top;" | '''area_total_dunam''' || optional || Total area in dunams, which is wiki-linked. Used in middle eastern places like Israel, Gaza, and the West Bank. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers or hectares and square miles or acreds if area_total_km2, area_total_ha, area_total_sq_mi, and area_total_acre are empty. Examples: [[Gaza City|Gaza]] and [[Ramallah]] |- style="vertical-align:top;" | '''area_land_km2''' || optional || Land area in square kilometers—symbol: km<sup>2</sup>. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square miles if area_land_sq_mi is empty. |- style="vertical-align:top;" | '''area_land_sq_mi''' || optional || Land area in square miles—symbol: sq&nbsp;mi. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers if area_land_km2 is empty. |- style="vertical-align:top;" | '''area_land_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_land_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_land_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_water_km2''' || optional || Water area in square kilometers—symbol: km<sup>2</sup>. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square miles if area_water_sq_mi is empty. |- style="vertical-align:top;" | '''area_water_sq_mi''' || optional || Water area in square miles—symbol: sq&nbsp;mi. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers if area_water_km2 is empty. |- style="vertical-align:top;" | '''area_water_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_water_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_water_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_water_percent''' || optional || percent of water without the "%" |- style="vertical-align:top;" | '''area_urban_km2''' || optional || |- style="vertical-align:top;" | '''area_urban_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_urban_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_urban_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_urban_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_rural_km2''' || optional || |- style="vertical-align:top;" | '''area_rural_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_rural_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_rural_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_rural_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_metro_km2''' || optional || |- style="vertical-align:top;" | '''area_metro_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_metro_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_metro_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_metro_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_rank''' || optional || The settlement's area, as ranked within its parent sub-division |- style="vertical-align:top;" | '''area_blank1_title''' || optional || Example see London |- style="vertical-align:top;" | '''area_blank1_km2''' || optional || |- style="vertical-align:top;" | '''area_blank1_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_blank1_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_blank1_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_blank1_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_blank2_title''' || optional || |- style="vertical-align:top;" | '''area_blank2_km2''' || optional || |- style="vertical-align:top;" | '''area_blank2_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_blank2_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_blank2_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_blank2_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_note''' || optional || A place for additional information such as the name of the source. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Dimensions |- style="vertical-align:top;" | '''dimensions_footnotes''' || optional || Reference(s) for dimensions, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''length_km''' || optional || Raw number entered in kilometers. Will automatically convert to display length in miles if length_mi is empty. |- style="vertical-align:top;" | '''length_mi''' || optional || Raw number entered in miles. Will automatically convert to display length in kilometers if length_km is empty. |- style="vertical-align:top;" | '''width_km''' || optional || Raw number entered in kilometers. Will automatically convert to display width in miles if length_mi is empty. |- style="vertical-align:top;" | '''width_mi''' || optional || Raw number entered in miles. Will automatically convert to display width in kilometers if length_km is empty. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Elevation |- style="vertical-align:top;" | '''elevation_footnotes''' || optional || Reference(s) for elevation, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''elevation_m''' || optional || Raw number entered in meters. Will automatically convert to display elevation in feet if elevation_ft is empty. However, if a range in elevation (i.e. 5–50 m ) is desired, use the "max" and "min" fields below |- style="vertical-align:top;" | '''elevation_ft''' || optional || Raw number, entered in feet. Will automatically convert to display the average elevation in meters if '''elevation_m''' field is empty. However, if a range in elevation (e.g. 50–500&nbsp;ft ) is desired, use the "max" and "min" fields below |- style="vertical-align:top;" | '''elevation_max_footnotes'''<br />'''elevation_min_footnotes''' || optional || Same as above, but for the "max" and "min" elevations. See [[City of Leeds]]. |- style="vertical-align:top;" | '''elevation_max_m'''<br />'''elevation_max_ft'''<br />'''elevation_max_rank'''<br />'''elevation_min_m'''<br />'''elevation_min_ft'''<br />'''elevation_min_rank''' || optional || Used to give highest & lowest elevations and rank, instead of just a single value. Example: [[Halifax Regional Municipality]]. |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Population, demographics=== |- style="vertical-align:top;" | colspan=3 | The density fields have '''dual automatic unit conversion''' meaning that if only metric values are entered, the imperial values will be automatically converted and vice versa. If an editor wishes to over-ride the automatic conversion, e.g. if the source gives both metric and imperial or if a range of values is needed, they can enter both values in their respective fields. '''To calculate density with respect to the total area automatically, type ''auto'' in place of any density value.''' |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Population |- style="vertical-align:top;" | '''population_total''' || optional || Actual population (see below for estimates) preferably consisting of digits only (without any commas) |- style="vertical-align:top;" | '''population_as_of''' || optional || The year for the population total (usually a census year) |- style="vertical-align:top;" | '''population_footnotes''' || optional || Reference(s) for population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_km2''' || optional || Set to {{code|auto}} to auto generate based on {{para|population_total}} and {{para|area_total_km2}} |- style="vertical-align:top;" | '''population_density_sq_mi''' || optional || Set to {{code|auto}} to auto generate based on {{para|population_total}} and {{para|area_total_sq_mi}} |- style="vertical-align:top;" | '''population_est''' || optional || Population estimate. |- style="vertical-align:top;" | '''pop_est_as_of''' || optional || The year or month & year of the population estimate |- style="vertical-align:top;" | '''pop_est_footnotes''' || optional || Reference(s) for population estimate, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_urban''' || optional || |- style="vertical-align:top;" | '''population_urban_footnotes''' || optional || Reference(s) for urban population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_urban_km2''' || optional || |- style="vertical-align:top;" | '''population_density_urban_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_rural''' || optional || |- style="vertical-align:top;" | '''population_rural_footnotes''' || optional || Reference(s) for rural population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_rural_km2''' || optional || |- style="vertical-align:top;" | '''population_density_rural_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_metro''' || optional || |- style="vertical-align:top;" | '''population_metro_footnotes''' || optional || Reference(s) for metro population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_metro_km2''' || optional || |- style="vertical-align:top;" | '''population_density_metro_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_rank''' || optional || The settlement's population, as ranked within its parent sub-division |- style="vertical-align:top;" | '''population_density_rank''' || optional || The settlement's population density, as ranked within its parent sub-division |- style="vertical-align:top;" | '''population_blank1_title''' || optional || Can be used for estimates. Example: [[Windsor, Ontario]] |- style="vertical-align:top;" | '''population_blank1''' || optional || The population value for blank1_title |- style="vertical-align:top;" | '''population_density_blank1_km2''' || optional || |- style="vertical-align:top;" | '''population_density_blank1_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_blank2_title''' || optional || |- style="vertical-align:top;" | '''population_blank2''' || optional || |- style="vertical-align:top;" | '''population_density_blank2_km2''' || optional || |- style="vertical-align:top;" | '''population_density_blank2_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_demonym''' || optional || A demonym or gentilic is a word that denotes the members of a people or the inhabitants of a place. For example, a citizen in [[Liverpool]] is known as a [[Liverpudlian]]. |- style="vertical-align:top;" | '''population_demonyms''' || optional || If more than one demonym, use this |- style="vertical-align:top;" | '''population_note''' || optional || A place for additional information such as the name of the source. See [[Windsor, Ontario]] for example. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Demographics (section 1) |- style="vertical-align:top;" | '''demographics_type1''' || optional || Section Header. For example: Ethnicity |- style="vertical-align:top;" | '''demographics1_footnotes''' || optional || Reference(s) for demographics section 1, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''demographics1_title1'''<br />to<br />'''demographics1_title7''' || optional || Titles related to demographics_type1. For example: White, Black, Hispanic... |- style="vertical-align:top;" | '''demographics1_info1'''<br />to<br />'''demographics1_info7''' || optional || Information related to the "titles". For example: 50%, 25%, 10%... |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Demographics (section 2) |- style="vertical-align:top;" | '''demographics_type2''' || optional || A second section header. For example: Languages |- style="vertical-align:top;" | '''demographics2_footnotes''' || optional || Reference(s) for demographics section 2, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''demographics2_title1'''<br />to<br />'''demographics2_title10''' || optional || Titles related to '''demographics_type2'''. For example: English, French, Arabic... |- style="vertical-align:top;" | '''demographics2_info1'''<br />to<br />'''demographics2_info10''' || optional || Information related to the "titles" for type2. For example: 50%, 25%, 10%... |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Other information=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Time zone(s) |- style="vertical-align:top;" | '''timezone1''' || optional || |- style="vertical-align:top;" | '''utc_offset1''' || optional || Plain text, e.g. "+05:00" or "−08:00". Auto-linked, so do not include references or additional text. |- style="vertical-align:top;" | '''timezone1_DST''' || optional || |- style="vertical-align:top;" | '''utc_offset1_DST''' || optional || |- style="vertical-align:top;" | '''timezone2''' || optional || A second timezone field for larger areas. Up to five timezones may be included. |- style="vertical-align:top;" | '''utc_offset2''' || optional || |- style="vertical-align:top;" | '''timezone2_DST''' || optional || |- style="vertical-align:top;" | '''utc_offset2_DST''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Postal code(s) & area code |- style="vertical-align:top;" | '''postal_code_type''' || optional || |- style="vertical-align:top;" | '''postal_code''' || optional || |- style="vertical-align:top;" | '''postal2_code_type''' || optional || |- style="vertical-align:top;" | '''postal2_code''' || optional || |- style="vertical-align:top;" | '''area_code_type''' || optional || If left blank/not used template will default to "[[Telephone numbering plan|Area code(s)]]" |- style="vertical-align:top;" | '''area_code''' || optional || Refers to the telephone dialing code for the settlement, ''not'' a geographic area code. |- style="vertical-align:top;" | '''area_codes''' || optional || If more than one area code, use this |- style="vertical-align:top;" | '''geocode''' || optional || See [[Geocode]] |- style="vertical-align:top;" | '''iso_code''' || optional || See [[ISO 3166]] |- style="vertical-align:top;" | '''registration_plate_type''' || optional || If left blank/not used template will default to "[[Vehicle registration plate|Vehicle registration]]" |- style="vertical-align:top;" | '''registration_plate''' || optional || See [[Vehicle registration plate]] |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Blank fields (section 1) |- style="vertical-align:top;" | '''blank_name_sec1''' || optional || Fields used to display other information. The name is displayed in bold on the left side of the infobox. |- style="vertical-align:top;" | '''blank_info_sec1''' || optional || The information associated with the ''blank_name'' heading. The info is displayed on right side of infobox, in the same row as the name. For an example, see: [[Warsaw]] |- style="vertical-align:top;" | '''blank1_name_sec1'''<br />to<br />'''blank7_name_sec1''' || optional || Up to 7 additional fields (8 total) can be displayed in this section |- style="vertical-align:top;" | '''blank1_info_sec1'''<br />to<br />'''blank7_info_sec1''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Blank fields (section 2) |- style="vertical-align:top;" | '''blank_name_sec2''' || optional || For a second section of blank fields |- style="vertical-align:top;" | '''blank_info_sec2''' || optional || Example: [[Beijing]] |- style="vertical-align:top;" | '''blank1_name_sec2'''<br />to<br />'''blank7_name_sec2''' || optional || Up to 7 additional fields (8 total) can be displayed in this section |- style="vertical-align:top;" | '''blank1_info_sec2'''<br />to<br />'''blank7_info_sec2''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Website, footnotes |- style="vertical-align:top;" | '''website''' || optional || External link to official website, use {{Tl|Official URL}} if Property P856 "official website" exists on Wikidata, or <nowiki>{{URL|example.com}}</nowiki> |- style="vertical-align:top;" | '''module''' || optional || To embed infoboxes at the bottom of the infobox |- style="vertical-align:top;" | '''footnotes''' || optional || Text to be displayed at the bottom of the infobox |} <!-- End of parameter name/description table --> ==Examples== ;Example 1: <!-- NOTE: This differs from the actual Chicago infobox in order to provide examples. --> {{Infobox settlement | name = Chicago | settlement_type = [[City (Illinois)|City]] | image_skyline = Chicago montage.jpg | imagesize = 275px <!--default is 250px--> | image_caption = Clockwise from top: [[Downtown Chicago]], the [[Chicago Theatre]], the [[Chicago 'L']], [[Navy Pier]], [[Millennium Park]], the [[Field Museum]], and the [[Willis Tower|Willis (formerly Sears) Tower]] | image_flag = Flag of Chicago, Illinois.svg | image_seal = | etymology = {{langx|mia|shikaakwa}} ("wild onion" or "wild garlic") | nickname = [[Origin of Chicago's "Windy City" nickname|The Windy City]], The Second City, Chi-Town, Chi-City, Hog Butcher for the World, City of the Big Shoulders, The City That Works, and others found at [[List of nicknames for Chicago]] | motto = {{langx|la|Urbs in Horto}} (City in a Garden), Make Big Plans (Make No Small Plans), I Will | image_map = US-IL-Chicago.png | map_caption = Location in the [[Chicago metropolitan area]] and Illinois | pushpin_map = USA | pushpin_map_caption = Location in the United States | mapframe = yes | mapframe-zoom = 8 | mapframe-stroke-width = 1 | mapframe-shape-fill = #0096ff | mapframe-marker = building-alt1 | mapframe-wikidata = yes | mapframe-id = Q1297 | coordinates = {{coord|41|50|15|N|87|40|55|W}} | coordinates_footnotes = <ref name="USCB Gazetteer 2010"/> | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = [[Illinois]] | subdivision_type2 = [[List of counties in Illinois|Counties]] | subdivision_name2 = [[Cook County, Illinois|Cook]], [[DuPage County, Illinois|DuPage]] | established_title = Settled | established_date = 1770s | established_title2 = [[Municipal corporation|Incorporated]] | established_date2 = March 4, 1837 | founder = | named_for = {{langx|mia|shikaakwa}}<br /> ("Wild onion") | government_type = [[Mayor–council government|Mayor–council]] | leader_title = [[Mayor of Chicago|Mayor]] | leader_name = [[Rahm Emanuel]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[City council|Council]] | leader_name1 = [[Chicago City Council]] | unit_pref = Imperial | area_footnotes = <ref name="USCB Gazetteer 2010">{{cite web | url = https://www.census.gov/geo/www/gazetteer/files/Gaz_places_national.txt | title = 2010 United States Census Gazetteer for Places: January 1, 2010 | format = text | work = 2010 United States Census | publisher = [[United States Census Bureau]] | date = April 2010 | access-date = August 1, 2012}}</ref> | area_total_sq_mi = 234.114 | area_land_sq_mi = 227.635 | area_water_sq_mi = 6.479 | area_water_percent = 3 | area_urban_sq_mi = 2123 | area_metro_sq_mi = 10874 | elevation_footnotes = <ref name="GNIS"/> | elevation_ft = 594 | elevation_m = 181 | population_footnotes = <ref name="USCB PopEstCities 2011">{{cite web | url = https://www.census.gov/popest/data/cities/totals/2011/tables/SUB-EST2011-01.csv | title = Annual Estimates of the Resident Population for Incorporated Places Over 50,000, Ranked by July 1, 2011 Population | format = [[comma-separated values|CSV]] | work = 2011 Population Estimates | publisher = [[United States Census Bureau]], Population Division | date = June 2012 | access-date = August 1, 2012}}</ref><ref name="USCB Metro 2010">{{cite web | url=https://www.census.gov/prod/cen2010/briefs/c2010br-01.pdf | title = Population Change for the Ten Most Populous and Fastest Growing Metropolitan Statiscal Areas: 2000 to 2010 | date = March 2011 | publisher = [[U.S. Census Bureau]] | page = 6 |access-date = April 12, 2011}}</ref> | population_as_of = [[2010 United States census|2010]] | population_total = 2695598 | pop_est_footnotes = | pop_est_as_of = 2011 | population_est = 2707120 | population_rank = [[List of United States cities by population|3rd US]] | population_density_sq_mi = 11,892.4<!-- 2011 population_est / area_land_sq_mi --> | population_urban = 8711000 | population_density_urban_sq_mi = auto | population_metro = 9461105 | population_density_metro_sq_mi = auto | population_demonym = Chicagoan | timezone = [[Central Standard Time|CST]] | utc_offset = −06:00 | timezone_DST = [[Central Daylight Time|CDT]] | utc_offset_DST = −05:00 | area_code_type = [[North American Numbering Plan|Area codes]] | area_codes = [[Area code 312|312]], [[Area code 773|773]], [[Area code 872|872]] | blank_name = [[Federal Information Processing Standards|FIPS]] code | blank_info = {{FIPS|17|14000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|423587}}, {{GNIS 4|428803}} | website = {{URL|www.cityofchicago.org}} | footnotes = <ref name="GNIS">{{Cite gnis|428803|City of Chicago|April 12, 2011}}</ref> }} <syntaxhighlight lang="wikitext" style="overflow:auto; white-space: pre-wrap;"> <!-- NOTE: This differs from the actual Chicago infobox in order to provide examples. --> {{Infobox settlement | name = Chicago | settlement_type = [[City (Illinois)|City]] | image_skyline = Chicago montage.jpg | imagesize = 275px <!--default is 250px--> | image_caption = Clockwise from top: [[Downtown Chicago]], the [[Chicago Theatre]], the [[Chicago 'L']], [[Navy Pier]], [[Millennium Park]], the [[Field Museum]], and the [[Willis Tower|Willis (formerly Sears) Tower]] | image_flag = Flag of Chicago, Illinois.svg | image_seal = | etymology = {{langx|mia|shikaakwa}} ("wild onion" or "wild garlic") | nickname = [[Origin of Chicago's "Windy City" nickname|The Windy City]], The Second City, Chi-Town, Chi-City, Hog Butcher for the World, City of the Big Shoulders, The City That Works, and others found at [[List of nicknames for Chicago]] | motto = {{langx|la|Urbs in Horto}} (City in a Garden), Make Big Plans (Make No Small Plans), I Will | image_map = US-IL-Chicago.png | map_caption = Location in the [[Chicago metropolitan area]] and Illinois | pushpin_map = USA | pushpin_map_caption = Location in the United States | mapframe = yes | mapframe-zoom = 8 | mapframe-stroke-width = 1 | mapframe-shape-fill = #0096ff | mapframe-marker = building-alt1 | coordinates = {{coord|41|50|15|N|87|40|55|W}} | coordinates_footnotes = <ref name="USCB Gazetteer 2010"/> | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = [[Illinois]] | subdivision_type2 = [[List of counties in Illinois|Counties]] | subdivision_name2 = [[Cook County, Illinois|Cook]], [[DuPage County, Illinois|DuPage]] | established_title = Settled | established_date = 1770s | established_title2 = [[Municipal corporation|Incorporated]] | established_date2 = March 4, 1837 | founder = | named_for = {{langx|mia|shikaakwa}}<br /> ("Wild onion") | government_type = [[Mayor–council government|Mayor–council]] | leader_title = [[Mayor of Chicago|Mayor]] | leader_name = [[Rahm Emanuel]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[City council|Council]] | leader_name1 = [[Chicago City Council]] | unit_pref = Imperial | area_footnotes = <ref name="USCB Gazetteer 2010">{{cite web | url = https://www.census.gov/geo/www/gazetteer/files/Gaz_places_national.txt | title = 2010 United States Census Gazetteer for Places: January 1, 2010 | format = text | work = 2010 United States Census | publisher = [[United States Census Bureau]] | date = April 2010 | access-date = August 1, 2012}}</ref> | area_total_sq_mi = 234.114 | area_land_sq_mi = 227.635 | area_water_sq_mi = 6.479 | area_water_percent = 3 | area_urban_sq_mi = 2123 | area_metro_sq_mi = 10874 | elevation_footnotes = <ref name="GNIS"/> | elevation_ft = 594 | elevation_m = 181 | population_footnotes = <ref name="USCB PopEstCities 2011">{{cite web | url = https://www.census.gov/popest/data/cities/totals/2011/tables/SUB-EST2011-01.csv | title = Annual Estimates of the Resident Population for Incorporated Places Over 50,000, Ranked by July 1, 2011 Population | format = [[comma-separated values|CSV]] | work = 2011 Population Estimates | publisher = [[United States Census Bureau]], Population Division | date = June 2012 | access-date = August 1, 2012}}</ref><ref name="USCB Metro 2010">{{cite web | url=https://www.census.gov/prod/cen2010/briefs/c2010br-01.pdf | title = Population Change for the Ten Most Populous and Fastest Growing Metropolitan Statiscal Areas: 2000 to 2010 | date = March 2011 | publisher = [[U.S. Census Bureau]] | page = 6 |access-date = April 12, 2011}}</ref> | population_as_of = [[2010 United States census|2010]] | population_total = 2695598 | pop_est_footnotes = | pop_est_as_of = 2011 | population_est = 2707120 | population_rank = [[List of United States cities by population|3rd US]] | population_density_sq_mi = 11,892.4<!-- 2011 population_est / area_land_sq_mi --> | population_urban = 8711000 | population_density_urban_sq_mi = auto | population_metro = 9461105 | population_density_metro_sq_mi = auto | population_demonym = Chicagoan | timezone = [[Central Standard Time|CST]] | utc_offset = −06:00 | timezone_DST = [[Central Daylight Time|CDT]] | utc_offset_DST = −05:00 | area_code_type = [[North American Numbering Plan|Area codes]] | area_codes = [[Area code 312|312]], [[Area code 773|773]], [[Area code 872|872]] | blank_name = [[Federal Information Processing Standards|FIPS]] code | blank_info = {{FIPS|17|14000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|423587}}, {{GNIS 4|428803}} | website = {{URL|www.cityofchicago.org}} | footnotes = <ref name="GNIS">{{Cite gnis|428803|City of Chicago|April 12, 2011}}</ref> }} </syntaxhighlight> '''References''' {{reflist}} {{clear}} ---- ;Example 2: {{Infobox settlement | name = Detroit | settlement_type = [[City (Michigan)|City]] | image_skyline = Detroit Montage.jpg | imagesize = 290px | image_caption = Images from top to bottom, left to right: [[Downtown Detroit]] skyline, [[Spirit of Detroit]], [[Greektown Historic District|Greektown]], [[Ambassador Bridge]], [[Michigan Soldiers' and Sailors' Monument]], [[Fox Theatre (Detroit)|Fox Theatre]], and [[Comerica Park]]. | image_flag = Flag of Detroit.svg | image_seal = Seal of Detroit.svg | etymology = {{langx|fr|détroit}} ([[strait]]) | nickname = The Motor City, Motown, Renaissance City, The D, Hockeytown, The Automotive Capital of the World, Rock City, The 313 | motto = ''Speramus Meliora; Resurget Cineribus''<br />([[Latin]]: We Hope For Better Things; It Shall Rise From the Ashes) | image_map = Wayne County Michigan Incorporated and Unincorporated areas Detroit highlighted.svg | mapsize = 250x200px | map_caption = Location within [[Wayne County, Michigan|Wayne County]] and the state of [[Michigan]] | pushpin_map = USA | pushpin_map_caption = Location within the [[contiguous United States]] | mapframe = yes | mapframe-stroke-width = 1 | mapframe-marker = city | mapframe-zoom = 9 | mapframe-wikidata = yes | mapframe-id = Q12439 | coordinates = {{coord|42|19|53|N|83|2|45|W}} | coordinates_footnotes = | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = [[Michigan]] | subdivision_type2 = [[List of counties in Michigan|County]] | subdivision_name2 = [[Wayne County, Michigan|Wayne]] | established_title = Founded | established_date = 1701 | established_title2 = Incorporated | established_date2 = 1806 | government_footnotes = <!-- for references: use<ref> tags --> | government_type = [[Mayor–council government|Mayor–council]] | leader_title = [[List of mayors of Detroit|Mayor]] | leader_name = [[Mike Duggan]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[Detroit City Council|City Council]] | leader_name1 = {{collapsible list|bullets=yes | title = Members | 1 = [[Charles Pugh]] – Council President | 2 = [[Gary Brown (Detroit politician)|Gary Brown]] – Council President Pro-Tem | 3 = [[JoAnn Watson]] | 4 = [[Kenneth Cockrel, Jr.]] | 5 = [[Saunteel Jenkins]] | 6 = [[Andre Spivey]] | 7 = [[James Tate (Detroit politician)|James Tate]] | 8 = [[Brenda Jones (Detroit politician)|Brenda Jones]] | 9 = [[Kwame Kenyatta]] }} | unit_pref = Imperial | area_footnotes = | area_total_sq_mi = 142.87 | area_total_km2 = 370.03 | area_land_sq_mi = 138.75 | area_land_km2 = 359.36 | area_water_sq_mi = 4.12 | area_water_km2 = 10.67 | area_urban_sq_mi = 1295 | area_metro_sq_mi = 3913 | elevation_footnotes = | elevation_ft = 600 | population_footnotes = | population_as_of = 2011 | population_total = 706585 | population_rank = [[List of United States cities by population|18th in U.S.]] | population_urban = 3863924 | population_metro = 4285832 (US: [[List of United States metropolitan statistical areas|13th]]) | population_blank1_title = [[Combined statistical area|CSA]] | population_blank1 = 5207434 (US: [[List of United States combined statistical areas|11th]]) | population_density_sq_mi= {{#expr:713777/138.8 round 0}} | population_demonym = Detroiter | population_note = | timezone = [[Eastern Time Zone (North America)|EST]] | utc_offset = −5 | timezone_DST = [[Eastern Daylight Time|EDT]] | utc_offset_DST = −4 | postal_code_type = | postal_code = | area_code = [[Area code 313|313]] | blank_name = [[Federal Information Processing Standards|FIPS code]] | blank_info = {{FIPS|26|22000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|1617959}}, {{GNIS 4|1626181}} | website = [http://www.detroitmi.gov/ DetroitMI.gov] | footnotes = }} <syntaxhighlight lang="wikitext" style="overflow:auto; white-space: pre-wrap;"> {{Infobox settlement | name = Detroit | settlement_type = [[City (Michigan)|City]] | image_skyline = Detroit Montage.jpg | imagesize = 290px | image_caption = Images from top to bottom, left to right: [[Downtown Detroit]] skyline, [[Spirit of Detroit]], [[Greektown Historic District|Greektown]], [[Ambassador Bridge]], [[Michigan Soldiers' and Sailors' Monument]], [[Fox Theatre (Detroit)|Fox Theatre]], and [[Comerica Park]]. | image_flag = Flag of Detroit, Michigan.svg | image_seal = Seal of Detroit, Michigan.svg | etymology = {{langx|fr|détroit}} ([[strait]]) | nickname = The Motor City, Motown, Renaissance City, The D, Hockeytown, The Automotive Capital of the World, Rock City, The 313 | motto = ''Speramus Meliora; Resurget Cineribus''<br />([[Latin]]: We Hope For Better Things; It Shall Rise From the Ashes) | image_map = Wayne County Michigan Incorporated and Unincorporated areas Detroit highlighted.svg | mapsize = 250x200px | map_caption = Location within [[Wayne County, Michigan|Wayne County]] and the state of [[Michigan]] | pushpin_map = USA | pushpin_map_caption = Location within the [[contiguous United States]] | mapframe = yes | mapframe-stroke-width = 1 | mapframe-marker = city | mapframe-zoom = 9 | coordinates = {{coord|42|19|53|N|83|2|45|W}} | coordinates_footnotes = | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = Michigan | subdivision_type2 = [[List of counties in Michigan|County]] | subdivision_name2 = [[Wayne County, Michigan|Wayne]] | established_title = Founded | established_date = 1701 | established_title2 = Incorporated | established_date2 = 1806 | government_footnotes = <!-- for references: use<ref> tags --> | government_type = [[Mayor-council government|Mayor-Council]] | leader_title = [[List of mayors of Detroit|Mayor]] | leader_name = [[Mike Duggan]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[Detroit City Council|City Council]] | leader_name1 = {{collapsible list|bullets=yes | title = Members | 1 = [[Charles Pugh]] – Council President | 2 = [[Gary Brown (Detroit politician)|Gary Brown]] – Council President Pro-Tem | 3 = [[JoAnn Watson]] | 4 = [[Kenneth Cockrel, Jr.]] | 5 = [[Saunteel Jenkins]] | 6 = [[Andre Spivey]] | 7 = [[James Tate (Detroit politician)|James Tate]] | 8 = [[Brenda Jones (Detroit politician)|Brenda Jones]] | 9 = [[Kwame Kenyatta]] }} | unit_pref = Imperial | area_footnotes = | area_total_sq_mi = 142.87 | area_total_km2 = 370.03 | area_land_sq_mi = 138.75 | area_land_km2 = 359.36 | area_water_sq_mi = 4.12 | area_water_km2 = 10.67 | area_urban_sq_mi = 1295 | area_metro_sq_mi = 3913 | elevation_footnotes = | elevation_ft = 600 | population_footnotes = | population_as_of = 2011 | population_total = 706585 | population_rank = [[List of United States cities by population|18th in U.S.]] | population_urban = 3863924 | population_metro = 4285832 (US: [[List of United States metropolitan statistical areas|13th]]) | population_blank1_title = [[Combined statistical area|CSA]] | population_blank1 = 5207434 (US: [[List of United States combined statistical areas|11th]]) | population_density_sq_mi= {{#expr:713777/138.8 round 0}} | population_demonym = Detroiter | population_note = | timezone = [[Eastern Time Zone (North America)|EST]] | utc_offset = −5 | timezone_DST = [[Eastern Daylight Time|EDT]] | utc_offset_DST = −4 | postal_code_type = | postal_code = | area_code = [[Area code 313|313]] | blank_name = [[Federal Information Processing Standards|FIPS code]] | blank_info = {{FIPS|26|22000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|1617959}}, {{GNIS 4|1626181}} | website = [http://www.detroitmi.gov/ DetroitMI.gov] | footnotes = }} </syntaxhighlight> {{clear}} ==Supporting templates== The following is a list of sub-templates used by Infobox settlement. See the [{{fullurl:Special:PrefixIndex|prefix=Infobox+settlement%2F&namespace=10&hideredirects=1}} current list of all sub-templates] for documentation, sandboxes, testcases, etc. * {{tl|Infobox settlement/areadisp}} * {{tl|Infobox settlement/densdisp}} * {{tl|Infobox settlement/lengthdisp}} * {{tl|Infobox settlement/link}} ==Microformat== {{UF-hcard-geo}} == TemplateData == {{TemplateData header}} {{collapse top|title=TemplateData}} <templatedata> { "description": "Infobox for human settlements (cities, towns, villages, communities) as well as other administrative districts, counties, provinces, etc.", "format": "block", "params": { "name": { "label": "Common name", "description": "This is the usual name in English. If it's not specified, the infobox will use the 'official_name' as a title unless this too is missing, in which case the page name will be used.", "type": "string", "suggested": true }, "official_name": { "label": "Official name", "description": "The official name in English, if different from 'name'.", "type": "string", "suggested": true }, "native_name": { "label": "Native name", "description": "This will display under the name/official name.", "type": "string", "example": "Distrito Federal de México" }, "native_name_lang": { "label": "Native name language", "description": "Use ISO 639-1 code, e.g. 'fr' for French. If there is more than one native name in different languages, enter those names using {{lang}} instead.", "type": "string", "example": "zh" }, "other_name": { "label": "Other name", "description": "For places with other commonly used names like Bombay or Saigon.", "type": "string" }, "settlement_type": { "label": "Type of settlement", "description": "Any type can be entered, such as 'City', 'Town', 'Village', 'Hamlet', 'Municipality', 'Reservation', etc. If set, will be displayed under the names, provided either 'name' or 'official_name' is filled in. Might also be used as a label for total population/area (defaulting to 'City'), if needed to distinguish from 'Urban', 'Rural' or 'Metro' (if urban, rural or metro figures are not present, the label is 'Total' unless 'total_type' is set).", "type": "string", "aliases": [ "type" ] }, "translit_lang1": { "label": "Transliteration from language 1", "description": "Will place the entry before the word 'transliteration(s)'. Can be used to specify a particular language, like in Dêlêg, or one may just enter 'Other', like in Gaza's article.", "type": "string" }, "translit_lang1_type": { "label": "Transliteration type for language 1", "type": "line", "example": "[[Hanyu pinyin]]", "description": "The type of transliteration used for the first language." }, "translit_lang1_info": { "label": "Transliteration language 1 info", "description": "Parameters 'translit_lang2_info1' ... 'translit_lang2_info6' are also available, but not documented here.", "type": "string" }, "translit_lang2": { "label": "Transliteration language 2", "description": "Will place a second transliteration. See Dêlêg.", "type": "string" }, "image_skyline": { "label": "Image", "description": "Primary image representing the settlement. Commonly a photo of the settlement’s skyline.", "type": "wiki-file-name" }, "imagesize": { "label": "Image size", "description": "Can be used to tweak the size of 'image_skyline' up or down. This can be helpful if an editor wants to make the infobox wider. If used, 'px' must be specified; default size is 250px.", "type": "string" }, "image_alt": { "label": "Image alt text", "description": "Alt (hover) text for the image, used by visually impaired readers who cannot see the image.", "type": "string" }, "image_caption": { "label": "Image caption", "description": "Will place a caption under 'image_skyline' (if present).", "type": "content", "aliases": [ "caption" ] }, "image_flag": { "label": "Flag image", "description": "Used for a flag.", "type": "wiki-file-name" }, "flag_size": { "label": "Flag size", "description": "Can be used to tweak the size of 'image_flag' up or down from 100px as desired. If used, 'px' must be specified; default size is 100px.", "type": "string" }, "flag_alt": { "label": "Flag alt text", "description": "Alt text for the flag.", "type": "string" }, "flag_border": { "label": "Flag border?", "description": "Set to 'no' to remove the border from the flag.", "type": "boolean", "example": "no" }, "flag_link": { "label": "Flag link", "type": "string", "description": "Link to the flag." }, "image_seal": { "label": "Official seal image", "description": "An image of an official seal, if the place has one.", "type": "wiki-file-name" }, "seal_size": { "label": "Seal size", "description": "If used, 'px' must be specified; default size is 100px.", "type": "string" }, "seal_alt": { "label": "Seal alt text", "description": "Alt (hover) text for the seal.", "type": "string" }, "seal_link": { "label": "Seal link", "type": "string", "description": "Link to the seal." }, "seal_class": { "label": "Seal class", "description": "CSS class for the seal image", "type": "line", "suggestedvalues": [ "skin-invert" ] }, "image_shield": { "label": "Coat of arms/shield image", "description": "Can be used for a place with a coat of arms.", "type": "wiki-file-name" }, "shield_size": { "label": "Shield size", "description": "If used, 'px' must be specified; default size is 100px.", "type": "string", "example": "200px" }, "shield_alt": { "label": "Shield alt text", "description": "Alternate text for the shield.", "type": "string" }, "shield_link": { "label": "Shield link", "description": "Can be used if a wiki article if known but is not automatically linked by the template. See Coquitlam, British Columbia's infobox for an example.", "type": "string" }, "image_blank_emblem": { "label": "Blank emblem image", "description": "Can be used if a place has an official logo, crest, emblem, etc.", "type": "wiki-file-name" }, "blank_emblem_type": { "label": "Blank emblem type", "description": "Caption beneath 'image_blank_emblem' to specify what type of emblem it is.", "type": "string", "example": "Logo" }, "blank_emblem_size": { "label": "Blank emblem size", "description": "If used, 'px' must be specified; default size is 100px.", "type": "string", "example": "200px" }, "blank_emblem_alt": { "label": "Blank emblem alt text", "description": "Alt text for blank emblem.", "type": "string" }, "blank_emblem_link": { "label": "Blank emblem link", "type": "string", "description": "A link to the emblem of custom type." }, "nickname": { "label": "Nickname", "description": "Well-known nickname(s).", "type": "string", "example": "Sin City" }, "motto": { "label": "Motto", "description": "Will place the motto under the nicknames.", "type": "string" }, "anthem": { "label": "Anthem", "description": "Will place the anthem (song) under the nicknames.", "type": "string", "example": "[[Hatikvah]]" }, "image_map": { "label": "Map image", "description": "A map of the region, or a map with the region highlighted within a parent region.", "type": "wiki-file-name" }, "mapsize": { "label": "Map size", "description": "If used, 'px' must be specified; default is 250px.", "type": "string" }, "map_alt": { "label": "Map alt text", "description": "Alternate (hover) text for the map.", "type": "string" }, "map_caption": { "label": "Map caption", "type": "content", "description": "Caption for the map displayed." }, "image_map1": { "label": "Map 2 image", "description": "A secondary map image. The field 'image_map' must be filled in first. For an example, see [[Bloomsburg, Pennsylvania]].", "example": "File:Columbia County Pennsylvania Incorporated and Unincorporated areas Bloomsburg Highlighted.svg", "type": "wiki-file-name" }, "mapsize1": { "label": "Map 2 size", "description": "If used, 'px' must be specified; default is 250px.", "type": "string", "example": "300px" }, "map_alt1": { "label": "Map 2 alt text", "description": "Alt (hover) text for the second map.", "type": "string" }, "map_caption1": { "label": "Map 2 caption", "type": "content", "description": "Caption of the second map." }, "pushpin_map": { "label": "Pushpin map", "description": "The name of a location map (e.g. 'Indonesia' or 'Russia'). The coordinates information (from the coordinates parameter) positions a pushpin coordinate marker and label on the map automatically. For an example, see Padang, Indonesia.", "type": "string", "example": "Indonesia" }, "pushpin_mapsize": { "label": "Pushpin map size", "description": "Must be entered as only a number—do not use 'px'. The default value is 250.", "type": "number", "example": "200" }, "pushpin_map_alt": { "label": "Pushpin map alt text", "description": "Alt (hover) text for the pushpin map.", "type": "string" }, "pushpin_map_caption": { "label": "Pushpin map caption", "description": "Fill out if a different caption from 'map_caption' is desired.", "type": "string", "example": "Map showing Bloomsburg in Pennsylvania" }, "pushpin_label": { "label": "Pushpin label", "type": "line", "example": "Bloomsburg", "description": "Label of the pushpin." }, "pushpin_label_position": { "label": "Pushpin label position", "description": "The position of the label on the pushpin map relative to the pushpin coordinate marker. Valid options are 'left', 'right', 'top', 'bottom', and 'none'. If this field is not specified, the default value is 'right'.", "type": "string", "example": "left", "default": "right" }, "pushpin_outside": { "label": "Pushpin outside?", "type": "line" }, "pushpin_relief": { "label": "Pushpin relief", "description": "Set this to 'y' or any non-blank value to use an alternative relief map provided by the selected location map (if a relief map is available).", "type": "string", "example": "y" }, "pushpin_image": { "label": "Pushpin image", "type": "wiki-file-name", "description": "Image to use for the pushpin." }, "pushpin_overlay": { "label": "Pushpin overlay", "description": "Can be used to specify an image to be superimposed on the regular pushpin map.", "type": "wiki-file-name" }, "coordinates": { "label": "Coordinates", "description": "Latitude and longitude. Use {{Coord}}. See the documentation for {{Coord}} for more details on usage.", "type": "wiki-template-name", "example": "{{coord|41|50|15|N|87|40|55|W}}" }, "coor_pinpoint": { "label": "Coordinate pinpoint", "description": "If needed, to specify more exactly where (or what) coordinates are given (e.g. 'Town Hall') or a specific place in a larger area (e.g. a city in a county). Example: Masovian Voivodeship.", "type": "string" }, "coordinates_footnotes": { "label": "Coordinates footnotes", "description": "Reference(s) for coordinates. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "subdivision_type": { "label": "Subdivision type 1", "description": "Almost always 'Country'.", "type": "string", "example": "Country", "suggestedvalues": [ "Country" ] }, "subdivision_name": { "label": "Subdivision name 1", "description": "Depends on 'subdivision_type'. Use the name in text form, e.g., 'United States'. Per MOS:INFOBOXFLAG, flag icons or flag templates may be used in this field.", "type": "string" }, "subdivision_type1": { "label": "Subdivision type 2", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type2": { "label": "Subdivision type 3", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type3": { "label": "Subdivision type 4", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type4": { "label": "Subdivision type 5", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type5": { "label": "Subdivision type 6", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type6": { "label": "Subdivision type 7", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_name1": { "label": "Subdivision name 2", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Connecticut]]" }, "subdivision_name2": { "label": "Subdivision name 3", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Florida]]" }, "subdivision_name3": { "label": "Subdivision name 4", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Utah]]" }, "subdivision_name4": { "label": "Subdivision name 5", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[California]]" }, "subdivision_name5": { "label": "Subdivision name 6", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Vermont]]" }, "subdivision_name6": { "label": "Subdivision name 7", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Wyoming]]" }, "established_title": { "label": "First establishment event", "description": "Title of the first establishment event.", "type": "string", "example": "First settled" }, "established_date": { "label": "First establishment date", "type": "date", "description": "Date of the first establishment event." }, "established_title1": { "label": "Second establishment event", "description": "Title of the second establishment event.", "type": "string", "example": "Incorporated as a town" }, "established_date1": { "label": "Second establishment date", "type": "date", "description": "Date of the second establishment event." }, "established_title2": { "label": "Third establishment event", "description": "Title of the third establishment event.", "type": "string", "example": "Incorporated as a city" }, "established_date2": { "label": "Third establishment date", "type": "date", "description": "Date of the third establishment event." }, "established_title3": { "label": "Fourth establishment event", "type": "string", "description": "Title of the fourth establishment event.", "example": "Incorporated as a county" }, "established_date3": { "label": "Fourth establishment date", "type": "date", "description": "Date of the fourth establishment event." }, "extinct_title": { "label": "Extinction event title", "description": "For when a settlement ceases to exist.", "type": "string", "example": "[[Sack of Rome]]" }, "extinct_date": { "label": "Extinction date", "type": "string", "description": "Date the settlement ceased to exist." }, "founder": { "label": "Founder", "description": "Who the settlement was founded by.", "type": "string" }, "named_for": { "label": "Named for", "description": "The source of the name of the settlement (a person, a place, et cetera).", "type": "string", "example": "[[Ho Chi Minh]]" }, "seat_type": { "label": "Seat of government type", "description": "The label for the seat of government (defaults to 'Seat').", "type": "string", "default": "Seat" }, "seat": { "label": "Seat of government", "description": "The seat of government.", "type": "string", "example": "[[White House]]" }, "parts_type": { "label": "Type of smaller subdivisions", "description": "The label for the smaller subdivisions (defaults to 'Boroughs').", "type": "string", "default": "Boroughs" }, "parts_style": { "label": "Parts style", "description": "Set to 'list' to display as a collapsible list, 'coll' as a collapsed list, or 'para' to use paragraph style. Default is 'list' for up to 5 items, otherwise 'coll'.", "type": "string", "example": "list" }, "parts": { "label": "Smaller subdivisions", "description": "Text or header of the list of smaller subdivisions.", "type": "string" }, "p1": { "label": "Smaller subdivision 1", "description": "The smaller subdivisions to be listed. Parameters 'p1' to 'p50' can also be used.", "type": "string" }, "government_footnotes": { "label": "Government footnotes", "description": "Reference(s) for government. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "content" }, "government_type": { "label": "Government type", "description": "The place's type of government.", "type": "string", "example": "[[Mayor–council government]]" }, "governing_body": { "label": "Governing body", "description": "Name of the place's governing body.", "type": "wiki-page-name", "example": "Legislative Council of Hong Kong" }, "leader_party": { "label": "Leader political party", "description": "Political party of the place's leader.", "type": "string" }, "leader_title": { "label": "Leader title", "description": "First title of the place's leader, e.g. 'Mayor'.", "type": "string", "example": "[[Governor (United States)|Governor]]" }, "leader_name": { "label": "Leader's name", "description": "Name of the place's leader.", "type": "string", "example": "[[Jay Inslee]]" }, "leader_title1": { "label": "Leader title 1", "description": "First title of the place's leader, e.g. 'Mayor'.", "type": "string", "example": "Mayor" }, "leader_name1": { "label": "Leader name 1", "description": "Additional names for leaders. Parameters 'leader_name1' .. 'leader_name4' are available. For long lists, use {{Collapsible list}}.", "type": "string" }, "total_type": { "label": "Total type", "description": "Specifies what total area and population figure refer to, e.g. 'Greater London'. This overrides other labels for total population/area. To make the total area and population display on the same line as the words ''Area'' and ''Population'', with no ''Total'' or similar label, set the value of this parameter to '&nbsp;'.", "type": "string" }, "unit_pref": { "label": "Unit preference", "description": "To change the unit order to 'imperial (metric)', enter 'imperial'. The default display style is 'metric (imperial)'. However, the template will swap the order automatically if the 'subdivision_name' equals some variation of the US or the UK. For the Middle East, a unit preference of dunam can be entered (only affects total area). All values must be entered in a raw format (no commas, spaces, or unit symbols). The template will format them automatically.", "type": "string", "example": "imperial" }, "area_footnotes": { "label": "Area footnotes", "description": "Reference(s) for area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "dunam_link": { "label": "Link dunams?", "description": "If dunams are used, the default is to link the word ''dunams'' in the total area section. This can be changed by setting 'dunam_link' to another measure (e.g. 'dunam_link=water'). Linking can also be turned off by setting the parameter to something else (e.g., 'dunam_link=none' or 'dunam_link=off').", "type": "boolean", "example": "none" }, "area_total_km2": { "label": "Total area (km2)", "description": "Total area in square kilometers (symbol: km²). Value must be entered in raw format (no commas or spaces). Auto-converted to display square miles if 'area_total_sq_mi' is empty.", "type": "number" }, "area_total_sq_mi": { "label": "Total area (sq. mi)", "description": "Total area in square miles (symbol: sq mi). Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers if 'area_total_km2' is empty.", "type": "number" }, "area_total_ha": { "label": "Total area (hectares)", "description": "Total area in hectares (symbol: ha). Value must be entered in raw format (no commas or spaces). Auto-converted to display acres if 'area_total_acre' is empty.", "type": "number" }, "area_total_acre": { "label": "Total area (acres)", "description": "Total area in acres. Value must be entered in raw format (no commas or spaces). Auto-converted to display hectares if 'area_total_ha' is empty.", "type": "number" }, "area_total_dunam": { "label": "Total area (dunams)", "description": "Total area in dunams, which is wikilinked. Used in Middle Eastern places like Israel, Gaza, and the West Bank. Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers or hectares and square miles or acres if 'area_total_km2', 'area_total_ha', 'area_total_sq_mi', and 'area_total_acre' are empty. Examples: Gaza and Ramallah.", "type": "number" }, "area_land_km2": { "label": "Land area (sq. km)", "description": "Land area in square kilometers (symbol: km²). Value must be entered in raw format (no commas or spaces). Auto-converted to display square miles if 'area_land_sq_mi' is empty.", "type": "number" }, "area_land_sq_mi": { "label": "Land area (sq. mi)", "description": "Land area in square miles (symbol: sq mi). Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers if 'area_land_km2' is empty.", "type": "number" }, "area_land_ha": { "label": "Land area (hectares)", "description": "The place's land area in hectares.", "type": "number" }, "area_land_dunam": { "label": "Land area (dunams)", "description": "The place's land area in dunams.", "type": "number" }, "area_land_acre": { "label": "Land area (acres)", "description": "The place's land area in acres.", "type": "number" }, "area_water_km2": { "label": "Water area (sq. km)", "description": "Water area in square kilometers (symbol: km²). Value must be entered in raw format (no commas or spaces). Auto-converted to display square miles if 'area_water_sq_mi' is empty.", "type": "number" }, "area_water_sq_mi": { "label": "Water area (sq. mi)", "description": "Water area in square miles (symbol: sq mi). Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers if 'area_water_km2' is empty.", "type": "number" }, "area_water_ha": { "label": "Water area (hectares)", "description": "The place's water area in hectares.", "type": "number" }, "area_water_dunam": { "label": "Water area (dunams)", "description": "The place's water area in dunams.", "type": "number" }, "area_water_acre": { "label": "Water area (acres)", "description": "The place's water area in acres.", "type": "number" }, "area_water_percent": { "label": "Percent water area", "description": "Percent of water without the %.", "type": "number", "example": "21" }, "area_urban_km2": { "label": "Urban area (sq. km)", "type": "number", "description": "Area of the place's urban area in square kilometers." }, "area_urban_sq_mi": { "label": "Urban area (sq. mi)", "type": "number", "description": "Area of the place's urban area in square miles." }, "area_urban_ha": { "label": "Urban area (hectares)", "description": "Area of the place's urban area in hectares.", "type": "number" }, "area_urban_dunam": { "label": "Urban area (dunams)", "description": "Area of the place's urban area in dunams.", "type": "number" }, "area_urban_acre": { "label": "Urban area (acres)", "description": "Area of the place's urban area in acres.", "type": "number" }, "area_urban_footnotes": { "label": "Urban area footnotes", "description": "Reference(s) for the urban area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "area_rural_km2": { "label": "Rural area (sq. km)", "type": "number", "description": "Area of the place's rural area in square kilometers." }, "area_rural_sq_mi": { "label": "Rural area (sq. mi)", "type": "number", "description": "Area of the place's rural area in square miles." }, "area_rural_ha": { "label": "Rural area (hectares)", "description": "Area of the place's rural area in hectares.", "type": "number" }, "area_rural_dunam": { "label": "Rural area (dunams)", "description": "Area of the place's rural area in dunams.", "type": "number" }, "area_rural_acre": { "label": "Rural area (acres)", "description": "Area of the place's rural area in acres.", "type": "number" }, "area_rural_footnotes": { "label": "Rural area footnotes", "description": "Reference(s) for the urban area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "area_metro_km2": { "label": "Metropolitan area (sq. km)", "type": "number", "description": "Area of the place's metropolitan area in square kilometers." }, "area_metro_sq_mi": { "label": "Metropolitan area (sq. mi)", "type": "number", "description": "Area of the place's metropolitan area in square miles." }, "area_metro_ha": { "label": "Metropolitan area (hectares)", "description": "Area of the place's metropolitan area in hectares.", "type": "number" }, "area_metro_dunam": { "label": "Metropolitan area (dunams)", "description": "Area of the place's metropolitan area in dunams.", "type": "number" }, "area_metro_acre": { "label": "Metropolitan area (acres)", "description": "Area of the place's metropolitan area in acres.", "type": "number" }, "area_metro_footnotes": { "label": "Metropolitan area footnotes", "description": "Reference(s) for the urban area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "area_rank": { "label": "Area rank", "description": "The settlement's area, as ranked within its parent sub-division.", "type": "string" }, "area_blank1_title": { "label": "First blank area section title", "description": "Title of the place's first custom area section.", "type": "string", "example": "see [[London]]" }, "area_blank1_km2": { "label": "Area blank 1 (sq. km)", "type": "number", "description": "Area of the place's first blank area section in square kilometers." }, "area_blank1_sq_mi": { "label": "Area blank 1 (sq. mi)", "type": "number", "description": "Area of the place's first blank area section in square miles." }, "area_blank1_ha": { "label": "Area blank 1 (hectares)", "description": "Area of the place's first blank area section in hectares.", "type": "number" }, "area_blank1_dunam": { "label": "Area blank 1 (dunams)", "description": "Area of the place's first blank area section in dunams.", "type": "number" }, "area_blank1_acre": { "label": "Area blank 1 (acres)", "description": "Area of the place's first blank area section in acres.", "type": "number" }, "area_blank2_title": { "label": "Second blank area section title", "type": "string", "description": "Title of the place's second custom area section." }, "area_blank2_km2": { "label": "Area blank 2 (sq. km)", "type": "number", "description": "Area of the place's second blank area section in square kilometers." }, "area_blank2_sq_mi": { "label": "Area blank 2 (sq. mi)", "type": "number", "description": "Area of the place's second blank area section in square miles." }, "area_blank2_ha": { "label": "Area blank 2 (hectares)", "description": "Area of the place's third blank area section in hectares.", "type": "number" }, "area_blank2_dunam": { "label": "Area blank 2 (dunams)", "description": "Area of the place's third blank area section in dunams.", "type": "number" }, "area_blank2_acre": { "label": "Area blank 2 (acres)", "description": "Area of the place's third blank area section in acres.", "type": "number" }, "area_note": { "label": "Area footnotes", "description": "A place for additional information such as the name of the source.", "type": "content", "example": "<ref name=\"CenPopGazetteer2016\">{{cite web|title=2016 U.S. Gazetteer Files|url=https://www2.census.gov/geo/docs/maps-data/data/gazetteer/2016_Gazetteer/2016_gaz_place_42.txt|publisher=United States Census Bureau|access-date=August 13, 2017}}</ref>" }, "dimensions_footnotes": { "label": "Dimensions footnotes", "description": "Reference(s) for dimensions. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "content" }, "length_km": { "label": "Length in km", "description": "Raw number entered in kilometers. Will automatically convert to display length in miles if 'length_mi' is empty.", "type": "number" }, "length_mi": { "label": "Length in miles", "description": "Raw number entered in miles. Will automatically convert to display length in kilometers if 'length_km' is empty.", "type": "number" }, "width_km": { "label": "Width in kilometers", "description": "Raw number entered in kilometers. Will automatically convert to display width in miles if 'length_mi' is empty.", "type": "number" }, "width_mi": { "label": "Width in miles", "description": "Raw number entered in miles. Will automatically convert to display width in kilometers if 'length_km' is empty.", "type": "number" }, "elevation_m": { "label": "Elevation in meters", "description": "Raw number entered in meters. Will automatically convert to display elevation in feet if 'elevation_ft' is empty. However, if a range in elevation (i.e. 5–50&nbsp;m) is desired, use the 'max' and 'min' fields below.", "type": "number" }, "elevation_ft": { "label": "Elevation in feet", "description": "Raw number, entered in feet. Will automatically convert to display the average elevation in meters if 'elevation_m' field is empty. However, if a range in elevation (i.e. 50–500&nbsp;ft) is desired, use the 'max' and 'min' fields below.", "type": "number" }, "elevation_footnotes": { "label": "Elevation footnotes", "description": "Reference(s) for elevation. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "elevation_min_point": { "type": "line", "label": "Point of min elevation", "description": "The name of the point of lowest elevation in the place.", "example": "[[Death Valley]]" }, "elevation_min_m": { "label": "Minimum elevation (m)", "type": "number", "description": "The minimum elevation in meters." }, "elevation_min_ft": { "label": "Minimum elevation (ft)", "type": "number", "description": "The minimum elevation in feet." }, "elevation_min_rank": { "type": "line", "label": "Minimum elevation rank", "description": "The point of minimum elevation's rank in the parent region.", "example": "1st" }, "elevation_min_footnotes": { "label": "Min elevation footnotes", "type": "content", "description": "Footnotes or citations for the minimum elevation." }, "elevation_max_point": { "type": "line", "label": "Point of max elevation", "description": "The name of the point of highest elevation in the place.", "example": "[[Mount Everest]]" }, "elevation_max_m": { "label": "Maximum elevation (m)", "type": "number", "description": "The maximum elevation in meters." }, "elevation_max_ft": { "label": "Maximum elevation (ft)", "type": "number", "description": "The maximum elevation in feet." }, "elevation_max_rank": { "type": "line", "label": "Maximum elevation rank", "description": "The point of maximum elevation's rank in the parent region.", "example": "2nd" }, "elevation_max_footnotes": { "label": "Max elevation footnotes", "type": "content", "description": "Footnotes or citations for the maximum elevation." }, "population_total": { "label": "Population total", "description": "Actual population (see below for estimates) preferably consisting of digits only (without any commas).", "type": "number" }, "population_as_of": { "label": "Population total figure's year", "description": "The year for the population total (usually a census year).", "type": "number" }, "population_footnotes": { "label": "Population footnotes", "description": "Reference(s) for population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content" }, "population_density_km2": { "label": "Population density (per square km)", "type": "string", "description": "The place's population density per square kilometer.", "example": "auto" }, "population_density_sq_mi": { "label": "Population density (per square mi)", "type": "string", "description": "The place's population density per square mile.", "example": "auto" }, "population_est": { "label": "Population estimate", "description": "Population estimate, e.g. for growth projections 4 years after a census.", "type": "number", "example": "331000000" }, "pop_est_as_of": { "label": "Population estimate figure as of", "description": "The year, or the month and year, of the population estimate.", "type": "date" }, "pop_est_footnotes": { "label": "Population estimate footnotes", "description": "Reference(s) for population estimate; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content", "example": "<ref name=\"USCensusEst2016\"/>" }, "population_urban": { "label": "Urban population", "type": "number", "description": "The place's urban population." }, "population_urban_footnotes": { "label": "Urban population footnotes", "description": "Reference(s) for urban population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content" }, "population_density_urban_km2": { "label": "Urban population density (per square km)", "type": "string", "description": "The place's urban population density per square kilometer.", "example": "auto" }, "population_density_urban_sq_mi": { "label": "Urban population density (per square mi)", "type": "string", "description": "The place's urban population density per square mile.", "example": "auto" }, "population_rural": { "label": "Rural population", "type": "number", "description": "The place's rural population." }, "population_rural_footnotes": { "label": "Rural population footnotes", "description": "Reference(s) for rural population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content" }, "population_density_rural_km2": { "label": "Rural population density per sq. km", "type": "line", "description": "The place's rural population density per square kilometer.", "example": "auto" }, "population_density_rural_sq_mi": { "label": "Rural population density per sq. mi", "type": "line", "description": "The place's rural population density per square mile.", "example": "auto" }, "population_metro": { "label": "Metropolitan area population", "type": "number", "description": "Population of the place's metropolitan area." }, "population_metro_footnotes": { "label": "Metropolitan area population footnotes", "description": "Reference(s) for metro population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "string" }, "population_density_metro_km2": { "label": "Metropolitan population density per sq. km", "type": "number", "description": "The place's metropolitan area's population density per square kilometer.", "example": "auto" }, "population_density_metro_sq_mi": { "label": "Metropolitan population density per sq. mi", "type": "number", "description": "The place's metropolitan area's population density per square mile.", "example": "auto" }, "population_rank": { "label": "Population rank", "description": "The settlement's population, as ranked within its parent sub-division.", "type": "string" }, "population_density_rank": { "label": "Population density rank", "description": "The settlement's population density, as ranked within its parent sub-division.", "type": "string" }, "population_blank1_title": { "label": "Custom population type 1 title", "description": "Can be used for estimates. For an example, see Windsor, Ontario.", "type": "string", "example": "See: [[Windsor, Ontario]]" }, "population_blank1": { "label": "Custom population type 1", "description": "The population value for 'blank1_title'.", "type": "string" }, "population_density_blank1_km2": { "label": "Custom population type 1 density per sq. km", "type": "string", "description": "Population density per square kilometer, according to the 1st custom population type." }, "population_density_blank1_sq_mi": { "label": "Custom population type 1 density per sq. mi", "type": "string", "description": "Population density per square mile, according to the 1st custom population type." }, "population_blank2_title": { "label": "Custom population type 2 title", "description": "Can be used for estimates. For an example, see Windsor, Ontario.", "type": "string", "example": "See: [[Windsor, Ontario]]" }, "population_blank2": { "label": "Custom population type 2", "description": "The population value for 'blank2_title'.", "type": "string" }, "population_density_blank2_km2": { "label": "Custom population type 2 density per sq. km", "type": "string", "description": "Population density per square kilometer, according to the 2nd custom population type." }, "population_density_blank2_sq_mi": { "label": "Custom population type 2 density per sq. mi", "type": "string", "description": "Population density per square mile, according to the 2nd custom population type." }, "population_demonym": { "label": "Demonym", "description": "A demonym or gentilic is a word that denotes the members of a people or the inhabitants of a place. For example, a citizen in Liverpool is known as a Liverpudlian.", "type": "line", "example": "Liverpudlian" }, "population_note": { "label": "Population note", "description": "A place for additional information such as the name of the source. See Windsor, Ontario, for an example.", "type": "content" }, "demographics_type1": { "label": "Demographics type 1", "description": "A sub-section header.", "type": "string", "example": "Ethnicities" }, "demographics1_footnotes": { "label": "Demographics section 1 footnotes", "description": "Reference(s) for demographics section 1. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "content" }, "demographics1_title1": { "label": "Demographics section 1 title 1", "description": "Titles related to demographics_type1. For example: 'White', 'Black', 'Hispanic'... Additional rows 'demographics1_title1' to 'demographics1_title5' are also available.", "type": "string" }, "demographics_type2": { "label": "Demographics type 2", "description": "A second sub-section header.", "type": "line", "example": "Languages" }, "demographics2_footnotes": { "label": "Demographics section 2 footnotes", "description": "Reference(s) for demographics section 2. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "demographics2_title1": { "label": "Demographics section 2 title 1", "description": "Titles related to 'demographics_type1'. For example: 'English', 'French', 'Arabic'... Additional rows 'demographics2_title2' to 'demographics1_title5' are also available.", "type": "string" }, "demographics2_info1": { "label": "Demographics section 2 info 1", "description": "Information related to the titles. For example: '50%', '25%', '10%'... Additional rows 'demographics2_info2' to 'demographics2_info5' are also available.", "type": "content" }, "timezone1": { "label": "Timezone 1", "type": "string", "description": "The place's primary time-zone. Use 'timezone' or 'timezone1', but not both.", "example": "[[Eastern Standard Time]]", "aliases": [ "timezone" ] }, "utc_offset": { "label": "UTC offset", "type": "string", "description": "The place's time-zone's offset from UTC.", "example": "+8" }, "timezone_DST": { "label": "Timezone during DST", "type": "string", "description": "The place's time-zone during daylight savings time, if applicable.", "example": "[[Eastern Daylight Time]]" }, "utc_offset_DST": { "label": "UTC offset during DST", "type": "string", "description": "The place's time-zone's UTC offset during daylight savings time, if applicable.", "example": "+9" }, "utc_offset1": { "label": "UTC offset 1", "type": "string", "description": "The place's primary time-zone's offset from UTC.", "example": "−5" }, "timezone1_DST": { "label": "Timezone 1 (during DST)", "type": "string", "description": "The place's primary time-zone during daylight savings time, if applicable.", "example": "[[Eastern Daylight Time]]" }, "utc_offset1_DST": { "label": "UTC offset 1 (during DST)", "type": "string", "description": "The place's primary time-zone's UTC offset during daylight savings time, if applicable.", "example": "−6" }, "timezone2": { "label": "Timezone 2", "description": "A second timezone field for larger areas such as a province.", "type": "string", "example": "[[Central Standard Time]]" }, "utc_offset2": { "label": "UTC offset 2", "type": "string", "description": "The place's secondary time-zone's offset from UTC.", "example": "−6" }, "timezone2_DST": { "label": "Timezone 2 during DST", "type": "string", "description": "The place's secondary time-zone during daylight savings time, if applicable.", "example": "[[Central Daylight Time]]" }, "utc_offset2_DST": { "label": "UTC offset 2 during DST", "type": "string", "description": "The place's secondary time-zone's offset from UTC during daylight savings time, if applicable.", "example": "−7" }, "postal_code_type": { "label": "Postal code type", "description": "Label used for postal code info, e.g. 'ZIP Code'. Defaults to 'Postal code'.", "example": "[[Postal code of China|Postal code]]", "type": "string" }, "postal_code": { "label": "Postal code", "description": "The place's postal code/zip code.", "type": "string", "example": "90210" }, "postal2_code_type": { "label": "Postal code 2 type", "type": "string", "description": "If applicable, the place's second postal code type." }, "postal2_code": { "label": "Postal code 2", "type": "string", "description": "A second postal code of the place, if applicable.", "example": "90007" }, "area_code": { "label": "Area code", "description": "The regions' telephone area code.", "type": "string", "aliases": [ "area_codes" ] }, "area_code_type": { "label": "Area code type", "description": "If left blank/not used, template will default to 'Area code(s)'.", "type": "string" }, "geocode": { "label": "Geocode", "description": "See [[Geocode]].", "type": "string" }, "iso_code": { "label": "ISO 3166 code", "description": "See ISO 3166.", "type": "string" }, "registration_plate": { "label": "Registration/license plate info", "description": "See Vehicle registration plate.", "type": "string" }, "blank_name_sec1": { "label": "Blank name section 1", "description": "Fields used to display other information. The name is displayed in bold on the left side of the infobox.", "type": "string", "aliases": [ "blank_name" ] }, "blank_info_sec1": { "label": "Blank info section 1", "description": "The information associated with the 'blank_name_sec1' heading. The info is displayed on the right side of the infobox in the same row as the name. For an example, see [[Warsaw]].", "type": "content", "aliases": [ "blank_info" ] }, "blank1_name_sec1": { "label": "Blank 1 name section 1", "description": "Up to 7 additional fields 'blank1_name_sec1' ... 'blank7_name_sec1' can be specified.", "type": "string" }, "blank1_info_sec1": { "label": "Blank 1 info section 1", "description": "Up to 7 additional fields 'blank1_info_sec1' ... 'blank7_info_sec1' can be specified.", "type": "content" }, "blank_name_sec2": { "label": "Blank name section 2", "description": "For a second section of blank fields.", "type": "string" }, "blank_info_sec2": { "label": "Blank info section 2", "example": "Beijing", "type": "content", "description": "The information associated with the 'blank_name_sec2' heading. The info is displayed on right side of infobox, in the same row as the name. For an example, see [[Warsaw]]." }, "blank1_name_sec2": { "label": "Blank 1 name section 2", "description": "Up to 7 additional fields 'blank1_name_sec2' ... 'blank7_name_sec2' can be specified.", "type": "string" }, "blank1_info_sec2": { "label": "Blank 1 info section 2", "description": "Up to 7 additional fields 'blank1_info_sec2' ... 'blank7_info_sec2' can be specified.", "type": "content" }, "website": { "label": "Official website in English", "description": "External link to official website. Use the {{URL}} template, thus: {{URL|example.com}}.", "type": "string" }, "footnotes": { "label": "Footnotes", "description": "Text to be displayed at the bottom of the infobox.", "type": "content" }, "translit_lang1_info1": { "label": "Language 1 first transcription ", "description": "Transcription of type 1 in the first other language.", "example": "{{langx|zh|森美兰}}", "type": "line" }, "translit_lang1_type1": { "label": "Language 1 first transcription type", "description": "Type of transcription used in the first language's first transcription.", "example": "[[Chinese Language|Chinese]]", "type": "line" }, "translit_lang1_info2": { "label": "Language 1 second transcription ", "description": "Transcription of type 1 in the first other language.", "example": "{{langx|ta|நெகிரி செம்பிலான்}}", "type": "line" }, "translit_lang1_type2": { "label": "Language 1 second transcription type", "description": "Type of transcription used in the first language's first transcription.", "example": "[[Tamil Language|Tamil]]", "type": "line" }, "demographics1_info1": { "label": "Demographics section 1 info 1", "description": "Information related to the titles. For example: '50%', '25%', '10%'... Additional rows 'demographics1_info1' to 'demographics1_info5' are also available.", "type": "content" }, "mapframe": { "label": "Show mapframe map", "description": "Specify yes or no to show or hide the map, overriding the default", "example": "yes", "type": "string", "default": "no", "suggested": true }, "mapframe-caption": { "label": "Mapframe caption", "description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"", "type": "string" }, "mapframe-custom": { "label": "Custom mapframe", "description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.", "type": "wiki-template-name" }, "mapframe-id": { "aliases": [ "id", "qid" ], "label": "Mapframe Wikidata item", "description": "Id (Q-number) of Wikidata item to use.", "type": "string", "default": "(item for current page)" }, "mapframe-coordinates": { "aliases": [ "mapframe-coord", "coordinates", "coord" ], "label": "Mapframe coordinates ", "description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.", "example": "{{Coord|12.34|N|56.78|E}}", "type": "wiki-template-name", "default": "(coordinates from Wikidata)" }, "mapframe-wikidata": { "label": "Mapframe shapes from Wikidata", "description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter", "example": "yes", "type": "string" }, "mapframe-shape": { "label": "Mapframe shape feature", "description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"", "type": "string" }, "mapframe-point": { "label": "Mapframe point feature", "description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"", "type": "string" }, "mapframe-geomask": { "label": "Mapframe geomask", "description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)", "example": "Q100", "type": "wiki-page-name" }, "mapframe-switcher": { "label": "Mapframe switcher", "description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.", "type": "string" }, "mapframe-frame-width": { "aliases": [ "mapframe-width" ], "label": "Mapframe width", "description": "Frame width in pixels", "type": "number", "default": "270" }, "mapframe-frame-height": { "aliases": [ "mapframe-height" ], "label": "Mapframe height", "description": "Frame height in pixels", "type": "number", "default": "200" }, "mapframe-shape-fill": { "label": "Mapframe shape fill", "description": "Color used to fill shape features", "type": "string", "default": "#606060" }, "mapframe-shape-fill-opacity": { "label": "Mapframe shape fill opacity", "description": "Opacity level of shape fill, a number between 0 and 1", "type": "number", "default": "0.5" }, "mapframe-stroke-color": { "aliases": [ "mapframe-stroke-colour" ], "label": "Mapframe stroke color", "description": "Color of line features, and outlines of shape features", "type": "string", "default": "#ff0000" }, "mapframe-stroke-width": { "label": "Mapframe stroke width", "description": "Width of line features, and outlines of shape features", "type": "number", "default": "5" }, "mapframe-marker": { "label": "Mapframe marker", "description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options", "example": "museum", "type": "string" }, "mapframe-marker-color": { "aliases": [ "mapframe-marker-colour" ], "label": "Mapframe marker color", "description": "Background color for the marker", "type": "string", "default": "#5E74F3" }, "mapframe-geomask-stroke-color": { "aliases": [ "mapframe-geomask-stroke-colour" ], "label": "Mapframe geomask stroke color", "description": "Color of outline of geomask shape", "type": "string", "default": "#555555" }, "mapframe-geomask-stroke-width": { "label": "Mapframe geomask stroke width", "description": "Width of outline of geomask shape", "type": "number", "default": "2" }, "mapframe-geomask-fill": { "label": "Mapframe geomask fill", "description": "Color used to fill outside geomask features", "type": "string", "default": "#606060" }, "mapframe-geomask-fill-opacity": { "label": "Mapframe geomask fill opacity", "description": "Opacity level of fill outside geomask features, a number between 0 and 1", "type": "number", "default": "0.5" }, "mapframe-zoom": { "label": "Mapframe zoom", "description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area", "example": "12", "type": "number", "default": "10" }, "mapframe-length_km": { "label": "Mapframe length (km)", "description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-length_mi": { "label": "Mapframe length (mi)", "description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-area_km2": { "label": "Mapframe area (km^2)", "description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-area_mi2": { "label": "Mapframe area (mi^2)", "description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-frame-coordinates": { "aliases": [ "mapframe-frame-coord" ], "label": "Mapframe frame coordinates", "description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}", "example": "{{Coord|12.35|N|56.71|E}}", "type": "wiki-template-name" }, "mapframe-line": {}, "embed": {}, "translit_lang1_type3": {}, "translit_lang1_type4": {}, "translit_lang1_info3": {}, "translit_lang1_type5": {}, "translit_lang1_info4": {}, "translit_lang1_type6": {}, "translit_lang1_info5": {}, "translit_lang1_info6": {}, "translit_lang2_type1": {}, "translit_lang2_type": {}, "translit_lang2_info": {}, "translit_lang2_type2": {}, "translit_lang2_info1": {}, "translit_lang2_type3": {}, "translit_lang2_info2": {}, "translit_lang2_type4": {}, "translit_lang2_info3": {}, "translit_lang2_type5": {}, "translit_lang2_info4": {}, "translit_lang2_type6": {}, "translit_lang2_info5": {}, "translit_lang2_info6": {}, "image_size": {}, "alt": {}, "pushpin_map_narrow": {}, "seal_type": {}, "pushpin_map_caption_notsmall": {}, "etymology": {}, "nicknames": {}, "nickname_link": {}, "mottoes": {}, "motto_link": {}, "anthem_link": {}, "grid_position": {}, "coor_type": {}, "grid_name": {}, "established_title4": {}, "established_date4": {}, "established_title5": {}, "established_date5": {}, "established_title6": {}, "established_date6": {}, "established_title7": {}, "established_date7": {}, "seat1_type": {}, "seat1": {}, "seat2_type": {}, "seat2": {}, "p2": {}, "p3": {}, "p4": {}, "p5": {}, "p6": {}, "p7": {}, "p8": {}, "p9": {}, "p10": {}, "p11": {}, "p12": {}, "p13": {}, "p14": {}, "p15": {}, "p16": {}, "p17": {}, "p18": {}, "p19": {}, "p20": {}, "p21": {}, "p22": {}, "p23": {}, "p24": {}, "p25": {}, "p26": {}, "p27": {}, "p28": {}, "p29": {}, "p30": {}, "p31": {}, "p32": {}, "p33": {}, "p34": {}, "p35": {}, "p36": {}, "p37": {}, "p38": {}, "p39": {}, "p40": {}, "p41": {}, "p42": {}, "p43": {}, "p44": {}, "p45": {}, "p46": {}, "p47": {}, "p48": {}, "p49": {}, "p50": {}, "leader_name2": {}, "leader_name3": {}, "leader_name4": {}, "leader_title2": {}, "leader_title3": {}, "leader_title4": {}, "government_blank1_title": {}, "government_blank1": {}, "government_blank2_title": {}, "government_blank2": {}, "government_blank3_title": {}, "government_blank3": {}, "government_blank4_title": {}, "government_blank4": {}, "government_blank5_title": {}, "government_blank5": {}, "government_blank6_title": {}, "government_blank6": {}, "elevation_link": {}, "elevation_point": {}, "population_blank1_footnotes": {}, "population_blank2_footnotes": {}, "population_demonyms": {}, "demographics1_title2": {}, "demographics1_info2": {}, "demographics1_title3": {}, "demographics1_info3": {}, "demographics1_title4": {}, "demographics1_info4": {}, "demographics1_title5": {}, "demographics1_info5": {}, "demographics1_title6": {}, "demographics1_info6": {}, "demographics1_title7": {}, "demographics1_info7": {}, "demographics1_title8": {}, "demographics1_info8": {}, "demographics1_title9": {}, "demographics1_info9": {}, "demographics1_title10": {}, "demographics1_info10": {}, "demographics2_title2": {}, "demographics2_info2": {}, "demographics2_title3": {}, "demographics2_info3": {}, "demographics2_title4": {}, "demographics2_info4": {}, "demographics2_title5": {}, "demographics2_info5": {}, "demographics2_title6": {}, "demographics2_info6": {}, "demographics2_title7": {}, "demographics2_info7": {}, "demographics2_title8": {}, "demographics2_info8": {}, "demographics2_title9": {}, "demographics2_info9": {}, "demographics2_title10": {}, "demographics2_info10": {}, "timezone1_location": {}, "timezone_link": {}, "timezone2_location": {}, "timezone3_location": {}, "utc_offset3": {}, "timezone3": {}, "utc_offset3_DST": {}, "timezone3_DST": {}, "timezone4_location": {}, "utc_offset4": {}, "timezone4": {}, "utc_offset4_DST": {}, "timezone4_DST": {}, "timezone5_location": {}, "utc_offset5": {}, "timezone5": {}, "utc_offset5_DST": {}, "timezone5_DST": {}, "registration_plate_type": { "label": "Registration/license plate type", "description": "The place's registration/license plate type", "type": "content" }, "code1_name": {}, "code1_info": {}, "code2_name": {}, "code2_info": {}, "blank1_name": {}, "blank1_info": {}, "blank2_name_sec1": {}, "blank2_name": {}, "blank2_info_sec1": {}, "blank2_info": {}, "blank3_name_sec1": {}, "blank3_name": {}, "blank3_info_sec1": {}, "blank3_info": {}, "blank4_name_sec1": {}, "blank4_name": {}, "blank4_info_sec1": {}, "blank4_info": {}, "blank5_name_sec1": {}, "blank5_name": {}, "blank5_info_sec1": {}, "blank5_info": {}, "blank6_name_sec1": {}, "blank6_name": {}, "blank6_info_sec1": {}, "blank6_info": {}, "blank7_name_sec1": {}, "blank7_name": {}, "blank7_info_sec1": {}, "blank7_info": {}, "blank2_name_sec2": {}, "blank2_info_sec2": {}, "blank3_name_sec2": {}, "blank3_info_sec2": {}, "blank4_name_sec2": {}, "blank4_info_sec2": {}, "blank5_name_sec2": {}, "blank5_info_sec2": {}, "blank6_name_sec2": {}, "blank6_info_sec2": {}, "blank7_name_sec2": {}, "blank7_info_sec2": {}, "module": {}, "coordinates_wikidata": {}, "wikidata": {}, "image_upright": {}, "blank_emblem_upright": {}, "leader_title5": {}, "leader_name5": {} }, "paramOrder": [ "name", "official_name", "native_name", "native_name_lang", "other_name", "settlement_type", "translit_lang1", "translit_lang1_type", "translit_lang1_info", "translit_lang2", "image_skyline", "imagesize", "image_upright", "image_alt", "image_caption", "image_flag", "flag_size", "flag_alt", "flag_border", "flag_link", "image_seal", "seal_size", "seal_alt", "seal_link", "seal_type", "seal_class", "image_shield", "shield_size", "shield_alt", "shield_link", "image_blank_emblem", "blank_emblem_type", "blank_emblem_size", "blank_emblem_upright", "blank_emblem_alt", "blank_emblem_link", "nickname", "motto", "anthem", "image_map", "mapsize", "map_alt", "map_caption", "image_map1", "mapsize1", "map_alt1", "map_caption1", "pushpin_map", "pushpin_mapsize", "pushpin_map_alt", "pushpin_map_caption", "pushpin_label", "pushpin_label_position", "pushpin_outside", "pushpin_relief", "pushpin_image", "pushpin_overlay", "mapframe", "mapframe-caption", "mapframe-custom", "mapframe-id", "mapframe-coordinates", "mapframe-wikidata", "mapframe-point", "mapframe-shape", "mapframe-frame-width", "mapframe-frame-height", "mapframe-shape-fill", "mapframe-shape-fill-opacity", "mapframe-stroke-color", "mapframe-stroke-width", "mapframe-marker", "mapframe-marker-color", "mapframe-geomask", "mapframe-geomask-stroke-color", "mapframe-geomask-stroke-width", "mapframe-geomask-fill", "mapframe-geomask-fill-opacity", "mapframe-zoom", "mapframe-length_km", "mapframe-length_mi", "mapframe-area_km2", "mapframe-area_mi2", "mapframe-frame-coordinates", "mapframe-switcher", "mapframe-line", "coordinates", "coor_pinpoint", "coordinates_footnotes", "subdivision_type", "subdivision_name", "subdivision_type1", "subdivision_name1", "subdivision_type2", "subdivision_name2", "subdivision_type3", "subdivision_name3", "subdivision_type4", "subdivision_name4", "subdivision_type5", "subdivision_name5", "subdivision_type6", "subdivision_name6", "established_title", "established_date", "established_title1", "established_date1", "established_title2", "established_date2", "established_title3", "established_date3", "established_title4", "established_date4", "established_title5", "established_date5", "established_title6", "established_date6", "established_title7", "established_date7", "extinct_title", "extinct_date", "founder", "named_for", "seat_type", "seat", "parts_type", "parts_style", "parts", "government_footnotes", "government_type", "governing_body", "leader_party", "leader_title", "leader_name", "leader_title1", "leader_name1", "total_type", "unit_pref", "area_footnotes", "dunam_link", "area_total_km2", "area_total_sq_mi", "area_total_ha", "area_total_acre", "area_total_dunam", "area_land_km2", "area_land_sq_mi", "area_land_ha", "area_land_dunam", "area_land_acre", "area_water_km2", "area_water_sq_mi", "area_water_ha", "area_water_dunam", "area_water_acre", "area_water_percent", "area_urban_km2", "area_urban_sq_mi", "area_urban_ha", "area_urban_dunam", "area_urban_acre", "area_urban_footnotes", "area_rural_km2", "area_rural_sq_mi", "area_rural_ha", "area_rural_dunam", "area_rural_acre", "area_rural_footnotes", "area_metro_km2", "area_metro_sq_mi", "area_metro_ha", "area_metro_dunam", "area_metro_acre", "area_metro_footnotes", "area_rank", "area_blank1_title", "area_blank1_km2", "area_blank1_sq_mi", "area_blank1_ha", "area_blank1_dunam", "area_blank1_acre", "area_blank2_title", "area_blank2_km2", "area_blank2_sq_mi", "area_blank2_ha", "area_blank2_dunam", "area_blank2_acre", "area_note", "dimensions_footnotes", "length_km", "length_mi", "width_km", "width_mi", "elevation_m", "elevation_ft", "elevation_footnotes", "elevation_min_point", "elevation_min_m", "elevation_min_ft", "elevation_min_rank", "elevation_min_footnotes", "elevation_max_point", "elevation_max_m", "elevation_max_ft", "elevation_max_rank", "elevation_max_footnotes", "population_total", "population_as_of", "population_footnotes", "population_density_km2", "population_density_sq_mi", "population_est", "pop_est_as_of", "pop_est_footnotes", "population_urban", "population_urban_footnotes", "population_density_urban_km2", "population_density_urban_sq_mi", "population_rural", "population_rural_footnotes", "population_density_rural_km2", "population_density_rural_sq_mi", "population_metro", "population_metro_footnotes", "population_density_metro_km2", "population_density_metro_sq_mi", "population_rank", "population_density_rank", "population_blank1_title", "population_blank1", "population_density_blank1_km2", "population_density_blank1_sq_mi", "population_blank2_title", "population_blank2", "population_density_blank2_km2", "population_density_blank2_sq_mi", "population_demonym", "population_note", "demographics_type1", "demographics1_footnotes", "demographics1_title1", "demographics_type2", "demographics2_footnotes", "demographics2_title1", "demographics2_info1", "timezone1", "utc_offset", "timezone_DST", "utc_offset_DST", "utc_offset1", "timezone1_DST", "utc_offset1_DST", "timezone2", "utc_offset2", "timezone2_DST", "utc_offset2_DST", "postal_code_type", "postal_code", "postal2_code_type", "postal2_code", "area_code", "area_code_type", "geocode", "iso_code", "registration_plate_type", "registration_plate", "blank_name_sec1", "blank_info_sec1", "blank1_name_sec1", "blank1_info_sec1", "blank_name_sec2", "blank_info_sec2", "blank1_name_sec2", "blank1_info_sec2", "website", "footnotes", "translit_lang1_info1", "translit_lang1_type1", "translit_lang1_info2", "translit_lang1_type2", "demographics1_info1", "embed", "translit_lang1_type3", "translit_lang1_type4", "translit_lang1_info3", "translit_lang1_type5", "translit_lang1_info4", "translit_lang1_type6", "translit_lang1_info5", "translit_lang1_info6", "translit_lang2_type1", "translit_lang2_type", "translit_lang2_info", "translit_lang2_type2", "translit_lang2_info1", "translit_lang2_type3", "translit_lang2_info2", "translit_lang2_type4", "translit_lang2_info3", "translit_lang2_type5", "translit_lang2_info4", "translit_lang2_type6", "translit_lang2_info5", "translit_lang2_info6", "image_size", "alt", "pushpin_map_narrow", "pushpin_map_caption_notsmall", "etymology", "nicknames", "nickname_link", "mottoes", "motto_link", "anthem_link", "grid_position", "coor_type", "grid_name", "seat1_type", "seat1", "seat2_type", "seat2", "p1", "p2", "p3", "p4", "p5", "p6", "p7", "p8", "p9", "p10", "p11", "p12", "p13", "p14", "p15", "p16", "p17", "p18", "p19", "p20", "p21", "p22", "p23", "p24", "p25", "p26", "p27", "p28", "p29", "p30", "p31", "p32", "p33", "p34", "p35", "p36", "p37", "p38", "p39", "p40", "p41", "p42", "p43", "p44", "p45", "p46", "p47", "p48", "p49", "p50", "leader_name2", "leader_name3", "leader_name4", "leader_name5", "leader_title2", "leader_title3", "leader_title4", "leader_title5", "government_blank1_title", "government_blank1", "government_blank2_title", "government_blank2", "government_blank3_title", "government_blank3", "government_blank4_title", "government_blank4", "government_blank5_title", "government_blank5", "government_blank6_title", "government_blank6", "elevation_link", "elevation_point", "population_blank1_footnotes", "population_blank2_footnotes", "population_demonyms", "demographics1_title2", "demographics1_info2", "demographics1_title3", "demographics1_info3", "demographics1_title4", "demographics1_info4", "demographics1_title5", "demographics1_info5", "demographics1_title6", "demographics1_info6", "demographics1_title7", "demographics1_info7", "demographics1_title8", "demographics1_info8", "demographics1_title9", "demographics1_info9", "demographics1_title10", "demographics1_info10", "demographics2_title2", "demographics2_info2", "demographics2_title3", "demographics2_info3", "demographics2_title4", "demographics2_info4", "demographics2_title5", "demographics2_info5", "demographics2_title6", "demographics2_info6", "demographics2_title7", "demographics2_info7", "demographics2_title8", "demographics2_info8", "demographics2_title9", "demographics2_info9", "demographics2_title10", "demographics2_info10", "timezone1_location", "timezone_link", "timezone2_location", "timezone3_location", "utc_offset3", "timezone3", "utc_offset3_DST", "timezone3_DST", "timezone4_location", "utc_offset4", "timezone4", "utc_offset4_DST", "timezone4_DST", "timezone5_location", "utc_offset5", "timezone5", "utc_offset5_DST", "timezone5_DST", "code1_name", "code1_info", "code2_name", "code2_info", "blank1_name", "blank1_info", "blank2_name_sec1", "blank2_name", "blank2_info_sec1", "blank2_info", "blank3_name_sec1", "blank3_name", "blank3_info_sec1", "blank3_info", "blank4_name_sec1", "blank4_name", "blank4_info_sec1", "blank4_info", "blank5_name_sec1", "blank5_name", "blank5_info_sec1", "blank5_info", "blank6_name_sec1", "blank6_name", "blank6_info_sec1", "blank6_info", "blank7_name_sec1", "blank7_name", "blank7_info_sec1", "blank7_info", "blank2_name_sec2", "blank2_info_sec2", "blank3_name_sec2", "blank3_info_sec2", "blank4_name_sec2", "blank4_info_sec2", "blank5_name_sec2", "blank5_info_sec2", "blank6_name_sec2", "blank6_info_sec2", "blank7_name_sec2", "blank7_info_sec2", "module", "coordinates_wikidata", "wikidata" ] } </templatedata> {{collapse bottom}} ==Calls and redirects == At least {{PAGESINCATEGORY:Templates calling Infobox settlement}} other [[:Category:Templates calling Infobox settlement|templates call this one]]. [{{fullurl:Special:WhatLinksHere/Template:Infobox_settlement|namespace=10&hidetrans=1&hidelinks=1}} Several templates redirect here]. == Tracking categories == # {{clc|Pages using infobox settlement with bad settlement type}} # {{clc|Pages using infobox settlement with bad density arguments}} # {{clc|Pages using infobox settlement with image map1 but not image map}} # {{clc|Pages using infobox settlement with missing country}} # {{clc|Pages using infobox settlement with no map}} # {{clc|Pages using infobox settlement with no coordinates}} # {{clc|Pages using infobox settlement with possible area code list}} # {{clc|Pages using infobox settlement with possible demonym list}} # {{clc|Pages using infobox settlement with possible motto list}} # {{clc|Pages using infobox settlement with possible nickname list}} # {{clc|Pages using infobox settlement with the wikidata parameter}} # {{clc|Pages using infobox settlement with unknown parameters}} # {{clc|Pages using infobox settlement with conflicting parameters}} # {{clc|Templates calling Infobox settlement}} ==See also== *[[Help:Coordinates]] *[[Help:Elevation]] *[[Help:GNIS data for U.S. infoboxes]] *{{tl|Infobox too long}} <includeonly>{{Sandbox other|| <!--Categories below this line, please; interwikis at Wikidata--> [[Category:Place infobox templates|Settlement]] [[Category:Embeddable templates]] [[Category:Infobox templates using Wikidata]] [[Category:Templates that add a tracking category]] }}</includeonly> d8lzzitw2ym7fq2ovruki0ge89hquuy 72856 72836 2026-07-01T02:02:41Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/doc]] para o seu redirecionamento [[Template:Infobox settlement/doc]], suprimindo o primeiro: fixing 72836 wikitext text/x-wiki {{Documentation subpage}} <!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])--> {{Auto short description}} {{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Check for conflicting parameters|Module:Settlement short description|Module:Wikidata}} {{Uses TemplateStyles|Template:Infobox settlement/styles.css}} {{Uses Wikidata|P41|P94|P158|P625|P856}} This template should be used to produce an [[WP:Infobox|Infobox]] for human settlements (cities, towns, villages, communities) as well as other administrative districts, counties, provinces, et cetera—in fact, any subdivision below the level of a country, for which {{tl|Infobox country}} should be used. Parameters are described in the table below. For questions, see the [[Template talk:Infobox settlement|talk page]]. For a US city guideline, see [[WP:USCITIES]]. The template is aliased or used as a sub-template for several infobox front-end templates. == Atualizasaun parámetru sira == Agora {{tl|Infobox settlement}} bele uza parámetru ho naran Tetun. Parámetru Inglés kontinua servisu hanesan alias. Se parámetru Tetun no Inglés rua hotu iha valor, valor iha parámetru Tetun mak uza. '''Nota:''' naran parámetru sira uza forma simples la ho aksentu barak atu fasilita hakerek iha wikitext. === Naran no transliterasaun === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>naran</code> || <code>name</code> |- | <code>naran_ofisial</code> || <code>official_name</code> |- | <code>naran_lokal</code> || <code>native_name</code> |- | <code>lian_naran_lokal</code> || <code>native_name_lang</code> |- | <code>naran_seluk</code> || <code>other_name</code> |- | <code>tipu_fatin</code> || <code>settlement_type</code> |- | <code>deskrisaun_badak</code> || <code>short_description</code> |- | <code>transliterasaun_lian1</code> || <code>translit_lang1</code> |- | <code>transliterasaun_lian1_tipu</code> || <code>translit_lang1_type</code> |- | <code>transliterasaun_lian1_info</code> || <code>translit_lang1_info</code> |- | <code>transliterasaun_lian1_tipu1</code> || <code>translit_lang1_type1</code> |- | <code>transliterasaun_lian1_info1</code> || <code>translit_lang1_info1</code> |- | <code>transliterasaun_lian1_tipu2</code> || <code>translit_lang1_type2</code> |- | <code>transliterasaun_lian1_info2</code> || <code>translit_lang1_info2</code> |- | <code>transliterasaun_lian1_tipu3</code> || <code>translit_lang1_type3</code> |- | <code>transliterasaun_lian1_info3</code> || <code>translit_lang1_info3</code> |- | <code>transliterasaun_lian1_tipu4</code> || <code>translit_lang1_type4</code> |- | <code>transliterasaun_lian1_info4</code> || <code>translit_lang1_info4</code> |- | <code>transliterasaun_lian1_tipu5</code> || <code>translit_lang1_type5</code> |- | <code>transliterasaun_lian1_info5</code> || <code>translit_lang1_info5</code> |- | <code>transliterasaun_lian1_tipu6</code> || <code>translit_lang1_type6</code> |- | <code>transliterasaun_lian1_info6</code> || <code>translit_lang1_info6</code> |- | <code>transliterasaun_lian2</code> || <code>translit_lang2</code> |- | <code>transliterasaun_lian2_tipu</code> || <code>translit_lang2_type</code> |- | <code>transliterasaun_lian2_info</code> || <code>translit_lang2_info</code> |- | <code>transliterasaun_lian2_tipu1</code> || <code>translit_lang2_type1</code> |- | <code>transliterasaun_lian2_info1</code> || <code>translit_lang2_info1</code> |- | <code>transliterasaun_lian2_tipu2</code> || <code>translit_lang2_type2</code> |- | <code>transliterasaun_lian2_info2</code> || <code>translit_lang2_info2</code> |- | <code>transliterasaun_lian2_tipu3</code> || <code>translit_lang2_type3</code> |- | <code>transliterasaun_lian2_info3</code> || <code>translit_lang2_info3</code> |- | <code>transliterasaun_lian2_tipu4</code> || <code>translit_lang2_type4</code> |- | <code>transliterasaun_lian2_info4</code> || <code>translit_lang2_info4</code> |- | <code>transliterasaun_lian2_tipu5</code> || <code>translit_lang2_type5</code> |- | <code>transliterasaun_lian2_info5</code> || <code>translit_lang2_info5</code> |- | <code>transliterasaun_lian2_tipu6</code> || <code>translit_lang2_type6</code> |- | <code>transliterasaun_lian2_info6</code> || <code>translit_lang2_info6</code> |} === Imajen, bandeira, selu, lema === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>imajen_paisajen</code> || <code>image_skyline</code> |- | <code>tamanu_imajen</code> || <code>imagesize</code> |- | <code>alt_imajen</code> || <code>image_alt</code> |- | <code>legenda_imajen</code> || <code>image_caption</code> |- | <code>imajen_bandeira</code> || <code>image_flag</code> |- | <code>tamanu_bandeira</code> || <code>flag_size</code> |- | <code>alt_bandeira</code> || <code>flag_alt</code> |- | <code>borda_bandeira</code> || <code>flag_border</code> |- | <code>ligasaun_bandeira</code> || <code>flag_link</code> |- | <code>imajen_selu</code> || <code>image_seal</code> |- | <code>tamanu_selu</code> || <code>seal_size</code> |- | <code>alt_selu</code> || <code>seal_alt</code> |- | <code>ligasaun_selu</code> || <code>seal_link</code> |- | <code>tipu_selu</code> || <code>seal_type</code> |- | <code>klase_selu</code> || <code>seal_class</code> |- | <code>imajen_brasau</code> || <code>image_shield</code> |- | <code>tamanu_brasau</code> || <code>shield_size</code> |- | <code>alt_brasau</code> || <code>shield_alt</code> |- | <code>ligasaun_brasau</code> || <code>shield_link</code> |- | <code>imajen_emblema</code> || <code>image_blank_emblem</code> |- | <code>tipu_emblema</code> || <code>blank_emblem_type</code> |- | <code>tamanu_emblema</code> || <code>blank_emblem_size</code> |- | <code>alt_emblema</code> || <code>blank_emblem_alt</code> |- | <code>ligasaun_emblema</code> || <code>blank_emblem_link</code> |- | <code>etimolojia</code> || <code>etymology</code> |- | <code>naran_popular</code> || <code>nickname</code> |- | <code>naran_popular_sira</code> || <code>nicknames</code> |- | <code>lema</code> || <code>motto</code> |- | <code>lema_sira</code> || <code>mottoes</code> |- | <code>hino</code> || <code>anthem</code> |- | <code>imajen_mapa</code> || <code>image_map</code> |- | <code>imajen_mapa1</code> || <code>image_map1</code> |} === Mapa no koordenadas === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>tamanu_mapa</code> || <code>mapsize</code> |- | <code>alt_mapa</code> || <code>map_alt</code> |- | <code>legenda_mapa</code> || <code>map_caption</code> |- | <code>tamanu_mapa1</code> || <code>mapsize1</code> |- | <code>alt_mapa1</code> || <code>map_alt1</code> |- | <code>legenda_mapa1</code> || <code>map_caption1</code> |- | <code>mapa_lokalizasaun</code> || <code>pushpin_map</code> |- | <code>tamanu_mapa_lokalizasaun</code> || <code>pushpin_mapsize</code> |- | <code>alt_mapa_lokalizasaun</code> || <code>pushpin_map_alt</code> |- | <code>legenda_mapa_lokalizasaun</code> || <code>pushpin_map_caption</code> |- | <code>legenda_mapa_lokalizasaun_la_kiik</code> || <code>pushpin_map_caption_notsmall</code> |- | <code>label_mapa_lokalizasaun</code> || <code>pushpin_label</code> |- | <code>pozisaun_label_mapa_lokalizasaun</code> || <code>pushpin_label_position</code> |- | <code>liur_mapa_lokalizasaun</code> || <code>pushpin_outside</code> |- | <code>relefu_mapa_lokalizasaun</code> || <code>pushpin_relief</code> |- | <code>imajen_mapa_lokalizasaun</code> || <code>pushpin_image</code> |- | <code>kamada_mapa_lokalizasaun</code> || <code>pushpin_overlay</code> |- | <code>mapa_interativu</code> || <code>mapframe</code> |- | <code>koordenadas</code> || <code>coordinates</code> |- | <code>koord</code> || <code>coord</code> |- | <code>pontu_koordenadas</code> || <code>coor_pinpoint</code> |- | <code>nota_koordenadas</code> || <code>coordinates_footnotes</code> |- | <code>naran_grid</code> || <code>grid_name</code> |- | <code>pozisaun_grid</code> || <code>grid_position</code> |- | <code>mapframe_koordenadas</code> || <code>mapframe-coordinates</code> |- | <code>mapframe_koord</code> || <code>mapframe-coord</code> |- | <code>mapframe_legenda</code> || <code>mapframe-caption</code> |- | <code>mapframe_custom</code> || <code>mapframe-custom</code> |- | <code>mapframe_id</code> || <code>mapframe-id</code> |- | <code>id</code> || <code>id</code> |- | <code>qid</code> || <code>qid</code> |- | <code>mapframe_wikidata</code> || <code>mapframe-wikidata</code> |- | <code>mapframe_pontu</code> || <code>mapframe-point</code> |- | <code>mapframe_forma</code> || <code>mapframe-shape</code> |- | <code>mapframe_lina</code> || <code>mapframe-line</code> |- | <code>mapframe_geomask</code> || <code>mapframe-geomask</code> |- | <code>mapframe_switcher</code> || <code>mapframe-switcher</code> |- | <code>mapframe_luan_frame</code> || <code>mapframe-frame-width</code> |- | <code>mapframe_luan</code> || <code>mapframe-width</code> |- | <code>mapframe_aas_frame</code> || <code>mapframe-frame-height</code> |- | <code>mapframe_aas</code> || <code>mapframe-height</code> |- | <code>mapframe_kor_forma</code> || <code>mapframe-shape-fill</code> |- | <code>mapframe_opasidade_kor_forma</code> || <code>mapframe-shape-fill-opacity</code> |- | <code>mapframe_kor_lina</code> || <code>mapframe-stroke-color</code> |- | <code>mapframe_kor_lina_uk</code> || <code>mapframe-stroke-colour</code> |- | <code>mapframe_kor_lina_line</code> || <code>mapframe-line-stroke-color</code> |- | <code>mapframe_kor_lina_line_uk</code> || <code>mapframe-line-stroke-colour</code> |- | <code>mapframe_kor_borda_forma</code> || <code>mapframe-shape-stroke-color</code> |- | <code>mapframe_kor_borda_forma_uk</code> || <code>mapframe-shape-stroke-colour</code> |- | <code>mapframe_luan_lina</code> || <code>mapframe-stroke-width</code> |- | <code>mapframe_luan_borda_forma</code> || <code>mapframe-shape-stroke-width</code> |- | <code>mapframe_luan_lina_line</code> || <code>mapframe-line-stroke-width</code> |- | <code>mapframe_marker</code> || <code>mapframe-marker</code> |- | <code>mapframe_kor_marker</code> || <code>mapframe-marker-color</code> |- | <code>mapframe_kor_marker_uk</code> || <code>mapframe-marker-colour</code> |- | <code>mapframe_kor_borda_geomask</code> || <code>mapframe-geomask-stroke-color</code> |- | <code>mapframe_kor_borda_geomask_uk</code> || <code>mapframe-geomask-stroke-colour</code> |- | <code>mapframe_luan_borda_geomask</code> || <code>mapframe-geomask-stroke-width</code> |- | <code>mapframe_kor_geomask</code> || <code>mapframe-geomask-fill</code> |- | <code>mapframe_opasidade_kor_geomask</code> || <code>mapframe-geomask-fill-opacity</code> |- | <code>mapframe_zoom</code> || <code>mapframe-zoom</code> |- | <code>mapframe_naruk_km</code> || <code>mapframe-length_km</code> |- | <code>mapframe_naruk_mi</code> || <code>mapframe-length_mi</code> |- | <code>mapframe_area_km2</code> || <code>mapframe-area_km2</code> |- | <code>mapframe_area_mi2</code> || <code>mapframe-area_mi2</code> |- | <code>mapframe_frame_koordenadas</code> || <code>mapframe-frame-coordinates</code> |- | <code>mapframe_frame_koord</code> || <code>mapframe-frame-coord</code> |- | <code>mapframe_tipu</code> || <code>mapframe-type</code> |- | <code>mapframe_populasaun</code> || <code>mapframe-population</code> |} === Fatin, subdivizaun, fundasaun, sede, parte sira === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>tipu_subdivizaun</code> || <code>subdivision_type</code> |- | <code>naran_subdivizaun</code> || <code>subdivision_name</code> |- | <code>tipu_subdivizaun1</code> || <code>subdivision_type1</code> |- | <code>naran_subdivizaun1</code> || <code>subdivision_name1</code> |- | <code>tipu_subdivizaun2</code> || <code>subdivision_type2</code> |- | <code>naran_subdivizaun2</code> || <code>subdivision_name2</code> |- | <code>tipu_subdivizaun3</code> || <code>subdivision_type3</code> |- | <code>naran_subdivizaun3</code> || <code>subdivision_name3</code> |- | <code>tipu_subdivizaun4</code> || <code>subdivision_type4</code> |- | <code>naran_subdivizaun4</code> || <code>subdivision_name4</code> |- | <code>tipu_subdivizaun5</code> || <code>subdivision_type5</code> |- | <code>naran_subdivizaun5</code> || <code>subdivision_name5</code> |- | <code>tipu_subdivizaun6</code> || <code>subdivision_type6</code> |- | <code>naran_subdivizaun6</code> || <code>subdivision_name6</code> |- | <code>titulu_estabelesimentu</code> || <code>established_title</code> |- | <code>data_estabelesimentu</code> || <code>established_date</code> |- | <code>titulu_estabelesimentu1</code> || <code>established_title1</code> |- | <code>data_estabelesimentu1</code> || <code>established_date1</code> |- | <code>titulu_estabelesimentu2</code> || <code>established_title2</code> |- | <code>data_estabelesimentu2</code> || <code>established_date2</code> |- | <code>titulu_estabelesimentu3</code> || <code>established_title3</code> |- | <code>data_estabelesimentu3</code> || <code>established_date3</code> |- | <code>titulu_estabelesimentu4</code> || <code>established_title4</code> |- | <code>data_estabelesimentu4</code> || <code>established_date4</code> |- | <code>titulu_estabelesimentu5</code> || <code>established_title5</code> |- | <code>data_estabelesimentu5</code> || <code>established_date5</code> |- | <code>titulu_estabelesimentu6</code> || <code>established_title6</code> |- | <code>data_estabelesimentu6</code> || <code>established_date6</code> |- | <code>titulu_estabelesimentu7</code> || <code>established_title7</code> |- | <code>data_estabelesimentu7</code> || <code>established_date7</code> |- | <code>titulu_extinta</code> || <code>extinct_title</code> |- | <code>data_extinta</code> || <code>extinct_date</code> |- | <code>fundador</code> || <code>founder</code> |- | <code>naran_husi</code> || <code>named_for</code> |- | <code>tipu_sede</code> || <code>seat_type</code> |- | <code>sede</code> || <code>seat</code> |- | <code>tipu_sede1</code> || <code>seat1_type</code> |- | <code>sede1</code> || <code>seat1</code> |- | <code>tipu_parte</code> || <code>parts_type</code> |- | <code>estilu_parte</code> || <code>parts_style</code> |- | <code>parte_sira</code> || <code>parts</code> |- | <code>parte1</code> || <code>p1</code> |- | <code>parte2</code> || <code>p2</code> |- | <code>parte3</code> || <code>p3</code> |- | <code>parte4</code> || <code>p4</code> |- | <code>parte5</code> || <code>p5</code> |- | <code>parte6</code> || <code>p6</code> |- | <code>parte7</code> || <code>p7</code> |- | <code>parte8</code> || <code>p8</code> |- | <code>parte9</code> || <code>p9</code> |- | <code>parte10</code> || <code>p10</code> |- | <code>parte11</code> || <code>p11</code> |- | <code>parte12</code> || <code>p12</code> |- | <code>parte13</code> || <code>p13</code> |- | <code>parte14</code> || <code>p14</code> |- | <code>parte15</code> || <code>p15</code> |- | <code>parte16</code> || <code>p16</code> |- | <code>parte17</code> || <code>p17</code> |- | <code>parte18</code> || <code>p18</code> |- | <code>parte19</code> || <code>p19</code> |- | <code>parte20</code> || <code>p20</code> |- | <code>parte21</code> || <code>p21</code> |- | <code>parte22</code> || <code>p22</code> |- | <code>parte23</code> || <code>p23</code> |- | <code>parte24</code> || <code>p24</code> |- | <code>parte25</code> || <code>p25</code> |- | <code>parte26</code> || <code>p26</code> |- | <code>parte27</code> || <code>p27</code> |- | <code>parte28</code> || <code>p28</code> |- | <code>parte29</code> || <code>p29</code> |- | <code>parte30</code> || <code>p30</code> |- | <code>parte31</code> || <code>p31</code> |- | <code>parte32</code> || <code>p32</code> |- | <code>parte33</code> || <code>p33</code> |- | <code>parte34</code> || <code>p34</code> |- | <code>parte35</code> || <code>p35</code> |- | <code>parte36</code> || <code>p36</code> |- | <code>parte37</code> || <code>p37</code> |- | <code>parte38</code> || <code>p38</code> |- | <code>parte39</code> || <code>p39</code> |- | <code>parte40</code> || <code>p40</code> |- | <code>parte41</code> || <code>p41</code> |- | <code>parte42</code> || <code>p42</code> |- | <code>parte43</code> || <code>p43</code> |- | <code>parte44</code> || <code>p44</code> |- | <code>parte45</code> || <code>p45</code> |- | <code>parte46</code> || <code>p46</code> |- | <code>parte47</code> || <code>p47</code> |- | <code>parte48</code> || <code>p48</code> |- | <code>parte49</code> || <code>p49</code> |- | <code>parte50</code> || <code>p50</code> |- | <code>nota_populasaun</code> || <code>population_footnotes</code> |- | <code>data_populasaun</code> || <code>population_as_of</code> |- | <code>populasaun_total</code> || <code>population_total</code> |- | <code>nota_estimasaun_populasaun</code> || <code>pop_est_footnotes</code> |- | <code>data_estimasaun_populasaun</code> || <code>pop_est_as_of</code> |- | <code>estimasaun_populasaun</code> || <code>population_est</code> |- | <code>rank_populasaun</code> || <code>population_rank</code> |- | <code>densidade_populasaun_km2</code> || <code>population_density_km2</code> |- | <code>densidade_populasaun_sq_mi</code> || <code>population_density_sq_mi</code> |- | <code>nota_populasaun_urbana</code> || <code>population_urban_footnotes</code> |- | <code>populasaun_urbana</code> || <code>population_urban</code> |- | <code>densidade_populasaun_urbana_km2</code> || <code>population_density_urban_km2</code> |- | <code>densidade_populasaun_urbana_sq_mi</code> || <code>population_density_urban_sq_mi</code> |- | <code>nota_populasaun_rural</code> || <code>population_rural_footnotes</code> |- | <code>populasaun_rural</code> || <code>population_rural</code> |- | <code>densidade_populasaun_rural_km2</code> || <code>population_density_rural_km2</code> |- | <code>densidade_populasaun_rural_sq_mi</code> || <code>population_density_rural_sq_mi</code> |- | <code>nota_populasaun_metropolitana</code> || <code>population_metro_footnotes</code> |- | <code>populasaun_metropolitana</code> || <code>population_metro</code> |- | <code>densidade_populasaun_metropolitana_km2</code> || <code>population_density_metro_km2</code> |- | <code>densidade_populasaun_metropolitana_sq_mi</code> || <code>population_density_metro_sq_mi</code> |- | <code>rank_densidade_populasaun</code> || <code>population_density_rank</code> |- | <code>titulu_populasaun_seluk1</code> || <code>population_blank1_title</code> |- | <code>populasaun_seluk1</code> || <code>population_blank1</code> |- | <code>densidade_populasaun_seluk1_km2</code> || <code>population_density_blank1_km2</code> |- | <code>densidade_populasaun_seluk1_sq_mi</code> || <code>population_density_blank1_sq_mi</code> |- | <code>titulu_populasaun_seluk2</code> || <code>population_blank2_title</code> |- | <code>populasaun_seluk2</code> || <code>population_blank2</code> |- | <code>densidade_populasaun_seluk2_km2</code> || <code>population_density_blank2_km2</code> |- | <code>densidade_populasaun_seluk2_sq_mi</code> || <code>population_density_blank2_sq_mi</code> |- | <code>demonimu_populasaun</code> || <code>population_demonym</code> |- | <code>demonimu_populasaun_sira</code> || <code>population_demonyms</code> |- | <code>nota_populasaun</code> || <code>population_note</code> |- | <code>tipu_kodigu_postal</code> || <code>postal_code_type</code> |- | <code>kodigu_postal</code> || <code>postal_code</code> |- | <code>tipu_kodigu_postal2</code> || <code>postal2_code_type</code> |- | <code>kodigu_postal2</code> || <code>postal2_code</code> |} === Governu no lideransa === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>nota_governu</code> || <code>government_footnotes</code> |- | <code>tipu_governu</code> || <code>government_type</code> |- | <code>orgaun_governu</code> || <code>governing_body</code> |- | <code>partidu_lider</code> || <code>leader_party</code> |- | <code>titulu_lider</code> || <code>leader_title</code> |- | <code>naran_lider</code> || <code>leader_name</code> |- | <code>titulu_lider1</code> || <code>leader_title1</code> |- | <code>naran_lider1</code> || <code>leader_name1</code> |- | <code>partidu_lider1</code> || <code>leader_party1</code> |- | <code>titulu_lider2</code> || <code>leader_title2</code> |- | <code>naran_lider2</code> || <code>leader_name2</code> |- | <code>partidu_lider2</code> || <code>leader_party2</code> |- | <code>titulu_lider3</code> || <code>leader_title3</code> |- | <code>naran_lider3</code> || <code>leader_name3</code> |- | <code>partidu_lider3</code> || <code>leader_party3</code> |- | <code>titulu_lider4</code> || <code>leader_title4</code> |- | <code>naran_lider4</code> || <code>leader_name4</code> |- | <code>partidu_lider4</code> || <code>leader_party4</code> |} === Area, dimensaun no altitude === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>tipu_total</code> || <code>total_type</code> |- | <code>unidade_preferida</code> || <code>unit_pref</code> |- | <code>nota_area</code> || <code>area_footnotes</code> |- | <code>ligasaun_dunam</code> || <code>dunam_link</code> |- | <code>area_total_km2</code> || <code>area_total_km2</code> |- | <code>area_total_sq_mi</code> || <code>area_total_sq_mi</code> |- | <code>area_total_ha</code> || <code>area_total_ha</code> |- | <code>area_total_acre</code> || <code>area_total_acre</code> |- | <code>area_total_dunam</code> || <code>area_total_dunam</code> |- | <code>area_rai_km2</code> || <code>area_land_km2</code> |- | <code>area_rai_sq_mi</code> || <code>area_land_sq_mi</code> |- | <code>area_rai_ha</code> || <code>area_land_ha</code> |- | <code>area_rai_acre</code> || <code>area_land_acre</code> |- | <code>area_rai_dunam</code> || <code>area_land_dunam</code> |- | <code>area_bee_km2</code> || <code>area_water_km2</code> |- | <code>area_bee_sq_mi</code> || <code>area_water_sq_mi</code> |- | <code>area_bee_ha</code> || <code>area_water_ha</code> |- | <code>area_bee_acre</code> || <code>area_water_acre</code> |- | <code>area_bee_dunam</code> || <code>area_water_dunam</code> |- | <code>area_urbana_km2</code> || <code>area_urban_km2</code> |- | <code>area_urbana_sq_mi</code> || <code>area_urban_sq_mi</code> |- | <code>area_urbana_ha</code> || <code>area_urban_ha</code> |- | <code>area_urbana_acre</code> || <code>area_urban_acre</code> |- | <code>area_urbana_dunam</code> || <code>area_urban_dunam</code> |- | <code>area_rural_km2</code> || <code>area_rural_km2</code> |- | <code>area_rural_sq_mi</code> || <code>area_rural_sq_mi</code> |- | <code>area_rural_ha</code> || <code>area_rural_ha</code> |- | <code>area_rural_acre</code> || <code>area_rural_acre</code> |- | <code>area_rural_dunam</code> || <code>area_rural_dunam</code> |- | <code>area_metropolitana_km2</code> || <code>area_metro_km2</code> |- | <code>area_metropolitana_sq_mi</code> || <code>area_metro_sq_mi</code> |- | <code>area_metropolitana_ha</code> || <code>area_metro_ha</code> |- | <code>area_metropolitana_acre</code> || <code>area_metro_acre</code> |- | <code>area_metropolitana_dunam</code> || <code>area_metro_dunam</code> |- | <code>persentajen_bee</code> || <code>area_water_percent</code> |- | <code>nota_area_urbana</code> || <code>area_urban_footnotes</code> |- | <code>nota_area_rural</code> || <code>area_rural_footnotes</code> |- | <code>nota_area_metropolitana</code> || <code>area_metro_footnotes</code> |- | <code>rank_area</code> || <code>area_rank</code> |- | <code>nota_area</code> || <code>area_note</code> |- | <code>titulu_area_seluk1</code> || <code>area_blank1_title</code> |- | <code>area_seluk1_km2</code> || <code>area_blank1_km2</code> |- | <code>area_seluk1_sq_mi</code> || <code>area_blank1_sq_mi</code> |- | <code>area_seluk1_ha</code> || <code>area_blank1_ha</code> |- | <code>area_seluk1_acre</code> || <code>area_blank1_acre</code> |- | <code>area_seluk1_dunam</code> || <code>area_blank1_dunam</code> |- | <code>titulu_area_seluk2</code> || <code>area_blank2_title</code> |- | <code>area_seluk2_km2</code> || <code>area_blank2_km2</code> |- | <code>area_seluk2_sq_mi</code> || <code>area_blank2_sq_mi</code> |- | <code>area_seluk2_ha</code> || <code>area_blank2_ha</code> |- | <code>area_seluk2_acre</code> || <code>area_blank2_acre</code> |- | <code>area_seluk2_dunam</code> || <code>area_blank2_dunam</code> |- | <code>nota_dimensaun</code> || <code>dimensions_footnotes</code> |- | <code>naruk_km</code> || <code>length_km</code> |- | <code>naruk_mi</code> || <code>length_mi</code> |- | <code>luan_km</code> || <code>width_km</code> |- | <code>luan_mi</code> || <code>width_mi</code> |- | <code>nota_altitude</code> || <code>elevation_footnotes</code> |- | <code>altitude_m</code> || <code>elevation_m</code> |- | <code>altitude_ft</code> || <code>elevation_ft</code> |- | <code>pontu_altitude</code> || <code>elevation_point</code> |- | <code>nota_altitude_max</code> || <code>elevation_max_footnotes</code> |- | <code>altitude_max_m</code> || <code>elevation_max_m</code> |- | <code>altitude_max_ft</code> || <code>elevation_max_ft</code> |- | <code>pontu_altitude_max</code> || <code>elevation_max_point</code> |- | <code>rank_altitude_max</code> || <code>elevation_max_rank</code> |- | <code>nota_altitude_min</code> || <code>elevation_min_footnotes</code> |- | <code>altitude_min_m</code> || <code>elevation_min_m</code> |- | <code>altitude_min_ft</code> || <code>elevation_min_ft</code> |- | <code>pontu_altitude_min</code> || <code>elevation_min_point</code> |- | <code>rank_altitude_min</code> || <code>elevation_min_rank</code> |- | <code>tipu_kodigu_area</code> || <code>area_code_type</code> |- | <code>kodigu_area</code> || <code>area_code</code> |- | <code>kodigu_area_sira</code> || <code>area_codes</code> |} === Populasaun no demografia === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>tipu_demografia1</code> || <code>demographics_type1</code> |- | <code>nota_demografia1</code> || <code>demographics1_footnotes</code> |- | <code>titulu_demografia1_1</code> || <code>demographics1_title1</code> |- | <code>info_demografia1_1</code> || <code>demographics1_info1</code> |- | <code>titulu_demografia1_2</code> || <code>demographics1_title2</code> |- | <code>info_demografia1_2</code> || <code>demographics1_info2</code> |- | <code>titulu_demografia1_3</code> || <code>demographics1_title3</code> |- | <code>info_demografia1_3</code> || <code>demographics1_info3</code> |- | <code>titulu_demografia1_4</code> || <code>demographics1_title4</code> |- | <code>info_demografia1_4</code> || <code>demographics1_info4</code> |- | <code>titulu_demografia1_5</code> || <code>demographics1_title5</code> |- | <code>info_demografia1_5</code> || <code>demographics1_info5</code> |- | <code>titulu_demografia1_6</code> || <code>demographics1_title6</code> |- | <code>info_demografia1_6</code> || <code>demographics1_info6</code> |- | <code>titulu_demografia1_7</code> || <code>demographics1_title7</code> |- | <code>info_demografia1_7</code> || <code>demographics1_info7</code> |- | <code>tipu_demografia2</code> || <code>demographics_type2</code> |- | <code>nota_demografia2</code> || <code>demographics2_footnotes</code> |- | <code>titulu_demografia2_1</code> || <code>demographics2_title1</code> |- | <code>info_demografia2_1</code> || <code>demographics2_info1</code> |- | <code>titulu_demografia2_2</code> || <code>demographics2_title2</code> |- | <code>info_demografia2_2</code> || <code>demographics2_info2</code> |- | <code>titulu_demografia2_3</code> || <code>demographics2_title3</code> |- | <code>info_demografia2_3</code> || <code>demographics2_info3</code> |- | <code>titulu_demografia2_4</code> || <code>demographics2_title4</code> |- | <code>info_demografia2_4</code> || <code>demographics2_info4</code> |- | <code>titulu_demografia2_5</code> || <code>demographics2_title5</code> |- | <code>info_demografia2_5</code> || <code>demographics2_info5</code> |- | <code>titulu_demografia2_6</code> || <code>demographics2_title6</code> |- | <code>info_demografia2_6</code> || <code>demographics2_info6</code> |- | <code>titulu_demografia2_7</code> || <code>demographics2_title7</code> |- | <code>info_demografia2_7</code> || <code>demographics2_info7</code> |- | <code>titulu_demografia2_8</code> || <code>demographics2_title8</code> |- | <code>info_demografia2_8</code> || <code>demographics2_info8</code> |- | <code>titulu_demografia2_9</code> || <code>demographics2_title9</code> |- | <code>info_demografia2_9</code> || <code>demographics2_info9</code> |- | <code>titulu_demografia2_10</code> || <code>demographics2_title10</code> |- | <code>info_demografia2_10</code> || <code>demographics2_info10</code> |} === Zona tempu === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>ligasaun_zona_tempu</code> || <code>timezone_link</code> |- | <code>zona_tempu</code> || <code>timezone</code> |- | <code>diferensa_utc</code> || <code>utc_offset</code> |- | <code>zona_tempu_DST</code> || <code>timezone_DST</code> |- | <code>diferensa_utc_DST</code> || <code>utc_offset_DST</code> |- | <code>fatin_zona_tempu1</code> || <code>timezone1_location</code> |- | <code>zona_tempu1</code> || <code>timezone1</code> |- | <code>diferensa_utc1</code> || <code>utc_offset1</code> |- | <code>zona_tempu1_DST</code> || <code>timezone1_DST</code> |- | <code>diferensa_utc1_DST</code> || <code>utc_offset1_DST</code> |- | <code>fatin_zona_tempu2</code> || <code>timezone2_location</code> |- | <code>zona_tempu2</code> || <code>timezone2</code> |- | <code>diferensa_utc2</code> || <code>utc_offset2</code> |- | <code>zona_tempu2_DST</code> || <code>timezone2_DST</code> |- | <code>diferensa_utc2_DST</code> || <code>utc_offset2_DST</code> |- | <code>fatin_zona_tempu3</code> || <code>timezone3_location</code> |- | <code>zona_tempu3</code> || <code>timezone3</code> |- | <code>diferensa_utc3</code> || <code>utc_offset3</code> |- | <code>zona_tempu3_DST</code> || <code>timezone3_DST</code> |- | <code>diferensa_utc3_DST</code> || <code>utc_offset3_DST</code> |- | <code>fatin_zona_tempu4</code> || <code>timezone4_location</code> |- | <code>zona_tempu4</code> || <code>timezone4</code> |- | <code>diferensa_utc4</code> || <code>utc_offset4</code> |- | <code>zona_tempu4_DST</code> || <code>timezone4_DST</code> |- | <code>diferensa_utc4_DST</code> || <code>utc_offset4_DST</code> |- | <code>fatin_zona_tempu5</code> || <code>timezone5_location</code> |- | <code>zona_tempu5</code> || <code>timezone5</code> |- | <code>diferensa_utc5</code> || <code>utc_offset5</code> |- | <code>zona_tempu5_DST</code> || <code>timezone5_DST</code> |- | <code>diferensa_utc5_DST</code> || <code>utc_offset5_DST</code> |} === Kodigu no kampu seluk === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>geokodigu</code> || <code>geocode</code> |- | <code>kodigu_iso</code> || <code>iso_code</code> |- | <code>tipu_plaka_veiklu</code> || <code>registration_plate_type</code> |- | <code>plaka_veiklu</code> || <code>registration_plate</code> |- | <code>naran_kodigu1</code> || <code>code1_name</code> |- | <code>info_kodigu1</code> || <code>code1_info</code> |- | <code>naran_kodigu2</code> || <code>code2_name</code> |- | <code>info_kodigu2</code> || <code>code2_info</code> |- | <code>naran_kampu</code> || <code>blank_name</code> |- | <code>info_kampu</code> || <code>blank_info</code> |- | <code>naran_kampu1</code> || <code>blank1_name</code> |- | <code>info_kampu1</code> || <code>blank1_info</code> |- | <code>naran_kampu2</code> || <code>blank2_name</code> |- | <code>info_kampu2</code> || <code>blank2_info</code> |- | <code>naran_kampu_sec1</code> || <code>blank_name_sec1</code> |- | <code>info_kampu_sec1</code> || <code>blank_info_sec1</code> |- | <code>naran_kampu1_sec1</code> || <code>blank1_name_sec1</code> |- | <code>info_kampu1_sec1</code> || <code>blank1_info_sec1</code> |- | <code>naran_kampu2_sec1</code> || <code>blank2_name_sec1</code> |- | <code>info_kampu2_sec1</code> || <code>blank2_info_sec1</code> |- | <code>naran_kampu3_sec1</code> || <code>blank3_name_sec1</code> |- | <code>info_kampu3_sec1</code> || <code>blank3_info_sec1</code> |- | <code>naran_kampu4_sec1</code> || <code>blank4_name_sec1</code> |- | <code>info_kampu4_sec1</code> || <code>blank4_info_sec1</code> |- | <code>naran_kampu5_sec1</code> || <code>blank5_name_sec1</code> |- | <code>info_kampu5_sec1</code> || <code>blank5_info_sec1</code> |- | <code>naran_kampu6_sec1</code> || <code>blank6_name_sec1</code> |- | <code>info_kampu6_sec1</code> || <code>blank6_info_sec1</code> |- | <code>naran_kampu7_sec1</code> || <code>blank7_name_sec1</code> |- | <code>info_kampu7_sec1</code> || <code>blank7_info_sec1</code> |- | <code>naran_kampu_sec2</code> || <code>blank_name_sec2</code> |- | <code>info_kampu_sec2</code> || <code>blank_info_sec2</code> |- | <code>naran_kampu1_sec2</code> || <code>blank1_name_sec2</code> |- | <code>info_kampu1_sec2</code> || <code>blank1_info_sec2</code> |- | <code>naran_kampu2_sec2</code> || <code>blank2_name_sec2</code> |- | <code>info_kampu2_sec2</code> || <code>blank2_info_sec2</code> |- | <code>naran_kampu3_sec2</code> || <code>blank3_name_sec2</code> |- | <code>info_kampu3_sec2</code> || <code>blank3_info_sec2</code> |- | <code>naran_kampu4_sec2</code> || <code>blank4_name_sec2</code> |- | <code>info_kampu4_sec2</code> || <code>blank4_info_sec2</code> |- | <code>naran_kampu5_sec2</code> || <code>blank5_name_sec2</code> |- | <code>info_kampu5_sec2</code> || <code>blank5_info_sec2</code> |- | <code>naran_kampu6_sec2</code> || <code>blank6_name_sec2</code> |- | <code>info_kampu6_sec2</code> || <code>blank6_info_sec2</code> |- | <code>naran_kampu7_sec2</code> || <code>blank7_name_sec2</code> |- | <code>info_kampu7_sec2</code> || <code>blank7_info_sec2</code> |} === Website, modulu no nota === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>sitiu_web</code> || <code>website</code> |- | <code>modulu</code> || <code>module</code> |- | <code>nota_sira</code> || <code>footnotes</code> |- | <code>labarik</code> || <code>child</code> |- | <code>hatama</code> || <code>embed</code> |} ==Usage== * '''Important''': Please enter all numeric values in a raw, unformatted fashion. References and {{tl|citation needed}} tags are to be included in their respective section footnotes field. Numeric values that are not "raw" may create an "Expression error". Raw values will be automatically formatted by the template. If you find a raw value is not formatted in your usage of the template, please post a notice on the discussion page for this template. * An expression error may also occur when any coordinate parameter has a value, but one or more coordinate parameters are blank or invalid. * To specify CSS class "X" should be applied to an image, append to the filename: <code><nowiki>{{!}}class=X</nowiki></code> Basic blank template, ready to cut and paste. See the next section for a copy of the template with all parameters and comments. See the table below that for a full description of each parameter. ===Using metric units=== <syntaxhighlight lang="wikitext" style="overflow:auto"> {{Infobox settlement |name = |native_name = <!-- Settlement name in the dominant local language(s), if different from the English name --> |native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> |settlement_type = |image_skyline = |imagesize = |image_alt = |image_caption = |image_flag = |flag_alt = |image_seal = |seal_alt = |image_shield = |shield_alt = |etymology = |nickname = |motto = |image_map = |map_alt = |map_caption = |pushpin_map = |pushpin_map_alt = |pushpin_map_caption = |pushpin_mapsize = |pushpin_label_position = |mapframe = <!-- "yes" to show an interactive map --> |coordinates = <!-- {{coord|latitude|longitude|type:city|display=inline,title}} --> |coor_pinpoint = |coordinates_footnotes = |subdivision_type = Country |subdivision_name = |subdivision_type1 = |subdivision_name1 = |subdivision_type2 = |subdivision_name2 = |subdivision_type3 = |subdivision_name3 = |established_title = |established_date = |founder = |seat_type = |seat = |government_footnotes = |government_type = |governing_body = |leader_party = |leader_title = |leader_name = |leader_title1 = |leader_name1 = |leader_title2 = |leader_name2 = |leader_title3 = |leader_name3 = |leader_title4 = |leader_name4 = |unit_pref = Metric <!-- ALL fields with measurements have automatic unit conversion --> <!-- for references: use <ref> tags --> |area_footnotes = |area_urban_footnotes = <!-- <ref> </ref> --> |area_rural_footnotes = <!-- <ref> </ref> --> |area_metro_footnotes = <!-- <ref> </ref> --> |area_note = |area_water_percent = |area_rank = |area_blank1_title = |area_blank2_title = <!-- square kilometers --> |area_total_km2 = |area_land_km2 = |area_water_km2 = |area_urban_km2 = |area_rural_km2 = |area_metro_km2 = |area_blank1_km2 = |area_blank2_km2 = <!-- hectares --> |area_total_ha = |area_land_ha = |area_water_ha = |area_urban_ha = |area_rural_ha = |area_metro_ha = |area_blank1_ha = |area_blank2_ha = |length_km = |width_km = |dimensions_footnotes = |elevation_footnotes = |elevation_m = |population_footnotes = |population_as_of = |population_total = |population_density_km2 = auto |population_note = |population_demonym = |timezone1 = |utc_offset1 = |timezone1_DST = |utc_offset1_DST = |postal_code_type = |postal_code = |area_code_type = |area_code = |area_codes = <!-- for multiple area codes --> |iso_code = |website = <!-- {{Official URL}} --> |module = |footnotes = }} </syntaxhighlight> ===Using non-metric units=== <syntaxhighlight lang="wikitext" style="overflow:auto"> {{Infobox settlement |name = |native_name = |native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> |settlement_type = |image_skyline = |imagesize = |image_alt = |image_caption = |image_flag = |flag_alt = |image_seal = |seal_alt = |image_shield = |shield_alt = |etymology = |nickname = |motto = |image_map = |map_alt = |map_caption = |pushpin_map = |pushpin_map_alt = |pushpin_map_caption = |pushpin_label_position = |mapframe = <!-- "yes" to show an interactive map --> |coordinates = <!-- {{coord|latitude|longitude|type:city|display=inline,title}} --> |coor_pinpoint = |coordinates_footnotes = |subdivision_type = Country |subdivision_name = |subdivision_type1 = |subdivision_name1 = |subdivision_type2 = |subdivision_name2 = |subdivision_type3 = |subdivision_name3 = |established_title = |established_date = |founder = |seat_type = |seat = |government_footnotes = |leader_party = |leader_title = |leader_name = |unit_pref = Imperial <!-- ALL fields with measurements have automatic unit conversion --> <!-- for references: use <ref> tags --> |area_footnotes = |area_urban_footnotes = <!-- <ref> </ref> --> |area_rural_footnotes = <!-- <ref> </ref> --> |area_metro_footnotes = <!-- <ref> </ref> --> |area_note = |area_water_percent = |area_rank = |area_blank1_title = |area_blank2_title = <!-- square miles --> |area_total_sq_mi = |area_land_sq_mi = |area_water_sq_mi = |area_urban_sq_mi = |area_rural_sq_mi = |area_metro_sq_mi = |area_blank1_sq_mi = |area_blank2_sq_mi = <!-- acres --> |area_total_acre = |area_land_acre = |area_water_acre = |area_urban_acre = |area_rural_acre = |area_metro_acre = |area_blank1_acre = |area_blank2_acre = |length_mi = |width_mi = |dimensions_footnotes = |elevation_footnotes = |elevation_ft = |population_footnotes = |population_as_of = |population_total = |population_density_sq_mi = auto |population_note = |population_demonym = |timezone1 = |utc_offset1 = |timezone1_DST = |utc_offset1_DST = |postal_code_type = |postal_code = |area_code_type = |area_code = |iso_code = |website = <!-- {{Official URL}} --> |module = |footnotes = }} </syntaxhighlight> ===Short version=== <syntaxhighlight lang="wikitext" style="overflow:auto"> {{Infobox settlement |name = |native_name = |native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> |settlement_type = |image_skyline = |imagesize = |image_alt = |image_caption = |etymology = |nickname = |coordinates = <!-- {{Coord}} --> |population_total = |subdivision_type = Country |subdivision_name = |subdivision_type1 = |subdivision_name1 = |subdivision_type2 = |subdivision_name2 = |website = <!-- {{Official URL}} --> }} </syntaxhighlight> ===Complete empty syntax, with comments=== This copy of the template lists all parameters except for some of the repeating numbered parameters which are noted in the comments. Comments here should be brief; see the table below for full descriptions of each parameter. <syntaxhighlight lang="wikitext" style="overflow:auto;"> {{Infobox settlement | name = <!-- at least one of the first two fields must be filled in --> | official_name = <!-- avoid if redundant with e.g. `settlement_type` of `name` | native_name = <!-- if different from the English name --> | native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> | other_name = | settlement_type = <!-- such as Town, Village, City, Borough etc. --> <!-- transliteration(s) --> | translit_lang1 = | translit_lang1_type = | translit_lang1_info = | translit_lang1_type1 = | translit_lang1_info1 = | translit_lang1_type2 = | translit_lang1_info2 = <!-- etc., up to translit_lang1_type6 / translit_lang1_info6 --> | translit_lang2 = | translit_lang2_type = | translit_lang2_info = | translit_lang2_type1 = | translit_lang2_info1 = | translit_lang2_type2 = | translit_lang2_info2 = <!-- etc., up to translit_lang2_type6 / translit_lang2_info6 --> <!-- images, nickname, motto --> | image_skyline = | imagesize = | image_alt = | image_caption = | image_flag = | flag_size = | flag_alt = | flag_border = | flag_link = | image_seal = | seal_size = | seal_alt = | seal_link = | seal_type = | seal_class = | image_shield = | shield_size = | shield_alt = | shield_link = | image_blank_emblem = | blank_emblem_type = | blank_emblem_size = | blank_emblem_alt = | blank_emblem_link = | etymology = | nickname = | nicknames = | motto = | mottoes = | anthem = <!-- maps and coordinates --> | image_map = | mapsize = | map_alt = | map_caption = | image_map1 = | mapsize1 = | map_alt1 = | map_caption1 = | pushpin_map = <!-- name of a location map as per Template:Location_map --> | pushpin_mapsize = | pushpin_map_alt = | pushpin_map_caption = | pushpin_map_caption_notsmall = | pushpin_label = <!-- only necessary if "name" or "official_name" are too long --> | pushpin_label_position = <!-- position of the pushpin label: left, right, top, bottom, none --> | pushpin_outside = | pushpin_relief = | pushpin_image = | pushpin_overlay = | mapframe = <!-- "yes" to show an interactive map --> | coordinates = <!-- {{Coord}} --> | coor_pinpoint = <!-- to specify exact location of coordinates (was coor_type) --> | coordinates_footnotes = <!-- for references: use <ref> tags --> | grid_name = <!-- name of a regional grid system --> | grid_position = <!-- position on the regional grid system --> <!-- location --> | subdivision_type = Country | subdivision_name = <!-- the name of the country --> | subdivision_type1 = | subdivision_name1 = | subdivision_type2 = | subdivision_name2 = <!-- etc., subdivision_type6 / subdivision_name6 --> <!-- established --> | established_title = <!-- Founded --> | established_date = <!-- requires established_title= --> | established_title1 = <!-- Incorporated (town) --> | established_date1 = <!-- requires established_title1= --> | established_title2 = <!-- Incorporated (city) --> | established_date2 = <!-- requires established_title2= --> | established_title3 = | established_date3 = <!-- requires established_title3= --> | established_title4 = | established_date4 = <!-- requires established_title4= --> | established_title5 = | established_date5 = <!-- requires established_title5= --> | established_title6 = | established_date6 = <!-- requires established_title6= --> | established_title7 = | established_date7 = <!-- requires established_title7= --> | extinct_title = | extinct_date = <!-- requires extinct_title= --> | founder = | named_for = <!-- seat, smaller parts --> | seat_type = <!-- defaults to: Seat --> | seat = | seat1_type = <!-- defaults to: Former seat --> | seat1 = | parts_type = <!-- defaults to: Boroughs --> | parts_style = <!-- list, coll (collapsed list), para (paragraph format) --> | parts = <!-- parts text, or header for parts list --> | p1 = | p2 = <!-- etc., up to p50: for separate parts to be listed--> <!-- government type, leaders --> | government_footnotes = <!-- for references: use <ref> tags --> | government_type = | governing_body = | leader_party = | leader_title = | leader_name = <!-- add &amp;nbsp; (no-break space) to disable automatic links --> | leader_title1 = | leader_name1 = <!-- etc., up to leader_title4 / leader_name4 --> <!-- display settings --> | total_type = <!-- to set a non-standard label for total area and population rows --> | unit_pref = <!-- enter: Imperial, to display imperial before metric --> <!-- area --> | area_footnotes = <!-- for references: use <ref> tags --> | dunam_link = <!-- If dunams are used, this specifies which dunam to link. --> | area_total_km2 = <!-- ALL fields with measurements have automatic unit conversion --> | area_total_sq_mi = <!-- see table @ Template:Infobox settlement for details --> | area_total_ha = | area_total_acre = | area_total_dunam = <!-- used in Middle East articles only --> | area_land_km2 = | area_land_sq_mi = | area_land_ha = | area_land_acre = | area_land_dunam = <!-- used in Middle East articles only --> | area_water_km2 = | area_water_sq_mi = | area_water_ha = | area_water_acre = | area_water_dunam = <!-- used in Middle East articles only --> | area_water_percent = | area_urban_footnotes = <!-- for references: use <ref> tags --> | area_urban_km2 = | area_urban_sq_mi = | area_urban_ha = | area_urban_acre = | area_urban_dunam = <!-- used in Middle East articles only --> | area_rural_footnotes = <!-- for references: use <ref> tags --> | area_rural_km2 = | area_rural_sq_mi = | area_rural_ha = | area_rural_acre = | area_rural_dunam = <!-- used in Middle East articles only --> | area_metro_footnotes = <!-- for references: use <ref> tags --> | area_metro_km2 = | area_metro_sq_mi = | area_metro_ha = | area_metro_acre = | area_metro_dunam = <!-- used in Middle East articles only --> | area_rank = | area_blank1_title = | area_blank1_km2 = | area_blank1_sq_mi = | area_blank1_ha = | area_blank1_acre = | area_blank1_dunam = <!-- used in Middle East articles only --> | area_blank2_title = | area_blank2_km2 = | area_blank2_sq_mi = | area_blank2_ha = | area_blank2_acre = | area_blank2_dunam = <!-- used in Middle East articles only --> | area_note = <!-- dimensions --> | dimensions_footnotes = <!-- for references: use <ref> tags --> | length_km = | length_mi = | width_km = | width_mi = <!-- elevation --> | elevation_footnotes = <!-- for references: use <ref> tags --> | elevation_m = | elevation_ft = | elevation_point = <!-- for denoting the measurement point --> | elevation_max_footnotes = <!-- for references: use <ref> tags --> | elevation_max_m = | elevation_max_ft = | elevation_max_point = <!-- for denoting the measurement point --> | elevation_max_rank = | elevation_min_footnotes = <!-- for references: use <ref> tags --> | elevation_min_m = | elevation_min_ft = | elevation_min_point = <!-- for denoting the measurement point --> | elevation_min_rank = <!-- population --> | population_footnotes = <!-- for references: use <ref> tags --> | population_as_of = | population_total = | pop_est_footnotes = | pop_est_as_of = | population_est = | population_rank = | population_density_km2 = <!-- for automatic calculation of any density field, use: auto --> | population_density_sq_mi = | population_urban_footnotes = | population_urban = | population_density_urban_km2 = | population_density_urban_sq_mi = | population_rural_footnotes = | population_rural = | population_density_rural_km2 = | population_density_rural_sq_mi = | population_metro_footnotes = | population_metro = | population_density_metro_km2 = | population_density_metro_sq_mi = | population_density_rank = | population_blank1_title = | population_blank1 = | population_density_blank1_km2 = | population_density_blank1_sq_mi = | population_blank2_title = | population_blank2 = | population_density_blank2_km2 = | population_density_blank2_sq_mi = | population_demonym = <!-- demonym, e.g. Liverpudlian for someone from Liverpool --> | population_demonyms = | population_note = <!-- demographics (section 1) --> | demographics_type1 = | demographics1_footnotes = <!-- for references: use <ref> tags --> | demographics1_title1 = | demographics1_info1 = <!-- etc., up to demographics1_title7 / demographics1_info7 --> <!-- demographics (section 2) --> | demographics_type2 = | demographics2_footnotes = <!-- for references: use <ref> tags --> | demographics2_title1 = | demographics2_info1 = <!-- etc., up to demographics2_title10 / demographics2_info10 --> <!-- time zone(s) --> | timezone_link = | timezone1_location = | timezone1 = | utc_offset1 = | timezone1_DST = | utc_offset1_DST = | timezone2_location = | timezone2 = | utc_offset2 = | timezone2_DST = | utc_offset2_DST = | timezone3_location = | timezone3 = | utc_offset3 = | timezone3_DST = | utc_offset3_DST = | timezone4_location = | timezone4 = | utc_offset4 = | timezone4_DST = | utc_offset4_DST = | timezone5_location = | timezone5 = | utc_offset5 = | timezone5_DST = | utc_offset5_DST = <!-- postal codes, area code --> | postal_code_type = <!-- enter ZIP Code, Postcode, Post code, Postal code... --> | postal_code = | postal2_code_type = <!-- enter ZIP Code, Postcode, Post code, Postal code... --> | postal2_code = | area_code_type = <!-- defaults to: Area code(s) --> | area_code = | area_codes = | geocode = | iso_code = | registration_plate_type = | registration_plate = | code1_name = | code1_info = | code2_name = | code2_info = <!-- blank fields (section 1) --> | blank_name_sec1 = | blank_info_sec1 = | blank1_name_sec1 = | blank1_info_sec1 = | blank2_name_sec1 = | blank2_info_sec1 = <!-- etc., up to blank7_name_sec1 / blank7_info_sec1 --> <!-- blank fields (section 2) --> | blank_name_sec2 = | blank_info_sec2 = | blank1_name_sec2 = | blank1_info_sec2 = | blank2_name_sec2 = | blank2_info_sec2 = <!-- etc., up to blank7_name_sec2 / blank7_info_sec2 --> <!-- website, footnotes --> | website = <!-- {{Official URL}} --> | module = | footnotes = }} </syntaxhighlight> ==Parameter names and descriptions== {| class="wikitable" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Name and transliteration=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" | '''name''' || optional || This is the usual name in English. If it's not specified, the infobox will use the '''official_name''' as a title unless this too is missing, in which case the page name will be used. |- style="vertical-align:top;" | '''official_name''' || optional || The official name in English. Avoid using '''official_name''' if it leads to redundancy with '''name''' and '''settlement_type'''. Use '''official_name''' if the official name is unusual or cannot be simply deduced from the name and settlement type. |- style="vertical-align:top;" | '''native_name''' || optional || Name or names in the local language, if different from 'name', and if not English. This parameter may be used for the name in the de facto local language (e.g. German for [[Munich]]). Per the [[Template talk:Infobox settlement/Archive 32#RFC on usage of native name parameter for First Nations placenames|2023 RfC]], it may also be used for names used by First Nations/[[Indigenous peoples]], '''regardless''' of whether they are the dominant ethnic group in the location. |- style="vertical-align:top;" | '''native_name_lang''' || optional || Use [[List of ISO 639-1 codes|ISO 639-1 code]], e.g. "fr" for French. If there is more than one dominant name, in different languages, enter those names using {{tl|lang}}, instead. |- style="vertical-align:top;" | '''other_name''' || optional || For places with other commonly used names like Bombay or Saigon |- style="vertical-align:top;" | '''settlement_type''' || optional || Any type can be entered, such as City, Town, Village, Hamlet, Municipality, Reservation, etc. If set, will be displayed under the names. Might also be used as a label for total population/area (defaulting to ''City''), if needed to distinguish from ''Urban'', ''Rural'' or ''Metro'' (if urban, rural or metro figures are not present, the label is ''Total'' unless '''total_type''' is set). |- style="vertical-align:top;" | '''short_description''' || optional || Set to <code>no</code> to suppress the Short description generated by the infobox. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Transliteration(s) |- style="vertical-align:top;" | '''translit_lang1''' || optional || Will place the "entry" before the word "transliteration(s)". Can be used to specify a particular language like in [[Dêlêg]] or one may just enter "Other", like in [[Gaza City|Gaza]]'s article. |- style="vertical-align:top;" | '''translit_lang1_type'''<br />'''translit_lang1_type1'''<br />to<br />'''translit_lang1_type6''' || optional || |- style="vertical-align:top;" | '''translit_lang1_info'''<br />'''translit_lang1_info1'''<br />to<br />'''translit_lang1_info6''' || optional || |- style="vertical-align:top;" | '''translit_lang2''' || optional || Will place a second transliteration. See [[Dêlêg]] |- style="vertical-align:top;" | '''translit_lang2_type'''<br />'''translit_lang2_type1'''<br />to<br />'''translit_lang2_type6''' || optional || |- style="vertical-align:top;" | '''translit_lang2_info'''<br />'''translit_lang2_info1'''<br />to<br />'''translit_lang2_info6''' || optional || |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Images, nickname, motto=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Image |- style="vertical-align:top;" | '''image_skyline''' || optional || Primary image representing the settlement. Commonly a photo of the settlement’s skyline. For large urban areas, the <nowiki>{{multiple image}}</nowiki> template is often used in place of a single image to create a collage of the settlement's skyline and several notable landmarks. |- style="vertical-align:top;" | '''imagesize''' || optional || Can be used to tweak the size of the image_skyline up or down. This can be helpful if an editor wants to make the infobox wider. If used, '''px''' must be specified; default size is 250px. Note [[WP:IMGSIZELEAD]] recommends that images should be no wider than <code>upright=1.35</code> -equivalent to 300px |- style="vertical-align:top;" | '''image_alt''' || optional || [[Alt text]] for the image, used by visually impaired readers who cannot see the image. See [[WP:ALT]]. |- style="vertical-align:top;" | '''image_caption''' || optional || Will place a caption under the image_skyline (if present) |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Flag image |- style="vertical-align:top;" | '''image_flag''' || optional || Used for a flag. |- style="vertical-align:top;" | '''flag_size''' || optional || Can be used to tweak the size of the image_flag up or down from 100px as desired. If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''flag_alt''' || optional || Alt text for the flag. |- style="vertical-align:top;" | '''flag_border''' || optional || Set to 'no' to remove the border from the flag |- style="vertical-align:top;" | '''flag_link''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Seal image |- style="vertical-align:top;" | '''image_seal''' || optional || If the place has an official seal. |- style="vertical-align:top;" | '''seal_size''' || optional || If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''seal_alt''' || optional || Alt text for the seal. |- style="vertical-align:top;" | '''seal_link'''<br />'''seal_type''' || optional || |- style="vertical-align:top;" | '''seal_class''' || optional || CSS class for the seal image. Parameter {{para|seal_class|skin-invert}} can be used for dark mode support if the seal image is monochrome. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Coat of arms image |- style="vertical-align:top;" | '''image_shield''' || optional || Can be used for a place with a coat of arms. |- style="vertical-align:top;" | '''shield_size''' || optional || If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''shield_alt''' || optional || Alt text for the shield. |- style="vertical-align:top;" | '''shield_link''' || optional || Can be used if a wiki article if known but is not automatically linked by the template. See [[Coquitlam, British Columbia]]'s infobox for an example. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Logo or emblem image |- style="vertical-align:top;" | '''image_blank_emblem''' || optional || Can be used if a place has an official logo, crest, emblem, etc. |- style="vertical-align:top;" | '''blank_emblem_type''' || optional || Caption beneath "image_blank_emblem" to specify what type of emblem it is. |- style="vertical-align:top;" | '''blank_emblem_size''' || optional || If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''blank_emblem_alt''' || optional || Alt text for blank emblem. |- style="vertical-align:top;" | '''blank_emblem_link''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Nickname, motto |- style="vertical-align:top;" | '''etymology''' || optional || origin of name |- style="vertical-align:top;" | '''nickname''' || optional || well-known nickname |- style="vertical-align:top;" | '''nicknames''' || optional || if more than one well-known nickname, use this |- style="vertical-align:top;" | '''motto''' || optional || Will place the motto under the nicknames |- style="vertical-align:top;" | '''mottoes''' || optional || if more than one motto, use this |- style="vertical-align:top;" | '''anthem''' || optional || Will place the anthem (song) under the nicknames |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Maps, coordinates=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Map images |- style="vertical-align:top;" | '''image_map''' || optional || |- style="vertical-align:top;" | '''mapsize''' || optional || If used, '''px''' must be specified; default is 250px. |- style="vertical-align:top;" | '''map_alt''' || optional || Alt text for map. |- style="vertical-align:top;" | '''map_caption''' || optional || |- style="vertical-align:top;" | '''image_map1''' || optional || A secondary map image. The field '''image_map''' must be filled in first. Example see: [[Bloomsburg, Pennsylvania]]. |- style="vertical-align:top;" | '''mapsize1''' || optional || If used, '''px''' must be specified; default is 250px. |- style="vertical-align:top;" | '''map_alt1''' || optional || Alt text for secondary map. |- style="vertical-align:top;" | '''map_caption1''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Pushpin map(s), coordinates |- style="vertical-align:top;" | '''pushpin_map''' || optional || The name of a location map as per [[Template:Location map]] (e.g. ''Indonesia'' or ''Russia''). The coordinate fields (from {{para|coordinates}}) position a pushpin coordinate marker and label on the map '''automatically'''. Example: [[Padang, Indonesia]]. To show multiple pushpin maps, provide a list of maps separated by #, e.g., ''California#USA'' |- style="vertical-align:top;" | '''pushpin_mapsize''' || optional || Must be entered as only a number—'''do not use px'''. The default value is 250.<br/>''Equivalent to <code>width</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_map_alt''' || optional || Alt text for pushpin map; used by [[screen reader]]s, see [[WP:ALT]].<br/>''Equivalent to <code>alt</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_map_caption''' || optional || Fill out if a different caption from ''map_caption'' is desired.<br/>''Equivalent to <code>caption</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_map_caption_notsmall''' || optional || <!-- add documentation here --> |- style="vertical-align:top;" | '''pushpin_label''' || optional || The text of the label to display next to the identifying mark; a [[Wiki markup|wikilink]] can be used. If not specified, the label will be the text assigned to the ''name'' or ''official_name'' parameters (if {{para|pushpin_label_position|none}}, no label is displayed).<br/>''Equivalent to <code>label</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_label_position''' || optional || The position of the label on the pushpin map relative to the pushpin coordinate marker. Valid options are {left, right, top, bottom, none}. If this field is not specified, the default value is ''right''.<br/>''Equivalent to <code>position</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_outside''' || optional || ''Equivalent to <code>outside</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_relief''' || optional || Set this to <code>y</code> or any non-blank value to use an alternative relief map provided by the selected location map (if a relief map is available). <br/>''Equivalent to <code>relief</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_image''' || optional || Allows the use of an alternative map; the image must have the same edge coordinates as the location map template.<br/>''Equivalent to <code>AlternativeMap</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_overlay''' || optional || Can be used to specify an image to be superimposed on the regular pushpin map.<br/>''Equivalent to <code>overlay_image</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''mapframe''' || optional || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage. |- style="vertical-align:top;" | '''coordinates''' || optional || Latitude and longitude. Use {{tl|Coord}}. See the documentation for {{tl|Coord}} for more details on usage. |- style="vertical-align:top;" | '''coor_pinpoint''' || optional || If needed, to specify more exactly where (or what) coordinates are given (e.g. ''Town Hall'') or a specific place in a larger area (e.g. a city in a county). Example: In the article [[Masovian Voivodeship]], <code>coor_pinpoint=Warsaw</code> specifies [[Warsaw]]. |- style="vertical-align:top;" | '''coordinates_footnotes''' || optional || Reference(s) for coordinates, placed within <code><nowiki><ref> </ref></nowiki></code> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''grid_name'''<br />'''grid_position''' || optional || Name of a regional grid system and position on the regional grid |} ====Mapframe maps==== {{Infobox mapframe/doc/parameters | onByDefault = yes, unless any of the other map parameters are present: {{para|pushpin_map}}, {{para|image_map}}, {{para|image_map1}} | mapframe-frame-width = 250 | mapframe-length_km = {{para|length_km}} | mapframe-length_mi = {{para|length_mi}} | mapframe-width_km = {{para|width_km}} | mapframe-width_mi = {{para|width_mi}} | mapframe-area_km2 = {{para|area_total_km2}} | mapframe-area_ha = {{para|area_total_ha}} | mapframe-area_acre = {{para|area_total_acre}} | mapframe-area_sq_mi = {{para|area_total_sq_mi}} | mapframe-type = city | mapframe-population = {{para|population_metro}} or {{para|population_total}} | mapframe-marker = town | mapframe-caption = Interactive map of {{para|name}} or {{para|official_name}} or {{tl|PAGENAMEBASE}} }} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Location, established, seat, subdivisions, government, leaders=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Location |- style="vertical-align:top;" | {{anchor|subdivision_type}}'''subdivision_type''' || optional || almost always <code><nowiki>Country</nowiki></code> |- style="vertical-align:top;" | '''subdivision_name''' || optional || Depends on the subdivision_type — use the name in text form, sample: <code>United States</code>. Per [[MOS:INFOBOXFLAG]], flag icons or flag templates may be used in this field |- style="vertical-align:top;" | '''subdivision_type1'''<br />to<br />'''subdivision_type6''' || optional || Can be State/Province, region, county. These labels are for subdivisions ''above'' the level of the settlement described in the article. For subdivisions ''below'' or ''within'' the place described in the article, use {{para|parts_type}}. |- style="vertical-align:top;" | '''subdivision_name1'''<br />to<br />'''subdivision_name6''' || optional || Use the name in text form, sample: <code>Florida</code> or <code><nowiki>[[Florida]]</nowiki></code>. Per [[MOS:INFOBOXFLAG]], settlements "may have flags of the country and first-level administrative subdivision in infoboxes". Flag icons or flag templates is permitted for subdivision_name1 (which is usually state or province); flag icons or flag templates should '''not''' be used in subdivision_name2-6. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Established |- style="vertical-align:top;" | '''established_title''' || optional || Example: Founded |- style="vertical-align:top;" | '''established_date''' || optional || Requires established_title= |- style="vertical-align:top;" | '''established_title1''' || optional || Example: Incorporated (town) <br/>[Note that "established_title1" is distinct from "established_title"; you can think of "established_title" as behaving like "established_title0".] |- style="vertical-align:top;" | '''established_date1''' || optional || [See note for "established_title1".] Requires established_title1= |- style="vertical-align:top;" | '''established_title2''' || optional || Example: Incorporated (city) |- style="vertical-align:top;" | '''established_date2''' || optional || Requires established_title2= |- style="vertical-align:top;" | '''established_title3''' || optional || |- style="vertical-align:top;" | '''established_date3''' || optional || Requires established_title3= |- style="vertical-align:top;" | '''established_title4''' || optional || |- style="vertical-align:top;" | '''established_date4''' || optional || Requires established_title4= |- style="vertical-align:top;" | '''established_title5''' || optional || |- style="vertical-align:top;" | '''established_date5''' || optional || Requires established_title5= |- style="vertical-align:top;" | '''established_title6''' || optional || |- style="vertical-align:top;" | '''established_date6''' || optional || Requires established_title6= |- style="vertical-align:top;" | '''established_title7''' || optional || |- style="vertical-align:top;" | '''established_date7''' || optional || Requires established_title7= |- style="vertical-align:top;" | '''extinct_title''' || optional || For when a settlement ceases to exist |- style="vertical-align:top;" | '''extinct_date''' || optional || Requires extinct_title= |- style="vertical-align:top;" | '''founder''' || optional || Who the settlement was founded by |- style="vertical-align:top;" | '''named_for''' || optional || The source of the name of the settlement (a person, a place, et cetera) |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Seat of government |- style="vertical-align:top;" | '''seat_type''' || optional || The label for the seat of government (defaults to ''Seat''). |- style="vertical-align:top;" | '''seat''' || optional || The seat of government. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Smaller parts (e.g. boroughs of a city) |- style="vertical-align:top;" | '''parts_type''' || optional || The label for the smaller subdivisions (defaults to ''Boroughs''). |- style="vertical-align:top;" | '''parts_style''' || optional || Set to ''list'' to display as a collapsible list, ''coll'' as a collapsed list, or ''para'' to use paragraph style. Default is ''list'' for up to 5 items, otherwise ''coll''. |- style="vertical-align:top;" | '''parts''' || optional || Text or header of the list of smaller subdivisions. |- style="vertical-align:top;" | '''p1'''<br />'''p2'''<br />to<br />'''p50''' || optional || The smaller subdivisions to be listed. Example: [[Warsaw]] |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Government type, leaders |- style="vertical-align:top;" | '''government_footnotes''' || optional || Reference(s) for government, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''government_type''' || optional || Examples: [[Mayor–council government]], [[Council–manager government]], [[City commission government]], ... |- style="vertical-align:top;" | '''governing_body''' || optional || Name of the place's governing body |- style="vertical-align:top;" | '''leader_party''' || optional || Political party of the place's leader |- style="vertical-align:top;" | '''leader_title''' || optional || First title of the place's leader, e.g. Mayor |- style="vertical-align:top;" | '''leader_name''' || optional || Name of the place's leader |- style="vertical-align:top;" | '''leader_title1'''<br />to<br />'''leader_title4''' || optional || |- style="vertical-align:top;" | '''leader_name1'''<br />to<br />'''leader_name4''' || optional || For long lists use {{tl|Collapsible list}}. See [[Halifax Regional Municipality|Halifax]] for an example. |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Geographic information=== |- style="vertical-align:top;" | colspan=3 | These fields have '''dual automatic unit conversion''' meaning that if only metric values are entered, the imperial values will be automatically converted and vice versa. If an editor wishes to over-ride the automatic conversion, e.g. if the source gives both metric and imperial or if a range of values is needed, they should enter both values in their respective fields. All values must be entered in a '''raw format: no commas, spaces, or unit symbols'''. The template will format them automatically. |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Display settings |- style="vertical-align:top;" | '''total_type''' || optional || Specifies what "total" area and population figure refer to, e.g. ''Greater London''. This overrides other labels for total population/area. To make the total area and population display on the same line as the words "Area" and "Population", with no "Total" or similar label, set the value of this parameter to '''&amp;nbsp;'''. |- style="vertical-align:top;" | '''unit_pref''' || optional || To change the unit order to ''imperial (metric)'', enter '''imperial'''. The default display style is ''metric (imperial)''. However, the template will swap the order automatically if the '''subdivision_name''' equals some variation of the US or the UK.<br />For the Middle East, a unit preference of [[dunam]] can be entered (only affects total area). <br /> |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Area |- style="vertical-align:top;" | '''area_footnotes''' || optional || Reference(s) for area, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''dunam_link''' || optional || If dunams are used, the default is to link the word ''dunams'' in the total area section. This can be changed by setting <code>dunam_link</code> to another measure (e.g. <code>dunam_link=water</code>). Linking can also be turned off by setting the parameter to something else (e.g. <code>dunam_link=none</code> or <code>dunam_link=off</code>). |- style="vertical-align:top;" | '''area_total_km2''' || optional || Total area in square kilometers—symbol: km<sup>2</sup>. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square miles if area_total_sq_mi is empty. |- style="vertical-align:top;" | '''area_total_ha''' || optional || Total area in hectares—symbol: ha. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display acres if area_total_acre is empty. |- style="vertical-align:top;" | '''area_total_sq_mi''' || optional || Total area in square miles—symbol: sq&nbsp;mi. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers if area_total_km2 is empty. |- style="vertical-align:top;" | '''area_total_acre''' || optional || Total area in acres. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display hectares if area_total_ha is empty. |- style="vertical-align:top;" | '''area_total_dunam''' || optional || Total area in dunams, which is wiki-linked. Used in middle eastern places like Israel, Gaza, and the West Bank. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers or hectares and square miles or acreds if area_total_km2, area_total_ha, area_total_sq_mi, and area_total_acre are empty. Examples: [[Gaza City|Gaza]] and [[Ramallah]] |- style="vertical-align:top;" | '''area_land_km2''' || optional || Land area in square kilometers—symbol: km<sup>2</sup>. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square miles if area_land_sq_mi is empty. |- style="vertical-align:top;" | '''area_land_sq_mi''' || optional || Land area in square miles—symbol: sq&nbsp;mi. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers if area_land_km2 is empty. |- style="vertical-align:top;" | '''area_land_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_land_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_land_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_water_km2''' || optional || Water area in square kilometers—symbol: km<sup>2</sup>. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square miles if area_water_sq_mi is empty. |- style="vertical-align:top;" | '''area_water_sq_mi''' || optional || Water area in square miles—symbol: sq&nbsp;mi. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers if area_water_km2 is empty. |- style="vertical-align:top;" | '''area_water_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_water_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_water_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_water_percent''' || optional || percent of water without the "%" |- style="vertical-align:top;" | '''area_urban_km2''' || optional || |- style="vertical-align:top;" | '''area_urban_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_urban_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_urban_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_urban_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_rural_km2''' || optional || |- style="vertical-align:top;" | '''area_rural_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_rural_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_rural_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_rural_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_metro_km2''' || optional || |- style="vertical-align:top;" | '''area_metro_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_metro_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_metro_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_metro_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_rank''' || optional || The settlement's area, as ranked within its parent sub-division |- style="vertical-align:top;" | '''area_blank1_title''' || optional || Example see London |- style="vertical-align:top;" | '''area_blank1_km2''' || optional || |- style="vertical-align:top;" | '''area_blank1_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_blank1_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_blank1_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_blank1_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_blank2_title''' || optional || |- style="vertical-align:top;" | '''area_blank2_km2''' || optional || |- style="vertical-align:top;" | '''area_blank2_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_blank2_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_blank2_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_blank2_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_note''' || optional || A place for additional information such as the name of the source. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Dimensions |- style="vertical-align:top;" | '''dimensions_footnotes''' || optional || Reference(s) for dimensions, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''length_km''' || optional || Raw number entered in kilometers. Will automatically convert to display length in miles if length_mi is empty. |- style="vertical-align:top;" | '''length_mi''' || optional || Raw number entered in miles. Will automatically convert to display length in kilometers if length_km is empty. |- style="vertical-align:top;" | '''width_km''' || optional || Raw number entered in kilometers. Will automatically convert to display width in miles if length_mi is empty. |- style="vertical-align:top;" | '''width_mi''' || optional || Raw number entered in miles. Will automatically convert to display width in kilometers if length_km is empty. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Elevation |- style="vertical-align:top;" | '''elevation_footnotes''' || optional || Reference(s) for elevation, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''elevation_m''' || optional || Raw number entered in meters. Will automatically convert to display elevation in feet if elevation_ft is empty. However, if a range in elevation (i.e. 5–50 m ) is desired, use the "max" and "min" fields below |- style="vertical-align:top;" | '''elevation_ft''' || optional || Raw number, entered in feet. Will automatically convert to display the average elevation in meters if '''elevation_m''' field is empty. However, if a range in elevation (e.g. 50–500&nbsp;ft ) is desired, use the "max" and "min" fields below |- style="vertical-align:top;" | '''elevation_max_footnotes'''<br />'''elevation_min_footnotes''' || optional || Same as above, but for the "max" and "min" elevations. See [[City of Leeds]]. |- style="vertical-align:top;" | '''elevation_max_m'''<br />'''elevation_max_ft'''<br />'''elevation_max_rank'''<br />'''elevation_min_m'''<br />'''elevation_min_ft'''<br />'''elevation_min_rank''' || optional || Used to give highest & lowest elevations and rank, instead of just a single value. Example: [[Halifax Regional Municipality]]. |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Population, demographics=== |- style="vertical-align:top;" | colspan=3 | The density fields have '''dual automatic unit conversion''' meaning that if only metric values are entered, the imperial values will be automatically converted and vice versa. If an editor wishes to over-ride the automatic conversion, e.g. if the source gives both metric and imperial or if a range of values is needed, they can enter both values in their respective fields. '''To calculate density with respect to the total area automatically, type ''auto'' in place of any density value.''' |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Population |- style="vertical-align:top;" | '''population_total''' || optional || Actual population (see below for estimates) preferably consisting of digits only (without any commas) |- style="vertical-align:top;" | '''population_as_of''' || optional || The year for the population total (usually a census year) |- style="vertical-align:top;" | '''population_footnotes''' || optional || Reference(s) for population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_km2''' || optional || Set to {{code|auto}} to auto generate based on {{para|population_total}} and {{para|area_total_km2}} |- style="vertical-align:top;" | '''population_density_sq_mi''' || optional || Set to {{code|auto}} to auto generate based on {{para|population_total}} and {{para|area_total_sq_mi}} |- style="vertical-align:top;" | '''population_est''' || optional || Population estimate. |- style="vertical-align:top;" | '''pop_est_as_of''' || optional || The year or month & year of the population estimate |- style="vertical-align:top;" | '''pop_est_footnotes''' || optional || Reference(s) for population estimate, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_urban''' || optional || |- style="vertical-align:top;" | '''population_urban_footnotes''' || optional || Reference(s) for urban population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_urban_km2''' || optional || |- style="vertical-align:top;" | '''population_density_urban_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_rural''' || optional || |- style="vertical-align:top;" | '''population_rural_footnotes''' || optional || Reference(s) for rural population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_rural_km2''' || optional || |- style="vertical-align:top;" | '''population_density_rural_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_metro''' || optional || |- style="vertical-align:top;" | '''population_metro_footnotes''' || optional || Reference(s) for metro population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_metro_km2''' || optional || |- style="vertical-align:top;" | '''population_density_metro_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_rank''' || optional || The settlement's population, as ranked within its parent sub-division |- style="vertical-align:top;" | '''population_density_rank''' || optional || The settlement's population density, as ranked within its parent sub-division |- style="vertical-align:top;" | '''population_blank1_title''' || optional || Can be used for estimates. Example: [[Windsor, Ontario]] |- style="vertical-align:top;" | '''population_blank1''' || optional || The population value for blank1_title |- style="vertical-align:top;" | '''population_density_blank1_km2''' || optional || |- style="vertical-align:top;" | '''population_density_blank1_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_blank2_title''' || optional || |- style="vertical-align:top;" | '''population_blank2''' || optional || |- style="vertical-align:top;" | '''population_density_blank2_km2''' || optional || |- style="vertical-align:top;" | '''population_density_blank2_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_demonym''' || optional || A demonym or gentilic is a word that denotes the members of a people or the inhabitants of a place. For example, a citizen in [[Liverpool]] is known as a [[Liverpudlian]]. |- style="vertical-align:top;" | '''population_demonyms''' || optional || If more than one demonym, use this |- style="vertical-align:top;" | '''population_note''' || optional || A place for additional information such as the name of the source. See [[Windsor, Ontario]] for example. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Demographics (section 1) |- style="vertical-align:top;" | '''demographics_type1''' || optional || Section Header. For example: Ethnicity |- style="vertical-align:top;" | '''demographics1_footnotes''' || optional || Reference(s) for demographics section 1, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''demographics1_title1'''<br />to<br />'''demographics1_title7''' || optional || Titles related to demographics_type1. For example: White, Black, Hispanic... |- style="vertical-align:top;" | '''demographics1_info1'''<br />to<br />'''demographics1_info7''' || optional || Information related to the "titles". For example: 50%, 25%, 10%... |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Demographics (section 2) |- style="vertical-align:top;" | '''demographics_type2''' || optional || A second section header. For example: Languages |- style="vertical-align:top;" | '''demographics2_footnotes''' || optional || Reference(s) for demographics section 2, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''demographics2_title1'''<br />to<br />'''demographics2_title10''' || optional || Titles related to '''demographics_type2'''. For example: English, French, Arabic... |- style="vertical-align:top;" | '''demographics2_info1'''<br />to<br />'''demographics2_info10''' || optional || Information related to the "titles" for type2. For example: 50%, 25%, 10%... |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Other information=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Time zone(s) |- style="vertical-align:top;" | '''timezone1''' || optional || |- style="vertical-align:top;" | '''utc_offset1''' || optional || Plain text, e.g. "+05:00" or "−08:00". Auto-linked, so do not include references or additional text. |- style="vertical-align:top;" | '''timezone1_DST''' || optional || |- style="vertical-align:top;" | '''utc_offset1_DST''' || optional || |- style="vertical-align:top;" | '''timezone2''' || optional || A second timezone field for larger areas. Up to five timezones may be included. |- style="vertical-align:top;" | '''utc_offset2''' || optional || |- style="vertical-align:top;" | '''timezone2_DST''' || optional || |- style="vertical-align:top;" | '''utc_offset2_DST''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Postal code(s) & area code |- style="vertical-align:top;" | '''postal_code_type''' || optional || |- style="vertical-align:top;" | '''postal_code''' || optional || |- style="vertical-align:top;" | '''postal2_code_type''' || optional || |- style="vertical-align:top;" | '''postal2_code''' || optional || |- style="vertical-align:top;" | '''area_code_type''' || optional || If left blank/not used template will default to "[[Telephone numbering plan|Area code(s)]]" |- style="vertical-align:top;" | '''area_code''' || optional || Refers to the telephone dialing code for the settlement, ''not'' a geographic area code. |- style="vertical-align:top;" | '''area_codes''' || optional || If more than one area code, use this |- style="vertical-align:top;" | '''geocode''' || optional || See [[Geocode]] |- style="vertical-align:top;" | '''iso_code''' || optional || See [[ISO 3166]] |- style="vertical-align:top;" | '''registration_plate_type''' || optional || If left blank/not used template will default to "[[Vehicle registration plate|Vehicle registration]]" |- style="vertical-align:top;" | '''registration_plate''' || optional || See [[Vehicle registration plate]] |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Blank fields (section 1) |- style="vertical-align:top;" | '''blank_name_sec1''' || optional || Fields used to display other information. The name is displayed in bold on the left side of the infobox. |- style="vertical-align:top;" | '''blank_info_sec1''' || optional || The information associated with the ''blank_name'' heading. The info is displayed on right side of infobox, in the same row as the name. For an example, see: [[Warsaw]] |- style="vertical-align:top;" | '''blank1_name_sec1'''<br />to<br />'''blank7_name_sec1''' || optional || Up to 7 additional fields (8 total) can be displayed in this section |- style="vertical-align:top;" | '''blank1_info_sec1'''<br />to<br />'''blank7_info_sec1''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Blank fields (section 2) |- style="vertical-align:top;" | '''blank_name_sec2''' || optional || For a second section of blank fields |- style="vertical-align:top;" | '''blank_info_sec2''' || optional || Example: [[Beijing]] |- style="vertical-align:top;" | '''blank1_name_sec2'''<br />to<br />'''blank7_name_sec2''' || optional || Up to 7 additional fields (8 total) can be displayed in this section |- style="vertical-align:top;" | '''blank1_info_sec2'''<br />to<br />'''blank7_info_sec2''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Website, footnotes |- style="vertical-align:top;" | '''website''' || optional || External link to official website, use {{Tl|Official URL}} if Property P856 "official website" exists on Wikidata, or <nowiki>{{URL|example.com}}</nowiki> |- style="vertical-align:top;" | '''module''' || optional || To embed infoboxes at the bottom of the infobox |- style="vertical-align:top;" | '''footnotes''' || optional || Text to be displayed at the bottom of the infobox |} <!-- End of parameter name/description table --> ==Examples== ;Example 1: <!-- NOTE: This differs from the actual Chicago infobox in order to provide examples. --> {{Infobox settlement | name = Chicago | settlement_type = [[City (Illinois)|City]] | image_skyline = Chicago montage.jpg | imagesize = 275px <!--default is 250px--> | image_caption = Clockwise from top: [[Downtown Chicago]], the [[Chicago Theatre]], the [[Chicago 'L']], [[Navy Pier]], [[Millennium Park]], the [[Field Museum]], and the [[Willis Tower|Willis (formerly Sears) Tower]] | image_flag = Flag of Chicago, Illinois.svg | image_seal = | etymology = {{langx|mia|shikaakwa}} ("wild onion" or "wild garlic") | nickname = [[Origin of Chicago's "Windy City" nickname|The Windy City]], The Second City, Chi-Town, Chi-City, Hog Butcher for the World, City of the Big Shoulders, The City That Works, and others found at [[List of nicknames for Chicago]] | motto = {{langx|la|Urbs in Horto}} (City in a Garden), Make Big Plans (Make No Small Plans), I Will | image_map = US-IL-Chicago.png | map_caption = Location in the [[Chicago metropolitan area]] and Illinois | pushpin_map = USA | pushpin_map_caption = Location in the United States | mapframe = yes | mapframe-zoom = 8 | mapframe-stroke-width = 1 | mapframe-shape-fill = #0096ff | mapframe-marker = building-alt1 | mapframe-wikidata = yes | mapframe-id = Q1297 | coordinates = {{coord|41|50|15|N|87|40|55|W}} | coordinates_footnotes = <ref name="USCB Gazetteer 2010"/> | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = [[Illinois]] | subdivision_type2 = [[List of counties in Illinois|Counties]] | subdivision_name2 = [[Cook County, Illinois|Cook]], [[DuPage County, Illinois|DuPage]] | established_title = Settled | established_date = 1770s | established_title2 = [[Municipal corporation|Incorporated]] | established_date2 = March 4, 1837 | founder = | named_for = {{langx|mia|shikaakwa}}<br /> ("Wild onion") | government_type = [[Mayor–council government|Mayor–council]] | leader_title = [[Mayor of Chicago|Mayor]] | leader_name = [[Rahm Emanuel]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[City council|Council]] | leader_name1 = [[Chicago City Council]] | unit_pref = Imperial | area_footnotes = <ref name="USCB Gazetteer 2010">{{cite web | url = https://www.census.gov/geo/www/gazetteer/files/Gaz_places_national.txt | title = 2010 United States Census Gazetteer for Places: January 1, 2010 | format = text | work = 2010 United States Census | publisher = [[United States Census Bureau]] | date = April 2010 | access-date = August 1, 2012}}</ref> | area_total_sq_mi = 234.114 | area_land_sq_mi = 227.635 | area_water_sq_mi = 6.479 | area_water_percent = 3 | area_urban_sq_mi = 2123 | area_metro_sq_mi = 10874 | elevation_footnotes = <ref name="GNIS"/> | elevation_ft = 594 | elevation_m = 181 | population_footnotes = <ref name="USCB PopEstCities 2011">{{cite web | url = https://www.census.gov/popest/data/cities/totals/2011/tables/SUB-EST2011-01.csv | title = Annual Estimates of the Resident Population for Incorporated Places Over 50,000, Ranked by July 1, 2011 Population | format = [[comma-separated values|CSV]] | work = 2011 Population Estimates | publisher = [[United States Census Bureau]], Population Division | date = June 2012 | access-date = August 1, 2012}}</ref><ref name="USCB Metro 2010">{{cite web | url=https://www.census.gov/prod/cen2010/briefs/c2010br-01.pdf | title = Population Change for the Ten Most Populous and Fastest Growing Metropolitan Statiscal Areas: 2000 to 2010 | date = March 2011 | publisher = [[U.S. Census Bureau]] | page = 6 |access-date = April 12, 2011}}</ref> | population_as_of = [[2010 United States census|2010]] | population_total = 2695598 | pop_est_footnotes = | pop_est_as_of = 2011 | population_est = 2707120 | population_rank = [[List of United States cities by population|3rd US]] | population_density_sq_mi = 11,892.4<!-- 2011 population_est / area_land_sq_mi --> | population_urban = 8711000 | population_density_urban_sq_mi = auto | population_metro = 9461105 | population_density_metro_sq_mi = auto | population_demonym = Chicagoan | timezone = [[Central Standard Time|CST]] | utc_offset = −06:00 | timezone_DST = [[Central Daylight Time|CDT]] | utc_offset_DST = −05:00 | area_code_type = [[North American Numbering Plan|Area codes]] | area_codes = [[Area code 312|312]], [[Area code 773|773]], [[Area code 872|872]] | blank_name = [[Federal Information Processing Standards|FIPS]] code | blank_info = {{FIPS|17|14000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|423587}}, {{GNIS 4|428803}} | website = {{URL|www.cityofchicago.org}} | footnotes = <ref name="GNIS">{{Cite gnis|428803|City of Chicago|April 12, 2011}}</ref> }} <syntaxhighlight lang="wikitext" style="overflow:auto; white-space: pre-wrap;"> <!-- NOTE: This differs from the actual Chicago infobox in order to provide examples. --> {{Infobox settlement | name = Chicago | settlement_type = [[City (Illinois)|City]] | image_skyline = Chicago montage.jpg | imagesize = 275px <!--default is 250px--> | image_caption = Clockwise from top: [[Downtown Chicago]], the [[Chicago Theatre]], the [[Chicago 'L']], [[Navy Pier]], [[Millennium Park]], the [[Field Museum]], and the [[Willis Tower|Willis (formerly Sears) Tower]] | image_flag = Flag of Chicago, Illinois.svg | image_seal = | etymology = {{langx|mia|shikaakwa}} ("wild onion" or "wild garlic") | nickname = [[Origin of Chicago's "Windy City" nickname|The Windy City]], The Second City, Chi-Town, Chi-City, Hog Butcher for the World, City of the Big Shoulders, The City That Works, and others found at [[List of nicknames for Chicago]] | motto = {{langx|la|Urbs in Horto}} (City in a Garden), Make Big Plans (Make No Small Plans), I Will | image_map = US-IL-Chicago.png | map_caption = Location in the [[Chicago metropolitan area]] and Illinois | pushpin_map = USA | pushpin_map_caption = Location in the United States | mapframe = yes | mapframe-zoom = 8 | mapframe-stroke-width = 1 | mapframe-shape-fill = #0096ff | mapframe-marker = building-alt1 | coordinates = {{coord|41|50|15|N|87|40|55|W}} | coordinates_footnotes = <ref name="USCB Gazetteer 2010"/> | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = [[Illinois]] | subdivision_type2 = [[List of counties in Illinois|Counties]] | subdivision_name2 = [[Cook County, Illinois|Cook]], [[DuPage County, Illinois|DuPage]] | established_title = Settled | established_date = 1770s | established_title2 = [[Municipal corporation|Incorporated]] | established_date2 = March 4, 1837 | founder = | named_for = {{langx|mia|shikaakwa}}<br /> ("Wild onion") | government_type = [[Mayor–council government|Mayor–council]] | leader_title = [[Mayor of Chicago|Mayor]] | leader_name = [[Rahm Emanuel]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[City council|Council]] | leader_name1 = [[Chicago City Council]] | unit_pref = Imperial | area_footnotes = <ref name="USCB Gazetteer 2010">{{cite web | url = https://www.census.gov/geo/www/gazetteer/files/Gaz_places_national.txt | title = 2010 United States Census Gazetteer for Places: January 1, 2010 | format = text | work = 2010 United States Census | publisher = [[United States Census Bureau]] | date = April 2010 | access-date = August 1, 2012}}</ref> | area_total_sq_mi = 234.114 | area_land_sq_mi = 227.635 | area_water_sq_mi = 6.479 | area_water_percent = 3 | area_urban_sq_mi = 2123 | area_metro_sq_mi = 10874 | elevation_footnotes = <ref name="GNIS"/> | elevation_ft = 594 | elevation_m = 181 | population_footnotes = <ref name="USCB PopEstCities 2011">{{cite web | url = https://www.census.gov/popest/data/cities/totals/2011/tables/SUB-EST2011-01.csv | title = Annual Estimates of the Resident Population for Incorporated Places Over 50,000, Ranked by July 1, 2011 Population | format = [[comma-separated values|CSV]] | work = 2011 Population Estimates | publisher = [[United States Census Bureau]], Population Division | date = June 2012 | access-date = August 1, 2012}}</ref><ref name="USCB Metro 2010">{{cite web | url=https://www.census.gov/prod/cen2010/briefs/c2010br-01.pdf | title = Population Change for the Ten Most Populous and Fastest Growing Metropolitan Statiscal Areas: 2000 to 2010 | date = March 2011 | publisher = [[U.S. Census Bureau]] | page = 6 |access-date = April 12, 2011}}</ref> | population_as_of = [[2010 United States census|2010]] | population_total = 2695598 | pop_est_footnotes = | pop_est_as_of = 2011 | population_est = 2707120 | population_rank = [[List of United States cities by population|3rd US]] | population_density_sq_mi = 11,892.4<!-- 2011 population_est / area_land_sq_mi --> | population_urban = 8711000 | population_density_urban_sq_mi = auto | population_metro = 9461105 | population_density_metro_sq_mi = auto | population_demonym = Chicagoan | timezone = [[Central Standard Time|CST]] | utc_offset = −06:00 | timezone_DST = [[Central Daylight Time|CDT]] | utc_offset_DST = −05:00 | area_code_type = [[North American Numbering Plan|Area codes]] | area_codes = [[Area code 312|312]], [[Area code 773|773]], [[Area code 872|872]] | blank_name = [[Federal Information Processing Standards|FIPS]] code | blank_info = {{FIPS|17|14000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|423587}}, {{GNIS 4|428803}} | website = {{URL|www.cityofchicago.org}} | footnotes = <ref name="GNIS">{{Cite gnis|428803|City of Chicago|April 12, 2011}}</ref> }} </syntaxhighlight> '''References''' {{reflist}} {{clear}} ---- ;Example 2: {{Infobox settlement | name = Detroit | settlement_type = [[City (Michigan)|City]] | image_skyline = Detroit Montage.jpg | imagesize = 290px | image_caption = Images from top to bottom, left to right: [[Downtown Detroit]] skyline, [[Spirit of Detroit]], [[Greektown Historic District|Greektown]], [[Ambassador Bridge]], [[Michigan Soldiers' and Sailors' Monument]], [[Fox Theatre (Detroit)|Fox Theatre]], and [[Comerica Park]]. | image_flag = Flag of Detroit.svg | image_seal = Seal of Detroit.svg | etymology = {{langx|fr|détroit}} ([[strait]]) | nickname = The Motor City, Motown, Renaissance City, The D, Hockeytown, The Automotive Capital of the World, Rock City, The 313 | motto = ''Speramus Meliora; Resurget Cineribus''<br />([[Latin]]: We Hope For Better Things; It Shall Rise From the Ashes) | image_map = Wayne County Michigan Incorporated and Unincorporated areas Detroit highlighted.svg | mapsize = 250x200px | map_caption = Location within [[Wayne County, Michigan|Wayne County]] and the state of [[Michigan]] | pushpin_map = USA | pushpin_map_caption = Location within the [[contiguous United States]] | mapframe = yes | mapframe-stroke-width = 1 | mapframe-marker = city | mapframe-zoom = 9 | mapframe-wikidata = yes | mapframe-id = Q12439 | coordinates = {{coord|42|19|53|N|83|2|45|W}} | coordinates_footnotes = | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = [[Michigan]] | subdivision_type2 = [[List of counties in Michigan|County]] | subdivision_name2 = [[Wayne County, Michigan|Wayne]] | established_title = Founded | established_date = 1701 | established_title2 = Incorporated | established_date2 = 1806 | government_footnotes = <!-- for references: use<ref> tags --> | government_type = [[Mayor–council government|Mayor–council]] | leader_title = [[List of mayors of Detroit|Mayor]] | leader_name = [[Mike Duggan]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[Detroit City Council|City Council]] | leader_name1 = {{collapsible list|bullets=yes | title = Members | 1 = [[Charles Pugh]] – Council President | 2 = [[Gary Brown (Detroit politician)|Gary Brown]] – Council President Pro-Tem | 3 = [[JoAnn Watson]] | 4 = [[Kenneth Cockrel, Jr.]] | 5 = [[Saunteel Jenkins]] | 6 = [[Andre Spivey]] | 7 = [[James Tate (Detroit politician)|James Tate]] | 8 = [[Brenda Jones (Detroit politician)|Brenda Jones]] | 9 = [[Kwame Kenyatta]] }} | unit_pref = Imperial | area_footnotes = | area_total_sq_mi = 142.87 | area_total_km2 = 370.03 | area_land_sq_mi = 138.75 | area_land_km2 = 359.36 | area_water_sq_mi = 4.12 | area_water_km2 = 10.67 | area_urban_sq_mi = 1295 | area_metro_sq_mi = 3913 | elevation_footnotes = | elevation_ft = 600 | population_footnotes = | population_as_of = 2011 | population_total = 706585 | population_rank = [[List of United States cities by population|18th in U.S.]] | population_urban = 3863924 | population_metro = 4285832 (US: [[List of United States metropolitan statistical areas|13th]]) | population_blank1_title = [[Combined statistical area|CSA]] | population_blank1 = 5207434 (US: [[List of United States combined statistical areas|11th]]) | population_density_sq_mi= {{#expr:713777/138.8 round 0}} | population_demonym = Detroiter | population_note = | timezone = [[Eastern Time Zone (North America)|EST]] | utc_offset = −5 | timezone_DST = [[Eastern Daylight Time|EDT]] | utc_offset_DST = −4 | postal_code_type = | postal_code = | area_code = [[Area code 313|313]] | blank_name = [[Federal Information Processing Standards|FIPS code]] | blank_info = {{FIPS|26|22000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|1617959}}, {{GNIS 4|1626181}} | website = [http://www.detroitmi.gov/ DetroitMI.gov] | footnotes = }} <syntaxhighlight lang="wikitext" style="overflow:auto; white-space: pre-wrap;"> {{Infobox settlement | name = Detroit | settlement_type = [[City (Michigan)|City]] | image_skyline = Detroit Montage.jpg | imagesize = 290px | image_caption = Images from top to bottom, left to right: [[Downtown Detroit]] skyline, [[Spirit of Detroit]], [[Greektown Historic District|Greektown]], [[Ambassador Bridge]], [[Michigan Soldiers' and Sailors' Monument]], [[Fox Theatre (Detroit)|Fox Theatre]], and [[Comerica Park]]. | image_flag = Flag of Detroit, Michigan.svg | image_seal = Seal of Detroit, Michigan.svg | etymology = {{langx|fr|détroit}} ([[strait]]) | nickname = The Motor City, Motown, Renaissance City, The D, Hockeytown, The Automotive Capital of the World, Rock City, The 313 | motto = ''Speramus Meliora; Resurget Cineribus''<br />([[Latin]]: We Hope For Better Things; It Shall Rise From the Ashes) | image_map = Wayne County Michigan Incorporated and Unincorporated areas Detroit highlighted.svg | mapsize = 250x200px | map_caption = Location within [[Wayne County, Michigan|Wayne County]] and the state of [[Michigan]] | pushpin_map = USA | pushpin_map_caption = Location within the [[contiguous United States]] | mapframe = yes | mapframe-stroke-width = 1 | mapframe-marker = city | mapframe-zoom = 9 | coordinates = {{coord|42|19|53|N|83|2|45|W}} | coordinates_footnotes = | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = Michigan | subdivision_type2 = [[List of counties in Michigan|County]] | subdivision_name2 = [[Wayne County, Michigan|Wayne]] | established_title = Founded | established_date = 1701 | established_title2 = Incorporated | established_date2 = 1806 | government_footnotes = <!-- for references: use<ref> tags --> | government_type = [[Mayor-council government|Mayor-Council]] | leader_title = [[List of mayors of Detroit|Mayor]] | leader_name = [[Mike Duggan]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[Detroit City Council|City Council]] | leader_name1 = {{collapsible list|bullets=yes | title = Members | 1 = [[Charles Pugh]] – Council President | 2 = [[Gary Brown (Detroit politician)|Gary Brown]] – Council President Pro-Tem | 3 = [[JoAnn Watson]] | 4 = [[Kenneth Cockrel, Jr.]] | 5 = [[Saunteel Jenkins]] | 6 = [[Andre Spivey]] | 7 = [[James Tate (Detroit politician)|James Tate]] | 8 = [[Brenda Jones (Detroit politician)|Brenda Jones]] | 9 = [[Kwame Kenyatta]] }} | unit_pref = Imperial | area_footnotes = | area_total_sq_mi = 142.87 | area_total_km2 = 370.03 | area_land_sq_mi = 138.75 | area_land_km2 = 359.36 | area_water_sq_mi = 4.12 | area_water_km2 = 10.67 | area_urban_sq_mi = 1295 | area_metro_sq_mi = 3913 | elevation_footnotes = | elevation_ft = 600 | population_footnotes = | population_as_of = 2011 | population_total = 706585 | population_rank = [[List of United States cities by population|18th in U.S.]] | population_urban = 3863924 | population_metro = 4285832 (US: [[List of United States metropolitan statistical areas|13th]]) | population_blank1_title = [[Combined statistical area|CSA]] | population_blank1 = 5207434 (US: [[List of United States combined statistical areas|11th]]) | population_density_sq_mi= {{#expr:713777/138.8 round 0}} | population_demonym = Detroiter | population_note = | timezone = [[Eastern Time Zone (North America)|EST]] | utc_offset = −5 | timezone_DST = [[Eastern Daylight Time|EDT]] | utc_offset_DST = −4 | postal_code_type = | postal_code = | area_code = [[Area code 313|313]] | blank_name = [[Federal Information Processing Standards|FIPS code]] | blank_info = {{FIPS|26|22000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|1617959}}, {{GNIS 4|1626181}} | website = [http://www.detroitmi.gov/ DetroitMI.gov] | footnotes = }} </syntaxhighlight> {{clear}} ==Supporting templates== The following is a list of sub-templates used by Infobox settlement. See the [{{fullurl:Special:PrefixIndex|prefix=Infobox+settlement%2F&namespace=10&hideredirects=1}} current list of all sub-templates] for documentation, sandboxes, testcases, etc. * {{tl|Infobox settlement/areadisp}} * {{tl|Infobox settlement/densdisp}} * {{tl|Infobox settlement/lengthdisp}} * {{tl|Infobox settlement/link}} ==Microformat== {{UF-hcard-geo}} == TemplateData == {{TemplateData header}} {{collapse top|title=TemplateData}} <templatedata> { "description": "Infobox for human settlements (cities, towns, villages, communities) as well as other administrative districts, counties, provinces, etc.", "format": "block", "params": { "name": { "label": "Common name", "description": "This is the usual name in English. If it's not specified, the infobox will use the 'official_name' as a title unless this too is missing, in which case the page name will be used.", "type": "string", "suggested": true }, "official_name": { "label": "Official name", "description": "The official name in English, if different from 'name'.", "type": "string", "suggested": true }, "native_name": { "label": "Native name", "description": "This will display under the name/official name.", "type": "string", "example": "Distrito Federal de México" }, "native_name_lang": { "label": "Native name language", "description": "Use ISO 639-1 code, e.g. 'fr' for French. If there is more than one native name in different languages, enter those names using {{lang}} instead.", "type": "string", "example": "zh" }, "other_name": { "label": "Other name", "description": "For places with other commonly used names like Bombay or Saigon.", "type": "string" }, "settlement_type": { "label": "Type of settlement", "description": "Any type can be entered, such as 'City', 'Town', 'Village', 'Hamlet', 'Municipality', 'Reservation', etc. If set, will be displayed under the names, provided either 'name' or 'official_name' is filled in. Might also be used as a label for total population/area (defaulting to 'City'), if needed to distinguish from 'Urban', 'Rural' or 'Metro' (if urban, rural or metro figures are not present, the label is 'Total' unless 'total_type' is set).", "type": "string", "aliases": [ "type" ] }, "translit_lang1": { "label": "Transliteration from language 1", "description": "Will place the entry before the word 'transliteration(s)'. Can be used to specify a particular language, like in Dêlêg, or one may just enter 'Other', like in Gaza's article.", "type": "string" }, "translit_lang1_type": { "label": "Transliteration type for language 1", "type": "line", "example": "[[Hanyu pinyin]]", "description": "The type of transliteration used for the first language." }, "translit_lang1_info": { "label": "Transliteration language 1 info", "description": "Parameters 'translit_lang2_info1' ... 'translit_lang2_info6' are also available, but not documented here.", "type": "string" }, "translit_lang2": { "label": "Transliteration language 2", "description": "Will place a second transliteration. See Dêlêg.", "type": "string" }, "image_skyline": { "label": "Image", "description": "Primary image representing the settlement. Commonly a photo of the settlement’s skyline.", "type": "wiki-file-name" }, "imagesize": { "label": "Image size", "description": "Can be used to tweak the size of 'image_skyline' up or down. This can be helpful if an editor wants to make the infobox wider. If used, 'px' must be specified; default size is 250px.", "type": "string" }, "image_alt": { "label": "Image alt text", "description": "Alt (hover) text for the image, used by visually impaired readers who cannot see the image.", "type": "string" }, "image_caption": { "label": "Image caption", "description": "Will place a caption under 'image_skyline' (if present).", "type": "content", "aliases": [ "caption" ] }, "image_flag": { "label": "Flag image", "description": "Used for a flag.", "type": "wiki-file-name" }, "flag_size": { "label": "Flag size", "description": "Can be used to tweak the size of 'image_flag' up or down from 100px as desired. If used, 'px' must be specified; default size is 100px.", "type": "string" }, "flag_alt": { "label": "Flag alt text", "description": "Alt text for the flag.", "type": "string" }, "flag_border": { "label": "Flag border?", "description": "Set to 'no' to remove the border from the flag.", "type": "boolean", "example": "no" }, "flag_link": { "label": "Flag link", "type": "string", "description": "Link to the flag." }, "image_seal": { "label": "Official seal image", "description": "An image of an official seal, if the place has one.", "type": "wiki-file-name" }, "seal_size": { "label": "Seal size", "description": "If used, 'px' must be specified; default size is 100px.", "type": "string" }, "seal_alt": { "label": "Seal alt text", "description": "Alt (hover) text for the seal.", "type": "string" }, "seal_link": { "label": "Seal link", "type": "string", "description": "Link to the seal." }, "seal_class": { "label": "Seal class", "description": "CSS class for the seal image", "type": "line", "suggestedvalues": [ "skin-invert" ] }, "image_shield": { "label": "Coat of arms/shield image", "description": "Can be used for a place with a coat of arms.", "type": "wiki-file-name" }, "shield_size": { "label": "Shield size", "description": "If used, 'px' must be specified; default size is 100px.", "type": "string", "example": "200px" }, "shield_alt": { "label": "Shield alt text", "description": "Alternate text for the shield.", "type": "string" }, "shield_link": { "label": "Shield link", "description": "Can be used if a wiki article if known but is not automatically linked by the template. See Coquitlam, British Columbia's infobox for an example.", "type": "string" }, "image_blank_emblem": { "label": "Blank emblem image", "description": "Can be used if a place has an official logo, crest, emblem, etc.", "type": "wiki-file-name" }, "blank_emblem_type": { "label": "Blank emblem type", "description": "Caption beneath 'image_blank_emblem' to specify what type of emblem it is.", "type": "string", "example": "Logo" }, "blank_emblem_size": { "label": "Blank emblem size", "description": "If used, 'px' must be specified; default size is 100px.", "type": "string", "example": "200px" }, "blank_emblem_alt": { "label": "Blank emblem alt text", "description": "Alt text for blank emblem.", "type": "string" }, "blank_emblem_link": { "label": "Blank emblem link", "type": "string", "description": "A link to the emblem of custom type." }, "nickname": { "label": "Nickname", "description": "Well-known nickname(s).", "type": "string", "example": "Sin City" }, "motto": { "label": "Motto", "description": "Will place the motto under the nicknames.", "type": "string" }, "anthem": { "label": "Anthem", "description": "Will place the anthem (song) under the nicknames.", "type": "string", "example": "[[Hatikvah]]" }, "image_map": { "label": "Map image", "description": "A map of the region, or a map with the region highlighted within a parent region.", "type": "wiki-file-name" }, "mapsize": { "label": "Map size", "description": "If used, 'px' must be specified; default is 250px.", "type": "string" }, "map_alt": { "label": "Map alt text", "description": "Alternate (hover) text for the map.", "type": "string" }, "map_caption": { "label": "Map caption", "type": "content", "description": "Caption for the map displayed." }, "image_map1": { "label": "Map 2 image", "description": "A secondary map image. The field 'image_map' must be filled in first. For an example, see [[Bloomsburg, Pennsylvania]].", "example": "File:Columbia County Pennsylvania Incorporated and Unincorporated areas Bloomsburg Highlighted.svg", "type": "wiki-file-name" }, "mapsize1": { "label": "Map 2 size", "description": "If used, 'px' must be specified; default is 250px.", "type": "string", "example": "300px" }, "map_alt1": { "label": "Map 2 alt text", "description": "Alt (hover) text for the second map.", "type": "string" }, "map_caption1": { "label": "Map 2 caption", "type": "content", "description": "Caption of the second map." }, "pushpin_map": { "label": "Pushpin map", "description": "The name of a location map (e.g. 'Indonesia' or 'Russia'). The coordinates information (from the coordinates parameter) positions a pushpin coordinate marker and label on the map automatically. For an example, see Padang, Indonesia.", "type": "string", "example": "Indonesia" }, "pushpin_mapsize": { "label": "Pushpin map size", "description": "Must be entered as only a number—do not use 'px'. The default value is 250.", "type": "number", "example": "200" }, "pushpin_map_alt": { "label": "Pushpin map alt text", "description": "Alt (hover) text for the pushpin map.", "type": "string" }, "pushpin_map_caption": { "label": "Pushpin map caption", "description": "Fill out if a different caption from 'map_caption' is desired.", "type": "string", "example": "Map showing Bloomsburg in Pennsylvania" }, "pushpin_label": { "label": "Pushpin label", "type": "line", "example": "Bloomsburg", "description": "Label of the pushpin." }, "pushpin_label_position": { "label": "Pushpin label position", "description": "The position of the label on the pushpin map relative to the pushpin coordinate marker. Valid options are 'left', 'right', 'top', 'bottom', and 'none'. If this field is not specified, the default value is 'right'.", "type": "string", "example": "left", "default": "right" }, "pushpin_outside": { "label": "Pushpin outside?", "type": "line" }, "pushpin_relief": { "label": "Pushpin relief", "description": "Set this to 'y' or any non-blank value to use an alternative relief map provided by the selected location map (if a relief map is available).", "type": "string", "example": "y" }, "pushpin_image": { "label": "Pushpin image", "type": "wiki-file-name", "description": "Image to use for the pushpin." }, "pushpin_overlay": { "label": "Pushpin overlay", "description": "Can be used to specify an image to be superimposed on the regular pushpin map.", "type": "wiki-file-name" }, "coordinates": { "label": "Coordinates", "description": "Latitude and longitude. Use {{Coord}}. See the documentation for {{Coord}} for more details on usage.", "type": "wiki-template-name", "example": "{{coord|41|50|15|N|87|40|55|W}}" }, "coor_pinpoint": { "label": "Coordinate pinpoint", "description": "If needed, to specify more exactly where (or what) coordinates are given (e.g. 'Town Hall') or a specific place in a larger area (e.g. a city in a county). Example: Masovian Voivodeship.", "type": "string" }, "coordinates_footnotes": { "label": "Coordinates footnotes", "description": "Reference(s) for coordinates. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "subdivision_type": { "label": "Subdivision type 1", "description": "Almost always 'Country'.", "type": "string", "example": "Country", "suggestedvalues": [ "Country" ] }, "subdivision_name": { "label": "Subdivision name 1", "description": "Depends on 'subdivision_type'. Use the name in text form, e.g., 'United States'. Per MOS:INFOBOXFLAG, flag icons or flag templates may be used in this field.", "type": "string" }, "subdivision_type1": { "label": "Subdivision type 2", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type2": { "label": "Subdivision type 3", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type3": { "label": "Subdivision type 4", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type4": { "label": "Subdivision type 5", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type5": { "label": "Subdivision type 6", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type6": { "label": "Subdivision type 7", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_name1": { "label": "Subdivision name 2", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Connecticut]]" }, "subdivision_name2": { "label": "Subdivision name 3", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Florida]]" }, "subdivision_name3": { "label": "Subdivision name 4", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Utah]]" }, "subdivision_name4": { "label": "Subdivision name 5", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[California]]" }, "subdivision_name5": { "label": "Subdivision name 6", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Vermont]]" }, "subdivision_name6": { "label": "Subdivision name 7", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Wyoming]]" }, "established_title": { "label": "First establishment event", "description": "Title of the first establishment event.", "type": "string", "example": "First settled" }, "established_date": { "label": "First establishment date", "type": "date", "description": "Date of the first establishment event." }, "established_title1": { "label": "Second establishment event", "description": "Title of the second establishment event.", "type": "string", "example": "Incorporated as a town" }, "established_date1": { "label": "Second establishment date", "type": "date", "description": "Date of the second establishment event." }, "established_title2": { "label": "Third establishment event", "description": "Title of the third establishment event.", "type": "string", "example": "Incorporated as a city" }, "established_date2": { "label": "Third establishment date", "type": "date", "description": "Date of the third establishment event." }, "established_title3": { "label": "Fourth establishment event", "type": "string", "description": "Title of the fourth establishment event.", "example": "Incorporated as a county" }, "established_date3": { "label": "Fourth establishment date", "type": "date", "description": "Date of the fourth establishment event." }, "extinct_title": { "label": "Extinction event title", "description": "For when a settlement ceases to exist.", "type": "string", "example": "[[Sack of Rome]]" }, "extinct_date": { "label": "Extinction date", "type": "string", "description": "Date the settlement ceased to exist." }, "founder": { "label": "Founder", "description": "Who the settlement was founded by.", "type": "string" }, "named_for": { "label": "Named for", "description": "The source of the name of the settlement (a person, a place, et cetera).", "type": "string", "example": "[[Ho Chi Minh]]" }, "seat_type": { "label": "Seat of government type", "description": "The label for the seat of government (defaults to 'Seat').", "type": "string", "default": "Seat" }, "seat": { "label": "Seat of government", "description": "The seat of government.", "type": "string", "example": "[[White House]]" }, "parts_type": { "label": "Type of smaller subdivisions", "description": "The label for the smaller subdivisions (defaults to 'Boroughs').", "type": "string", "default": "Boroughs" }, "parts_style": { "label": "Parts style", "description": "Set to 'list' to display as a collapsible list, 'coll' as a collapsed list, or 'para' to use paragraph style. Default is 'list' for up to 5 items, otherwise 'coll'.", "type": "string", "example": "list" }, "parts": { "label": "Smaller subdivisions", "description": "Text or header of the list of smaller subdivisions.", "type": "string" }, "p1": { "label": "Smaller subdivision 1", "description": "The smaller subdivisions to be listed. Parameters 'p1' to 'p50' can also be used.", "type": "string" }, "government_footnotes": { "label": "Government footnotes", "description": "Reference(s) for government. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "content" }, "government_type": { "label": "Government type", "description": "The place's type of government.", "type": "string", "example": "[[Mayor–council government]]" }, "governing_body": { "label": "Governing body", "description": "Name of the place's governing body.", "type": "wiki-page-name", "example": "Legislative Council of Hong Kong" }, "leader_party": { "label": "Leader political party", "description": "Political party of the place's leader.", "type": "string" }, "leader_title": { "label": "Leader title", "description": "First title of the place's leader, e.g. 'Mayor'.", "type": "string", "example": "[[Governor (United States)|Governor]]" }, "leader_name": { "label": "Leader's name", "description": "Name of the place's leader.", "type": "string", "example": "[[Jay Inslee]]" }, "leader_title1": { "label": "Leader title 1", "description": "First title of the place's leader, e.g. 'Mayor'.", "type": "string", "example": "Mayor" }, "leader_name1": { "label": "Leader name 1", "description": "Additional names for leaders. Parameters 'leader_name1' .. 'leader_name4' are available. For long lists, use {{Collapsible list}}.", "type": "string" }, "total_type": { "label": "Total type", "description": "Specifies what total area and population figure refer to, e.g. 'Greater London'. This overrides other labels for total population/area. To make the total area and population display on the same line as the words ''Area'' and ''Population'', with no ''Total'' or similar label, set the value of this parameter to '&nbsp;'.", "type": "string" }, "unit_pref": { "label": "Unit preference", "description": "To change the unit order to 'imperial (metric)', enter 'imperial'. The default display style is 'metric (imperial)'. However, the template will swap the order automatically if the 'subdivision_name' equals some variation of the US or the UK. For the Middle East, a unit preference of dunam can be entered (only affects total area). All values must be entered in a raw format (no commas, spaces, or unit symbols). The template will format them automatically.", "type": "string", "example": "imperial" }, "area_footnotes": { "label": "Area footnotes", "description": "Reference(s) for area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "dunam_link": { "label": "Link dunams?", "description": "If dunams are used, the default is to link the word ''dunams'' in the total area section. This can be changed by setting 'dunam_link' to another measure (e.g. 'dunam_link=water'). Linking can also be turned off by setting the parameter to something else (e.g., 'dunam_link=none' or 'dunam_link=off').", "type": "boolean", "example": "none" }, "area_total_km2": { "label": "Total area (km2)", "description": "Total area in square kilometers (symbol: km²). Value must be entered in raw format (no commas or spaces). Auto-converted to display square miles if 'area_total_sq_mi' is empty.", "type": "number" }, "area_total_sq_mi": { "label": "Total area (sq. mi)", "description": "Total area in square miles (symbol: sq mi). Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers if 'area_total_km2' is empty.", "type": "number" }, "area_total_ha": { "label": "Total area (hectares)", "description": "Total area in hectares (symbol: ha). Value must be entered in raw format (no commas or spaces). Auto-converted to display acres if 'area_total_acre' is empty.", "type": "number" }, "area_total_acre": { "label": "Total area (acres)", "description": "Total area in acres. Value must be entered in raw format (no commas or spaces). Auto-converted to display hectares if 'area_total_ha' is empty.", "type": "number" }, "area_total_dunam": { "label": "Total area (dunams)", "description": "Total area in dunams, which is wikilinked. Used in Middle Eastern places like Israel, Gaza, and the West Bank. Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers or hectares and square miles or acres if 'area_total_km2', 'area_total_ha', 'area_total_sq_mi', and 'area_total_acre' are empty. Examples: Gaza and Ramallah.", "type": "number" }, "area_land_km2": { "label": "Land area (sq. km)", "description": "Land area in square kilometers (symbol: km²). Value must be entered in raw format (no commas or spaces). Auto-converted to display square miles if 'area_land_sq_mi' is empty.", "type": "number" }, "area_land_sq_mi": { "label": "Land area (sq. mi)", "description": "Land area in square miles (symbol: sq mi). Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers if 'area_land_km2' is empty.", "type": "number" }, "area_land_ha": { "label": "Land area (hectares)", "description": "The place's land area in hectares.", "type": "number" }, "area_land_dunam": { "label": "Land area (dunams)", "description": "The place's land area in dunams.", "type": "number" }, "area_land_acre": { "label": "Land area (acres)", "description": "The place's land area in acres.", "type": "number" }, "area_water_km2": { "label": "Water area (sq. km)", "description": "Water area in square kilometers (symbol: km²). Value must be entered in raw format (no commas or spaces). Auto-converted to display square miles if 'area_water_sq_mi' is empty.", "type": "number" }, "area_water_sq_mi": { "label": "Water area (sq. mi)", "description": "Water area in square miles (symbol: sq mi). Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers if 'area_water_km2' is empty.", "type": "number" }, "area_water_ha": { "label": "Water area (hectares)", "description": "The place's water area in hectares.", "type": "number" }, "area_water_dunam": { "label": "Water area (dunams)", "description": "The place's water area in dunams.", "type": "number" }, "area_water_acre": { "label": "Water area (acres)", "description": "The place's water area in acres.", "type": "number" }, "area_water_percent": { "label": "Percent water area", "description": "Percent of water without the %.", "type": "number", "example": "21" }, "area_urban_km2": { "label": "Urban area (sq. km)", "type": "number", "description": "Area of the place's urban area in square kilometers." }, "area_urban_sq_mi": { "label": "Urban area (sq. mi)", "type": "number", "description": "Area of the place's urban area in square miles." }, "area_urban_ha": { "label": "Urban area (hectares)", "description": "Area of the place's urban area in hectares.", "type": "number" }, "area_urban_dunam": { "label": "Urban area (dunams)", "description": "Area of the place's urban area in dunams.", "type": "number" }, "area_urban_acre": { "label": "Urban area (acres)", "description": "Area of the place's urban area in acres.", "type": "number" }, "area_urban_footnotes": { "label": "Urban area footnotes", "description": "Reference(s) for the urban area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "area_rural_km2": { "label": "Rural area (sq. km)", "type": "number", "description": "Area of the place's rural area in square kilometers." }, "area_rural_sq_mi": { "label": "Rural area (sq. mi)", "type": "number", "description": "Area of the place's rural area in square miles." }, "area_rural_ha": { "label": "Rural area (hectares)", "description": "Area of the place's rural area in hectares.", "type": "number" }, "area_rural_dunam": { "label": "Rural area (dunams)", "description": "Area of the place's rural area in dunams.", "type": "number" }, "area_rural_acre": { "label": "Rural area (acres)", "description": "Area of the place's rural area in acres.", "type": "number" }, "area_rural_footnotes": { "label": "Rural area footnotes", "description": "Reference(s) for the urban area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "area_metro_km2": { "label": "Metropolitan area (sq. km)", "type": "number", "description": "Area of the place's metropolitan area in square kilometers." }, "area_metro_sq_mi": { "label": "Metropolitan area (sq. mi)", "type": "number", "description": "Area of the place's metropolitan area in square miles." }, "area_metro_ha": { "label": "Metropolitan area (hectares)", "description": "Area of the place's metropolitan area in hectares.", "type": "number" }, "area_metro_dunam": { "label": "Metropolitan area (dunams)", "description": "Area of the place's metropolitan area in dunams.", "type": "number" }, "area_metro_acre": { "label": "Metropolitan area (acres)", "description": "Area of the place's metropolitan area in acres.", "type": "number" }, "area_metro_footnotes": { "label": "Metropolitan area footnotes", "description": "Reference(s) for the urban area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "area_rank": { "label": "Area rank", "description": "The settlement's area, as ranked within its parent sub-division.", "type": "string" }, "area_blank1_title": { "label": "First blank area section title", "description": "Title of the place's first custom area section.", "type": "string", "example": "see [[London]]" }, "area_blank1_km2": { "label": "Area blank 1 (sq. km)", "type": "number", "description": "Area of the place's first blank area section in square kilometers." }, "area_blank1_sq_mi": { "label": "Area blank 1 (sq. mi)", "type": "number", "description": "Area of the place's first blank area section in square miles." }, "area_blank1_ha": { "label": "Area blank 1 (hectares)", "description": "Area of the place's first blank area section in hectares.", "type": "number" }, "area_blank1_dunam": { "label": "Area blank 1 (dunams)", "description": "Area of the place's first blank area section in dunams.", "type": "number" }, "area_blank1_acre": { "label": "Area blank 1 (acres)", "description": "Area of the place's first blank area section in acres.", "type": "number" }, "area_blank2_title": { "label": "Second blank area section title", "type": "string", "description": "Title of the place's second custom area section." }, "area_blank2_km2": { "label": "Area blank 2 (sq. km)", "type": "number", "description": "Area of the place's second blank area section in square kilometers." }, "area_blank2_sq_mi": { "label": "Area blank 2 (sq. mi)", "type": "number", "description": "Area of the place's second blank area section in square miles." }, "area_blank2_ha": { "label": "Area blank 2 (hectares)", "description": "Area of the place's third blank area section in hectares.", "type": "number" }, "area_blank2_dunam": { "label": "Area blank 2 (dunams)", "description": "Area of the place's third blank area section in dunams.", "type": "number" }, "area_blank2_acre": { "label": "Area blank 2 (acres)", "description": "Area of the place's third blank area section in acres.", "type": "number" }, "area_note": { "label": "Area footnotes", "description": "A place for additional information such as the name of the source.", "type": "content", "example": "<ref name=\"CenPopGazetteer2016\">{{cite web|title=2016 U.S. Gazetteer Files|url=https://www2.census.gov/geo/docs/maps-data/data/gazetteer/2016_Gazetteer/2016_gaz_place_42.txt|publisher=United States Census Bureau|access-date=August 13, 2017}}</ref>" }, "dimensions_footnotes": { "label": "Dimensions footnotes", "description": "Reference(s) for dimensions. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "content" }, "length_km": { "label": "Length in km", "description": "Raw number entered in kilometers. Will automatically convert to display length in miles if 'length_mi' is empty.", "type": "number" }, "length_mi": { "label": "Length in miles", "description": "Raw number entered in miles. Will automatically convert to display length in kilometers if 'length_km' is empty.", "type": "number" }, "width_km": { "label": "Width in kilometers", "description": "Raw number entered in kilometers. Will automatically convert to display width in miles if 'length_mi' is empty.", "type": "number" }, "width_mi": { "label": "Width in miles", "description": "Raw number entered in miles. Will automatically convert to display width in kilometers if 'length_km' is empty.", "type": "number" }, "elevation_m": { "label": "Elevation in meters", "description": "Raw number entered in meters. Will automatically convert to display elevation in feet if 'elevation_ft' is empty. However, if a range in elevation (i.e. 5–50&nbsp;m) is desired, use the 'max' and 'min' fields below.", "type": "number" }, "elevation_ft": { "label": "Elevation in feet", "description": "Raw number, entered in feet. Will automatically convert to display the average elevation in meters if 'elevation_m' field is empty. However, if a range in elevation (i.e. 50–500&nbsp;ft) is desired, use the 'max' and 'min' fields below.", "type": "number" }, "elevation_footnotes": { "label": "Elevation footnotes", "description": "Reference(s) for elevation. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "elevation_min_point": { "type": "line", "label": "Point of min elevation", "description": "The name of the point of lowest elevation in the place.", "example": "[[Death Valley]]" }, "elevation_min_m": { "label": "Minimum elevation (m)", "type": "number", "description": "The minimum elevation in meters." }, "elevation_min_ft": { "label": "Minimum elevation (ft)", "type": "number", "description": "The minimum elevation in feet." }, "elevation_min_rank": { "type": "line", "label": "Minimum elevation rank", "description": "The point of minimum elevation's rank in the parent region.", "example": "1st" }, "elevation_min_footnotes": { "label": "Min elevation footnotes", "type": "content", "description": "Footnotes or citations for the minimum elevation." }, "elevation_max_point": { "type": "line", "label": "Point of max elevation", "description": "The name of the point of highest elevation in the place.", "example": "[[Mount Everest]]" }, "elevation_max_m": { "label": "Maximum elevation (m)", "type": "number", "description": "The maximum elevation in meters." }, "elevation_max_ft": { "label": "Maximum elevation (ft)", "type": "number", "description": "The maximum elevation in feet." }, "elevation_max_rank": { "type": "line", "label": "Maximum elevation rank", "description": "The point of maximum elevation's rank in the parent region.", "example": "2nd" }, "elevation_max_footnotes": { "label": "Max elevation footnotes", "type": "content", "description": "Footnotes or citations for the maximum elevation." }, "population_total": { "label": "Population total", "description": "Actual population (see below for estimates) preferably consisting of digits only (without any commas).", "type": "number" }, "population_as_of": { "label": "Population total figure's year", "description": "The year for the population total (usually a census year).", "type": "number" }, "population_footnotes": { "label": "Population footnotes", "description": "Reference(s) for population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content" }, "population_density_km2": { "label": "Population density (per square km)", "type": "string", "description": "The place's population density per square kilometer.", "example": "auto" }, "population_density_sq_mi": { "label": "Population density (per square mi)", "type": "string", "description": "The place's population density per square mile.", "example": "auto" }, "population_est": { "label": "Population estimate", "description": "Population estimate, e.g. for growth projections 4 years after a census.", "type": "number", "example": "331000000" }, "pop_est_as_of": { "label": "Population estimate figure as of", "description": "The year, or the month and year, of the population estimate.", "type": "date" }, "pop_est_footnotes": { "label": "Population estimate footnotes", "description": "Reference(s) for population estimate; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content", "example": "<ref name=\"USCensusEst2016\"/>" }, "population_urban": { "label": "Urban population", "type": "number", "description": "The place's urban population." }, "population_urban_footnotes": { "label": "Urban population footnotes", "description": "Reference(s) for urban population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content" }, "population_density_urban_km2": { "label": "Urban population density (per square km)", "type": "string", "description": "The place's urban population density per square kilometer.", "example": "auto" }, "population_density_urban_sq_mi": { "label": "Urban population density (per square mi)", "type": "string", "description": "The place's urban population density per square mile.", "example": "auto" }, "population_rural": { "label": "Rural population", "type": "number", "description": "The place's rural population." }, "population_rural_footnotes": { "label": "Rural population footnotes", "description": "Reference(s) for rural population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content" }, "population_density_rural_km2": { "label": "Rural population density per sq. km", "type": "line", "description": "The place's rural population density per square kilometer.", "example": "auto" }, "population_density_rural_sq_mi": { "label": "Rural population density per sq. mi", "type": "line", "description": "The place's rural population density per square mile.", "example": "auto" }, "population_metro": { "label": "Metropolitan area population", "type": "number", "description": "Population of the place's metropolitan area." }, "population_metro_footnotes": { "label": "Metropolitan area population footnotes", "description": "Reference(s) for metro population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "string" }, "population_density_metro_km2": { "label": "Metropolitan population density per sq. km", "type": "number", "description": "The place's metropolitan area's population density per square kilometer.", "example": "auto" }, "population_density_metro_sq_mi": { "label": "Metropolitan population density per sq. mi", "type": "number", "description": "The place's metropolitan area's population density per square mile.", "example": "auto" }, "population_rank": { "label": "Population rank", "description": "The settlement's population, as ranked within its parent sub-division.", "type": "string" }, "population_density_rank": { "label": "Population density rank", "description": "The settlement's population density, as ranked within its parent sub-division.", "type": "string" }, "population_blank1_title": { "label": "Custom population type 1 title", "description": "Can be used for estimates. For an example, see Windsor, Ontario.", "type": "string", "example": "See: [[Windsor, Ontario]]" }, "population_blank1": { "label": "Custom population type 1", "description": "The population value for 'blank1_title'.", "type": "string" }, "population_density_blank1_km2": { "label": "Custom population type 1 density per sq. km", "type": "string", "description": "Population density per square kilometer, according to the 1st custom population type." }, "population_density_blank1_sq_mi": { "label": "Custom population type 1 density per sq. mi", "type": "string", "description": "Population density per square mile, according to the 1st custom population type." }, "population_blank2_title": { "label": "Custom population type 2 title", "description": "Can be used for estimates. For an example, see Windsor, Ontario.", "type": "string", "example": "See: [[Windsor, Ontario]]" }, "population_blank2": { "label": "Custom population type 2", "description": "The population value for 'blank2_title'.", "type": "string" }, "population_density_blank2_km2": { "label": "Custom population type 2 density per sq. km", "type": "string", "description": "Population density per square kilometer, according to the 2nd custom population type." }, "population_density_blank2_sq_mi": { "label": "Custom population type 2 density per sq. mi", "type": "string", "description": "Population density per square mile, according to the 2nd custom population type." }, "population_demonym": { "label": "Demonym", "description": "A demonym or gentilic is a word that denotes the members of a people or the inhabitants of a place. For example, a citizen in Liverpool is known as a Liverpudlian.", "type": "line", "example": "Liverpudlian" }, "population_note": { "label": "Population note", "description": "A place for additional information such as the name of the source. See Windsor, Ontario, for an example.", "type": "content" }, "demographics_type1": { "label": "Demographics type 1", "description": "A sub-section header.", "type": "string", "example": "Ethnicities" }, "demographics1_footnotes": { "label": "Demographics section 1 footnotes", "description": "Reference(s) for demographics section 1. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "content" }, "demographics1_title1": { "label": "Demographics section 1 title 1", "description": "Titles related to demographics_type1. For example: 'White', 'Black', 'Hispanic'... Additional rows 'demographics1_title1' to 'demographics1_title5' are also available.", "type": "string" }, "demographics_type2": { "label": "Demographics type 2", "description": "A second sub-section header.", "type": "line", "example": "Languages" }, "demographics2_footnotes": { "label": "Demographics section 2 footnotes", "description": "Reference(s) for demographics section 2. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "demographics2_title1": { "label": "Demographics section 2 title 1", "description": "Titles related to 'demographics_type1'. For example: 'English', 'French', 'Arabic'... Additional rows 'demographics2_title2' to 'demographics1_title5' are also available.", "type": "string" }, "demographics2_info1": { "label": "Demographics section 2 info 1", "description": "Information related to the titles. For example: '50%', '25%', '10%'... Additional rows 'demographics2_info2' to 'demographics2_info5' are also available.", "type": "content" }, "timezone1": { "label": "Timezone 1", "type": "string", "description": "The place's primary time-zone. Use 'timezone' or 'timezone1', but not both.", "example": "[[Eastern Standard Time]]", "aliases": [ "timezone" ] }, "utc_offset": { "label": "UTC offset", "type": "string", "description": "The place's time-zone's offset from UTC.", "example": "+8" }, "timezone_DST": { "label": "Timezone during DST", "type": "string", "description": "The place's time-zone during daylight savings time, if applicable.", "example": "[[Eastern Daylight Time]]" }, "utc_offset_DST": { "label": "UTC offset during DST", "type": "string", "description": "The place's time-zone's UTC offset during daylight savings time, if applicable.", "example": "+9" }, "utc_offset1": { "label": "UTC offset 1", "type": "string", "description": "The place's primary time-zone's offset from UTC.", "example": "−5" }, "timezone1_DST": { "label": "Timezone 1 (during DST)", "type": "string", "description": "The place's primary time-zone during daylight savings time, if applicable.", "example": "[[Eastern Daylight Time]]" }, "utc_offset1_DST": { "label": "UTC offset 1 (during DST)", "type": "string", "description": "The place's primary time-zone's UTC offset during daylight savings time, if applicable.", "example": "−6" }, "timezone2": { "label": "Timezone 2", "description": "A second timezone field for larger areas such as a province.", "type": "string", "example": "[[Central Standard Time]]" }, "utc_offset2": { "label": "UTC offset 2", "type": "string", "description": "The place's secondary time-zone's offset from UTC.", "example": "−6" }, "timezone2_DST": { "label": "Timezone 2 during DST", "type": "string", "description": "The place's secondary time-zone during daylight savings time, if applicable.", "example": "[[Central Daylight Time]]" }, "utc_offset2_DST": { "label": "UTC offset 2 during DST", "type": "string", "description": "The place's secondary time-zone's offset from UTC during daylight savings time, if applicable.", "example": "−7" }, "postal_code_type": { "label": "Postal code type", "description": "Label used for postal code info, e.g. 'ZIP Code'. Defaults to 'Postal code'.", "example": "[[Postal code of China|Postal code]]", "type": "string" }, "postal_code": { "label": "Postal code", "description": "The place's postal code/zip code.", "type": "string", "example": "90210" }, "postal2_code_type": { "label": "Postal code 2 type", "type": "string", "description": "If applicable, the place's second postal code type." }, "postal2_code": { "label": "Postal code 2", "type": "string", "description": "A second postal code of the place, if applicable.", "example": "90007" }, "area_code": { "label": "Area code", "description": "The regions' telephone area code.", "type": "string", "aliases": [ "area_codes" ] }, "area_code_type": { "label": "Area code type", "description": "If left blank/not used, template will default to 'Area code(s)'.", "type": "string" }, "geocode": { "label": "Geocode", "description": "See [[Geocode]].", "type": "string" }, "iso_code": { "label": "ISO 3166 code", "description": "See ISO 3166.", "type": "string" }, "registration_plate": { "label": "Registration/license plate info", "description": "See Vehicle registration plate.", "type": "string" }, "blank_name_sec1": { "label": "Blank name section 1", "description": "Fields used to display other information. The name is displayed in bold on the left side of the infobox.", "type": "string", "aliases": [ "blank_name" ] }, "blank_info_sec1": { "label": "Blank info section 1", "description": "The information associated with the 'blank_name_sec1' heading. The info is displayed on the right side of the infobox in the same row as the name. For an example, see [[Warsaw]].", "type": "content", "aliases": [ "blank_info" ] }, "blank1_name_sec1": { "label": "Blank 1 name section 1", "description": "Up to 7 additional fields 'blank1_name_sec1' ... 'blank7_name_sec1' can be specified.", "type": "string" }, "blank1_info_sec1": { "label": "Blank 1 info section 1", "description": "Up to 7 additional fields 'blank1_info_sec1' ... 'blank7_info_sec1' can be specified.", "type": "content" }, "blank_name_sec2": { "label": "Blank name section 2", "description": "For a second section of blank fields.", "type": "string" }, "blank_info_sec2": { "label": "Blank info section 2", "example": "Beijing", "type": "content", "description": "The information associated with the 'blank_name_sec2' heading. The info is displayed on right side of infobox, in the same row as the name. For an example, see [[Warsaw]]." }, "blank1_name_sec2": { "label": "Blank 1 name section 2", "description": "Up to 7 additional fields 'blank1_name_sec2' ... 'blank7_name_sec2' can be specified.", "type": "string" }, "blank1_info_sec2": { "label": "Blank 1 info section 2", "description": "Up to 7 additional fields 'blank1_info_sec2' ... 'blank7_info_sec2' can be specified.", "type": "content" }, "website": { "label": "Official website in English", "description": "External link to official website. Use the {{URL}} template, thus: {{URL|example.com}}.", "type": "string" }, "footnotes": { "label": "Footnotes", "description": "Text to be displayed at the bottom of the infobox.", "type": "content" }, "translit_lang1_info1": { "label": "Language 1 first transcription ", "description": "Transcription of type 1 in the first other language.", "example": "{{langx|zh|森美兰}}", "type": "line" }, "translit_lang1_type1": { "label": "Language 1 first transcription type", "description": "Type of transcription used in the first language's first transcription.", "example": "[[Chinese Language|Chinese]]", "type": "line" }, "translit_lang1_info2": { "label": "Language 1 second transcription ", "description": "Transcription of type 1 in the first other language.", "example": "{{langx|ta|நெகிரி செம்பிலான்}}", "type": "line" }, "translit_lang1_type2": { "label": "Language 1 second transcription type", "description": "Type of transcription used in the first language's first transcription.", "example": "[[Tamil Language|Tamil]]", "type": "line" }, "demographics1_info1": { "label": "Demographics section 1 info 1", "description": "Information related to the titles. For example: '50%', '25%', '10%'... Additional rows 'demographics1_info1' to 'demographics1_info5' are also available.", "type": "content" }, "mapframe": { "label": "Show mapframe map", "description": "Specify yes or no to show or hide the map, overriding the default", "example": "yes", "type": "string", "default": "no", "suggested": true }, "mapframe-caption": { "label": "Mapframe caption", "description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"", "type": "string" }, "mapframe-custom": { "label": "Custom mapframe", "description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.", "type": "wiki-template-name" }, "mapframe-id": { "aliases": [ "id", "qid" ], "label": "Mapframe Wikidata item", "description": "Id (Q-number) of Wikidata item to use.", "type": "string", "default": "(item for current page)" }, "mapframe-coordinates": { "aliases": [ "mapframe-coord", "coordinates", "coord" ], "label": "Mapframe coordinates ", "description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.", "example": "{{Coord|12.34|N|56.78|E}}", "type": "wiki-template-name", "default": "(coordinates from Wikidata)" }, "mapframe-wikidata": { "label": "Mapframe shapes from Wikidata", "description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter", "example": "yes", "type": "string" }, "mapframe-shape": { "label": "Mapframe shape feature", "description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"", "type": "string" }, "mapframe-point": { "label": "Mapframe point feature", "description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"", "type": "string" }, "mapframe-geomask": { "label": "Mapframe geomask", "description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)", "example": "Q100", "type": "wiki-page-name" }, "mapframe-switcher": { "label": "Mapframe switcher", "description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.", "type": "string" }, "mapframe-frame-width": { "aliases": [ "mapframe-width" ], "label": "Mapframe width", "description": "Frame width in pixels", "type": "number", "default": "270" }, "mapframe-frame-height": { "aliases": [ "mapframe-height" ], "label": "Mapframe height", "description": "Frame height in pixels", "type": "number", "default": "200" }, "mapframe-shape-fill": { "label": "Mapframe shape fill", "description": "Color used to fill shape features", "type": "string", "default": "#606060" }, "mapframe-shape-fill-opacity": { "label": "Mapframe shape fill opacity", "description": "Opacity level of shape fill, a number between 0 and 1", "type": "number", "default": "0.5" }, "mapframe-stroke-color": { "aliases": [ "mapframe-stroke-colour" ], "label": "Mapframe stroke color", "description": "Color of line features, and outlines of shape features", "type": "string", "default": "#ff0000" }, "mapframe-stroke-width": { "label": "Mapframe stroke width", "description": "Width of line features, and outlines of shape features", "type": "number", "default": "5" }, "mapframe-marker": { "label": "Mapframe marker", "description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options", "example": "museum", "type": "string" }, "mapframe-marker-color": { "aliases": [ "mapframe-marker-colour" ], "label": "Mapframe marker color", "description": "Background color for the marker", "type": "string", "default": "#5E74F3" }, "mapframe-geomask-stroke-color": { "aliases": [ "mapframe-geomask-stroke-colour" ], "label": "Mapframe geomask stroke color", "description": "Color of outline of geomask shape", "type": "string", "default": "#555555" }, "mapframe-geomask-stroke-width": { "label": "Mapframe geomask stroke width", "description": "Width of outline of geomask shape", "type": "number", "default": "2" }, "mapframe-geomask-fill": { "label": "Mapframe geomask fill", "description": "Color used to fill outside geomask features", "type": "string", "default": "#606060" }, "mapframe-geomask-fill-opacity": { "label": "Mapframe geomask fill opacity", "description": "Opacity level of fill outside geomask features, a number between 0 and 1", "type": "number", "default": "0.5" }, "mapframe-zoom": { "label": "Mapframe zoom", "description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area", "example": "12", "type": "number", "default": "10" }, "mapframe-length_km": { "label": "Mapframe length (km)", "description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-length_mi": { "label": "Mapframe length (mi)", "description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-area_km2": { "label": "Mapframe area (km^2)", "description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-area_mi2": { "label": "Mapframe area (mi^2)", "description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-frame-coordinates": { "aliases": [ "mapframe-frame-coord" ], "label": "Mapframe frame coordinates", "description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}", "example": "{{Coord|12.35|N|56.71|E}}", "type": "wiki-template-name" }, "mapframe-line": {}, "embed": {}, "translit_lang1_type3": {}, "translit_lang1_type4": {}, "translit_lang1_info3": {}, "translit_lang1_type5": {}, "translit_lang1_info4": {}, "translit_lang1_type6": {}, "translit_lang1_info5": {}, "translit_lang1_info6": {}, "translit_lang2_type1": {}, "translit_lang2_type": {}, "translit_lang2_info": {}, "translit_lang2_type2": {}, "translit_lang2_info1": {}, "translit_lang2_type3": {}, "translit_lang2_info2": {}, "translit_lang2_type4": {}, "translit_lang2_info3": {}, "translit_lang2_type5": {}, "translit_lang2_info4": {}, "translit_lang2_type6": {}, "translit_lang2_info5": {}, "translit_lang2_info6": {}, "image_size": {}, "alt": {}, "pushpin_map_narrow": {}, "seal_type": {}, "pushpin_map_caption_notsmall": {}, "etymology": {}, "nicknames": {}, "nickname_link": {}, "mottoes": {}, "motto_link": {}, "anthem_link": {}, "grid_position": {}, "coor_type": {}, "grid_name": {}, "established_title4": {}, "established_date4": {}, "established_title5": {}, "established_date5": {}, "established_title6": {}, "established_date6": {}, "established_title7": {}, "established_date7": {}, "seat1_type": {}, "seat1": {}, "seat2_type": {}, "seat2": {}, "p2": {}, "p3": {}, "p4": {}, "p5": {}, "p6": {}, "p7": {}, "p8": {}, "p9": {}, "p10": {}, "p11": {}, "p12": {}, "p13": {}, "p14": {}, "p15": {}, "p16": {}, "p17": {}, "p18": {}, "p19": {}, "p20": {}, "p21": {}, "p22": {}, "p23": {}, "p24": {}, "p25": {}, "p26": {}, "p27": {}, "p28": {}, "p29": {}, "p30": {}, "p31": {}, "p32": {}, "p33": {}, "p34": {}, "p35": {}, "p36": {}, "p37": {}, "p38": {}, "p39": {}, "p40": {}, "p41": {}, "p42": {}, "p43": {}, "p44": {}, "p45": {}, "p46": {}, "p47": {}, "p48": {}, "p49": {}, "p50": {}, "leader_name2": {}, "leader_name3": {}, "leader_name4": {}, "leader_title2": {}, "leader_title3": {}, "leader_title4": {}, "government_blank1_title": {}, "government_blank1": {}, "government_blank2_title": {}, "government_blank2": {}, "government_blank3_title": {}, "government_blank3": {}, "government_blank4_title": {}, "government_blank4": {}, "government_blank5_title": {}, "government_blank5": {}, "government_blank6_title": {}, "government_blank6": {}, "elevation_link": {}, "elevation_point": {}, "population_blank1_footnotes": {}, "population_blank2_footnotes": {}, "population_demonyms": {}, "demographics1_title2": {}, "demographics1_info2": {}, "demographics1_title3": {}, "demographics1_info3": {}, "demographics1_title4": {}, "demographics1_info4": {}, "demographics1_title5": {}, "demographics1_info5": {}, "demographics1_title6": {}, "demographics1_info6": {}, "demographics1_title7": {}, "demographics1_info7": {}, "demographics1_title8": {}, "demographics1_info8": {}, "demographics1_title9": {}, "demographics1_info9": {}, "demographics1_title10": {}, "demographics1_info10": {}, "demographics2_title2": {}, "demographics2_info2": {}, "demographics2_title3": {}, "demographics2_info3": {}, "demographics2_title4": {}, "demographics2_info4": {}, "demographics2_title5": {}, "demographics2_info5": {}, "demographics2_title6": {}, "demographics2_info6": {}, "demographics2_title7": {}, "demographics2_info7": {}, "demographics2_title8": {}, "demographics2_info8": {}, "demographics2_title9": {}, "demographics2_info9": {}, "demographics2_title10": {}, "demographics2_info10": {}, "timezone1_location": {}, "timezone_link": {}, "timezone2_location": {}, "timezone3_location": {}, "utc_offset3": {}, "timezone3": {}, "utc_offset3_DST": {}, "timezone3_DST": {}, "timezone4_location": {}, "utc_offset4": {}, "timezone4": {}, "utc_offset4_DST": {}, "timezone4_DST": {}, "timezone5_location": {}, "utc_offset5": {}, "timezone5": {}, "utc_offset5_DST": {}, "timezone5_DST": {}, "registration_plate_type": { "label": "Registration/license plate type", "description": "The place's registration/license plate type", "type": "content" }, "code1_name": {}, "code1_info": {}, "code2_name": {}, "code2_info": {}, "blank1_name": {}, "blank1_info": {}, "blank2_name_sec1": {}, "blank2_name": {}, "blank2_info_sec1": {}, "blank2_info": {}, "blank3_name_sec1": {}, "blank3_name": {}, "blank3_info_sec1": {}, "blank3_info": {}, "blank4_name_sec1": {}, "blank4_name": {}, "blank4_info_sec1": {}, "blank4_info": {}, "blank5_name_sec1": {}, "blank5_name": {}, "blank5_info_sec1": {}, "blank5_info": {}, "blank6_name_sec1": {}, "blank6_name": {}, "blank6_info_sec1": {}, "blank6_info": {}, "blank7_name_sec1": {}, "blank7_name": {}, "blank7_info_sec1": {}, "blank7_info": {}, "blank2_name_sec2": {}, "blank2_info_sec2": {}, "blank3_name_sec2": {}, "blank3_info_sec2": {}, "blank4_name_sec2": {}, "blank4_info_sec2": {}, "blank5_name_sec2": {}, "blank5_info_sec2": {}, "blank6_name_sec2": {}, "blank6_info_sec2": {}, "blank7_name_sec2": {}, "blank7_info_sec2": {}, "module": {}, "coordinates_wikidata": {}, "wikidata": {}, "image_upright": {}, "blank_emblem_upright": {}, "leader_title5": {}, "leader_name5": {} }, "paramOrder": [ "name", "official_name", "native_name", "native_name_lang", "other_name", "settlement_type", "translit_lang1", "translit_lang1_type", "translit_lang1_info", "translit_lang2", "image_skyline", "imagesize", "image_upright", "image_alt", "image_caption", "image_flag", "flag_size", "flag_alt", "flag_border", "flag_link", "image_seal", "seal_size", "seal_alt", "seal_link", "seal_type", "seal_class", "image_shield", "shield_size", "shield_alt", "shield_link", "image_blank_emblem", "blank_emblem_type", "blank_emblem_size", "blank_emblem_upright", "blank_emblem_alt", "blank_emblem_link", "nickname", "motto", "anthem", "image_map", "mapsize", "map_alt", "map_caption", "image_map1", "mapsize1", "map_alt1", "map_caption1", "pushpin_map", "pushpin_mapsize", "pushpin_map_alt", "pushpin_map_caption", "pushpin_label", "pushpin_label_position", "pushpin_outside", "pushpin_relief", "pushpin_image", "pushpin_overlay", "mapframe", "mapframe-caption", "mapframe-custom", "mapframe-id", "mapframe-coordinates", "mapframe-wikidata", "mapframe-point", "mapframe-shape", "mapframe-frame-width", "mapframe-frame-height", "mapframe-shape-fill", "mapframe-shape-fill-opacity", "mapframe-stroke-color", "mapframe-stroke-width", "mapframe-marker", "mapframe-marker-color", "mapframe-geomask", "mapframe-geomask-stroke-color", "mapframe-geomask-stroke-width", "mapframe-geomask-fill", "mapframe-geomask-fill-opacity", "mapframe-zoom", "mapframe-length_km", "mapframe-length_mi", "mapframe-area_km2", "mapframe-area_mi2", "mapframe-frame-coordinates", "mapframe-switcher", "mapframe-line", "coordinates", "coor_pinpoint", "coordinates_footnotes", "subdivision_type", "subdivision_name", "subdivision_type1", "subdivision_name1", "subdivision_type2", "subdivision_name2", "subdivision_type3", "subdivision_name3", "subdivision_type4", "subdivision_name4", "subdivision_type5", "subdivision_name5", "subdivision_type6", "subdivision_name6", "established_title", "established_date", "established_title1", "established_date1", "established_title2", "established_date2", "established_title3", "established_date3", "established_title4", "established_date4", "established_title5", "established_date5", "established_title6", "established_date6", "established_title7", "established_date7", "extinct_title", "extinct_date", "founder", "named_for", "seat_type", "seat", "parts_type", "parts_style", "parts", "government_footnotes", "government_type", "governing_body", "leader_party", "leader_title", "leader_name", "leader_title1", "leader_name1", "total_type", "unit_pref", "area_footnotes", "dunam_link", "area_total_km2", "area_total_sq_mi", "area_total_ha", "area_total_acre", "area_total_dunam", "area_land_km2", "area_land_sq_mi", "area_land_ha", "area_land_dunam", "area_land_acre", "area_water_km2", "area_water_sq_mi", "area_water_ha", "area_water_dunam", "area_water_acre", "area_water_percent", "area_urban_km2", "area_urban_sq_mi", "area_urban_ha", "area_urban_dunam", "area_urban_acre", "area_urban_footnotes", "area_rural_km2", "area_rural_sq_mi", "area_rural_ha", "area_rural_dunam", "area_rural_acre", "area_rural_footnotes", "area_metro_km2", "area_metro_sq_mi", "area_metro_ha", "area_metro_dunam", "area_metro_acre", "area_metro_footnotes", "area_rank", "area_blank1_title", "area_blank1_km2", "area_blank1_sq_mi", "area_blank1_ha", "area_blank1_dunam", "area_blank1_acre", "area_blank2_title", "area_blank2_km2", "area_blank2_sq_mi", "area_blank2_ha", "area_blank2_dunam", "area_blank2_acre", "area_note", "dimensions_footnotes", "length_km", "length_mi", "width_km", "width_mi", "elevation_m", "elevation_ft", "elevation_footnotes", "elevation_min_point", "elevation_min_m", "elevation_min_ft", "elevation_min_rank", "elevation_min_footnotes", "elevation_max_point", "elevation_max_m", "elevation_max_ft", "elevation_max_rank", "elevation_max_footnotes", "population_total", "population_as_of", "population_footnotes", "population_density_km2", "population_density_sq_mi", "population_est", "pop_est_as_of", "pop_est_footnotes", "population_urban", "population_urban_footnotes", "population_density_urban_km2", "population_density_urban_sq_mi", "population_rural", "population_rural_footnotes", "population_density_rural_km2", "population_density_rural_sq_mi", "population_metro", "population_metro_footnotes", "population_density_metro_km2", "population_density_metro_sq_mi", "population_rank", "population_density_rank", "population_blank1_title", "population_blank1", "population_density_blank1_km2", "population_density_blank1_sq_mi", "population_blank2_title", "population_blank2", "population_density_blank2_km2", "population_density_blank2_sq_mi", "population_demonym", "population_note", "demographics_type1", "demographics1_footnotes", "demographics1_title1", "demographics_type2", "demographics2_footnotes", "demographics2_title1", "demographics2_info1", "timezone1", "utc_offset", "timezone_DST", "utc_offset_DST", "utc_offset1", "timezone1_DST", "utc_offset1_DST", "timezone2", "utc_offset2", "timezone2_DST", "utc_offset2_DST", "postal_code_type", "postal_code", "postal2_code_type", "postal2_code", "area_code", "area_code_type", "geocode", "iso_code", "registration_plate_type", "registration_plate", "blank_name_sec1", "blank_info_sec1", "blank1_name_sec1", "blank1_info_sec1", "blank_name_sec2", "blank_info_sec2", "blank1_name_sec2", "blank1_info_sec2", "website", "footnotes", "translit_lang1_info1", "translit_lang1_type1", "translit_lang1_info2", "translit_lang1_type2", "demographics1_info1", "embed", "translit_lang1_type3", "translit_lang1_type4", "translit_lang1_info3", "translit_lang1_type5", "translit_lang1_info4", "translit_lang1_type6", "translit_lang1_info5", "translit_lang1_info6", "translit_lang2_type1", "translit_lang2_type", "translit_lang2_info", "translit_lang2_type2", "translit_lang2_info1", "translit_lang2_type3", "translit_lang2_info2", "translit_lang2_type4", "translit_lang2_info3", "translit_lang2_type5", "translit_lang2_info4", "translit_lang2_type6", "translit_lang2_info5", "translit_lang2_info6", "image_size", "alt", "pushpin_map_narrow", "pushpin_map_caption_notsmall", "etymology", "nicknames", "nickname_link", "mottoes", "motto_link", "anthem_link", "grid_position", "coor_type", "grid_name", "seat1_type", "seat1", "seat2_type", "seat2", "p1", "p2", "p3", "p4", "p5", "p6", "p7", "p8", "p9", "p10", "p11", "p12", "p13", "p14", "p15", "p16", "p17", "p18", "p19", "p20", "p21", "p22", "p23", "p24", "p25", "p26", "p27", "p28", "p29", "p30", "p31", "p32", "p33", "p34", "p35", "p36", "p37", "p38", "p39", "p40", "p41", "p42", "p43", "p44", "p45", "p46", "p47", "p48", "p49", "p50", "leader_name2", "leader_name3", "leader_name4", "leader_name5", "leader_title2", "leader_title3", "leader_title4", "leader_title5", "government_blank1_title", "government_blank1", "government_blank2_title", "government_blank2", "government_blank3_title", "government_blank3", "government_blank4_title", "government_blank4", "government_blank5_title", "government_blank5", "government_blank6_title", "government_blank6", "elevation_link", "elevation_point", "population_blank1_footnotes", "population_blank2_footnotes", "population_demonyms", "demographics1_title2", "demographics1_info2", "demographics1_title3", "demographics1_info3", "demographics1_title4", "demographics1_info4", "demographics1_title5", "demographics1_info5", "demographics1_title6", "demographics1_info6", "demographics1_title7", "demographics1_info7", "demographics1_title8", "demographics1_info8", "demographics1_title9", "demographics1_info9", "demographics1_title10", "demographics1_info10", "demographics2_title2", "demographics2_info2", "demographics2_title3", "demographics2_info3", "demographics2_title4", "demographics2_info4", "demographics2_title5", "demographics2_info5", "demographics2_title6", "demographics2_info6", "demographics2_title7", "demographics2_info7", "demographics2_title8", "demographics2_info8", "demographics2_title9", "demographics2_info9", "demographics2_title10", "demographics2_info10", "timezone1_location", "timezone_link", "timezone2_location", "timezone3_location", "utc_offset3", "timezone3", "utc_offset3_DST", "timezone3_DST", "timezone4_location", "utc_offset4", "timezone4", "utc_offset4_DST", "timezone4_DST", "timezone5_location", "utc_offset5", "timezone5", "utc_offset5_DST", "timezone5_DST", "code1_name", "code1_info", "code2_name", "code2_info", "blank1_name", "blank1_info", "blank2_name_sec1", "blank2_name", "blank2_info_sec1", "blank2_info", "blank3_name_sec1", "blank3_name", "blank3_info_sec1", "blank3_info", "blank4_name_sec1", "blank4_name", "blank4_info_sec1", "blank4_info", "blank5_name_sec1", "blank5_name", "blank5_info_sec1", "blank5_info", "blank6_name_sec1", "blank6_name", "blank6_info_sec1", "blank6_info", "blank7_name_sec1", "blank7_name", "blank7_info_sec1", "blank7_info", "blank2_name_sec2", "blank2_info_sec2", "blank3_name_sec2", "blank3_info_sec2", "blank4_name_sec2", "blank4_info_sec2", "blank5_name_sec2", "blank5_info_sec2", "blank6_name_sec2", "blank6_info_sec2", "blank7_name_sec2", "blank7_info_sec2", "module", "coordinates_wikidata", "wikidata" ] } </templatedata> {{collapse bottom}} ==Calls and redirects == At least {{PAGESINCATEGORY:Templates calling Infobox settlement}} other [[:Category:Templates calling Infobox settlement|templates call this one]]. [{{fullurl:Special:WhatLinksHere/Template:Infobox_settlement|namespace=10&hidetrans=1&hidelinks=1}} Several templates redirect here]. == Tracking categories == # {{clc|Pages using infobox settlement with bad settlement type}} # {{clc|Pages using infobox settlement with bad density arguments}} # {{clc|Pages using infobox settlement with image map1 but not image map}} # {{clc|Pages using infobox settlement with missing country}} # {{clc|Pages using infobox settlement with no map}} # {{clc|Pages using infobox settlement with no coordinates}} # {{clc|Pages using infobox settlement with possible area code list}} # {{clc|Pages using infobox settlement with possible demonym list}} # {{clc|Pages using infobox settlement with possible motto list}} # {{clc|Pages using infobox settlement with possible nickname list}} # {{clc|Pages using infobox settlement with the wikidata parameter}} # {{clc|Pages using infobox settlement with unknown parameters}} # {{clc|Pages using infobox settlement with conflicting parameters}} # {{clc|Templates calling Infobox settlement}} ==See also== *[[Help:Coordinates]] *[[Help:Elevation]] *[[Help:GNIS data for U.S. infoboxes]] *{{tl|Infobox too long}} <includeonly>{{Sandbox other|| <!--Categories below this line, please; interwikis at Wikidata--> [[Category:Place infobox templates|Settlement]] [[Category:Embeddable templates]] [[Category:Infobox templates using Wikidata]] [[Category:Templates that add a tracking category]] }}</includeonly> d8lzzitw2ym7fq2ovruki0ge89hquuy 72870 72856 2026-07-01T02:05:50Z Robertsky 10424 72870 wikitext text/x-wiki {{Documentation subpage}} <!--Categories where indicated at the bottom of this page, please; interwikis at Wikidata (see [[Wikipedia:Wikidata]])--> {{Auto short description}} {{Lua|Module:Infobox|Module:InfoboxImage|Module:Coordinates|Module:Check for unknown parameters|Module:Check for conflicting parameters|Module:Settlement short description|Module:Wikidata}} {{Uses TemplateStyles|Template:Infobox settlement/styles.css}} {{Uses Wikidata|P41|P94|P158|P625|P856}} This template should be used to produce an [[WP:Infobox|Infobox]] for human settlements (cities, towns, villages, communities) as well as other administrative districts, counties, provinces, et cetera—in fact, any subdivision below the level of a country, for which {{tl|Infobox country}} should be used. Parameters are described in the table below. For questions, see the [[Template talk:Infobox settlement|talk page]]. For a US city guideline, see [[WP:USCITIES]]. The template is aliased or used as a sub-template for several infobox front-end templates. ==Usage== * '''Important''': Please enter all numeric values in a raw, unformatted fashion. References and {{tl|citation needed}} tags are to be included in their respective section footnotes field. Numeric values that are not "raw" may create an "Expression error". Raw values will be automatically formatted by the template. If you find a raw value is not formatted in your usage of the template, please post a notice on the discussion page for this template. * An expression error may also occur when any coordinate parameter has a value, but one or more coordinate parameters are blank or invalid. * To specify CSS class "X" should be applied to an image, append to the filename: <code><nowiki>{{!}}class=X</nowiki></code> Basic blank template, ready to cut and paste. See the next section for a copy of the template with all parameters and comments. See the table below that for a full description of each parameter. ===Using metric units=== <syntaxhighlight lang="wikitext" style="overflow:auto"> {{Infobox settlement |name = |native_name = <!-- Settlement name in the dominant local language(s), if different from the English name --> |native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> |settlement_type = |image_skyline = |imagesize = |image_alt = |image_caption = |image_flag = |flag_alt = |image_seal = |seal_alt = |image_shield = |shield_alt = |etymology = |nickname = |motto = |image_map = |map_alt = |map_caption = |pushpin_map = |pushpin_map_alt = |pushpin_map_caption = |pushpin_mapsize = |pushpin_label_position = |mapframe = <!-- "yes" to show an interactive map --> |coordinates = <!-- {{coord|latitude|longitude|type:city|display=inline,title}} --> |coor_pinpoint = |coordinates_footnotes = |subdivision_type = Country |subdivision_name = |subdivision_type1 = |subdivision_name1 = |subdivision_type2 = |subdivision_name2 = |subdivision_type3 = |subdivision_name3 = |established_title = |established_date = |founder = |seat_type = |seat = |government_footnotes = |government_type = |governing_body = |leader_party = |leader_title = |leader_name = |leader_title1 = |leader_name1 = |leader_title2 = |leader_name2 = |leader_title3 = |leader_name3 = |leader_title4 = |leader_name4 = |unit_pref = Metric <!-- ALL fields with measurements have automatic unit conversion --> <!-- for references: use <ref> tags --> |area_footnotes = |area_urban_footnotes = <!-- <ref> </ref> --> |area_rural_footnotes = <!-- <ref> </ref> --> |area_metro_footnotes = <!-- <ref> </ref> --> |area_note = |area_water_percent = |area_rank = |area_blank1_title = |area_blank2_title = <!-- square kilometers --> |area_total_km2 = |area_land_km2 = |area_water_km2 = |area_urban_km2 = |area_rural_km2 = |area_metro_km2 = |area_blank1_km2 = |area_blank2_km2 = <!-- hectares --> |area_total_ha = |area_land_ha = |area_water_ha = |area_urban_ha = |area_rural_ha = |area_metro_ha = |area_blank1_ha = |area_blank2_ha = |length_km = |width_km = |dimensions_footnotes = |elevation_footnotes = |elevation_m = |population_footnotes = |population_as_of = |population_total = |population_density_km2 = auto |population_note = |population_demonym = |timezone1 = |utc_offset1 = |timezone1_DST = |utc_offset1_DST = |postal_code_type = |postal_code = |area_code_type = |area_code = |area_codes = <!-- for multiple area codes --> |iso_code = |website = <!-- {{Official URL}} --> |module = |footnotes = }} </syntaxhighlight> ===Using non-metric units=== <syntaxhighlight lang="wikitext" style="overflow:auto"> {{Infobox settlement |name = |native_name = |native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> |settlement_type = |image_skyline = |imagesize = |image_alt = |image_caption = |image_flag = |flag_alt = |image_seal = |seal_alt = |image_shield = |shield_alt = |etymology = |nickname = |motto = |image_map = |map_alt = |map_caption = |pushpin_map = |pushpin_map_alt = |pushpin_map_caption = |pushpin_label_position = |mapframe = <!-- "yes" to show an interactive map --> |coordinates = <!-- {{coord|latitude|longitude|type:city|display=inline,title}} --> |coor_pinpoint = |coordinates_footnotes = |subdivision_type = Country |subdivision_name = |subdivision_type1 = |subdivision_name1 = |subdivision_type2 = |subdivision_name2 = |subdivision_type3 = |subdivision_name3 = |established_title = |established_date = |founder = |seat_type = |seat = |government_footnotes = |leader_party = |leader_title = |leader_name = |unit_pref = Imperial <!-- ALL fields with measurements have automatic unit conversion --> <!-- for references: use <ref> tags --> |area_footnotes = |area_urban_footnotes = <!-- <ref> </ref> --> |area_rural_footnotes = <!-- <ref> </ref> --> |area_metro_footnotes = <!-- <ref> </ref> --> |area_note = |area_water_percent = |area_rank = |area_blank1_title = |area_blank2_title = <!-- square miles --> |area_total_sq_mi = |area_land_sq_mi = |area_water_sq_mi = |area_urban_sq_mi = |area_rural_sq_mi = |area_metro_sq_mi = |area_blank1_sq_mi = |area_blank2_sq_mi = <!-- acres --> |area_total_acre = |area_land_acre = |area_water_acre = |area_urban_acre = |area_rural_acre = |area_metro_acre = |area_blank1_acre = |area_blank2_acre = |length_mi = |width_mi = |dimensions_footnotes = |elevation_footnotes = |elevation_ft = |population_footnotes = |population_as_of = |population_total = |population_density_sq_mi = auto |population_note = |population_demonym = |timezone1 = |utc_offset1 = |timezone1_DST = |utc_offset1_DST = |postal_code_type = |postal_code = |area_code_type = |area_code = |iso_code = |website = <!-- {{Official URL}} --> |module = |footnotes = }} </syntaxhighlight> ===Short version=== <syntaxhighlight lang="wikitext" style="overflow:auto"> {{Infobox settlement |name = |native_name = |native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> |settlement_type = |image_skyline = |imagesize = |image_alt = |image_caption = |etymology = |nickname = |coordinates = <!-- {{Coord}} --> |population_total = |subdivision_type = Country |subdivision_name = |subdivision_type1 = |subdivision_name1 = |subdivision_type2 = |subdivision_name2 = |website = <!-- {{Official URL}} --> }} </syntaxhighlight> ===Complete empty syntax, with comments=== This copy of the template lists all parameters except for some of the repeating numbered parameters which are noted in the comments. Comments here should be brief; see the table below for full descriptions of each parameter. <syntaxhighlight lang="wikitext" style="overflow:auto;"> {{Infobox settlement | name = <!-- at least one of the first two fields must be filled in --> | official_name = <!-- avoid if redundant with e.g. `settlement_type` of `name` | native_name = <!-- if different from the English name --> | native_name_lang = <!-- ISO 639-1 code e.g. "fr" for French. If more than one, use {{lang}} instead --> | other_name = | settlement_type = <!-- such as Town, Village, City, Borough etc. --> <!-- transliteration(s) --> | translit_lang1 = | translit_lang1_type = | translit_lang1_info = | translit_lang1_type1 = | translit_lang1_info1 = | translit_lang1_type2 = | translit_lang1_info2 = <!-- etc., up to translit_lang1_type6 / translit_lang1_info6 --> | translit_lang2 = | translit_lang2_type = | translit_lang2_info = | translit_lang2_type1 = | translit_lang2_info1 = | translit_lang2_type2 = | translit_lang2_info2 = <!-- etc., up to translit_lang2_type6 / translit_lang2_info6 --> <!-- images, nickname, motto --> | image_skyline = | imagesize = | image_alt = | image_caption = | image_flag = | flag_size = | flag_alt = | flag_border = | flag_link = | image_seal = | seal_size = | seal_alt = | seal_link = | seal_type = | seal_class = | image_shield = | shield_size = | shield_alt = | shield_link = | image_blank_emblem = | blank_emblem_type = | blank_emblem_size = | blank_emblem_alt = | blank_emblem_link = | etymology = | nickname = | nicknames = | motto = | mottoes = | anthem = <!-- maps and coordinates --> | image_map = | mapsize = | map_alt = | map_caption = | image_map1 = | mapsize1 = | map_alt1 = | map_caption1 = | pushpin_map = <!-- name of a location map as per Template:Location_map --> | pushpin_mapsize = | pushpin_map_alt = | pushpin_map_caption = | pushpin_map_caption_notsmall = | pushpin_label = <!-- only necessary if "name" or "official_name" are too long --> | pushpin_label_position = <!-- position of the pushpin label: left, right, top, bottom, none --> | pushpin_outside = | pushpin_relief = | pushpin_image = | pushpin_overlay = | mapframe = <!-- "yes" to show an interactive map --> | coordinates = <!-- {{Coord}} --> | coor_pinpoint = <!-- to specify exact location of coordinates (was coor_type) --> | coordinates_footnotes = <!-- for references: use <ref> tags --> | grid_name = <!-- name of a regional grid system --> | grid_position = <!-- position on the regional grid system --> <!-- location --> | subdivision_type = Country | subdivision_name = <!-- the name of the country --> | subdivision_type1 = | subdivision_name1 = | subdivision_type2 = | subdivision_name2 = <!-- etc., subdivision_type6 / subdivision_name6 --> <!-- established --> | established_title = <!-- Founded --> | established_date = <!-- requires established_title= --> | established_title1 = <!-- Incorporated (town) --> | established_date1 = <!-- requires established_title1= --> | established_title2 = <!-- Incorporated (city) --> | established_date2 = <!-- requires established_title2= --> | established_title3 = | established_date3 = <!-- requires established_title3= --> | established_title4 = | established_date4 = <!-- requires established_title4= --> | established_title5 = | established_date5 = <!-- requires established_title5= --> | established_title6 = | established_date6 = <!-- requires established_title6= --> | established_title7 = | established_date7 = <!-- requires established_title7= --> | extinct_title = | extinct_date = <!-- requires extinct_title= --> | founder = | named_for = <!-- seat, smaller parts --> | seat_type = <!-- defaults to: Seat --> | seat = | seat1_type = <!-- defaults to: Former seat --> | seat1 = | parts_type = <!-- defaults to: Boroughs --> | parts_style = <!-- list, coll (collapsed list), para (paragraph format) --> | parts = <!-- parts text, or header for parts list --> | p1 = | p2 = <!-- etc., up to p50: for separate parts to be listed--> <!-- government type, leaders --> | government_footnotes = <!-- for references: use <ref> tags --> | government_type = | governing_body = | leader_party = | leader_title = | leader_name = <!-- add &amp;nbsp; (no-break space) to disable automatic links --> | leader_title1 = | leader_name1 = <!-- etc., up to leader_title4 / leader_name4 --> <!-- display settings --> | total_type = <!-- to set a non-standard label for total area and population rows --> | unit_pref = <!-- enter: Imperial, to display imperial before metric --> <!-- area --> | area_footnotes = <!-- for references: use <ref> tags --> | dunam_link = <!-- If dunams are used, this specifies which dunam to link. --> | area_total_km2 = <!-- ALL fields with measurements have automatic unit conversion --> | area_total_sq_mi = <!-- see table @ Template:Infobox settlement for details --> | area_total_ha = | area_total_acre = | area_total_dunam = <!-- used in Middle East articles only --> | area_land_km2 = | area_land_sq_mi = | area_land_ha = | area_land_acre = | area_land_dunam = <!-- used in Middle East articles only --> | area_water_km2 = | area_water_sq_mi = | area_water_ha = | area_water_acre = | area_water_dunam = <!-- used in Middle East articles only --> | area_water_percent = | area_urban_footnotes = <!-- for references: use <ref> tags --> | area_urban_km2 = | area_urban_sq_mi = | area_urban_ha = | area_urban_acre = | area_urban_dunam = <!-- used in Middle East articles only --> | area_rural_footnotes = <!-- for references: use <ref> tags --> | area_rural_km2 = | area_rural_sq_mi = | area_rural_ha = | area_rural_acre = | area_rural_dunam = <!-- used in Middle East articles only --> | area_metro_footnotes = <!-- for references: use <ref> tags --> | area_metro_km2 = | area_metro_sq_mi = | area_metro_ha = | area_metro_acre = | area_metro_dunam = <!-- used in Middle East articles only --> | area_rank = | area_blank1_title = | area_blank1_km2 = | area_blank1_sq_mi = | area_blank1_ha = | area_blank1_acre = | area_blank1_dunam = <!-- used in Middle East articles only --> | area_blank2_title = | area_blank2_km2 = | area_blank2_sq_mi = | area_blank2_ha = | area_blank2_acre = | area_blank2_dunam = <!-- used in Middle East articles only --> | area_note = <!-- dimensions --> | dimensions_footnotes = <!-- for references: use <ref> tags --> | length_km = | length_mi = | width_km = | width_mi = <!-- elevation --> | elevation_footnotes = <!-- for references: use <ref> tags --> | elevation_m = | elevation_ft = | elevation_point = <!-- for denoting the measurement point --> | elevation_max_footnotes = <!-- for references: use <ref> tags --> | elevation_max_m = | elevation_max_ft = | elevation_max_point = <!-- for denoting the measurement point --> | elevation_max_rank = | elevation_min_footnotes = <!-- for references: use <ref> tags --> | elevation_min_m = | elevation_min_ft = | elevation_min_point = <!-- for denoting the measurement point --> | elevation_min_rank = <!-- population --> | population_footnotes = <!-- for references: use <ref> tags --> | population_as_of = | population_total = | pop_est_footnotes = | pop_est_as_of = | population_est = | population_rank = | population_density_km2 = <!-- for automatic calculation of any density field, use: auto --> | population_density_sq_mi = | population_urban_footnotes = | population_urban = | population_density_urban_km2 = | population_density_urban_sq_mi = | population_rural_footnotes = | population_rural = | population_density_rural_km2 = | population_density_rural_sq_mi = | population_metro_footnotes = | population_metro = | population_density_metro_km2 = | population_density_metro_sq_mi = | population_density_rank = | population_blank1_title = | population_blank1 = | population_density_blank1_km2 = | population_density_blank1_sq_mi = | population_blank2_title = | population_blank2 = | population_density_blank2_km2 = | population_density_blank2_sq_mi = | population_demonym = <!-- demonym, e.g. Liverpudlian for someone from Liverpool --> | population_demonyms = | population_note = <!-- demographics (section 1) --> | demographics_type1 = | demographics1_footnotes = <!-- for references: use <ref> tags --> | demographics1_title1 = | demographics1_info1 = <!-- etc., up to demographics1_title7 / demographics1_info7 --> <!-- demographics (section 2) --> | demographics_type2 = | demographics2_footnotes = <!-- for references: use <ref> tags --> | demographics2_title1 = | demographics2_info1 = <!-- etc., up to demographics2_title10 / demographics2_info10 --> <!-- time zone(s) --> | timezone_link = | timezone1_location = | timezone1 = | utc_offset1 = | timezone1_DST = | utc_offset1_DST = | timezone2_location = | timezone2 = | utc_offset2 = | timezone2_DST = | utc_offset2_DST = | timezone3_location = | timezone3 = | utc_offset3 = | timezone3_DST = | utc_offset3_DST = | timezone4_location = | timezone4 = | utc_offset4 = | timezone4_DST = | utc_offset4_DST = | timezone5_location = | timezone5 = | utc_offset5 = | timezone5_DST = | utc_offset5_DST = <!-- postal codes, area code --> | postal_code_type = <!-- enter ZIP Code, Postcode, Post code, Postal code... --> | postal_code = | postal2_code_type = <!-- enter ZIP Code, Postcode, Post code, Postal code... --> | postal2_code = | area_code_type = <!-- defaults to: Area code(s) --> | area_code = | area_codes = | geocode = | iso_code = | registration_plate_type = | registration_plate = | code1_name = | code1_info = | code2_name = | code2_info = <!-- blank fields (section 1) --> | blank_name_sec1 = | blank_info_sec1 = | blank1_name_sec1 = | blank1_info_sec1 = | blank2_name_sec1 = | blank2_info_sec1 = <!-- etc., up to blank7_name_sec1 / blank7_info_sec1 --> <!-- blank fields (section 2) --> | blank_name_sec2 = | blank_info_sec2 = | blank1_name_sec2 = | blank1_info_sec2 = | blank2_name_sec2 = | blank2_info_sec2 = <!-- etc., up to blank7_name_sec2 / blank7_info_sec2 --> <!-- website, footnotes --> | website = <!-- {{Official URL}} --> | module = | footnotes = }} </syntaxhighlight> ==Parameter names and descriptions== {| class="wikitable" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Name and transliteration=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" | '''name''' || optional || This is the usual name in English. If it's not specified, the infobox will use the '''official_name''' as a title unless this too is missing, in which case the page name will be used. |- style="vertical-align:top;" | '''official_name''' || optional || The official name in English. Avoid using '''official_name''' if it leads to redundancy with '''name''' and '''settlement_type'''. Use '''official_name''' if the official name is unusual or cannot be simply deduced from the name and settlement type. |- style="vertical-align:top;" | '''native_name''' || optional || Name or names in the local language, if different from 'name', and if not English. This parameter may be used for the name in the de facto local language (e.g. German for [[Munich]]). Per the [[Template talk:Infobox settlement/Archive 32#RFC on usage of native name parameter for First Nations placenames|2023 RfC]], it may also be used for names used by First Nations/[[Indigenous peoples]], '''regardless''' of whether they are the dominant ethnic group in the location. |- style="vertical-align:top;" | '''native_name_lang''' || optional || Use [[List of ISO 639-1 codes|ISO 639-1 code]], e.g. "fr" for French. If there is more than one dominant name, in different languages, enter those names using {{tl|lang}}, instead. |- style="vertical-align:top;" | '''other_name''' || optional || For places with other commonly used names like Bombay or Saigon |- style="vertical-align:top;" | '''settlement_type''' || optional || Any type can be entered, such as City, Town, Village, Hamlet, Municipality, Reservation, etc. If set, will be displayed under the names. Might also be used as a label for total population/area (defaulting to ''City''), if needed to distinguish from ''Urban'', ''Rural'' or ''Metro'' (if urban, rural or metro figures are not present, the label is ''Total'' unless '''total_type''' is set). |- style="vertical-align:top;" | '''short_description''' || optional || Set to <code>no</code> to suppress the Short description generated by the infobox. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Transliteration(s) |- style="vertical-align:top;" | '''translit_lang1''' || optional || Will place the "entry" before the word "transliteration(s)". Can be used to specify a particular language like in [[Dêlêg]] or one may just enter "Other", like in [[Gaza City|Gaza]]'s article. |- style="vertical-align:top;" | '''translit_lang1_type'''<br />'''translit_lang1_type1'''<br />to<br />'''translit_lang1_type6''' || optional || |- style="vertical-align:top;" | '''translit_lang1_info'''<br />'''translit_lang1_info1'''<br />to<br />'''translit_lang1_info6''' || optional || |- style="vertical-align:top;" | '''translit_lang2''' || optional || Will place a second transliteration. See [[Dêlêg]] |- style="vertical-align:top;" | '''translit_lang2_type'''<br />'''translit_lang2_type1'''<br />to<br />'''translit_lang2_type6''' || optional || |- style="vertical-align:top;" | '''translit_lang2_info'''<br />'''translit_lang2_info1'''<br />to<br />'''translit_lang2_info6''' || optional || |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Images, nickname, motto=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Image |- style="vertical-align:top;" | '''image_skyline''' || optional || Primary image representing the settlement. Commonly a photo of the settlement’s skyline. For large urban areas, the <nowiki>{{multiple image}}</nowiki> template is often used in place of a single image to create a collage of the settlement's skyline and several notable landmarks. |- style="vertical-align:top;" | '''imagesize''' || optional || Can be used to tweak the size of the image_skyline up or down. This can be helpful if an editor wants to make the infobox wider. If used, '''px''' must be specified; default size is 250px. Note [[WP:IMGSIZELEAD]] recommends that images should be no wider than <code>upright=1.35</code> -equivalent to 300px |- style="vertical-align:top;" | '''image_alt''' || optional || [[Alt text]] for the image, used by visually impaired readers who cannot see the image. See [[WP:ALT]]. |- style="vertical-align:top;" | '''image_caption''' || optional || Will place a caption under the image_skyline (if present) |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Flag image |- style="vertical-align:top;" | '''image_flag''' || optional || Used for a flag. |- style="vertical-align:top;" | '''flag_size''' || optional || Can be used to tweak the size of the image_flag up or down from 100px as desired. If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''flag_alt''' || optional || Alt text for the flag. |- style="vertical-align:top;" | '''flag_border''' || optional || Set to 'no' to remove the border from the flag |- style="vertical-align:top;" | '''flag_link''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Seal image |- style="vertical-align:top;" | '''image_seal''' || optional || If the place has an official seal. |- style="vertical-align:top;" | '''seal_size''' || optional || If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''seal_alt''' || optional || Alt text for the seal. |- style="vertical-align:top;" | '''seal_link'''<br />'''seal_type''' || optional || |- style="vertical-align:top;" | '''seal_class''' || optional || CSS class for the seal image. Parameter {{para|seal_class|skin-invert}} can be used for dark mode support if the seal image is monochrome. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Coat of arms image |- style="vertical-align:top;" | '''image_shield''' || optional || Can be used for a place with a coat of arms. |- style="vertical-align:top;" | '''shield_size''' || optional || If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''shield_alt''' || optional || Alt text for the shield. |- style="vertical-align:top;" | '''shield_link''' || optional || Can be used if a wiki article if known but is not automatically linked by the template. See [[Coquitlam, British Columbia]]'s infobox for an example. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Logo or emblem image |- style="vertical-align:top;" | '''image_blank_emblem''' || optional || Can be used if a place has an official logo, crest, emblem, etc. |- style="vertical-align:top;" | '''blank_emblem_type''' || optional || Caption beneath "image_blank_emblem" to specify what type of emblem it is. |- style="vertical-align:top;" | '''blank_emblem_size''' || optional || If used, '''px''' must be specified; default size is 100px. |- style="vertical-align:top;" | '''blank_emblem_alt''' || optional || Alt text for blank emblem. |- style="vertical-align:top;" | '''blank_emblem_link''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Nickname, motto |- style="vertical-align:top;" | '''etymology''' || optional || origin of name |- style="vertical-align:top;" | '''nickname''' || optional || well-known nickname |- style="vertical-align:top;" | '''nicknames''' || optional || if more than one well-known nickname, use this |- style="vertical-align:top;" | '''motto''' || optional || Will place the motto under the nicknames |- style="vertical-align:top;" | '''mottoes''' || optional || if more than one motto, use this |- style="vertical-align:top;" | '''anthem''' || optional || Will place the anthem (song) under the nicknames |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Maps, coordinates=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Map images |- style="vertical-align:top;" | '''image_map''' || optional || |- style="vertical-align:top;" | '''mapsize''' || optional || If used, '''px''' must be specified; default is 250px. |- style="vertical-align:top;" | '''map_alt''' || optional || Alt text for map. |- style="vertical-align:top;" | '''map_caption''' || optional || |- style="vertical-align:top;" | '''image_map1''' || optional || A secondary map image. The field '''image_map''' must be filled in first. Example see: [[Bloomsburg, Pennsylvania]]. |- style="vertical-align:top;" | '''mapsize1''' || optional || If used, '''px''' must be specified; default is 250px. |- style="vertical-align:top;" | '''map_alt1''' || optional || Alt text for secondary map. |- style="vertical-align:top;" | '''map_caption1''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Pushpin map(s), coordinates |- style="vertical-align:top;" | '''pushpin_map''' || optional || The name of a location map as per [[Template:Location map]] (e.g. ''Indonesia'' or ''Russia''). The coordinate fields (from {{para|coordinates}}) position a pushpin coordinate marker and label on the map '''automatically'''. Example: [[Padang, Indonesia]]. To show multiple pushpin maps, provide a list of maps separated by #, e.g., ''California#USA'' |- style="vertical-align:top;" | '''pushpin_mapsize''' || optional || Must be entered as only a number—'''do not use px'''. The default value is 250.<br/>''Equivalent to <code>width</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_map_alt''' || optional || Alt text for pushpin map; used by [[screen reader]]s, see [[WP:ALT]].<br/>''Equivalent to <code>alt</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_map_caption''' || optional || Fill out if a different caption from ''map_caption'' is desired.<br/>''Equivalent to <code>caption</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_map_caption_notsmall''' || optional || <!-- add documentation here --> |- style="vertical-align:top;" | '''pushpin_label''' || optional || The text of the label to display next to the identifying mark; a [[Wiki markup|wikilink]] can be used. If not specified, the label will be the text assigned to the ''name'' or ''official_name'' parameters (if {{para|pushpin_label_position|none}}, no label is displayed).<br/>''Equivalent to <code>label</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_label_position''' || optional || The position of the label on the pushpin map relative to the pushpin coordinate marker. Valid options are {left, right, top, bottom, none}. If this field is not specified, the default value is ''right''.<br/>''Equivalent to <code>position</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_outside''' || optional || ''Equivalent to <code>outside</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_relief''' || optional || Set this to <code>y</code> or any non-blank value to use an alternative relief map provided by the selected location map (if a relief map is available). <br/>''Equivalent to <code>relief</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_image''' || optional || Allows the use of an alternative map; the image must have the same edge coordinates as the location map template.<br/>''Equivalent to <code>AlternativeMap</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''pushpin_overlay''' || optional || Can be used to specify an image to be superimposed on the regular pushpin map.<br/>''Equivalent to <code>overlay_image</code> parameter in [[Template:Location map]].'' |- style="vertical-align:top;" | '''mapframe''' || optional || Add a {{tl|infobox mapframe}} map. See the documentation below in [[#Mapframe maps]] for more details on usage. |- style="vertical-align:top;" | '''coordinates''' || optional || Latitude and longitude. Use {{tl|Coord}}. See the documentation for {{tl|Coord}} for more details on usage. |- style="vertical-align:top;" | '''coor_pinpoint''' || optional || If needed, to specify more exactly where (or what) coordinates are given (e.g. ''Town Hall'') or a specific place in a larger area (e.g. a city in a county). Example: In the article [[Masovian Voivodeship]], <code>coor_pinpoint=Warsaw</code> specifies [[Warsaw]]. |- style="vertical-align:top;" | '''coordinates_footnotes''' || optional || Reference(s) for coordinates, placed within <code><nowiki><ref> </ref></nowiki></code> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''grid_name'''<br />'''grid_position''' || optional || Name of a regional grid system and position on the regional grid |} ====Mapframe maps==== {{Infobox mapframe/doc/parameters | onByDefault = yes, unless any of the other map parameters are present: {{para|pushpin_map}}, {{para|image_map}}, {{para|image_map1}} | mapframe-frame-width = 250 | mapframe-length_km = {{para|length_km}} | mapframe-length_mi = {{para|length_mi}} | mapframe-width_km = {{para|width_km}} | mapframe-width_mi = {{para|width_mi}} | mapframe-area_km2 = {{para|area_total_km2}} | mapframe-area_ha = {{para|area_total_ha}} | mapframe-area_acre = {{para|area_total_acre}} | mapframe-area_sq_mi = {{para|area_total_sq_mi}} | mapframe-type = city | mapframe-population = {{para|population_metro}} or {{para|population_total}} | mapframe-marker = town | mapframe-caption = Interactive map of {{para|name}} or {{para|official_name}} or {{tl|PAGENAMEBASE}} }} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Location, established, seat, subdivisions, government, leaders=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Location |- style="vertical-align:top;" | {{anchor|subdivision_type}}'''subdivision_type''' || optional || almost always <code><nowiki>Country</nowiki></code> |- style="vertical-align:top;" | '''subdivision_name''' || optional || Depends on the subdivision_type — use the name in text form, sample: <code>United States</code>. Per [[MOS:INFOBOXFLAG]], flag icons or flag templates may be used in this field |- style="vertical-align:top;" | '''subdivision_type1'''<br />to<br />'''subdivision_type6''' || optional || Can be State/Province, region, county. These labels are for subdivisions ''above'' the level of the settlement described in the article. For subdivisions ''below'' or ''within'' the place described in the article, use {{para|parts_type}}. |- style="vertical-align:top;" | '''subdivision_name1'''<br />to<br />'''subdivision_name6''' || optional || Use the name in text form, sample: <code>Florida</code> or <code><nowiki>[[Florida]]</nowiki></code>. Per [[MOS:INFOBOXFLAG]], settlements "may have flags of the country and first-level administrative subdivision in infoboxes". Flag icons or flag templates is permitted for subdivision_name1 (which is usually state or province); flag icons or flag templates should '''not''' be used in subdivision_name2-6. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Established |- style="vertical-align:top;" | '''established_title''' || optional || Example: Founded |- style="vertical-align:top;" | '''established_date''' || optional || Requires established_title= |- style="vertical-align:top;" | '''established_title1''' || optional || Example: Incorporated (town) <br/>[Note that "established_title1" is distinct from "established_title"; you can think of "established_title" as behaving like "established_title0".] |- style="vertical-align:top;" | '''established_date1''' || optional || [See note for "established_title1".] Requires established_title1= |- style="vertical-align:top;" | '''established_title2''' || optional || Example: Incorporated (city) |- style="vertical-align:top;" | '''established_date2''' || optional || Requires established_title2= |- style="vertical-align:top;" | '''established_title3''' || optional || |- style="vertical-align:top;" | '''established_date3''' || optional || Requires established_title3= |- style="vertical-align:top;" | '''established_title4''' || optional || |- style="vertical-align:top;" | '''established_date4''' || optional || Requires established_title4= |- style="vertical-align:top;" | '''established_title5''' || optional || |- style="vertical-align:top;" | '''established_date5''' || optional || Requires established_title5= |- style="vertical-align:top;" | '''established_title6''' || optional || |- style="vertical-align:top;" | '''established_date6''' || optional || Requires established_title6= |- style="vertical-align:top;" | '''established_title7''' || optional || |- style="vertical-align:top;" | '''established_date7''' || optional || Requires established_title7= |- style="vertical-align:top;" | '''extinct_title''' || optional || For when a settlement ceases to exist |- style="vertical-align:top;" | '''extinct_date''' || optional || Requires extinct_title= |- style="vertical-align:top;" | '''founder''' || optional || Who the settlement was founded by |- style="vertical-align:top;" | '''named_for''' || optional || The source of the name of the settlement (a person, a place, et cetera) |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Seat of government |- style="vertical-align:top;" | '''seat_type''' || optional || The label for the seat of government (defaults to ''Seat''). |- style="vertical-align:top;" | '''seat''' || optional || The seat of government. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Smaller parts (e.g. boroughs of a city) |- style="vertical-align:top;" | '''parts_type''' || optional || The label for the smaller subdivisions (defaults to ''Boroughs''). |- style="vertical-align:top;" | '''parts_style''' || optional || Set to ''list'' to display as a collapsible list, ''coll'' as a collapsed list, or ''para'' to use paragraph style. Default is ''list'' for up to 5 items, otherwise ''coll''. |- style="vertical-align:top;" | '''parts''' || optional || Text or header of the list of smaller subdivisions. |- style="vertical-align:top;" | '''p1'''<br />'''p2'''<br />to<br />'''p50''' || optional || The smaller subdivisions to be listed. Example: [[Warsaw]] |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Government type, leaders |- style="vertical-align:top;" | '''government_footnotes''' || optional || Reference(s) for government, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''government_type''' || optional || Examples: [[Mayor–council government]], [[Council–manager government]], [[City commission government]], ... |- style="vertical-align:top;" | '''governing_body''' || optional || Name of the place's governing body |- style="vertical-align:top;" | '''leader_party''' || optional || Political party of the place's leader |- style="vertical-align:top;" | '''leader_title''' || optional || First title of the place's leader, e.g. Mayor |- style="vertical-align:top;" | '''leader_name''' || optional || Name of the place's leader |- style="vertical-align:top;" | '''leader_title1'''<br />to<br />'''leader_title4''' || optional || |- style="vertical-align:top;" | '''leader_name1'''<br />to<br />'''leader_name4''' || optional || For long lists use {{tl|Collapsible list}}. See [[Halifax Regional Municipality|Halifax]] for an example. |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Geographic information=== |- style="vertical-align:top;" | colspan=3 | These fields have '''dual automatic unit conversion''' meaning that if only metric values are entered, the imperial values will be automatically converted and vice versa. If an editor wishes to over-ride the automatic conversion, e.g. if the source gives both metric and imperial or if a range of values is needed, they should enter both values in their respective fields. All values must be entered in a '''raw format: no commas, spaces, or unit symbols'''. The template will format them automatically. |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Display settings |- style="vertical-align:top;" | '''total_type''' || optional || Specifies what "total" area and population figure refer to, e.g. ''Greater London''. This overrides other labels for total population/area. To make the total area and population display on the same line as the words "Area" and "Population", with no "Total" or similar label, set the value of this parameter to '''&amp;nbsp;'''. |- style="vertical-align:top;" | '''unit_pref''' || optional || To change the unit order to ''imperial (metric)'', enter '''imperial'''. The default display style is ''metric (imperial)''. However, the template will swap the order automatically if the '''subdivision_name''' equals some variation of the US or the UK.<br />For the Middle East, a unit preference of [[dunam]] can be entered (only affects total area). <br /> |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Area |- style="vertical-align:top;" | '''area_footnotes''' || optional || Reference(s) for area, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''dunam_link''' || optional || If dunams are used, the default is to link the word ''dunams'' in the total area section. This can be changed by setting <code>dunam_link</code> to another measure (e.g. <code>dunam_link=water</code>). Linking can also be turned off by setting the parameter to something else (e.g. <code>dunam_link=none</code> or <code>dunam_link=off</code>). |- style="vertical-align:top;" | '''area_total_km2''' || optional || Total area in square kilometers—symbol: km<sup>2</sup>. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square miles if area_total_sq_mi is empty. |- style="vertical-align:top;" | '''area_total_ha''' || optional || Total area in hectares—symbol: ha. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display acres if area_total_acre is empty. |- style="vertical-align:top;" | '''area_total_sq_mi''' || optional || Total area in square miles—symbol: sq&nbsp;mi. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers if area_total_km2 is empty. |- style="vertical-align:top;" | '''area_total_acre''' || optional || Total area in acres. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display hectares if area_total_ha is empty. |- style="vertical-align:top;" | '''area_total_dunam''' || optional || Total area in dunams, which is wiki-linked. Used in middle eastern places like Israel, Gaza, and the West Bank. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers or hectares and square miles or acreds if area_total_km2, area_total_ha, area_total_sq_mi, and area_total_acre are empty. Examples: [[Gaza City|Gaza]] and [[Ramallah]] |- style="vertical-align:top;" | '''area_land_km2''' || optional || Land area in square kilometers—symbol: km<sup>2</sup>. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square miles if area_land_sq_mi is empty. |- style="vertical-align:top;" | '''area_land_sq_mi''' || optional || Land area in square miles—symbol: sq&nbsp;mi. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers if area_land_km2 is empty. |- style="vertical-align:top;" | '''area_land_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_land_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_land_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_water_km2''' || optional || Water area in square kilometers—symbol: km<sup>2</sup>. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square miles if area_water_sq_mi is empty. |- style="vertical-align:top;" | '''area_water_sq_mi''' || optional || Water area in square miles—symbol: sq&nbsp;mi. Value must be entered in '''raw format''', no commas or spaces. Auto-converted to display square kilometers if area_water_km2 is empty. |- style="vertical-align:top;" | '''area_water_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_water_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_water_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_water_percent''' || optional || percent of water without the "%" |- style="vertical-align:top;" | '''area_urban_km2''' || optional || |- style="vertical-align:top;" | '''area_urban_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_urban_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_urban_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_urban_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_rural_km2''' || optional || |- style="vertical-align:top;" | '''area_rural_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_rural_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_rural_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_rural_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_metro_km2''' || optional || |- style="vertical-align:top;" | '''area_metro_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_metro_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_metro_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_metro_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_rank''' || optional || The settlement's area, as ranked within its parent sub-division |- style="vertical-align:top;" | '''area_blank1_title''' || optional || Example see London |- style="vertical-align:top;" | '''area_blank1_km2''' || optional || |- style="vertical-align:top;" | '''area_blank1_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_blank1_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_blank1_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_blank1_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_blank2_title''' || optional || |- style="vertical-align:top;" | '''area_blank2_km2''' || optional || |- style="vertical-align:top;" | '''area_blank2_sq_mi''' || optional || |- style="vertical-align:top;" | '''area_blank2_ha''' || optional || similar to <code>area_total_ha</code> |- style="vertical-align:top;" | '''area_blank2_dunam''' || optional || similar to <code>area_total_dunam</code> |- style="vertical-align:top;" | '''area_blank2_acre''' || optional || similar to <code>area_total_acre</code> |- style="vertical-align:top;" | '''area_note''' || optional || A place for additional information such as the name of the source. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Dimensions |- style="vertical-align:top;" | '''dimensions_footnotes''' || optional || Reference(s) for dimensions, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''length_km''' || optional || Raw number entered in kilometers. Will automatically convert to display length in miles if length_mi is empty. |- style="vertical-align:top;" | '''length_mi''' || optional || Raw number entered in miles. Will automatically convert to display length in kilometers if length_km is empty. |- style="vertical-align:top;" | '''width_km''' || optional || Raw number entered in kilometers. Will automatically convert to display width in miles if length_mi is empty. |- style="vertical-align:top;" | '''width_mi''' || optional || Raw number entered in miles. Will automatically convert to display width in kilometers if length_km is empty. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Elevation |- style="vertical-align:top;" | '''elevation_footnotes''' || optional || Reference(s) for elevation, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''elevation_m''' || optional || Raw number entered in meters. Will automatically convert to display elevation in feet if elevation_ft is empty. However, if a range in elevation (i.e. 5–50 m ) is desired, use the "max" and "min" fields below |- style="vertical-align:top;" | '''elevation_ft''' || optional || Raw number, entered in feet. Will automatically convert to display the average elevation in meters if '''elevation_m''' field is empty. However, if a range in elevation (e.g. 50–500&nbsp;ft ) is desired, use the "max" and "min" fields below |- style="vertical-align:top;" | '''elevation_max_footnotes'''<br />'''elevation_min_footnotes''' || optional || Same as above, but for the "max" and "min" elevations. See [[City of Leeds]]. |- style="vertical-align:top;" | '''elevation_max_m'''<br />'''elevation_max_ft'''<br />'''elevation_max_rank'''<br />'''elevation_min_m'''<br />'''elevation_min_ft'''<br />'''elevation_min_rank''' || optional || Used to give highest & lowest elevations and rank, instead of just a single value. Example: [[Halifax Regional Municipality]]. |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Population, demographics=== |- style="vertical-align:top;" | colspan=3 | The density fields have '''dual automatic unit conversion''' meaning that if only metric values are entered, the imperial values will be automatically converted and vice versa. If an editor wishes to over-ride the automatic conversion, e.g. if the source gives both metric and imperial or if a range of values is needed, they can enter both values in their respective fields. '''To calculate density with respect to the total area automatically, type ''auto'' in place of any density value.''' |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Population |- style="vertical-align:top;" | '''population_total''' || optional || Actual population (see below for estimates) preferably consisting of digits only (without any commas) |- style="vertical-align:top;" | '''population_as_of''' || optional || The year for the population total (usually a census year) |- style="vertical-align:top;" | '''population_footnotes''' || optional || Reference(s) for population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_km2''' || optional || Set to {{code|auto}} to auto generate based on {{para|population_total}} and {{para|area_total_km2}} |- style="vertical-align:top;" | '''population_density_sq_mi''' || optional || Set to {{code|auto}} to auto generate based on {{para|population_total}} and {{para|area_total_sq_mi}} |- style="vertical-align:top;" | '''population_est''' || optional || Population estimate. |- style="vertical-align:top;" | '''pop_est_as_of''' || optional || The year or month & year of the population estimate |- style="vertical-align:top;" | '''pop_est_footnotes''' || optional || Reference(s) for population estimate, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_urban''' || optional || |- style="vertical-align:top;" | '''population_urban_footnotes''' || optional || Reference(s) for urban population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_urban_km2''' || optional || |- style="vertical-align:top;" | '''population_density_urban_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_rural''' || optional || |- style="vertical-align:top;" | '''population_rural_footnotes''' || optional || Reference(s) for rural population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_rural_km2''' || optional || |- style="vertical-align:top;" | '''population_density_rural_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_metro''' || optional || |- style="vertical-align:top;" | '''population_metro_footnotes''' || optional || Reference(s) for metro population, placed within <nowiki><ref> </ref></nowiki> tags |- style="vertical-align:top;" | '''population_density_metro_km2''' || optional || |- style="vertical-align:top;" | '''population_density_metro_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_rank''' || optional || The settlement's population, as ranked within its parent sub-division |- style="vertical-align:top;" | '''population_density_rank''' || optional || The settlement's population density, as ranked within its parent sub-division |- style="vertical-align:top;" | '''population_blank1_title''' || optional || Can be used for estimates. Example: [[Windsor, Ontario]] |- style="vertical-align:top;" | '''population_blank1''' || optional || The population value for blank1_title |- style="vertical-align:top;" | '''population_density_blank1_km2''' || optional || |- style="vertical-align:top;" | '''population_density_blank1_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_blank2_title''' || optional || |- style="vertical-align:top;" | '''population_blank2''' || optional || |- style="vertical-align:top;" | '''population_density_blank2_km2''' || optional || |- style="vertical-align:top;" | '''population_density_blank2_sq_mi''' || optional || |- style="vertical-align:top;" | '''population_demonym''' || optional || A demonym or gentilic is a word that denotes the members of a people or the inhabitants of a place. For example, a citizen in [[Liverpool]] is known as a [[Liverpudlian]]. |- style="vertical-align:top;" | '''population_demonyms''' || optional || If more than one demonym, use this |- style="vertical-align:top;" | '''population_note''' || optional || A place for additional information such as the name of the source. See [[Windsor, Ontario]] for example. |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Demographics (section 1) |- style="vertical-align:top;" | '''demographics_type1''' || optional || Section Header. For example: Ethnicity |- style="vertical-align:top;" | '''demographics1_footnotes''' || optional || Reference(s) for demographics section 1, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''demographics1_title1'''<br />to<br />'''demographics1_title7''' || optional || Titles related to demographics_type1. For example: White, Black, Hispanic... |- style="vertical-align:top;" | '''demographics1_info1'''<br />to<br />'''demographics1_info7''' || optional || Information related to the "titles". For example: 50%, 25%, 10%... |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Demographics (section 2) |- style="vertical-align:top;" | '''demographics_type2''' || optional || A second section header. For example: Languages |- style="vertical-align:top;" | '''demographics2_footnotes''' || optional || Reference(s) for demographics section 2, placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{tl|Cite web}} |- style="vertical-align:top;" | '''demographics2_title1'''<br />to<br />'''demographics2_title10''' || optional || Titles related to '''demographics_type2'''. For example: English, French, Arabic... |- style="vertical-align:top;" | '''demographics2_info1'''<br />to<br />'''demographics2_info10''' || optional || Information related to the "titles" for type2. For example: 50%, 25%, 10%... |} {| class="wikitable" |- style="vertical-align:top;" | colspan=3 style="color:inherit; background: orange; text-align: center;" | ===Other information=== |- style="color: black; background: whitesmoke;" ! Parameter name !! Usage !! Description |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Time zone(s) |- style="vertical-align:top;" | '''timezone1''' || optional || |- style="vertical-align:top;" | '''utc_offset1''' || optional || Plain text, e.g. "+05:00" or "−08:00". Auto-linked, so do not include references or additional text. |- style="vertical-align:top;" | '''timezone1_DST''' || optional || |- style="vertical-align:top;" | '''utc_offset1_DST''' || optional || |- style="vertical-align:top;" | '''timezone2''' || optional || A second timezone field for larger areas. Up to five timezones may be included. |- style="vertical-align:top;" | '''utc_offset2''' || optional || |- style="vertical-align:top;" | '''timezone2_DST''' || optional || |- style="vertical-align:top;" | '''utc_offset2_DST''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Postal code(s) & area code |- style="vertical-align:top;" | '''postal_code_type''' || optional || |- style="vertical-align:top;" | '''postal_code''' || optional || |- style="vertical-align:top;" | '''postal2_code_type''' || optional || |- style="vertical-align:top;" | '''postal2_code''' || optional || |- style="vertical-align:top;" | '''area_code_type''' || optional || If left blank/not used template will default to "[[Telephone numbering plan|Area code(s)]]" |- style="vertical-align:top;" | '''area_code''' || optional || Refers to the telephone dialing code for the settlement, ''not'' a geographic area code. |- style="vertical-align:top;" | '''area_codes''' || optional || If more than one area code, use this |- style="vertical-align:top;" | '''geocode''' || optional || See [[Geocode]] |- style="vertical-align:top;" | '''iso_code''' || optional || See [[ISO 3166]] |- style="vertical-align:top;" | '''registration_plate_type''' || optional || If left blank/not used template will default to "[[Vehicle registration plate|Vehicle registration]]" |- style="vertical-align:top;" | '''registration_plate''' || optional || See [[Vehicle registration plate]] |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Blank fields (section 1) |- style="vertical-align:top;" | '''blank_name_sec1''' || optional || Fields used to display other information. The name is displayed in bold on the left side of the infobox. |- style="vertical-align:top;" | '''blank_info_sec1''' || optional || The information associated with the ''blank_name'' heading. The info is displayed on right side of infobox, in the same row as the name. For an example, see: [[Warsaw]] |- style="vertical-align:top;" | '''blank1_name_sec1'''<br />to<br />'''blank7_name_sec1''' || optional || Up to 7 additional fields (8 total) can be displayed in this section |- style="vertical-align:top;" | '''blank1_info_sec1'''<br />to<br />'''blank7_info_sec1''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Blank fields (section 2) |- style="vertical-align:top;" | '''blank_name_sec2''' || optional || For a second section of blank fields |- style="vertical-align:top;" | '''blank_info_sec2''' || optional || Example: [[Beijing]] |- style="vertical-align:top;" | '''blank1_name_sec2'''<br />to<br />'''blank7_name_sec2''' || optional || Up to 7 additional fields (8 total) can be displayed in this section |- style="vertical-align:top;" | '''blank1_info_sec2'''<br />to<br />'''blank7_info_sec2''' || optional || |- style="vertical-align:top;" ! colspan=3 style="color:black; background: #ddd;" | Website, footnotes |- style="vertical-align:top;" | '''website''' || optional || External link to official website, use {{Tl|Official URL}} if Property P856 "official website" exists on Wikidata, or <nowiki>{{URL|example.com}}</nowiki> |- style="vertical-align:top;" | '''module''' || optional || To embed infoboxes at the bottom of the infobox |- style="vertical-align:top;" | '''footnotes''' || optional || Text to be displayed at the bottom of the infobox |} <!-- End of parameter name/description table --> ==Examples== ;Example 1: <!-- NOTE: This differs from the actual Chicago infobox in order to provide examples. --> {{Infobox settlement | name = Chicago | settlement_type = [[City (Illinois)|City]] | image_skyline = Chicago montage.jpg | imagesize = 275px <!--default is 250px--> | image_caption = Clockwise from top: [[Downtown Chicago]], the [[Chicago Theatre]], the [[Chicago 'L']], [[Navy Pier]], [[Millennium Park]], the [[Field Museum]], and the [[Willis Tower|Willis (formerly Sears) Tower]] | image_flag = Flag of Chicago, Illinois.svg | image_seal = | etymology = {{langx|mia|shikaakwa}} ("wild onion" or "wild garlic") | nickname = [[Origin of Chicago's "Windy City" nickname|The Windy City]], The Second City, Chi-Town, Chi-City, Hog Butcher for the World, City of the Big Shoulders, The City That Works, and others found at [[List of nicknames for Chicago]] | motto = {{langx|la|Urbs in Horto}} (City in a Garden), Make Big Plans (Make No Small Plans), I Will | image_map = US-IL-Chicago.png | map_caption = Location in the [[Chicago metropolitan area]] and Illinois | pushpin_map = USA | pushpin_map_caption = Location in the United States | mapframe = yes | mapframe-zoom = 8 | mapframe-stroke-width = 1 | mapframe-shape-fill = #0096ff | mapframe-marker = building-alt1 | mapframe-wikidata = yes | mapframe-id = Q1297 | coordinates = {{coord|41|50|15|N|87|40|55|W}} | coordinates_footnotes = <ref name="USCB Gazetteer 2010"/> | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = [[Illinois]] | subdivision_type2 = [[List of counties in Illinois|Counties]] | subdivision_name2 = [[Cook County, Illinois|Cook]], [[DuPage County, Illinois|DuPage]] | established_title = Settled | established_date = 1770s | established_title2 = [[Municipal corporation|Incorporated]] | established_date2 = March 4, 1837 | founder = | named_for = {{langx|mia|shikaakwa}}<br /> ("Wild onion") | government_type = [[Mayor–council government|Mayor–council]] | leader_title = [[Mayor of Chicago|Mayor]] | leader_name = [[Rahm Emanuel]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[City council|Council]] | leader_name1 = [[Chicago City Council]] | unit_pref = Imperial | area_footnotes = <ref name="USCB Gazetteer 2010">{{cite web | url = https://www.census.gov/geo/www/gazetteer/files/Gaz_places_national.txt | title = 2010 United States Census Gazetteer for Places: January 1, 2010 | format = text | work = 2010 United States Census | publisher = [[United States Census Bureau]] | date = April 2010 | access-date = August 1, 2012}}</ref> | area_total_sq_mi = 234.114 | area_land_sq_mi = 227.635 | area_water_sq_mi = 6.479 | area_water_percent = 3 | area_urban_sq_mi = 2123 | area_metro_sq_mi = 10874 | elevation_footnotes = <ref name="GNIS"/> | elevation_ft = 594 | elevation_m = 181 | population_footnotes = <ref name="USCB PopEstCities 2011">{{cite web | url = https://www.census.gov/popest/data/cities/totals/2011/tables/SUB-EST2011-01.csv | title = Annual Estimates of the Resident Population for Incorporated Places Over 50,000, Ranked by July 1, 2011 Population | format = [[comma-separated values|CSV]] | work = 2011 Population Estimates | publisher = [[United States Census Bureau]], Population Division | date = June 2012 | access-date = August 1, 2012}}</ref><ref name="USCB Metro 2010">{{cite web | url=https://www.census.gov/prod/cen2010/briefs/c2010br-01.pdf | title = Population Change for the Ten Most Populous and Fastest Growing Metropolitan Statiscal Areas: 2000 to 2010 | date = March 2011 | publisher = [[U.S. Census Bureau]] | page = 6 |access-date = April 12, 2011}}</ref> | population_as_of = [[2010 United States census|2010]] | population_total = 2695598 | pop_est_footnotes = | pop_est_as_of = 2011 | population_est = 2707120 | population_rank = [[List of United States cities by population|3rd US]] | population_density_sq_mi = 11,892.4<!-- 2011 population_est / area_land_sq_mi --> | population_urban = 8711000 | population_density_urban_sq_mi = auto | population_metro = 9461105 | population_density_metro_sq_mi = auto | population_demonym = Chicagoan | timezone = [[Central Standard Time|CST]] | utc_offset = −06:00 | timezone_DST = [[Central Daylight Time|CDT]] | utc_offset_DST = −05:00 | area_code_type = [[North American Numbering Plan|Area codes]] | area_codes = [[Area code 312|312]], [[Area code 773|773]], [[Area code 872|872]] | blank_name = [[Federal Information Processing Standards|FIPS]] code | blank_info = {{FIPS|17|14000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|423587}}, {{GNIS 4|428803}} | website = {{URL|www.cityofchicago.org}} | footnotes = <ref name="GNIS">{{Cite gnis|428803|City of Chicago|April 12, 2011}}</ref> }} <syntaxhighlight lang="wikitext" style="overflow:auto; white-space: pre-wrap;"> <!-- NOTE: This differs from the actual Chicago infobox in order to provide examples. --> {{Infobox settlement | name = Chicago | settlement_type = [[City (Illinois)|City]] | image_skyline = Chicago montage.jpg | imagesize = 275px <!--default is 250px--> | image_caption = Clockwise from top: [[Downtown Chicago]], the [[Chicago Theatre]], the [[Chicago 'L']], [[Navy Pier]], [[Millennium Park]], the [[Field Museum]], and the [[Willis Tower|Willis (formerly Sears) Tower]] | image_flag = Flag of Chicago, Illinois.svg | image_seal = | etymology = {{langx|mia|shikaakwa}} ("wild onion" or "wild garlic") | nickname = [[Origin of Chicago's "Windy City" nickname|The Windy City]], The Second City, Chi-Town, Chi-City, Hog Butcher for the World, City of the Big Shoulders, The City That Works, and others found at [[List of nicknames for Chicago]] | motto = {{langx|la|Urbs in Horto}} (City in a Garden), Make Big Plans (Make No Small Plans), I Will | image_map = US-IL-Chicago.png | map_caption = Location in the [[Chicago metropolitan area]] and Illinois | pushpin_map = USA | pushpin_map_caption = Location in the United States | mapframe = yes | mapframe-zoom = 8 | mapframe-stroke-width = 1 | mapframe-shape-fill = #0096ff | mapframe-marker = building-alt1 | coordinates = {{coord|41|50|15|N|87|40|55|W}} | coordinates_footnotes = <ref name="USCB Gazetteer 2010"/> | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = [[Illinois]] | subdivision_type2 = [[List of counties in Illinois|Counties]] | subdivision_name2 = [[Cook County, Illinois|Cook]], [[DuPage County, Illinois|DuPage]] | established_title = Settled | established_date = 1770s | established_title2 = [[Municipal corporation|Incorporated]] | established_date2 = March 4, 1837 | founder = | named_for = {{langx|mia|shikaakwa}}<br /> ("Wild onion") | government_type = [[Mayor–council government|Mayor–council]] | leader_title = [[Mayor of Chicago|Mayor]] | leader_name = [[Rahm Emanuel]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[City council|Council]] | leader_name1 = [[Chicago City Council]] | unit_pref = Imperial | area_footnotes = <ref name="USCB Gazetteer 2010">{{cite web | url = https://www.census.gov/geo/www/gazetteer/files/Gaz_places_national.txt | title = 2010 United States Census Gazetteer for Places: January 1, 2010 | format = text | work = 2010 United States Census | publisher = [[United States Census Bureau]] | date = April 2010 | access-date = August 1, 2012}}</ref> | area_total_sq_mi = 234.114 | area_land_sq_mi = 227.635 | area_water_sq_mi = 6.479 | area_water_percent = 3 | area_urban_sq_mi = 2123 | area_metro_sq_mi = 10874 | elevation_footnotes = <ref name="GNIS"/> | elevation_ft = 594 | elevation_m = 181 | population_footnotes = <ref name="USCB PopEstCities 2011">{{cite web | url = https://www.census.gov/popest/data/cities/totals/2011/tables/SUB-EST2011-01.csv | title = Annual Estimates of the Resident Population for Incorporated Places Over 50,000, Ranked by July 1, 2011 Population | format = [[comma-separated values|CSV]] | work = 2011 Population Estimates | publisher = [[United States Census Bureau]], Population Division | date = June 2012 | access-date = August 1, 2012}}</ref><ref name="USCB Metro 2010">{{cite web | url=https://www.census.gov/prod/cen2010/briefs/c2010br-01.pdf | title = Population Change for the Ten Most Populous and Fastest Growing Metropolitan Statiscal Areas: 2000 to 2010 | date = March 2011 | publisher = [[U.S. Census Bureau]] | page = 6 |access-date = April 12, 2011}}</ref> | population_as_of = [[2010 United States census|2010]] | population_total = 2695598 | pop_est_footnotes = | pop_est_as_of = 2011 | population_est = 2707120 | population_rank = [[List of United States cities by population|3rd US]] | population_density_sq_mi = 11,892.4<!-- 2011 population_est / area_land_sq_mi --> | population_urban = 8711000 | population_density_urban_sq_mi = auto | population_metro = 9461105 | population_density_metro_sq_mi = auto | population_demonym = Chicagoan | timezone = [[Central Standard Time|CST]] | utc_offset = −06:00 | timezone_DST = [[Central Daylight Time|CDT]] | utc_offset_DST = −05:00 | area_code_type = [[North American Numbering Plan|Area codes]] | area_codes = [[Area code 312|312]], [[Area code 773|773]], [[Area code 872|872]] | blank_name = [[Federal Information Processing Standards|FIPS]] code | blank_info = {{FIPS|17|14000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|423587}}, {{GNIS 4|428803}} | website = {{URL|www.cityofchicago.org}} | footnotes = <ref name="GNIS">{{Cite gnis|428803|City of Chicago|April 12, 2011}}</ref> }} </syntaxhighlight> '''References''' {{reflist}} {{clear}} ---- ;Example 2: {{Infobox settlement | name = Detroit | settlement_type = [[City (Michigan)|City]] | image_skyline = Detroit Montage.jpg | imagesize = 290px | image_caption = Images from top to bottom, left to right: [[Downtown Detroit]] skyline, [[Spirit of Detroit]], [[Greektown Historic District|Greektown]], [[Ambassador Bridge]], [[Michigan Soldiers' and Sailors' Monument]], [[Fox Theatre (Detroit)|Fox Theatre]], and [[Comerica Park]]. | image_flag = Flag of Detroit.svg | image_seal = Seal of Detroit.svg | etymology = {{langx|fr|détroit}} ([[strait]]) | nickname = The Motor City, Motown, Renaissance City, The D, Hockeytown, The Automotive Capital of the World, Rock City, The 313 | motto = ''Speramus Meliora; Resurget Cineribus''<br />([[Latin]]: We Hope For Better Things; It Shall Rise From the Ashes) | image_map = Wayne County Michigan Incorporated and Unincorporated areas Detroit highlighted.svg | mapsize = 250x200px | map_caption = Location within [[Wayne County, Michigan|Wayne County]] and the state of [[Michigan]] | pushpin_map = USA | pushpin_map_caption = Location within the [[contiguous United States]] | mapframe = yes | mapframe-stroke-width = 1 | mapframe-marker = city | mapframe-zoom = 9 | mapframe-wikidata = yes | mapframe-id = Q12439 | coordinates = {{coord|42|19|53|N|83|2|45|W}} | coordinates_footnotes = | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = [[Michigan]] | subdivision_type2 = [[List of counties in Michigan|County]] | subdivision_name2 = [[Wayne County, Michigan|Wayne]] | established_title = Founded | established_date = 1701 | established_title2 = Incorporated | established_date2 = 1806 | government_footnotes = <!-- for references: use<ref> tags --> | government_type = [[Mayor–council government|Mayor–council]] | leader_title = [[List of mayors of Detroit|Mayor]] | leader_name = [[Mike Duggan]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[Detroit City Council|City Council]] | leader_name1 = {{collapsible list|bullets=yes | title = Members | 1 = [[Charles Pugh]] – Council President | 2 = [[Gary Brown (Detroit politician)|Gary Brown]] – Council President Pro-Tem | 3 = [[JoAnn Watson]] | 4 = [[Kenneth Cockrel, Jr.]] | 5 = [[Saunteel Jenkins]] | 6 = [[Andre Spivey]] | 7 = [[James Tate (Detroit politician)|James Tate]] | 8 = [[Brenda Jones (Detroit politician)|Brenda Jones]] | 9 = [[Kwame Kenyatta]] }} | unit_pref = Imperial | area_footnotes = | area_total_sq_mi = 142.87 | area_total_km2 = 370.03 | area_land_sq_mi = 138.75 | area_land_km2 = 359.36 | area_water_sq_mi = 4.12 | area_water_km2 = 10.67 | area_urban_sq_mi = 1295 | area_metro_sq_mi = 3913 | elevation_footnotes = | elevation_ft = 600 | population_footnotes = | population_as_of = 2011 | population_total = 706585 | population_rank = [[List of United States cities by population|18th in U.S.]] | population_urban = 3863924 | population_metro = 4285832 (US: [[List of United States metropolitan statistical areas|13th]]) | population_blank1_title = [[Combined statistical area|CSA]] | population_blank1 = 5207434 (US: [[List of United States combined statistical areas|11th]]) | population_density_sq_mi= {{#expr:713777/138.8 round 0}} | population_demonym = Detroiter | population_note = | timezone = [[Eastern Time Zone (North America)|EST]] | utc_offset = −5 | timezone_DST = [[Eastern Daylight Time|EDT]] | utc_offset_DST = −4 | postal_code_type = | postal_code = | area_code = [[Area code 313|313]] | blank_name = [[Federal Information Processing Standards|FIPS code]] | blank_info = {{FIPS|26|22000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|1617959}}, {{GNIS 4|1626181}} | website = [http://www.detroitmi.gov/ DetroitMI.gov] | footnotes = }} <syntaxhighlight lang="wikitext" style="overflow:auto; white-space: pre-wrap;"> {{Infobox settlement | name = Detroit | settlement_type = [[City (Michigan)|City]] | image_skyline = Detroit Montage.jpg | imagesize = 290px | image_caption = Images from top to bottom, left to right: [[Downtown Detroit]] skyline, [[Spirit of Detroit]], [[Greektown Historic District|Greektown]], [[Ambassador Bridge]], [[Michigan Soldiers' and Sailors' Monument]], [[Fox Theatre (Detroit)|Fox Theatre]], and [[Comerica Park]]. | image_flag = Flag of Detroit, Michigan.svg | image_seal = Seal of Detroit, Michigan.svg | etymology = {{langx|fr|détroit}} ([[strait]]) | nickname = The Motor City, Motown, Renaissance City, The D, Hockeytown, The Automotive Capital of the World, Rock City, The 313 | motto = ''Speramus Meliora; Resurget Cineribus''<br />([[Latin]]: We Hope For Better Things; It Shall Rise From the Ashes) | image_map = Wayne County Michigan Incorporated and Unincorporated areas Detroit highlighted.svg | mapsize = 250x200px | map_caption = Location within [[Wayne County, Michigan|Wayne County]] and the state of [[Michigan]] | pushpin_map = USA | pushpin_map_caption = Location within the [[contiguous United States]] | mapframe = yes | mapframe-stroke-width = 1 | mapframe-marker = city | mapframe-zoom = 9 | coordinates = {{coord|42|19|53|N|83|2|45|W}} | coordinates_footnotes = | subdivision_type = Country | subdivision_name = United States | subdivision_type1 = State | subdivision_name1 = Michigan | subdivision_type2 = [[List of counties in Michigan|County]] | subdivision_name2 = [[Wayne County, Michigan|Wayne]] | established_title = Founded | established_date = 1701 | established_title2 = Incorporated | established_date2 = 1806 | government_footnotes = <!-- for references: use<ref> tags --> | government_type = [[Mayor-council government|Mayor-Council]] | leader_title = [[List of mayors of Detroit|Mayor]] | leader_name = [[Mike Duggan]] | leader_party = [[Democratic Party (United States)|D]] | leader_title1 = [[Detroit City Council|City Council]] | leader_name1 = {{collapsible list|bullets=yes | title = Members | 1 = [[Charles Pugh]] – Council President | 2 = [[Gary Brown (Detroit politician)|Gary Brown]] – Council President Pro-Tem | 3 = [[JoAnn Watson]] | 4 = [[Kenneth Cockrel, Jr.]] | 5 = [[Saunteel Jenkins]] | 6 = [[Andre Spivey]] | 7 = [[James Tate (Detroit politician)|James Tate]] | 8 = [[Brenda Jones (Detroit politician)|Brenda Jones]] | 9 = [[Kwame Kenyatta]] }} | unit_pref = Imperial | area_footnotes = | area_total_sq_mi = 142.87 | area_total_km2 = 370.03 | area_land_sq_mi = 138.75 | area_land_km2 = 359.36 | area_water_sq_mi = 4.12 | area_water_km2 = 10.67 | area_urban_sq_mi = 1295 | area_metro_sq_mi = 3913 | elevation_footnotes = | elevation_ft = 600 | population_footnotes = | population_as_of = 2011 | population_total = 706585 | population_rank = [[List of United States cities by population|18th in U.S.]] | population_urban = 3863924 | population_metro = 4285832 (US: [[List of United States metropolitan statistical areas|13th]]) | population_blank1_title = [[Combined statistical area|CSA]] | population_blank1 = 5207434 (US: [[List of United States combined statistical areas|11th]]) | population_density_sq_mi= {{#expr:713777/138.8 round 0}} | population_demonym = Detroiter | population_note = | timezone = [[Eastern Time Zone (North America)|EST]] | utc_offset = −5 | timezone_DST = [[Eastern Daylight Time|EDT]] | utc_offset_DST = −4 | postal_code_type = | postal_code = | area_code = [[Area code 313|313]] | blank_name = [[Federal Information Processing Standards|FIPS code]] | blank_info = {{FIPS|26|22000}} | blank1_name = [[Geographic Names Information System|GNIS]] feature ID | blank1_info = {{GNIS 4|1617959}}, {{GNIS 4|1626181}} | website = [http://www.detroitmi.gov/ DetroitMI.gov] | footnotes = }} </syntaxhighlight> {{clear}} ==Supporting templates== The following is a list of sub-templates used by Infobox settlement. See the [{{fullurl:Special:PrefixIndex|prefix=Infobox+settlement%2F&namespace=10&hideredirects=1}} current list of all sub-templates] for documentation, sandboxes, testcases, etc. * {{tl|Infobox settlement/areadisp}} * {{tl|Infobox settlement/densdisp}} * {{tl|Infobox settlement/lengthdisp}} * {{tl|Infobox settlement/link}} ==Microformat== {{UF-hcard-geo}} == TemplateData == {{TemplateData header}} {{collapse top|title=TemplateData}} <templatedata> { "description": "Infobox for human settlements (cities, towns, villages, communities) as well as other administrative districts, counties, provinces, etc.", "format": "block", "params": { "name": { "label": "Common name", "description": "This is the usual name in English. If it's not specified, the infobox will use the 'official_name' as a title unless this too is missing, in which case the page name will be used.", "type": "string", "suggested": true }, "official_name": { "label": "Official name", "description": "The official name in English, if different from 'name'.", "type": "string", "suggested": true }, "native_name": { "label": "Native name", "description": "This will display under the name/official name.", "type": "string", "example": "Distrito Federal de México" }, "native_name_lang": { "label": "Native name language", "description": "Use ISO 639-1 code, e.g. 'fr' for French. If there is more than one native name in different languages, enter those names using {{lang}} instead.", "type": "string", "example": "zh" }, "other_name": { "label": "Other name", "description": "For places with other commonly used names like Bombay or Saigon.", "type": "string" }, "settlement_type": { "label": "Type of settlement", "description": "Any type can be entered, such as 'City', 'Town', 'Village', 'Hamlet', 'Municipality', 'Reservation', etc. If set, will be displayed under the names, provided either 'name' or 'official_name' is filled in. Might also be used as a label for total population/area (defaulting to 'City'), if needed to distinguish from 'Urban', 'Rural' or 'Metro' (if urban, rural or metro figures are not present, the label is 'Total' unless 'total_type' is set).", "type": "string", "aliases": [ "type" ] }, "translit_lang1": { "label": "Transliteration from language 1", "description": "Will place the entry before the word 'transliteration(s)'. Can be used to specify a particular language, like in Dêlêg, or one may just enter 'Other', like in Gaza's article.", "type": "string" }, "translit_lang1_type": { "label": "Transliteration type for language 1", "type": "line", "example": "[[Hanyu pinyin]]", "description": "The type of transliteration used for the first language." }, "translit_lang1_info": { "label": "Transliteration language 1 info", "description": "Parameters 'translit_lang2_info1' ... 'translit_lang2_info6' are also available, but not documented here.", "type": "string" }, "translit_lang2": { "label": "Transliteration language 2", "description": "Will place a second transliteration. See Dêlêg.", "type": "string" }, "image_skyline": { "label": "Image", "description": "Primary image representing the settlement. Commonly a photo of the settlement’s skyline.", "type": "wiki-file-name" }, "imagesize": { "label": "Image size", "description": "Can be used to tweak the size of 'image_skyline' up or down. This can be helpful if an editor wants to make the infobox wider. If used, 'px' must be specified; default size is 250px.", "type": "string" }, "image_alt": { "label": "Image alt text", "description": "Alt (hover) text for the image, used by visually impaired readers who cannot see the image.", "type": "string" }, "image_caption": { "label": "Image caption", "description": "Will place a caption under 'image_skyline' (if present).", "type": "content", "aliases": [ "caption" ] }, "image_flag": { "label": "Flag image", "description": "Used for a flag.", "type": "wiki-file-name" }, "flag_size": { "label": "Flag size", "description": "Can be used to tweak the size of 'image_flag' up or down from 100px as desired. If used, 'px' must be specified; default size is 100px.", "type": "string" }, "flag_alt": { "label": "Flag alt text", "description": "Alt text for the flag.", "type": "string" }, "flag_border": { "label": "Flag border?", "description": "Set to 'no' to remove the border from the flag.", "type": "boolean", "example": "no" }, "flag_link": { "label": "Flag link", "type": "string", "description": "Link to the flag." }, "image_seal": { "label": "Official seal image", "description": "An image of an official seal, if the place has one.", "type": "wiki-file-name" }, "seal_size": { "label": "Seal size", "description": "If used, 'px' must be specified; default size is 100px.", "type": "string" }, "seal_alt": { "label": "Seal alt text", "description": "Alt (hover) text for the seal.", "type": "string" }, "seal_link": { "label": "Seal link", "type": "string", "description": "Link to the seal." }, "seal_class": { "label": "Seal class", "description": "CSS class for the seal image", "type": "line", "suggestedvalues": [ "skin-invert" ] }, "image_shield": { "label": "Coat of arms/shield image", "description": "Can be used for a place with a coat of arms.", "type": "wiki-file-name" }, "shield_size": { "label": "Shield size", "description": "If used, 'px' must be specified; default size is 100px.", "type": "string", "example": "200px" }, "shield_alt": { "label": "Shield alt text", "description": "Alternate text for the shield.", "type": "string" }, "shield_link": { "label": "Shield link", "description": "Can be used if a wiki article if known but is not automatically linked by the template. See Coquitlam, British Columbia's infobox for an example.", "type": "string" }, "image_blank_emblem": { "label": "Blank emblem image", "description": "Can be used if a place has an official logo, crest, emblem, etc.", "type": "wiki-file-name" }, "blank_emblem_type": { "label": "Blank emblem type", "description": "Caption beneath 'image_blank_emblem' to specify what type of emblem it is.", "type": "string", "example": "Logo" }, "blank_emblem_size": { "label": "Blank emblem size", "description": "If used, 'px' must be specified; default size is 100px.", "type": "string", "example": "200px" }, "blank_emblem_alt": { "label": "Blank emblem alt text", "description": "Alt text for blank emblem.", "type": "string" }, "blank_emblem_link": { "label": "Blank emblem link", "type": "string", "description": "A link to the emblem of custom type." }, "nickname": { "label": "Nickname", "description": "Well-known nickname(s).", "type": "string", "example": "Sin City" }, "motto": { "label": "Motto", "description": "Will place the motto under the nicknames.", "type": "string" }, "anthem": { "label": "Anthem", "description": "Will place the anthem (song) under the nicknames.", "type": "string", "example": "[[Hatikvah]]" }, "image_map": { "label": "Map image", "description": "A map of the region, or a map with the region highlighted within a parent region.", "type": "wiki-file-name" }, "mapsize": { "label": "Map size", "description": "If used, 'px' must be specified; default is 250px.", "type": "string" }, "map_alt": { "label": "Map alt text", "description": "Alternate (hover) text for the map.", "type": "string" }, "map_caption": { "label": "Map caption", "type": "content", "description": "Caption for the map displayed." }, "image_map1": { "label": "Map 2 image", "description": "A secondary map image. The field 'image_map' must be filled in first. For an example, see [[Bloomsburg, Pennsylvania]].", "example": "File:Columbia County Pennsylvania Incorporated and Unincorporated areas Bloomsburg Highlighted.svg", "type": "wiki-file-name" }, "mapsize1": { "label": "Map 2 size", "description": "If used, 'px' must be specified; default is 250px.", "type": "string", "example": "300px" }, "map_alt1": { "label": "Map 2 alt text", "description": "Alt (hover) text for the second map.", "type": "string" }, "map_caption1": { "label": "Map 2 caption", "type": "content", "description": "Caption of the second map." }, "pushpin_map": { "label": "Pushpin map", "description": "The name of a location map (e.g. 'Indonesia' or 'Russia'). The coordinates information (from the coordinates parameter) positions a pushpin coordinate marker and label on the map automatically. For an example, see Padang, Indonesia.", "type": "string", "example": "Indonesia" }, "pushpin_mapsize": { "label": "Pushpin map size", "description": "Must be entered as only a number—do not use 'px'. The default value is 250.", "type": "number", "example": "200" }, "pushpin_map_alt": { "label": "Pushpin map alt text", "description": "Alt (hover) text for the pushpin map.", "type": "string" }, "pushpin_map_caption": { "label": "Pushpin map caption", "description": "Fill out if a different caption from 'map_caption' is desired.", "type": "string", "example": "Map showing Bloomsburg in Pennsylvania" }, "pushpin_label": { "label": "Pushpin label", "type": "line", "example": "Bloomsburg", "description": "Label of the pushpin." }, "pushpin_label_position": { "label": "Pushpin label position", "description": "The position of the label on the pushpin map relative to the pushpin coordinate marker. Valid options are 'left', 'right', 'top', 'bottom', and 'none'. If this field is not specified, the default value is 'right'.", "type": "string", "example": "left", "default": "right" }, "pushpin_outside": { "label": "Pushpin outside?", "type": "line" }, "pushpin_relief": { "label": "Pushpin relief", "description": "Set this to 'y' or any non-blank value to use an alternative relief map provided by the selected location map (if a relief map is available).", "type": "string", "example": "y" }, "pushpin_image": { "label": "Pushpin image", "type": "wiki-file-name", "description": "Image to use for the pushpin." }, "pushpin_overlay": { "label": "Pushpin overlay", "description": "Can be used to specify an image to be superimposed on the regular pushpin map.", "type": "wiki-file-name" }, "coordinates": { "label": "Coordinates", "description": "Latitude and longitude. Use {{Coord}}. See the documentation for {{Coord}} for more details on usage.", "type": "wiki-template-name", "example": "{{coord|41|50|15|N|87|40|55|W}}" }, "coor_pinpoint": { "label": "Coordinate pinpoint", "description": "If needed, to specify more exactly where (or what) coordinates are given (e.g. 'Town Hall') or a specific place in a larger area (e.g. a city in a county). Example: Masovian Voivodeship.", "type": "string" }, "coordinates_footnotes": { "label": "Coordinates footnotes", "description": "Reference(s) for coordinates. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "subdivision_type": { "label": "Subdivision type 1", "description": "Almost always 'Country'.", "type": "string", "example": "Country", "suggestedvalues": [ "Country" ] }, "subdivision_name": { "label": "Subdivision name 1", "description": "Depends on 'subdivision_type'. Use the name in text form, e.g., 'United States'. Per MOS:INFOBOXFLAG, flag icons or flag templates may be used in this field.", "type": "string" }, "subdivision_type1": { "label": "Subdivision type 2", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type2": { "label": "Subdivision type 3", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type3": { "label": "Subdivision type 4", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type4": { "label": "Subdivision type 5", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type5": { "label": "Subdivision type 6", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_type6": { "label": "Subdivision type 7", "description": "Additional subdivisions; can be state/province, region, or county.", "type": "string" }, "subdivision_name1": { "label": "Subdivision name 2", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Connecticut]]" }, "subdivision_name2": { "label": "Subdivision name 3", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Florida]]" }, "subdivision_name3": { "label": "Subdivision name 4", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Utah]]" }, "subdivision_name4": { "label": "Subdivision name 5", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[California]]" }, "subdivision_name5": { "label": "Subdivision name 6", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Vermont]]" }, "subdivision_name6": { "label": "Subdivision name 7", "description": "Use the name in text form, e.g., 'Florida' or '[[Florida]]'. Per MOS:INFOBOXFLAG, flag icons or flag templates should not be used in this field.", "type": "string", "example": "[[Wyoming]]" }, "established_title": { "label": "First establishment event", "description": "Title of the first establishment event.", "type": "string", "example": "First settled" }, "established_date": { "label": "First establishment date", "type": "date", "description": "Date of the first establishment event." }, "established_title1": { "label": "Second establishment event", "description": "Title of the second establishment event.", "type": "string", "example": "Incorporated as a town" }, "established_date1": { "label": "Second establishment date", "type": "date", "description": "Date of the second establishment event." }, "established_title2": { "label": "Third establishment event", "description": "Title of the third establishment event.", "type": "string", "example": "Incorporated as a city" }, "established_date2": { "label": "Third establishment date", "type": "date", "description": "Date of the third establishment event." }, "established_title3": { "label": "Fourth establishment event", "type": "string", "description": "Title of the fourth establishment event.", "example": "Incorporated as a county" }, "established_date3": { "label": "Fourth establishment date", "type": "date", "description": "Date of the fourth establishment event." }, "extinct_title": { "label": "Extinction event title", "description": "For when a settlement ceases to exist.", "type": "string", "example": "[[Sack of Rome]]" }, "extinct_date": { "label": "Extinction date", "type": "string", "description": "Date the settlement ceased to exist." }, "founder": { "label": "Founder", "description": "Who the settlement was founded by.", "type": "string" }, "named_for": { "label": "Named for", "description": "The source of the name of the settlement (a person, a place, et cetera).", "type": "string", "example": "[[Ho Chi Minh]]" }, "seat_type": { "label": "Seat of government type", "description": "The label for the seat of government (defaults to 'Seat').", "type": "string", "default": "Seat" }, "seat": { "label": "Seat of government", "description": "The seat of government.", "type": "string", "example": "[[White House]]" }, "parts_type": { "label": "Type of smaller subdivisions", "description": "The label for the smaller subdivisions (defaults to 'Boroughs').", "type": "string", "default": "Boroughs" }, "parts_style": { "label": "Parts style", "description": "Set to 'list' to display as a collapsible list, 'coll' as a collapsed list, or 'para' to use paragraph style. Default is 'list' for up to 5 items, otherwise 'coll'.", "type": "string", "example": "list" }, "parts": { "label": "Smaller subdivisions", "description": "Text or header of the list of smaller subdivisions.", "type": "string" }, "p1": { "label": "Smaller subdivision 1", "description": "The smaller subdivisions to be listed. Parameters 'p1' to 'p50' can also be used.", "type": "string" }, "government_footnotes": { "label": "Government footnotes", "description": "Reference(s) for government. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "content" }, "government_type": { "label": "Government type", "description": "The place's type of government.", "type": "string", "example": "[[Mayor–council government]]" }, "governing_body": { "label": "Governing body", "description": "Name of the place's governing body.", "type": "wiki-page-name", "example": "Legislative Council of Hong Kong" }, "leader_party": { "label": "Leader political party", "description": "Political party of the place's leader.", "type": "string" }, "leader_title": { "label": "Leader title", "description": "First title of the place's leader, e.g. 'Mayor'.", "type": "string", "example": "[[Governor (United States)|Governor]]" }, "leader_name": { "label": "Leader's name", "description": "Name of the place's leader.", "type": "string", "example": "[[Jay Inslee]]" }, "leader_title1": { "label": "Leader title 1", "description": "First title of the place's leader, e.g. 'Mayor'.", "type": "string", "example": "Mayor" }, "leader_name1": { "label": "Leader name 1", "description": "Additional names for leaders. Parameters 'leader_name1' .. 'leader_name4' are available. For long lists, use {{Collapsible list}}.", "type": "string" }, "total_type": { "label": "Total type", "description": "Specifies what total area and population figure refer to, e.g. 'Greater London'. This overrides other labels for total population/area. To make the total area and population display on the same line as the words ''Area'' and ''Population'', with no ''Total'' or similar label, set the value of this parameter to '&nbsp;'.", "type": "string" }, "unit_pref": { "label": "Unit preference", "description": "To change the unit order to 'imperial (metric)', enter 'imperial'. The default display style is 'metric (imperial)'. However, the template will swap the order automatically if the 'subdivision_name' equals some variation of the US or the UK. For the Middle East, a unit preference of dunam can be entered (only affects total area). All values must be entered in a raw format (no commas, spaces, or unit symbols). The template will format them automatically.", "type": "string", "example": "imperial" }, "area_footnotes": { "label": "Area footnotes", "description": "Reference(s) for area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "dunam_link": { "label": "Link dunams?", "description": "If dunams are used, the default is to link the word ''dunams'' in the total area section. This can be changed by setting 'dunam_link' to another measure (e.g. 'dunam_link=water'). Linking can also be turned off by setting the parameter to something else (e.g., 'dunam_link=none' or 'dunam_link=off').", "type": "boolean", "example": "none" }, "area_total_km2": { "label": "Total area (km2)", "description": "Total area in square kilometers (symbol: km²). Value must be entered in raw format (no commas or spaces). Auto-converted to display square miles if 'area_total_sq_mi' is empty.", "type": "number" }, "area_total_sq_mi": { "label": "Total area (sq. mi)", "description": "Total area in square miles (symbol: sq mi). Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers if 'area_total_km2' is empty.", "type": "number" }, "area_total_ha": { "label": "Total area (hectares)", "description": "Total area in hectares (symbol: ha). Value must be entered in raw format (no commas or spaces). Auto-converted to display acres if 'area_total_acre' is empty.", "type": "number" }, "area_total_acre": { "label": "Total area (acres)", "description": "Total area in acres. Value must be entered in raw format (no commas or spaces). Auto-converted to display hectares if 'area_total_ha' is empty.", "type": "number" }, "area_total_dunam": { "label": "Total area (dunams)", "description": "Total area in dunams, which is wikilinked. Used in Middle Eastern places like Israel, Gaza, and the West Bank. Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers or hectares and square miles or acres if 'area_total_km2', 'area_total_ha', 'area_total_sq_mi', and 'area_total_acre' are empty. Examples: Gaza and Ramallah.", "type": "number" }, "area_land_km2": { "label": "Land area (sq. km)", "description": "Land area in square kilometers (symbol: km²). Value must be entered in raw format (no commas or spaces). Auto-converted to display square miles if 'area_land_sq_mi' is empty.", "type": "number" }, "area_land_sq_mi": { "label": "Land area (sq. mi)", "description": "Land area in square miles (symbol: sq mi). Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers if 'area_land_km2' is empty.", "type": "number" }, "area_land_ha": { "label": "Land area (hectares)", "description": "The place's land area in hectares.", "type": "number" }, "area_land_dunam": { "label": "Land area (dunams)", "description": "The place's land area in dunams.", "type": "number" }, "area_land_acre": { "label": "Land area (acres)", "description": "The place's land area in acres.", "type": "number" }, "area_water_km2": { "label": "Water area (sq. km)", "description": "Water area in square kilometers (symbol: km²). Value must be entered in raw format (no commas or spaces). Auto-converted to display square miles if 'area_water_sq_mi' is empty.", "type": "number" }, "area_water_sq_mi": { "label": "Water area (sq. mi)", "description": "Water area in square miles (symbol: sq mi). Value must be entered in raw format (no commas or spaces). Auto-converted to display square kilometers if 'area_water_km2' is empty.", "type": "number" }, "area_water_ha": { "label": "Water area (hectares)", "description": "The place's water area in hectares.", "type": "number" }, "area_water_dunam": { "label": "Water area (dunams)", "description": "The place's water area in dunams.", "type": "number" }, "area_water_acre": { "label": "Water area (acres)", "description": "The place's water area in acres.", "type": "number" }, "area_water_percent": { "label": "Percent water area", "description": "Percent of water without the %.", "type": "number", "example": "21" }, "area_urban_km2": { "label": "Urban area (sq. km)", "type": "number", "description": "Area of the place's urban area in square kilometers." }, "area_urban_sq_mi": { "label": "Urban area (sq. mi)", "type": "number", "description": "Area of the place's urban area in square miles." }, "area_urban_ha": { "label": "Urban area (hectares)", "description": "Area of the place's urban area in hectares.", "type": "number" }, "area_urban_dunam": { "label": "Urban area (dunams)", "description": "Area of the place's urban area in dunams.", "type": "number" }, "area_urban_acre": { "label": "Urban area (acres)", "description": "Area of the place's urban area in acres.", "type": "number" }, "area_urban_footnotes": { "label": "Urban area footnotes", "description": "Reference(s) for the urban area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "area_rural_km2": { "label": "Rural area (sq. km)", "type": "number", "description": "Area of the place's rural area in square kilometers." }, "area_rural_sq_mi": { "label": "Rural area (sq. mi)", "type": "number", "description": "Area of the place's rural area in square miles." }, "area_rural_ha": { "label": "Rural area (hectares)", "description": "Area of the place's rural area in hectares.", "type": "number" }, "area_rural_dunam": { "label": "Rural area (dunams)", "description": "Area of the place's rural area in dunams.", "type": "number" }, "area_rural_acre": { "label": "Rural area (acres)", "description": "Area of the place's rural area in acres.", "type": "number" }, "area_rural_footnotes": { "label": "Rural area footnotes", "description": "Reference(s) for the urban area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "area_metro_km2": { "label": "Metropolitan area (sq. km)", "type": "number", "description": "Area of the place's metropolitan area in square kilometers." }, "area_metro_sq_mi": { "label": "Metropolitan area (sq. mi)", "type": "number", "description": "Area of the place's metropolitan area in square miles." }, "area_metro_ha": { "label": "Metropolitan area (hectares)", "description": "Area of the place's metropolitan area in hectares.", "type": "number" }, "area_metro_dunam": { "label": "Metropolitan area (dunams)", "description": "Area of the place's metropolitan area in dunams.", "type": "number" }, "area_metro_acre": { "label": "Metropolitan area (acres)", "description": "Area of the place's metropolitan area in acres.", "type": "number" }, "area_metro_footnotes": { "label": "Metropolitan area footnotes", "description": "Reference(s) for the urban area. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "area_rank": { "label": "Area rank", "description": "The settlement's area, as ranked within its parent sub-division.", "type": "string" }, "area_blank1_title": { "label": "First blank area section title", "description": "Title of the place's first custom area section.", "type": "string", "example": "see [[London]]" }, "area_blank1_km2": { "label": "Area blank 1 (sq. km)", "type": "number", "description": "Area of the place's first blank area section in square kilometers." }, "area_blank1_sq_mi": { "label": "Area blank 1 (sq. mi)", "type": "number", "description": "Area of the place's first blank area section in square miles." }, "area_blank1_ha": { "label": "Area blank 1 (hectares)", "description": "Area of the place's first blank area section in hectares.", "type": "number" }, "area_blank1_dunam": { "label": "Area blank 1 (dunams)", "description": "Area of the place's first blank area section in dunams.", "type": "number" }, "area_blank1_acre": { "label": "Area blank 1 (acres)", "description": "Area of the place's first blank area section in acres.", "type": "number" }, "area_blank2_title": { "label": "Second blank area section title", "type": "string", "description": "Title of the place's second custom area section." }, "area_blank2_km2": { "label": "Area blank 2 (sq. km)", "type": "number", "description": "Area of the place's second blank area section in square kilometers." }, "area_blank2_sq_mi": { "label": "Area blank 2 (sq. mi)", "type": "number", "description": "Area of the place's second blank area section in square miles." }, "area_blank2_ha": { "label": "Area blank 2 (hectares)", "description": "Area of the place's third blank area section in hectares.", "type": "number" }, "area_blank2_dunam": { "label": "Area blank 2 (dunams)", "description": "Area of the place's third blank area section in dunams.", "type": "number" }, "area_blank2_acre": { "label": "Area blank 2 (acres)", "description": "Area of the place's third blank area section in acres.", "type": "number" }, "area_note": { "label": "Area footnotes", "description": "A place for additional information such as the name of the source.", "type": "content", "example": "<ref name=\"CenPopGazetteer2016\">{{cite web|title=2016 U.S. Gazetteer Files|url=https://www2.census.gov/geo/docs/maps-data/data/gazetteer/2016_Gazetteer/2016_gaz_place_42.txt|publisher=United States Census Bureau|access-date=August 13, 2017}}</ref>" }, "dimensions_footnotes": { "label": "Dimensions footnotes", "description": "Reference(s) for dimensions. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "content" }, "length_km": { "label": "Length in km", "description": "Raw number entered in kilometers. Will automatically convert to display length in miles if 'length_mi' is empty.", "type": "number" }, "length_mi": { "label": "Length in miles", "description": "Raw number entered in miles. Will automatically convert to display length in kilometers if 'length_km' is empty.", "type": "number" }, "width_km": { "label": "Width in kilometers", "description": "Raw number entered in kilometers. Will automatically convert to display width in miles if 'length_mi' is empty.", "type": "number" }, "width_mi": { "label": "Width in miles", "description": "Raw number entered in miles. Will automatically convert to display width in kilometers if 'length_km' is empty.", "type": "number" }, "elevation_m": { "label": "Elevation in meters", "description": "Raw number entered in meters. Will automatically convert to display elevation in feet if 'elevation_ft' is empty. However, if a range in elevation (i.e. 5–50&nbsp;m) is desired, use the 'max' and 'min' fields below.", "type": "number" }, "elevation_ft": { "label": "Elevation in feet", "description": "Raw number, entered in feet. Will automatically convert to display the average elevation in meters if 'elevation_m' field is empty. However, if a range in elevation (i.e. 50–500&nbsp;ft) is desired, use the 'max' and 'min' fields below.", "type": "number" }, "elevation_footnotes": { "label": "Elevation footnotes", "description": "Reference(s) for elevation. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "elevation_min_point": { "type": "line", "label": "Point of min elevation", "description": "The name of the point of lowest elevation in the place.", "example": "[[Death Valley]]" }, "elevation_min_m": { "label": "Minimum elevation (m)", "type": "number", "description": "The minimum elevation in meters." }, "elevation_min_ft": { "label": "Minimum elevation (ft)", "type": "number", "description": "The minimum elevation in feet." }, "elevation_min_rank": { "type": "line", "label": "Minimum elevation rank", "description": "The point of minimum elevation's rank in the parent region.", "example": "1st" }, "elevation_min_footnotes": { "label": "Min elevation footnotes", "type": "content", "description": "Footnotes or citations for the minimum elevation." }, "elevation_max_point": { "type": "line", "label": "Point of max elevation", "description": "The name of the point of highest elevation in the place.", "example": "[[Mount Everest]]" }, "elevation_max_m": { "label": "Maximum elevation (m)", "type": "number", "description": "The maximum elevation in meters." }, "elevation_max_ft": { "label": "Maximum elevation (ft)", "type": "number", "description": "The maximum elevation in feet." }, "elevation_max_rank": { "type": "line", "label": "Maximum elevation rank", "description": "The point of maximum elevation's rank in the parent region.", "example": "2nd" }, "elevation_max_footnotes": { "label": "Max elevation footnotes", "type": "content", "description": "Footnotes or citations for the maximum elevation." }, "population_total": { "label": "Population total", "description": "Actual population (see below for estimates) preferably consisting of digits only (without any commas).", "type": "number" }, "population_as_of": { "label": "Population total figure's year", "description": "The year for the population total (usually a census year).", "type": "number" }, "population_footnotes": { "label": "Population footnotes", "description": "Reference(s) for population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content" }, "population_density_km2": { "label": "Population density (per square km)", "type": "string", "description": "The place's population density per square kilometer.", "example": "auto" }, "population_density_sq_mi": { "label": "Population density (per square mi)", "type": "string", "description": "The place's population density per square mile.", "example": "auto" }, "population_est": { "label": "Population estimate", "description": "Population estimate, e.g. for growth projections 4 years after a census.", "type": "number", "example": "331000000" }, "pop_est_as_of": { "label": "Population estimate figure as of", "description": "The year, or the month and year, of the population estimate.", "type": "date" }, "pop_est_footnotes": { "label": "Population estimate footnotes", "description": "Reference(s) for population estimate; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content", "example": "<ref name=\"USCensusEst2016\"/>" }, "population_urban": { "label": "Urban population", "type": "number", "description": "The place's urban population." }, "population_urban_footnotes": { "label": "Urban population footnotes", "description": "Reference(s) for urban population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content" }, "population_density_urban_km2": { "label": "Urban population density (per square km)", "type": "string", "description": "The place's urban population density per square kilometer.", "example": "auto" }, "population_density_urban_sq_mi": { "label": "Urban population density (per square mi)", "type": "string", "description": "The place's urban population density per square mile.", "example": "auto" }, "population_rural": { "label": "Rural population", "type": "number", "description": "The place's rural population." }, "population_rural_footnotes": { "label": "Rural population footnotes", "description": "Reference(s) for rural population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "content" }, "population_density_rural_km2": { "label": "Rural population density per sq. km", "type": "line", "description": "The place's rural population density per square kilometer.", "example": "auto" }, "population_density_rural_sq_mi": { "label": "Rural population density per sq. mi", "type": "line", "description": "The place's rural population density per square mile.", "example": "auto" }, "population_metro": { "label": "Metropolitan area population", "type": "number", "description": "Population of the place's metropolitan area." }, "population_metro_footnotes": { "label": "Metropolitan area population footnotes", "description": "Reference(s) for metro population; placed within <nowiki><ref> </ref></nowiki> tags.", "type": "string" }, "population_density_metro_km2": { "label": "Metropolitan population density per sq. km", "type": "number", "description": "The place's metropolitan area's population density per square kilometer.", "example": "auto" }, "population_density_metro_sq_mi": { "label": "Metropolitan population density per sq. mi", "type": "number", "description": "The place's metropolitan area's population density per square mile.", "example": "auto" }, "population_rank": { "label": "Population rank", "description": "The settlement's population, as ranked within its parent sub-division.", "type": "string" }, "population_density_rank": { "label": "Population density rank", "description": "The settlement's population density, as ranked within its parent sub-division.", "type": "string" }, "population_blank1_title": { "label": "Custom population type 1 title", "description": "Can be used for estimates. For an example, see Windsor, Ontario.", "type": "string", "example": "See: [[Windsor, Ontario]]" }, "population_blank1": { "label": "Custom population type 1", "description": "The population value for 'blank1_title'.", "type": "string" }, "population_density_blank1_km2": { "label": "Custom population type 1 density per sq. km", "type": "string", "description": "Population density per square kilometer, according to the 1st custom population type." }, "population_density_blank1_sq_mi": { "label": "Custom population type 1 density per sq. mi", "type": "string", "description": "Population density per square mile, according to the 1st custom population type." }, "population_blank2_title": { "label": "Custom population type 2 title", "description": "Can be used for estimates. For an example, see Windsor, Ontario.", "type": "string", "example": "See: [[Windsor, Ontario]]" }, "population_blank2": { "label": "Custom population type 2", "description": "The population value for 'blank2_title'.", "type": "string" }, "population_density_blank2_km2": { "label": "Custom population type 2 density per sq. km", "type": "string", "description": "Population density per square kilometer, according to the 2nd custom population type." }, "population_density_blank2_sq_mi": { "label": "Custom population type 2 density per sq. mi", "type": "string", "description": "Population density per square mile, according to the 2nd custom population type." }, "population_demonym": { "label": "Demonym", "description": "A demonym or gentilic is a word that denotes the members of a people or the inhabitants of a place. For example, a citizen in Liverpool is known as a Liverpudlian.", "type": "line", "example": "Liverpudlian" }, "population_note": { "label": "Population note", "description": "A place for additional information such as the name of the source. See Windsor, Ontario, for an example.", "type": "content" }, "demographics_type1": { "label": "Demographics type 1", "description": "A sub-section header.", "type": "string", "example": "Ethnicities" }, "demographics1_footnotes": { "label": "Demographics section 1 footnotes", "description": "Reference(s) for demographics section 1. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "content" }, "demographics1_title1": { "label": "Demographics section 1 title 1", "description": "Titles related to demographics_type1. For example: 'White', 'Black', 'Hispanic'... Additional rows 'demographics1_title1' to 'demographics1_title5' are also available.", "type": "string" }, "demographics_type2": { "label": "Demographics type 2", "description": "A second sub-section header.", "type": "line", "example": "Languages" }, "demographics2_footnotes": { "label": "Demographics section 2 footnotes", "description": "Reference(s) for demographics section 2. Placed within <nowiki><ref> </ref></nowiki> tags, possibly using the citing format at {{Cite web}}.", "type": "string" }, "demographics2_title1": { "label": "Demographics section 2 title 1", "description": "Titles related to 'demographics_type1'. For example: 'English', 'French', 'Arabic'... Additional rows 'demographics2_title2' to 'demographics1_title5' are also available.", "type": "string" }, "demographics2_info1": { "label": "Demographics section 2 info 1", "description": "Information related to the titles. For example: '50%', '25%', '10%'... Additional rows 'demographics2_info2' to 'demographics2_info5' are also available.", "type": "content" }, "timezone1": { "label": "Timezone 1", "type": "string", "description": "The place's primary time-zone. Use 'timezone' or 'timezone1', but not both.", "example": "[[Eastern Standard Time]]", "aliases": [ "timezone" ] }, "utc_offset": { "label": "UTC offset", "type": "string", "description": "The place's time-zone's offset from UTC.", "example": "+8" }, "timezone_DST": { "label": "Timezone during DST", "type": "string", "description": "The place's time-zone during daylight savings time, if applicable.", "example": "[[Eastern Daylight Time]]" }, "utc_offset_DST": { "label": "UTC offset during DST", "type": "string", "description": "The place's time-zone's UTC offset during daylight savings time, if applicable.", "example": "+9" }, "utc_offset1": { "label": "UTC offset 1", "type": "string", "description": "The place's primary time-zone's offset from UTC.", "example": "−5" }, "timezone1_DST": { "label": "Timezone 1 (during DST)", "type": "string", "description": "The place's primary time-zone during daylight savings time, if applicable.", "example": "[[Eastern Daylight Time]]" }, "utc_offset1_DST": { "label": "UTC offset 1 (during DST)", "type": "string", "description": "The place's primary time-zone's UTC offset during daylight savings time, if applicable.", "example": "−6" }, "timezone2": { "label": "Timezone 2", "description": "A second timezone field for larger areas such as a province.", "type": "string", "example": "[[Central Standard Time]]" }, "utc_offset2": { "label": "UTC offset 2", "type": "string", "description": "The place's secondary time-zone's offset from UTC.", "example": "−6" }, "timezone2_DST": { "label": "Timezone 2 during DST", "type": "string", "description": "The place's secondary time-zone during daylight savings time, if applicable.", "example": "[[Central Daylight Time]]" }, "utc_offset2_DST": { "label": "UTC offset 2 during DST", "type": "string", "description": "The place's secondary time-zone's offset from UTC during daylight savings time, if applicable.", "example": "−7" }, "postal_code_type": { "label": "Postal code type", "description": "Label used for postal code info, e.g. 'ZIP Code'. Defaults to 'Postal code'.", "example": "[[Postal code of China|Postal code]]", "type": "string" }, "postal_code": { "label": "Postal code", "description": "The place's postal code/zip code.", "type": "string", "example": "90210" }, "postal2_code_type": { "label": "Postal code 2 type", "type": "string", "description": "If applicable, the place's second postal code type." }, "postal2_code": { "label": "Postal code 2", "type": "string", "description": "A second postal code of the place, if applicable.", "example": "90007" }, "area_code": { "label": "Area code", "description": "The regions' telephone area code.", "type": "string", "aliases": [ "area_codes" ] }, "area_code_type": { "label": "Area code type", "description": "If left blank/not used, template will default to 'Area code(s)'.", "type": "string" }, "geocode": { "label": "Geocode", "description": "See [[Geocode]].", "type": "string" }, "iso_code": { "label": "ISO 3166 code", "description": "See ISO 3166.", "type": "string" }, "registration_plate": { "label": "Registration/license plate info", "description": "See Vehicle registration plate.", "type": "string" }, "blank_name_sec1": { "label": "Blank name section 1", "description": "Fields used to display other information. The name is displayed in bold on the left side of the infobox.", "type": "string", "aliases": [ "blank_name" ] }, "blank_info_sec1": { "label": "Blank info section 1", "description": "The information associated with the 'blank_name_sec1' heading. The info is displayed on the right side of the infobox in the same row as the name. For an example, see [[Warsaw]].", "type": "content", "aliases": [ "blank_info" ] }, "blank1_name_sec1": { "label": "Blank 1 name section 1", "description": "Up to 7 additional fields 'blank1_name_sec1' ... 'blank7_name_sec1' can be specified.", "type": "string" }, "blank1_info_sec1": { "label": "Blank 1 info section 1", "description": "Up to 7 additional fields 'blank1_info_sec1' ... 'blank7_info_sec1' can be specified.", "type": "content" }, "blank_name_sec2": { "label": "Blank name section 2", "description": "For a second section of blank fields.", "type": "string" }, "blank_info_sec2": { "label": "Blank info section 2", "example": "Beijing", "type": "content", "description": "The information associated with the 'blank_name_sec2' heading. The info is displayed on right side of infobox, in the same row as the name. For an example, see [[Warsaw]]." }, "blank1_name_sec2": { "label": "Blank 1 name section 2", "description": "Up to 7 additional fields 'blank1_name_sec2' ... 'blank7_name_sec2' can be specified.", "type": "string" }, "blank1_info_sec2": { "label": "Blank 1 info section 2", "description": "Up to 7 additional fields 'blank1_info_sec2' ... 'blank7_info_sec2' can be specified.", "type": "content" }, "website": { "label": "Official website in English", "description": "External link to official website. Use the {{URL}} template, thus: {{URL|example.com}}.", "type": "string" }, "footnotes": { "label": "Footnotes", "description": "Text to be displayed at the bottom of the infobox.", "type": "content" }, "translit_lang1_info1": { "label": "Language 1 first transcription ", "description": "Transcription of type 1 in the first other language.", "example": "{{langx|zh|森美兰}}", "type": "line" }, "translit_lang1_type1": { "label": "Language 1 first transcription type", "description": "Type of transcription used in the first language's first transcription.", "example": "[[Chinese Language|Chinese]]", "type": "line" }, "translit_lang1_info2": { "label": "Language 1 second transcription ", "description": "Transcription of type 1 in the first other language.", "example": "{{langx|ta|நெகிரி செம்பிலான்}}", "type": "line" }, "translit_lang1_type2": { "label": "Language 1 second transcription type", "description": "Type of transcription used in the first language's first transcription.", "example": "[[Tamil Language|Tamil]]", "type": "line" }, "demographics1_info1": { "label": "Demographics section 1 info 1", "description": "Information related to the titles. For example: '50%', '25%', '10%'... Additional rows 'demographics1_info1' to 'demographics1_info5' are also available.", "type": "content" }, "mapframe": { "label": "Show mapframe map", "description": "Specify yes or no to show or hide the map, overriding the default", "example": "yes", "type": "string", "default": "no", "suggested": true }, "mapframe-caption": { "label": "Mapframe caption", "description": "Caption for the map. If mapframe-geomask is set, then the default is \"Location in <<geomask's label>>\"", "type": "string" }, "mapframe-custom": { "label": "Custom mapframe", "description": "Use a custom map instead of the automatic mapframe. Specify either a {{maplink}} template, or another template that generates a mapframe map, or an image name. If used, other mapframe parameters will be ignored.", "type": "wiki-template-name" }, "mapframe-id": { "aliases": [ "id", "qid" ], "label": "Mapframe Wikidata item", "description": "Id (Q-number) of Wikidata item to use.", "type": "string", "default": "(item for current page)" }, "mapframe-coordinates": { "aliases": [ "mapframe-coord", "coordinates", "coord" ], "label": "Mapframe coordinates ", "description": "Coordinates to use, instead of any on Wikidata. Use the {{Coord}} template.", "example": "{{Coord|12.34|N|56.78|E}}", "type": "wiki-template-name", "default": "(coordinates from Wikidata)" }, "mapframe-wikidata": { "label": "Mapframe shapes from Wikidata", "description": "et to yes to show shape/line features from the wikidata item, if any, when coordinates are specified by parameter", "example": "yes", "type": "string" }, "mapframe-shape": { "label": "Mapframe shape feature", "description": "Override display of mapframe shape feature. Turn off by setting to \"none\". Use an inverse shape (geomask) instead of a regular shape by setting to \"inverse\"", "type": "string" }, "mapframe-point": { "label": "Mapframe point feature", "description": "Override display of mapframe point feature. Turn off display of point feature by setting to \"none\". Force point marker to be displayed by setting to \"on\"", "type": "string" }, "mapframe-geomask": { "label": "Mapframe geomask", "description": "Wikidata item to use as a geomask (everything outside the boundary is shaded darker). Can either be a specific Wikidata item (Q-number), or a property that specifies the item to use (e.g. P17 for country, or P131 for located in the administrative territorial entity)", "example": "Q100", "type": "wiki-page-name" }, "mapframe-switcher": { "label": "Mapframe switcher", "description": "Set to \"auto\" or \"geomasks\" or \"zooms\" to enable Template:Switcher-style switching between multiple mapframes. IF SET TO auto – switch geomasks found in location (P276) and located in the administrative territorial entity (P131) statements on the page's Wikidata item, searching recursively. E.g. an item's city, that city's state, and that state's country. IF SET TO geomasks – switch between the geomasks specified as a comma-separated list of Wikidata items (Q-numbers) in the mapframe-geomask parameter. IF SET TO zooms – switch between \"zoomed in\"/\"zoomed midway\"/\"zoomed out\", where \"zoomed in\" is the default zoom (with a minimum of 3), \"zoomed out\" is 1, and \"zoomed midway\" is the average.", "type": "string" }, "mapframe-frame-width": { "aliases": [ "mapframe-width" ], "label": "Mapframe width", "description": "Frame width in pixels", "type": "number", "default": "270" }, "mapframe-frame-height": { "aliases": [ "mapframe-height" ], "label": "Mapframe height", "description": "Frame height in pixels", "type": "number", "default": "200" }, "mapframe-shape-fill": { "label": "Mapframe shape fill", "description": "Color used to fill shape features", "type": "string", "default": "#606060" }, "mapframe-shape-fill-opacity": { "label": "Mapframe shape fill opacity", "description": "Opacity level of shape fill, a number between 0 and 1", "type": "number", "default": "0.5" }, "mapframe-stroke-color": { "aliases": [ "mapframe-stroke-colour" ], "label": "Mapframe stroke color", "description": "Color of line features, and outlines of shape features", "type": "string", "default": "#ff0000" }, "mapframe-stroke-width": { "label": "Mapframe stroke width", "description": "Width of line features, and outlines of shape features", "type": "number", "default": "5" }, "mapframe-marker": { "label": "Mapframe marker", "description": "Marker symbol to use for coordinates; see [[mw:Help:Extension:Kartographer/Icons]] for options", "example": "museum", "type": "string" }, "mapframe-marker-color": { "aliases": [ "mapframe-marker-colour" ], "label": "Mapframe marker color", "description": "Background color for the marker", "type": "string", "default": "#5E74F3" }, "mapframe-geomask-stroke-color": { "aliases": [ "mapframe-geomask-stroke-colour" ], "label": "Mapframe geomask stroke color", "description": "Color of outline of geomask shape", "type": "string", "default": "#555555" }, "mapframe-geomask-stroke-width": { "label": "Mapframe geomask stroke width", "description": "Width of outline of geomask shape", "type": "number", "default": "2" }, "mapframe-geomask-fill": { "label": "Mapframe geomask fill", "description": "Color used to fill outside geomask features", "type": "string", "default": "#606060" }, "mapframe-geomask-fill-opacity": { "label": "Mapframe geomask fill opacity", "description": "Opacity level of fill outside geomask features, a number between 0 and 1", "type": "number", "default": "0.5" }, "mapframe-zoom": { "label": "Mapframe zoom", "description": "Set the zoom level, from \"1\" to \"18\", to used if the zoom level cannot be determined automatically from object length or area", "example": "12", "type": "number", "default": "10" }, "mapframe-length_km": { "label": "Mapframe length (km)", "description": "Object length in kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-length_mi": { "label": "Mapframe length (mi)", "description": "Object length in miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-area_km2": { "label": "Mapframe area (km^2)", "description": "Object arean square kilometres, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-area_mi2": { "label": "Mapframe area (mi^2)", "description": "Object area in square miles, for automatically determining zoom level. ONLY use ONE of the available parameters for length or area", "type": "number" }, "mapframe-frame-coordinates": { "aliases": [ "mapframe-frame-coord" ], "label": "Mapframe frame coordinates", "description": "Alternate latitude and longitude coordinates for initial placement of map, using {{coord}}", "example": "{{Coord|12.35|N|56.71|E}}", "type": "wiki-template-name" }, "mapframe-line": {}, "embed": {}, "translit_lang1_type3": {}, "translit_lang1_type4": {}, "translit_lang1_info3": {}, "translit_lang1_type5": {}, "translit_lang1_info4": {}, "translit_lang1_type6": {}, "translit_lang1_info5": {}, "translit_lang1_info6": {}, "translit_lang2_type1": {}, "translit_lang2_type": {}, "translit_lang2_info": {}, "translit_lang2_type2": {}, "translit_lang2_info1": {}, "translit_lang2_type3": {}, "translit_lang2_info2": {}, "translit_lang2_type4": {}, "translit_lang2_info3": {}, "translit_lang2_type5": {}, "translit_lang2_info4": {}, "translit_lang2_type6": {}, "translit_lang2_info5": {}, "translit_lang2_info6": {}, "image_size": {}, "alt": {}, "pushpin_map_narrow": {}, "seal_type": {}, "pushpin_map_caption_notsmall": {}, "etymology": {}, "nicknames": {}, "nickname_link": {}, "mottoes": {}, "motto_link": {}, "anthem_link": {}, "grid_position": {}, "coor_type": {}, "grid_name": {}, "established_title4": {}, "established_date4": {}, "established_title5": {}, "established_date5": {}, "established_title6": {}, "established_date6": {}, "established_title7": {}, "established_date7": {}, "seat1_type": {}, "seat1": {}, "seat2_type": {}, "seat2": {}, "p2": {}, "p3": {}, "p4": {}, "p5": {}, "p6": {}, "p7": {}, "p8": {}, "p9": {}, "p10": {}, "p11": {}, "p12": {}, "p13": {}, "p14": {}, "p15": {}, "p16": {}, "p17": {}, "p18": {}, "p19": {}, "p20": {}, "p21": {}, "p22": {}, "p23": {}, "p24": {}, "p25": {}, "p26": {}, "p27": {}, "p28": {}, "p29": {}, "p30": {}, "p31": {}, "p32": {}, "p33": {}, "p34": {}, "p35": {}, "p36": {}, "p37": {}, "p38": {}, "p39": {}, "p40": {}, "p41": {}, "p42": {}, "p43": {}, "p44": {}, "p45": {}, "p46": {}, "p47": {}, "p48": {}, "p49": {}, "p50": {}, "leader_name2": {}, "leader_name3": {}, "leader_name4": {}, "leader_title2": {}, "leader_title3": {}, "leader_title4": {}, "government_blank1_title": {}, "government_blank1": {}, "government_blank2_title": {}, "government_blank2": {}, "government_blank3_title": {}, "government_blank3": {}, "government_blank4_title": {}, "government_blank4": {}, "government_blank5_title": {}, "government_blank5": {}, "government_blank6_title": {}, "government_blank6": {}, "elevation_link": {}, "elevation_point": {}, "population_blank1_footnotes": {}, "population_blank2_footnotes": {}, "population_demonyms": {}, "demographics1_title2": {}, "demographics1_info2": {}, "demographics1_title3": {}, "demographics1_info3": {}, "demographics1_title4": {}, "demographics1_info4": {}, "demographics1_title5": {}, "demographics1_info5": {}, "demographics1_title6": {}, "demographics1_info6": {}, "demographics1_title7": {}, "demographics1_info7": {}, "demographics1_title8": {}, "demographics1_info8": {}, "demographics1_title9": {}, "demographics1_info9": {}, "demographics1_title10": {}, "demographics1_info10": {}, "demographics2_title2": {}, "demographics2_info2": {}, "demographics2_title3": {}, "demographics2_info3": {}, "demographics2_title4": {}, "demographics2_info4": {}, "demographics2_title5": {}, "demographics2_info5": {}, "demographics2_title6": {}, "demographics2_info6": {}, "demographics2_title7": {}, "demographics2_info7": {}, "demographics2_title8": {}, "demographics2_info8": {}, "demographics2_title9": {}, "demographics2_info9": {}, "demographics2_title10": {}, "demographics2_info10": {}, "timezone1_location": {}, "timezone_link": {}, "timezone2_location": {}, "timezone3_location": {}, "utc_offset3": {}, "timezone3": {}, "utc_offset3_DST": {}, "timezone3_DST": {}, "timezone4_location": {}, "utc_offset4": {}, "timezone4": {}, "utc_offset4_DST": {}, "timezone4_DST": {}, "timezone5_location": {}, "utc_offset5": {}, "timezone5": {}, "utc_offset5_DST": {}, "timezone5_DST": {}, "registration_plate_type": { "label": "Registration/license plate type", "description": "The place's registration/license plate type", "type": "content" }, "code1_name": {}, "code1_info": {}, "code2_name": {}, "code2_info": {}, "blank1_name": {}, "blank1_info": {}, "blank2_name_sec1": {}, "blank2_name": {}, "blank2_info_sec1": {}, "blank2_info": {}, "blank3_name_sec1": {}, "blank3_name": {}, "blank3_info_sec1": {}, "blank3_info": {}, "blank4_name_sec1": {}, "blank4_name": {}, "blank4_info_sec1": {}, "blank4_info": {}, "blank5_name_sec1": {}, "blank5_name": {}, "blank5_info_sec1": {}, "blank5_info": {}, "blank6_name_sec1": {}, "blank6_name": {}, "blank6_info_sec1": {}, "blank6_info": {}, "blank7_name_sec1": {}, "blank7_name": {}, "blank7_info_sec1": {}, "blank7_info": {}, "blank2_name_sec2": {}, "blank2_info_sec2": {}, "blank3_name_sec2": {}, "blank3_info_sec2": {}, "blank4_name_sec2": {}, "blank4_info_sec2": {}, "blank5_name_sec2": {}, "blank5_info_sec2": {}, "blank6_name_sec2": {}, "blank6_info_sec2": {}, "blank7_name_sec2": {}, "blank7_info_sec2": {}, "module": {}, "coordinates_wikidata": {}, "wikidata": {}, "image_upright": {}, "blank_emblem_upright": {}, "leader_title5": {}, "leader_name5": {} }, "paramOrder": [ "name", "official_name", "native_name", "native_name_lang", "other_name", "settlement_type", "translit_lang1", "translit_lang1_type", "translit_lang1_info", "translit_lang2", "image_skyline", "imagesize", "image_upright", "image_alt", "image_caption", "image_flag", "flag_size", "flag_alt", "flag_border", "flag_link", "image_seal", "seal_size", "seal_alt", "seal_link", "seal_type", "seal_class", "image_shield", "shield_size", "shield_alt", "shield_link", "image_blank_emblem", "blank_emblem_type", "blank_emblem_size", "blank_emblem_upright", "blank_emblem_alt", "blank_emblem_link", "nickname", "motto", "anthem", "image_map", "mapsize", "map_alt", "map_caption", "image_map1", "mapsize1", "map_alt1", "map_caption1", "pushpin_map", "pushpin_mapsize", "pushpin_map_alt", "pushpin_map_caption", "pushpin_label", "pushpin_label_position", "pushpin_outside", "pushpin_relief", "pushpin_image", "pushpin_overlay", "mapframe", "mapframe-caption", "mapframe-custom", "mapframe-id", "mapframe-coordinates", "mapframe-wikidata", "mapframe-point", "mapframe-shape", "mapframe-frame-width", "mapframe-frame-height", "mapframe-shape-fill", "mapframe-shape-fill-opacity", "mapframe-stroke-color", "mapframe-stroke-width", "mapframe-marker", "mapframe-marker-color", "mapframe-geomask", "mapframe-geomask-stroke-color", "mapframe-geomask-stroke-width", "mapframe-geomask-fill", "mapframe-geomask-fill-opacity", "mapframe-zoom", "mapframe-length_km", "mapframe-length_mi", "mapframe-area_km2", "mapframe-area_mi2", "mapframe-frame-coordinates", "mapframe-switcher", "mapframe-line", "coordinates", "coor_pinpoint", "coordinates_footnotes", "subdivision_type", "subdivision_name", "subdivision_type1", "subdivision_name1", "subdivision_type2", "subdivision_name2", "subdivision_type3", "subdivision_name3", "subdivision_type4", "subdivision_name4", "subdivision_type5", "subdivision_name5", "subdivision_type6", "subdivision_name6", "established_title", "established_date", "established_title1", "established_date1", "established_title2", "established_date2", "established_title3", "established_date3", "established_title4", "established_date4", "established_title5", "established_date5", "established_title6", "established_date6", "established_title7", "established_date7", "extinct_title", "extinct_date", "founder", "named_for", "seat_type", "seat", "parts_type", "parts_style", "parts", "government_footnotes", "government_type", "governing_body", "leader_party", "leader_title", "leader_name", "leader_title1", "leader_name1", "total_type", "unit_pref", "area_footnotes", "dunam_link", "area_total_km2", "area_total_sq_mi", "area_total_ha", "area_total_acre", "area_total_dunam", "area_land_km2", "area_land_sq_mi", "area_land_ha", "area_land_dunam", "area_land_acre", "area_water_km2", "area_water_sq_mi", "area_water_ha", "area_water_dunam", "area_water_acre", "area_water_percent", "area_urban_km2", "area_urban_sq_mi", "area_urban_ha", "area_urban_dunam", "area_urban_acre", "area_urban_footnotes", "area_rural_km2", "area_rural_sq_mi", "area_rural_ha", "area_rural_dunam", "area_rural_acre", "area_rural_footnotes", "area_metro_km2", "area_metro_sq_mi", "area_metro_ha", "area_metro_dunam", "area_metro_acre", "area_metro_footnotes", "area_rank", "area_blank1_title", "area_blank1_km2", "area_blank1_sq_mi", "area_blank1_ha", "area_blank1_dunam", "area_blank1_acre", "area_blank2_title", "area_blank2_km2", "area_blank2_sq_mi", "area_blank2_ha", "area_blank2_dunam", "area_blank2_acre", "area_note", "dimensions_footnotes", "length_km", "length_mi", "width_km", "width_mi", "elevation_m", "elevation_ft", "elevation_footnotes", "elevation_min_point", "elevation_min_m", "elevation_min_ft", "elevation_min_rank", "elevation_min_footnotes", "elevation_max_point", "elevation_max_m", "elevation_max_ft", "elevation_max_rank", "elevation_max_footnotes", "population_total", "population_as_of", "population_footnotes", "population_density_km2", "population_density_sq_mi", "population_est", "pop_est_as_of", "pop_est_footnotes", "population_urban", "population_urban_footnotes", "population_density_urban_km2", "population_density_urban_sq_mi", "population_rural", "population_rural_footnotes", "population_density_rural_km2", "population_density_rural_sq_mi", "population_metro", "population_metro_footnotes", "population_density_metro_km2", "population_density_metro_sq_mi", "population_rank", "population_density_rank", "population_blank1_title", "population_blank1", "population_density_blank1_km2", "population_density_blank1_sq_mi", "population_blank2_title", "population_blank2", "population_density_blank2_km2", "population_density_blank2_sq_mi", "population_demonym", "population_note", "demographics_type1", "demographics1_footnotes", "demographics1_title1", "demographics_type2", "demographics2_footnotes", "demographics2_title1", "demographics2_info1", "timezone1", "utc_offset", "timezone_DST", "utc_offset_DST", "utc_offset1", "timezone1_DST", "utc_offset1_DST", "timezone2", "utc_offset2", "timezone2_DST", "utc_offset2_DST", "postal_code_type", "postal_code", "postal2_code_type", "postal2_code", "area_code", "area_code_type", "geocode", "iso_code", "registration_plate_type", "registration_plate", "blank_name_sec1", "blank_info_sec1", "blank1_name_sec1", "blank1_info_sec1", "blank_name_sec2", "blank_info_sec2", "blank1_name_sec2", "blank1_info_sec2", "website", "footnotes", "translit_lang1_info1", "translit_lang1_type1", "translit_lang1_info2", "translit_lang1_type2", "demographics1_info1", "embed", "translit_lang1_type3", "translit_lang1_type4", "translit_lang1_info3", "translit_lang1_type5", "translit_lang1_info4", "translit_lang1_type6", "translit_lang1_info5", "translit_lang1_info6", "translit_lang2_type1", "translit_lang2_type", "translit_lang2_info", "translit_lang2_type2", "translit_lang2_info1", "translit_lang2_type3", "translit_lang2_info2", "translit_lang2_type4", "translit_lang2_info3", "translit_lang2_type5", "translit_lang2_info4", "translit_lang2_type6", "translit_lang2_info5", "translit_lang2_info6", "image_size", "alt", "pushpin_map_narrow", "pushpin_map_caption_notsmall", "etymology", "nicknames", "nickname_link", "mottoes", "motto_link", "anthem_link", "grid_position", "coor_type", "grid_name", "seat1_type", "seat1", "seat2_type", "seat2", "p1", "p2", "p3", "p4", "p5", "p6", "p7", "p8", "p9", "p10", "p11", "p12", "p13", "p14", "p15", "p16", "p17", "p18", "p19", "p20", "p21", "p22", "p23", "p24", "p25", "p26", "p27", "p28", "p29", "p30", "p31", "p32", "p33", "p34", "p35", "p36", "p37", "p38", "p39", "p40", "p41", "p42", "p43", "p44", "p45", "p46", "p47", "p48", "p49", "p50", "leader_name2", "leader_name3", "leader_name4", "leader_name5", "leader_title2", "leader_title3", "leader_title4", "leader_title5", "government_blank1_title", "government_blank1", "government_blank2_title", "government_blank2", "government_blank3_title", "government_blank3", "government_blank4_title", "government_blank4", "government_blank5_title", "government_blank5", "government_blank6_title", "government_blank6", "elevation_link", "elevation_point", "population_blank1_footnotes", "population_blank2_footnotes", "population_demonyms", "demographics1_title2", "demographics1_info2", "demographics1_title3", "demographics1_info3", "demographics1_title4", "demographics1_info4", "demographics1_title5", "demographics1_info5", "demographics1_title6", "demographics1_info6", "demographics1_title7", "demographics1_info7", "demographics1_title8", "demographics1_info8", "demographics1_title9", "demographics1_info9", "demographics1_title10", "demographics1_info10", "demographics2_title2", "demographics2_info2", "demographics2_title3", "demographics2_info3", "demographics2_title4", "demographics2_info4", "demographics2_title5", "demographics2_info5", "demographics2_title6", "demographics2_info6", "demographics2_title7", "demographics2_info7", "demographics2_title8", "demographics2_info8", "demographics2_title9", "demographics2_info9", "demographics2_title10", "demographics2_info10", "timezone1_location", "timezone_link", "timezone2_location", "timezone3_location", "utc_offset3", "timezone3", "utc_offset3_DST", "timezone3_DST", "timezone4_location", "utc_offset4", "timezone4", "utc_offset4_DST", "timezone4_DST", "timezone5_location", "utc_offset5", "timezone5", "utc_offset5_DST", "timezone5_DST", "code1_name", "code1_info", "code2_name", "code2_info", "blank1_name", "blank1_info", "blank2_name_sec1", "blank2_name", "blank2_info_sec1", "blank2_info", "blank3_name_sec1", "blank3_name", "blank3_info_sec1", "blank3_info", "blank4_name_sec1", "blank4_name", "blank4_info_sec1", "blank4_info", "blank5_name_sec1", "blank5_name", "blank5_info_sec1", "blank5_info", "blank6_name_sec1", "blank6_name", "blank6_info_sec1", "blank6_info", "blank7_name_sec1", "blank7_name", "blank7_info_sec1", "blank7_info", "blank2_name_sec2", "blank2_info_sec2", "blank3_name_sec2", "blank3_info_sec2", "blank4_name_sec2", "blank4_info_sec2", "blank5_name_sec2", "blank5_info_sec2", "blank6_name_sec2", "blank6_info_sec2", "blank7_name_sec2", "blank7_info_sec2", "module", "coordinates_wikidata", "wikidata" ] } </templatedata> {{collapse bottom}} ==Calls and redirects == At least {{PAGESINCATEGORY:Templates calling Infobox settlement}} other [[:Category:Templates calling Infobox settlement|templates call this one]]. [{{fullurl:Special:WhatLinksHere/Template:Infobox_settlement|namespace=10&hidetrans=1&hidelinks=1}} Several templates redirect here]. == Tracking categories == # {{clc|Pages using infobox settlement with bad settlement type}} # {{clc|Pages using infobox settlement with bad density arguments}} # {{clc|Pages using infobox settlement with image map1 but not image map}} # {{clc|Pages using infobox settlement with missing country}} # {{clc|Pages using infobox settlement with no map}} # {{clc|Pages using infobox settlement with no coordinates}} # {{clc|Pages using infobox settlement with possible area code list}} # {{clc|Pages using infobox settlement with possible demonym list}} # {{clc|Pages using infobox settlement with possible motto list}} # {{clc|Pages using infobox settlement with possible nickname list}} # {{clc|Pages using infobox settlement with the wikidata parameter}} # {{clc|Pages using infobox settlement with unknown parameters}} # {{clc|Pages using infobox settlement with conflicting parameters}} # {{clc|Templates calling Infobox settlement}} ==See also== *[[Help:Coordinates]] *[[Help:Elevation]] *[[Help:GNIS data for U.S. infoboxes]] *{{tl|Infobox too long}} <includeonly>{{Sandbox other|| <!--Categories below this line, please; interwikis at Wikidata--> [[Category:Place infobox templates|Settlement]] [[Category:Embeddable templates]] [[Category:Infobox templates using Wikidata]] [[Category:Templates that add a tracking category]] }}</includeonly> lu7uqveavvgljv0nul996cx6lc9n8v1 Template:Infobox settlement/Wikidata 10 7931 72784 72324 2026-06-30T21:30:46Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/Wikidata]] para [[Template:Infokaixa fatin-koabitasaun/Wikidata]]: localise 72323 wikitext text/x-wiki <includeonly>{{Infobox settlement <!-- See Template:Infobox settlement for additional fields and descriptions --> | name = {{PAGENAMEBASE}} | native_name = | native_name_lang = <!-- ISO 639-2 code e.g. "fr" for French. If more than one, use {{lang}} instead --> | settlement_type = {{#if: {{#property:P31}} | [[{{#property:P31}}]] }} | image_skyline = {{#property:P18}} | image_alt = | image_caption = | image_flag = {{#property:p41}} | flag_alt = | image_seal = {{#property:p158}} | seal_alt = | image_shield = {{#property:p94}} | shield_alt = | nickname = {{#property:p1449}} | motto = | image_map = {{#if: {{#property:p242}} | {{#property:p242}} | }} | map_alt = | map_caption = {{#if:{{#property:p242}} | {{#if:{{#Property:P625}}|{{Coord|nosave=1|display=inline,title|format=dms}}{{#ifeq:{{{refs|yes}}}|yes|{{wikidata|references|normal+|{{{qid|}}}|P625}} }}{{EditAtWikidata|pid=P625|qid={{{qid|}}} }} }} }} | pushpin_map = {{#property:P17}} | pushpin_label_position = | pushpin_map_alt = | pushpin_map_caption = | coordinates = {{#if: {{#property:p242}} || {{#if:{{{coords|}}}{{{coordinates|}}} | {{if empty|{{{coordinates|}}}|{{{coords|}}}}} | {{#if:{{#Property:P625}} | {{Coord|nosave=1|display=inline,title|format=dms}}{{#ifeq:{{{refs|yes}}}|yes|{{wikidata|references|normal+|{{{qid|}}}|P625}} }}{{EditAtWikidata|pid=P625|qid={{{qid|}}} }} }} }} }} | coor_pinpoint = | coordinates_footnotes = | subdivision_type = Country | subdivision_name = {{#if: {{#property:P17}} | [[{{#property:P17}}]] }} | subdivision_type1 = Subdivision | subdivision_name1 = {{#invoke:WikidataIB|getValue|rank=best|qid={{{qid|}}}|P131|fetchwikidata=ALL|onlysourced=yes}} | subdivision_type2 = | subdivision_name2 = | subdivision_type3 = | subdivision_name3 = | established_title = | established_date = | founder = | seat_type = | seat = | government_footnotes = | leader_party = | leader_title = | leader_name = {{#invoke:WikidataIB|getValue|rank=best|qid={{{qid|}}}|P6|fetchwikidata=ALL|onlysourced=yes}} | unit_pref = Metric <!-- ALL fields with measurements have automatic unit conversion --> <!-- for references: use <ref> tags --> | area_footnotes = {{#if: {{{area_km2_ref|}}} | {{{area_km2_ref}}} | {{wikidata|reference|P2046}} }} | area_urban_footnotes = <!-- <ref> </ref> --> | area_rural_footnotes = <!-- <ref> </ref> --> | area_metro_footnotes = <!-- <ref> </ref> --> | area_magnitude = <!-- <ref> </ref> --> | area_note = | area_water_percent = | area_rank = | area_blank1_title = | area_blank2_title = <!-- square kilometers --> | area_total_km2 = {{#if: {{{area_km2|}}} | {{{area_km2}}} | {{wikidata|property|raw|P2046}} }} | area_land_km2 = {{#if: {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}} | {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}} | {{#if: {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q205895 |fwd=ALL |osd=no |noicon=true | showunits = false}} |{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q205895 |fwd=ALL |osd=no |noicon=true | showunits = false}}}}}} | area_water_km2 = {{#if:{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q15324 |fwd=ALL |osd=no |noicon=true | showunits = false}}|{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q15324 |fwd=ALL |osd=no |noicon=true | showunits = false}}|{{#if:{{both|{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q16868672 |fwd=ALL |osd=no |noicon=true | showunits = false}}| {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}}}}| {{#expr: {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q16868672 |fwd=ALL |osd=no |noicon=true | showunits = false}} - {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}}round2}}|{{#if:{{both|{{{area_total_km2|}}}|{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}}}}|{{#expr:{{{area_total_km2|}}}-{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits =false}}round2}}}}}}}} | area_urban_km2 = | area_rural_km2 = | area_metro_km2 = | area_blank1_km2 = | area_blank2_km2 = <!-- hectares --> | area_total_ha = | area_land_ha = | area_water_ha = | area_urban_ha = | area_rural_ha = | area_metro_ha = | area_blank1_ha = | area_blank2_ha = | length_km = | width_km = | dimensions_footnotes = | elevation_footnotes = | elevation_m = | population_footnotes = {{#if: {{wikidata|property|P1082}} | {{wikidata|references|best|P1082}} }} | population_total = {{wikidata|property|best|P1082}} | population_as_of = {{#if: {{wikidata|property|P1082}} | {{wikidata|qualifier|best|P1082|P585}} }} | population_density_km2 = auto | population_demonym = | population_note = | timezone1 = | utc_offset1 = | timezone1_DST = | utc_offset1_DST = | postal_code_type = Postal code | postal_code = | area_code_type = | area_code = {{#property:P473}} | iso_code = | website = {{#if: {{#property:P856}} | {{URL|{{#property:P856}}}} }} | footnotes = }}</includeonly><noinclude> Try it on {{Wikidata test|San Francisco|{{PAGENAME}}}}, {{Wikidata test|Vladivostok|{{PAGENAME}}}}, {{Wikidata test|Sapporo|{{PAGENAME}}}} {{documentation}} <!--Please add this template's categories to the /doc subpage, not here - thanks!--> </noinclude> n9n6jwaz11vem8cbnsvr82h1yhrgjll 72840 72784 2026-07-01T02:02:31Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/Wikidata]] para o seu redirecionamento [[Template:Infobox settlement/Wikidata]], suprimindo o primeiro: fixing 72323 wikitext text/x-wiki <includeonly>{{Infobox settlement <!-- See Template:Infobox settlement for additional fields and descriptions --> | name = {{PAGENAMEBASE}} | native_name = | native_name_lang = <!-- ISO 639-2 code e.g. "fr" for French. If more than one, use {{lang}} instead --> | settlement_type = {{#if: {{#property:P31}} | [[{{#property:P31}}]] }} | image_skyline = {{#property:P18}} | image_alt = | image_caption = | image_flag = {{#property:p41}} | flag_alt = | image_seal = {{#property:p158}} | seal_alt = | image_shield = {{#property:p94}} | shield_alt = | nickname = {{#property:p1449}} | motto = | image_map = {{#if: {{#property:p242}} | {{#property:p242}} | }} | map_alt = | map_caption = {{#if:{{#property:p242}} | {{#if:{{#Property:P625}}|{{Coord|nosave=1|display=inline,title|format=dms}}{{#ifeq:{{{refs|yes}}}|yes|{{wikidata|references|normal+|{{{qid|}}}|P625}} }}{{EditAtWikidata|pid=P625|qid={{{qid|}}} }} }} }} | pushpin_map = {{#property:P17}} | pushpin_label_position = | pushpin_map_alt = | pushpin_map_caption = | coordinates = {{#if: {{#property:p242}} || {{#if:{{{coords|}}}{{{coordinates|}}} | {{if empty|{{{coordinates|}}}|{{{coords|}}}}} | {{#if:{{#Property:P625}} | {{Coord|nosave=1|display=inline,title|format=dms}}{{#ifeq:{{{refs|yes}}}|yes|{{wikidata|references|normal+|{{{qid|}}}|P625}} }}{{EditAtWikidata|pid=P625|qid={{{qid|}}} }} }} }} }} | coor_pinpoint = | coordinates_footnotes = | subdivision_type = Country | subdivision_name = {{#if: {{#property:P17}} | [[{{#property:P17}}]] }} | subdivision_type1 = Subdivision | subdivision_name1 = {{#invoke:WikidataIB|getValue|rank=best|qid={{{qid|}}}|P131|fetchwikidata=ALL|onlysourced=yes}} | subdivision_type2 = | subdivision_name2 = | subdivision_type3 = | subdivision_name3 = | established_title = | established_date = | founder = | seat_type = | seat = | government_footnotes = | leader_party = | leader_title = | leader_name = {{#invoke:WikidataIB|getValue|rank=best|qid={{{qid|}}}|P6|fetchwikidata=ALL|onlysourced=yes}} | unit_pref = Metric <!-- ALL fields with measurements have automatic unit conversion --> <!-- for references: use <ref> tags --> | area_footnotes = {{#if: {{{area_km2_ref|}}} | {{{area_km2_ref}}} | {{wikidata|reference|P2046}} }} | area_urban_footnotes = <!-- <ref> </ref> --> | area_rural_footnotes = <!-- <ref> </ref> --> | area_metro_footnotes = <!-- <ref> </ref> --> | area_magnitude = <!-- <ref> </ref> --> | area_note = | area_water_percent = | area_rank = | area_blank1_title = | area_blank2_title = <!-- square kilometers --> | area_total_km2 = {{#if: {{{area_km2|}}} | {{{area_km2}}} | {{wikidata|property|raw|P2046}} }} | area_land_km2 = {{#if: {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}} | {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}} | {{#if: {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q205895 |fwd=ALL |osd=no |noicon=true | showunits = false}} |{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q205895 |fwd=ALL |osd=no |noicon=true | showunits = false}}}}}} | area_water_km2 = {{#if:{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q15324 |fwd=ALL |osd=no |noicon=true | showunits = false}}|{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q15324 |fwd=ALL |osd=no |noicon=true | showunits = false}}|{{#if:{{both|{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q16868672 |fwd=ALL |osd=no |noicon=true | showunits = false}}| {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}}}}| {{#expr: {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q16868672 |fwd=ALL |osd=no |noicon=true | showunits = false}} - {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}}round2}}|{{#if:{{both|{{{area_total_km2|}}}|{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}}}}|{{#expr:{{{area_total_km2|}}}-{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits =false}}round2}}}}}}}} | area_urban_km2 = | area_rural_km2 = | area_metro_km2 = | area_blank1_km2 = | area_blank2_km2 = <!-- hectares --> | area_total_ha = | area_land_ha = | area_water_ha = | area_urban_ha = | area_rural_ha = | area_metro_ha = | area_blank1_ha = | area_blank2_ha = | length_km = | width_km = | dimensions_footnotes = | elevation_footnotes = | elevation_m = | population_footnotes = {{#if: {{wikidata|property|P1082}} | {{wikidata|references|best|P1082}} }} | population_total = {{wikidata|property|best|P1082}} | population_as_of = {{#if: {{wikidata|property|P1082}} | {{wikidata|qualifier|best|P1082|P585}} }} | population_density_km2 = auto | population_demonym = | population_note = | timezone1 = | utc_offset1 = | timezone1_DST = | utc_offset1_DST = | postal_code_type = Postal code | postal_code = | area_code_type = | area_code = {{#property:P473}} | iso_code = | website = {{#if: {{#property:P856}} | {{URL|{{#property:P856}}}} }} | footnotes = }}</includeonly><noinclude> Try it on {{Wikidata test|San Francisco|{{PAGENAME}}}}, {{Wikidata test|Vladivostok|{{PAGENAME}}}}, {{Wikidata test|Sapporo|{{PAGENAME}}}} {{documentation}} <!--Please add this template's categories to the /doc subpage, not here - thanks!--> </noinclude> n9n6jwaz11vem8cbnsvr82h1yhrgjll Template:Infobox settlement/Wikidata/doc 10 7940 72786 72354 2026-06-30T21:30:46Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/Wikidata/doc]] para [[Template:Infokaixa fatin-koabitasaun/Wikidata/doc]]: localise 72353 wikitext text/x-wiki {{Documentation subpage}} {{Improve documentation|date=September 2017}} <!-- Please place categories where indicated at the bottom of this page and interwikis at Wikidata (see [[Wikipedia:Wikidata]]) --> {{Template rating|pre-alpha}} {{Uses Wikidata|P18|P41|P158|P94|P1449|P242|P17|P131|P2046|P1082|P473|P856}} == Usage == This is a test template that uses Wikidata values to populate settlement infoboxes. {{Infobox settlement/Wikidata | qid=Q60 | name= New York City | fetchwikidata=All }} Per [[Wikipedia:Wikidata/2018 Infobox RfC#Discussion]], which found consensus that all uses of Wikidata in infoboxes must be sourced, this template should '''not be used''' in articles until it is updated to use [[Module:WikidataIB]] for all Wikidata calls. See [[:Template:Infobox person/Wikidata]] for examples of how to use the module. {{Wikidata infoboxes}} <includeonly>{{sandbox other|| <!-- Categories below this line, please; interwikis at Wikidata --> }}</includeonly> p056axxr0mt0ee0pkgwivhe55l9ed4p 72841 72786 2026-07-01T02:02:32Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/Wikidata/doc]] para o seu redirecionamento [[Template:Infobox settlement/Wikidata/doc]], suprimindo o primeiro: fixing 72353 wikitext text/x-wiki {{Documentation subpage}} {{Improve documentation|date=September 2017}} <!-- Please place categories where indicated at the bottom of this page and interwikis at Wikidata (see [[Wikipedia:Wikidata]]) --> {{Template rating|pre-alpha}} {{Uses Wikidata|P18|P41|P158|P94|P1449|P242|P17|P131|P2046|P1082|P473|P856}} == Usage == This is a test template that uses Wikidata values to populate settlement infoboxes. {{Infobox settlement/Wikidata | qid=Q60 | name= New York City | fetchwikidata=All }} Per [[Wikipedia:Wikidata/2018 Infobox RfC#Discussion]], which found consensus that all uses of Wikidata in infoboxes must be sourced, this template should '''not be used''' in articles until it is updated to use [[Module:WikidataIB]] for all Wikidata calls. See [[:Template:Infobox person/Wikidata]] for examples of how to use the module. {{Wikidata infoboxes}} <includeonly>{{sandbox other|| <!-- Categories below this line, please; interwikis at Wikidata --> }}</includeonly> p056axxr0mt0ee0pkgwivhe55l9ed4p Template:Infobox settlement/Wikidata/sandbox 10 7944 72788 72362 2026-06-30T21:30:46Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/Wikidata/sandbox]] para [[Template:Infokaixa fatin-koabitasaun/Wikidata/sandbox]]: localise 72361 wikitext text/x-wiki <noinclude> {{Improve documentation|date=September 2017}} </noinclude> {{Infobox settlement <!-- See Template:Infobox settlement for additional fields and descriptions --> | name = {{#if:{{{name|}}}|{{{name}}}|{{PAGENAMEBASE}}}} | native_name = | native_name_lang = <!-- ISO 639-2 code e.g. "fr" for French. If more than one, use {{lang}} instead --> | settlement_type = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P31|ps=1|rank=best}} | image_skyline = {{#invoke:InfoboxImage |InfoboxImage |image={{#invoke:WikidataIB | getValue | ps=1 |P18 |name=skyline |qid={{{qid|}}}|{{{image|}}} }}| size={{{image size|{{{image_size|{{{imagesize|}}} }}} }}} |sizedefault=frameless |upright={{{image_upright|1}}} |alt={{{alt|}}} |suppressplaceholder=yes}} | caption = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P18|ps=1|qual=P2096 |qualsonly=yes | maxvals=1|{{{caption|}}} }} | image_flag = {{#invoke:InfoboxImage |InfoboxImage |image={{#invoke:WikidataIB | getValue | ps=1 |P41 |name=flag |qid={{{qid|}}}|{{{image|}}} }}| size={{{image size|{{{image_size|{{{imagesize|}}} }}} }}} |sizedefault=frameless |upright={{{image_upright|1}}} |alt={{{alt|}}} |suppressplaceholder=yes}} | flag_alt = | image_seal = {{#invoke:InfoboxImage |InfoboxImage |image={{#invoke:WikidataIB | getValue | ps=1 |P158 |name=seal |qid={{{qid|}}}|{{{image|}}} }}| size={{{image size|{{{image_size|{{{imagesize|}}} }}} }}} |sizedefault=frameless |upright={{{image_upright|1}}} |alt={{{alt|}}} |suppressplaceholder=yes}} | seal_alt = | image_shield = {{#invoke:InfoboxImage |InfoboxImage |image={{#invoke:WikidataIB | getValue | ps=1 |P94 |name=shield |qid={{{qid|}}}|{{{image|}}} }}| size={{{image size|{{{image_size|{{{imagesize|}}} }}} }}} |sizedefault=frameless |upright={{{image_upright|1}}} |alt={{{alt|}}} |suppressplaceholder=yes}} | shield_alt = | nickname = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P1449|ps=1}} | motto = | image_map = {{#if: {{#invoke:WikidataIB | getValue | ps=1 |P242 |qid={{{qid|}}} }} | {{#invoke:InfoboxImage |InfoboxImage |image={{#invoke:WikidataIB | getValue | ps=1 |P242 |name=flag |qid={{{qid|}}}|{{{image|}}} }}| size={{{image size|{{{image_size|{{{imagesize|}}} }}} }}} |sizedefault=frameless |upright={{{image_upright|1}}} |alt={{{alt|}}} |suppressplaceholder=yes}} | }} | map_alt = | map_caption = {{#if:{{#property:p242}} | {{#if:{{#Property:P625}}|{{Coord|nosave=1|display=inline,title|format=dms}}{{#ifeq:{{{refs|yes}}}|yes|{{wikidata|references|normal+|{{{qid|}}}|P625}} }}{{EditAtWikidata|pid=P625|qid={{{qid|}}} }} }} }} | pushpin_map = | pushpin_label_position = | pushpin_map_alt = | pushpin_map_caption = <!-- TODO: make this real coordinates --> | coordinates = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P625|ps=1}} | coor_pinpoint = | coordinates_footnotes = | subdivision_type = Country | named_for = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P138|ps=1}} | subdivision_name = {{#if: {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P17|ps=1}} | {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P17|ps=1}} }} | subdivision_type1 = Subdivision | subdivision_name1 = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P131|ps=1}} | subdivision_type2 = | subdivision_name2 = | subdivision_type3 = | subdivision_name3 = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P150|ps=1}} | established_title = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P155|ps=1}} | established_date = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P571|ps=1}} | founder = | seat_type = | seat = | government_footnotes = | leader_party = | governing_body = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P194|ps=1}} | leader_title = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P1313|ps=1}} | leader_name = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P6|ps=1}} | unit_pref = Metric <!-- ALL fields with measurements have automatic unit conversion --> <!-- for references: use <ref> tags --> | area_footnotes = {{#if: {{{area_km2_ref|}}} | {{{area_km2_ref}}} | {{wikidata|reference|P2046}} }} | area_urban_footnotes = <!-- <ref> </ref> --> | area_rural_footnotes = <!-- <ref> </ref> --> | area_metro_footnotes = <!-- <ref> </ref> --> | area_magnitude = <!-- <ref> </ref> --> | area_note = | area_water_percent = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P2927|ps=1}} | area_rank = | area_blank1_title = | area_blank2_title = <!-- square kilometers --> | area_total_km2 = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P2046|ps=1|showunits=false}} | area_land_km2 = {{#if: {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}} | {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}} | {{#if: {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q205895 |fwd=ALL |osd=no |noicon=true | showunits = false}} |{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q205895 |fwd=ALL |osd=no |noicon=true | showunits = false}}}}}} | area_water_km2 = {{#if:{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q15324 |fwd=ALL |osd=no |noicon=true | showunits = false}}|{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q15324 |fwd=ALL |osd=no |noicon=true | showunits = false}}|{{#if:{{both|{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q16868672 |fwd=ALL |osd=no |noicon=true | showunits = false}}| {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}}}}| {{#expr: {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q16868672 |fwd=ALL |osd=no |noicon=true | showunits = false}} - {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}}round2}}|{{#if:{{both|{{{area_total_km2|}}}|{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}}}}|{{#expr:{{{area_total_km2|}}}-{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits =false}}round2}}}}}}}} | area_urban_km2 = | area_rural_km2 = | area_metro_km2 = | area_blank1_km2 = | area_blank2_km2 = <!-- hectares --> | area_total_ha = | area_land_ha = | area_water_ha = | area_urban_ha = | area_rural_ha = | area_metro_ha = | area_blank1_ha = | area_blank2_ha = | length_km = | width_km = | dimensions_footnotes = | elevation_footnotes = | elevation_m = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P2044|ps=1|showunits=false}} | population_footnotes = {{#if: {{wikidata|property|P1082}} | {{wikidata|references|best|P1082}} }} | population_total = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P1082|ps=1|qual=P585|rank=best}} | population_density_km2 = auto | population_demonym = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P1549|ps=1}} | population_note = | timezone1 = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P421|ps=1}} | utc_offset1 = | timezone1_DST = {{#invoke:WikidataIB|getValueByQual|qid={{{qid|}}}|P421|qualID=P1264|qvalue=Q36669|ps=1}} | utc_offset1_DST = | postal_code_type = Postal code | postal_code = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P281|ps=1}} | area_code_type = | area_code = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P473|ps=1}} | iso_code = | website = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P856|ps=1}} | footnotes = }}<noinclude> Try it on {{Wikidata test|San Francisco|{{PAGENAME}}}}, {{Wikidata test|Vladivostok|{{PAGENAME}}}}, {{Wikidata test|Sapporo|{{PAGENAME}}}} {{documentation}} <!--Please add this template's categories to the /doc subpage, not here - thanks!--> </noinclude> 6iff6bqkrapsnngw5u965e10zkm24sl 72842 72788 2026-07-01T02:02:33Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/Wikidata/sandbox]] para o seu redirecionamento [[Template:Infobox settlement/Wikidata/sandbox]], suprimindo o primeiro: fixing 72361 wikitext text/x-wiki <noinclude> {{Improve documentation|date=September 2017}} </noinclude> {{Infobox settlement <!-- See Template:Infobox settlement for additional fields and descriptions --> | name = {{#if:{{{name|}}}|{{{name}}}|{{PAGENAMEBASE}}}} | native_name = | native_name_lang = <!-- ISO 639-2 code e.g. "fr" for French. If more than one, use {{lang}} instead --> | settlement_type = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P31|ps=1|rank=best}} | image_skyline = {{#invoke:InfoboxImage |InfoboxImage |image={{#invoke:WikidataIB | getValue | ps=1 |P18 |name=skyline |qid={{{qid|}}}|{{{image|}}} }}| size={{{image size|{{{image_size|{{{imagesize|}}} }}} }}} |sizedefault=frameless |upright={{{image_upright|1}}} |alt={{{alt|}}} |suppressplaceholder=yes}} | caption = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P18|ps=1|qual=P2096 |qualsonly=yes | maxvals=1|{{{caption|}}} }} | image_flag = {{#invoke:InfoboxImage |InfoboxImage |image={{#invoke:WikidataIB | getValue | ps=1 |P41 |name=flag |qid={{{qid|}}}|{{{image|}}} }}| size={{{image size|{{{image_size|{{{imagesize|}}} }}} }}} |sizedefault=frameless |upright={{{image_upright|1}}} |alt={{{alt|}}} |suppressplaceholder=yes}} | flag_alt = | image_seal = {{#invoke:InfoboxImage |InfoboxImage |image={{#invoke:WikidataIB | getValue | ps=1 |P158 |name=seal |qid={{{qid|}}}|{{{image|}}} }}| size={{{image size|{{{image_size|{{{imagesize|}}} }}} }}} |sizedefault=frameless |upright={{{image_upright|1}}} |alt={{{alt|}}} |suppressplaceholder=yes}} | seal_alt = | image_shield = {{#invoke:InfoboxImage |InfoboxImage |image={{#invoke:WikidataIB | getValue | ps=1 |P94 |name=shield |qid={{{qid|}}}|{{{image|}}} }}| size={{{image size|{{{image_size|{{{imagesize|}}} }}} }}} |sizedefault=frameless |upright={{{image_upright|1}}} |alt={{{alt|}}} |suppressplaceholder=yes}} | shield_alt = | nickname = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P1449|ps=1}} | motto = | image_map = {{#if: {{#invoke:WikidataIB | getValue | ps=1 |P242 |qid={{{qid|}}} }} | {{#invoke:InfoboxImage |InfoboxImage |image={{#invoke:WikidataIB | getValue | ps=1 |P242 |name=flag |qid={{{qid|}}}|{{{image|}}} }}| size={{{image size|{{{image_size|{{{imagesize|}}} }}} }}} |sizedefault=frameless |upright={{{image_upright|1}}} |alt={{{alt|}}} |suppressplaceholder=yes}} | }} | map_alt = | map_caption = {{#if:{{#property:p242}} | {{#if:{{#Property:P625}}|{{Coord|nosave=1|display=inline,title|format=dms}}{{#ifeq:{{{refs|yes}}}|yes|{{wikidata|references|normal+|{{{qid|}}}|P625}} }}{{EditAtWikidata|pid=P625|qid={{{qid|}}} }} }} }} | pushpin_map = | pushpin_label_position = | pushpin_map_alt = | pushpin_map_caption = <!-- TODO: make this real coordinates --> | coordinates = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P625|ps=1}} | coor_pinpoint = | coordinates_footnotes = | subdivision_type = Country | named_for = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P138|ps=1}} | subdivision_name = {{#if: {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P17|ps=1}} | {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P17|ps=1}} }} | subdivision_type1 = Subdivision | subdivision_name1 = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P131|ps=1}} | subdivision_type2 = | subdivision_name2 = | subdivision_type3 = | subdivision_name3 = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P150|ps=1}} | established_title = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P155|ps=1}} | established_date = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P571|ps=1}} | founder = | seat_type = | seat = | government_footnotes = | leader_party = | governing_body = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P194|ps=1}} | leader_title = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P1313|ps=1}} | leader_name = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P6|ps=1}} | unit_pref = Metric <!-- ALL fields with measurements have automatic unit conversion --> <!-- for references: use <ref> tags --> | area_footnotes = {{#if: {{{area_km2_ref|}}} | {{{area_km2_ref}}} | {{wikidata|reference|P2046}} }} | area_urban_footnotes = <!-- <ref> </ref> --> | area_rural_footnotes = <!-- <ref> </ref> --> | area_metro_footnotes = <!-- <ref> </ref> --> | area_magnitude = <!-- <ref> </ref> --> | area_note = | area_water_percent = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P2927|ps=1}} | area_rank = | area_blank1_title = | area_blank2_title = <!-- square kilometers --> | area_total_km2 = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P2046|ps=1|showunits=false}} | area_land_km2 = {{#if: {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}} | {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}} | {{#if: {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q205895 |fwd=ALL |osd=no |noicon=true | showunits = false}} |{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q205895 |fwd=ALL |osd=no |noicon=true | showunits = false}}}}}} | area_water_km2 = {{#if:{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q15324 |fwd=ALL |osd=no |noicon=true | showunits = false}}|{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q15324 |fwd=ALL |osd=no |noicon=true | showunits = false}}|{{#if:{{both|{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q16868672 |fwd=ALL |osd=no |noicon=true | showunits = false}}| {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}}}}| {{#expr: {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q16868672 |fwd=ALL |osd=no |noicon=true | showunits = false}} - {{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}}round2}}|{{#if:{{both|{{{area_total_km2|}}}|{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits = false}}}}|{{#expr:{{{area_total_km2|}}}-{{#invoke:WikidataIB | getValueByQual | rank=best |qid={{{qid|}}} | P2046 | qualID=P518 | qvalue=Q11081619 |fwd=ALL |osd=no |noicon=true | showunits =false}}round2}}}}}}}} | area_urban_km2 = | area_rural_km2 = | area_metro_km2 = | area_blank1_km2 = | area_blank2_km2 = <!-- hectares --> | area_total_ha = | area_land_ha = | area_water_ha = | area_urban_ha = | area_rural_ha = | area_metro_ha = | area_blank1_ha = | area_blank2_ha = | length_km = | width_km = | dimensions_footnotes = | elevation_footnotes = | elevation_m = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P2044|ps=1|showunits=false}} | population_footnotes = {{#if: {{wikidata|property|P1082}} | {{wikidata|references|best|P1082}} }} | population_total = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P1082|ps=1|qual=P585|rank=best}} | population_density_km2 = auto | population_demonym = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P1549|ps=1}} | population_note = | timezone1 = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P421|ps=1}} | utc_offset1 = | timezone1_DST = {{#invoke:WikidataIB|getValueByQual|qid={{{qid|}}}|P421|qualID=P1264|qvalue=Q36669|ps=1}} | utc_offset1_DST = | postal_code_type = Postal code | postal_code = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P281|ps=1}} | area_code_type = | area_code = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P473|ps=1}} | iso_code = | website = {{#invoke:WikidataIB|getValue|qid={{{qid|}}}|P856|ps=1}} | footnotes = }}<noinclude> Try it on {{Wikidata test|San Francisco|{{PAGENAME}}}}, {{Wikidata test|Vladivostok|{{PAGENAME}}}}, {{Wikidata test|Sapporo|{{PAGENAME}}}} {{documentation}} <!--Please add this template's categories to the /doc subpage, not here - thanks!--> </noinclude> 6iff6bqkrapsnngw5u965e10zkm24sl Template:Infobox settlement/Wikidata/testcases 10 7945 72790 72364 2026-06-30T21:30:47Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/Wikidata/testcases]] para [[Template:Infokaixa fatin-koabitasaun/Wikidata/testcases]]: localise 72363 wikitext text/x-wiki {{Testcases notice <!--|toc=on-->}} {{Testcase table | qid=Q60 | name= New York City | fetchwikidata=All }} {{Testcase table | qid=Q62 | name= San Francisco | fetchwikidata=All }} {{Testcase table | qid=Q959 | name= Vladivostok | fetchwikidata=All }} {{Testcase table | qid=Q37951 | name= Sapporo | fetchwikidata=All }} c6urr8qpazc3doy3u19k4iof66bu7q0 72843 72790 2026-07-01T02:02:34Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/Wikidata/testcases]] para o seu redirecionamento [[Template:Infobox settlement/Wikidata/testcases]], suprimindo o primeiro: fixing 72363 wikitext text/x-wiki {{Testcases notice <!--|toc=on-->}} {{Testcase table | qid=Q60 | name= New York City | fetchwikidata=All }} {{Testcase table | qid=Q62 | name= San Francisco | fetchwikidata=All }} {{Testcase table | qid=Q959 | name= Vladivostok | fetchwikidata=All }} {{Testcase table | qid=Q37951 | name= Sapporo | fetchwikidata=All }} c6urr8qpazc3doy3u19k4iof66bu7q0 Template:Infobox settlement/areadisp/doc 10 7961 72794 72406 2026-06-30T21:30:47Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/areadisp/doc]] para [[Template:Infokaixa fatin-koabitasaun/areadisp/doc]]: localise 72405 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} {{Lua|Module:ConvertIB}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> {{notice|'''This subtemplate is not intended to be used directly'''}} This '''subtemplate of {{tl|Infobox settlement}}''' displays area values. == Usage == <syntaxhighlight lang="wikitext"> {{Infobox settlement/areadisp | km2 = area in [[square kilometre]]s (via ''area_total_km2'' and others) | sqmi = area in [[square mile]]s (via ''area_total_sq_mi'' and others) | ha = area in [[hectare]]s (via ''area_total_ha'' and others) | acre = area in [[acre]]s (via ''area_total_acre'' and others) | dunam = area in [[dunam]]s (via ''area_total_dunam'' and others) | pref = preference to display /km2 or /sqmi (via ''unit_pref'') | name = name of country (via ''subdivision_name'') | link = if ''dunam_link'' = on, returns ''total=on'' }} </syntaxhighlight> ==Examples== === square kilometre (km2) === {{tlx|Infobox settlement/areadisp|km2{{=}}N}} {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! km2= ! [[Template:Precision|Precision]] ! Conversion<br/>(sq. mi.) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! km2= ! [[Template:Precision|Precision]] ! Conversion<br/>(sq. mi.) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{Rnd|{{#expr:10000/2.589988110336}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{Rnd|{{#expr:22222/2.589988110336}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{#expr:1000/2.589988110336 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{#expr:2222/2.589988110336 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{#expr:100/2.589988110336 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{#expr:222/2.589988110336 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{#expr:10/2.589988110336 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{#expr:22/2.589988110336 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1/2.589988110336 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2/2.589988110336 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1/2.589988110336 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2/2.589988110336 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01/2.589988110336 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22/2.589988110336 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001/2.589988110336 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222/2.589988110336 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001/2.589988110336 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222/2.589988110336 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.2222}} |} === square mile (sqmi) === <code><nowiki>{{Infobox settlement/areadisp|pref=UK|sqmi=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! sqmi= ! [[Template:Precision|Precision]] ! Conversion<br/>(km<sup>2</sup>) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! sqmi= ! [[Template:Precision|Precision]] ! Conversion<br/>(km<sup>2</sup>) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{Rnd|{{#expr:10000*2.589988110336}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{Rnd|{{#expr:22222*2.589988110336}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{Rnd|{{#expr:1000*2.589988110336}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{Rnd|{{#expr:2222*2.589988110336}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{Rnd|{{#expr:100*2.589988110336}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{Rnd|{{#expr:222*2.589988110336}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{Rnd|{{#expr:10*2.589988110336}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{Rnd|{{#expr:22*2.589988110336}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1*2.589988110336 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2*2.589988110336 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1*2.589988110336 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2*2.589988110336 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01*2.589988110336 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22*2.589988110336 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001*2.589988110336 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222*2.589988110336 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001*2.589988110336 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222*2.589988110336 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.2222}} |- | style="padding:10px;" | <code><nowiki>0.00001</nowiki></code> | style="padding:10px;" | {{Precision|0.00001}} | style="padding:10px;" | {{#expr:0.00001*2.589988110336 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.00001*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.00001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22222</nowiki></code> | style="padding:10px;" | {{Precision|0.22222}} | style="padding:10px;" | {{#expr:0.22222*2.589988110336 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22222*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.22222}} |} === hectare (ha) === <code><nowiki>{{Infobox settlement/areadisp|ha=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! ha= ! [[Template:Precision|Precision]] ! Conversion<br/>(acres) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! ha= ! [[Template:Precision|Precision]] ! Conversion<br/>(acres) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{#expr:10000/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{#expr:22222/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{#expr:1000/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{#expr:2222/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{#expr:100/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{#expr:222/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{#expr:10/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{#expr:22/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1/0.4046856422 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1/0.4046856422 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2/0.4046856422 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01/0.4046856422 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22/0.4046856422 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001/0.4046856422 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222/0.4046856422 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001/0.4046856422 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222/0.4046856422 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.2222}} |- | style="padding:10px;" | <code><nowiki>0.00001</nowiki></code> | style="padding:10px;" | {{Precision|0.00001}} | style="padding:10px;" | {{#expr:0.00001/0.4046856422 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.00001/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.00001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22222</nowiki></code> | style="padding:10px;" | {{Precision|0.22222}} | style="padding:10px;" | {{#expr:0.22222/0.4046856422 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22222/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.22222}} |} === acre === <code><nowiki>{{Infobox settlement/areadisp|pref=UK|acre=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! acre= ! [[Template:Precision|Precision]] ! Conversion<br/>(hectares) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! acre= ! [[Template:Precision|Precision]] ! Conversion<br/>(hectares) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{#expr:10000*0.4046856422 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{#expr:22222*0.4046856422 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{#expr:1000*0.4046856422 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{#expr:2222*0.4046856422 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{#expr:100*0.4046856422 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{#expr:222*0.4046856422 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{#expr:10*0.4046856422 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{#expr:22*0.4046856422 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1*0.4046856422 round 3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2*0.4046856422 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1*0.4046856422 round 4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2*0.4046856422 round 3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01*0.4046856422 round 5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22*0.4046856422 round 4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001*0.4046856422 round 6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222*0.4046856422 round 4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001*0.4046856422 round 7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222*0.4046856422 round 5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.2222}} |} === dunam === <code><nowiki>{{Infobox settlement/areadisp|pref=Dunam|dunam=N}}</nowiki></code> {| class="wikitable" style="font-size:85%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! dunam= ! [[Template:Precision|Precision]] ! Conversion ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! dunam= ! [[Template:Precision|Precision]] ! Conversion ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>100000</nowiki></code> | style="padding:10px;" | {{Precision|100000}} | style="padding:10px;" | km2:&nbsp;{{#expr:100000/1E3}}<br/>sqmi:&nbsp;{{Rnd|{{#expr:100000/2589.988110336}}|3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100000/1E3}}}}<br/>{{Order of magnitude|{{#expr:100000/2589.988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=100000}} | &nbsp; | style="padding:10px;" | <code><nowiki>222222</nowiki></code> | style="padding:10px;" | {{Precision|222222}} | style="padding:10px;" | km2:&nbsp;{{#expr:222222/1E3}}<br/>sqmi:&nbsp;{{Rnd|{{#expr:222222/2589.9881103363}}|3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222222/1E3}}}}<br/>{{Order of magnitude|{{#expr:222222/2589.988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=222222}} |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | km2:&nbsp;{{#expr:10000/1E3}}<br/>sqmi:&nbsp;{{Rnd|{{#expr:10000/2589.988110336}}|3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000/1E3}}}}<br/>{{Order of magnitude|{{#expr:10000/2589.988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | km2:&nbsp;{{#expr:22222/1E3}}<br/>sqmi:&nbsp;{{Rnd|{{#expr:22222/2589.9881103363}}|3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222/1E3}}}}<br/>{{Order of magnitude|{{#expr:22222/2589.988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | km2:&nbsp;{{#expr:1000/1E3}}<br/>ac:&nbsp;{{#expr:1000/4.046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000/1E3}}}}<br/>{{Order of magnitude|{{#expr:1000/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | km2:&nbsp;{{#expr:2222/1E3}}<br/>ac:&nbsp;{{#expr:2222/4.046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222/1E3}}}}<br/>{{Order of magnitude|{{#expr:2222/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | ha:&nbsp;{{#expr:100/10}}<br/>ac:&nbsp;{{#expr:100/4.046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100/10}}}}<br/>{{Order of magnitude|{{#expr:100/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | ha:&nbsp;{{#expr:222/10}}<br/>ac:&nbsp;{{#expr:222/4.046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222/10}}}}<br/>{{Order of magnitude|{{#expr:222/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | ha:&nbsp;{{#expr:10/10}}<br/>ac:&nbsp;{{#expr:10/4.046856422 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/10}}}}<br/>{{Order of magnitude|{{#expr:10/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | ha:&nbsp;{{#expr:22/10}}<br/>ac:&nbsp;{{#expr:22/4.046856422 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22/10}}}}<br/>{{Order of magnitude|{{#expr:22/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | ha:&nbsp;{{#expr:1/10}}<br/>ac:&nbsp;{{#expr:1/4.046856422 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1/10}}}}<br/>{{Order of magnitude|{{#expr:1/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | ha:&nbsp;{{#expr:2/10}}<br/>ac:&nbsp;{{#expr:2/4.046856422 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2/10}}}}<br/>{{Order of magnitude|{{#expr:2/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.1/10}}<br/>ac:&nbsp;{{#expr:0.1/4.046856422 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1/10}}}}<br/>{{Order of magnitude|{{#expr:0.1/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.2/10}}<br/>ac:&nbsp;{{#expr:0.2/4.046856422 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2/10}}}}<br/>{{Order of magnitude|{{#expr:0.2/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.01/10}}<br/>ac:&nbsp;{{#expr:0.01/4.046856422 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01/10}}}}<br/>{{Order of magnitude|{{#expr:0.01/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.22/10}}<br/>ac:&nbsp;{{#expr:0.22/4.046856422 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22/10}}}}<br/>{{Order of magnitude|{{#expr:0.22/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.001/10}}<br/>ac:&nbsp;{{#expr:0.001/4.046856422 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001/10}}}}<br/>{{Order of magnitude|{{#expr:0.001/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.222/10}}<br/>ac:&nbsp;{{#expr:0.222/4.046856422 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222/10}}}}<br/>{{Order of magnitude|{{#expr:0.222/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.0001/10}}<br/>ac:&nbsp;{{#expr:0.0001/4.046856422 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001/10}}}}<br/>{{Order of magnitude|{{#expr:0.0001/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.2222/10}}<br/>ac:&nbsp;{{#expr:0.2222/4.046856422 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222/10}}}}<br/>{{Order of magnitude|{{#expr:0.2222/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.2222}} |} == See also == *{{Tl|Infobox settlement}} *{{Tl|Infobox settlement/densdisp}} *{{Tl|Infobox settlement/lengthdisp}} *{{tl|Infobox settlement/link}} *{{Tl|Infobox settlement/cleaner}} <includeonly>{{Sandbox other|| <!-- CATEGORIES HERE, THANKS --> [[Category:Place infobox subtemplates]] }}</includeonly> 7e1kev0wn2ugp7yeylqk35bndb770o5 72845 72794 2026-07-01T02:02:37Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/areadisp/doc]] para o seu redirecionamento [[Template:Infobox settlement/areadisp/doc]], suprimindo o primeiro: fixing 72405 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} {{Lua|Module:ConvertIB}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> {{notice|'''This subtemplate is not intended to be used directly'''}} This '''subtemplate of {{tl|Infobox settlement}}''' displays area values. == Usage == <syntaxhighlight lang="wikitext"> {{Infobox settlement/areadisp | km2 = area in [[square kilometre]]s (via ''area_total_km2'' and others) | sqmi = area in [[square mile]]s (via ''area_total_sq_mi'' and others) | ha = area in [[hectare]]s (via ''area_total_ha'' and others) | acre = area in [[acre]]s (via ''area_total_acre'' and others) | dunam = area in [[dunam]]s (via ''area_total_dunam'' and others) | pref = preference to display /km2 or /sqmi (via ''unit_pref'') | name = name of country (via ''subdivision_name'') | link = if ''dunam_link'' = on, returns ''total=on'' }} </syntaxhighlight> ==Examples== === square kilometre (km2) === {{tlx|Infobox settlement/areadisp|km2{{=}}N}} {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! km2= ! [[Template:Precision|Precision]] ! Conversion<br/>(sq. mi.) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! km2= ! [[Template:Precision|Precision]] ! Conversion<br/>(sq. mi.) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{Rnd|{{#expr:10000/2.589988110336}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{Rnd|{{#expr:22222/2.589988110336}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{#expr:1000/2.589988110336 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{#expr:2222/2.589988110336 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{#expr:100/2.589988110336 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{#expr:222/2.589988110336 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{#expr:10/2.589988110336 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{#expr:22/2.589988110336 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1/2.589988110336 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2/2.589988110336 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1/2.589988110336 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2/2.589988110336 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01/2.589988110336 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22/2.589988110336 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001/2.589988110336 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222/2.589988110336 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001/2.589988110336 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222/2.589988110336 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222/2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|km2=0.2222}} |} === square mile (sqmi) === <code><nowiki>{{Infobox settlement/areadisp|pref=UK|sqmi=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! sqmi= ! [[Template:Precision|Precision]] ! Conversion<br/>(km<sup>2</sup>) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! sqmi= ! [[Template:Precision|Precision]] ! Conversion<br/>(km<sup>2</sup>) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{Rnd|{{#expr:10000*2.589988110336}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{Rnd|{{#expr:22222*2.589988110336}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{Rnd|{{#expr:1000*2.589988110336}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{Rnd|{{#expr:2222*2.589988110336}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{Rnd|{{#expr:100*2.589988110336}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{Rnd|{{#expr:222*2.589988110336}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{Rnd|{{#expr:10*2.589988110336}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{Rnd|{{#expr:22*2.589988110336}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1*2.589988110336 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2*2.589988110336 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1*2.589988110336 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2*2.589988110336 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01*2.589988110336 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22*2.589988110336 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001*2.589988110336 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222*2.589988110336 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001*2.589988110336 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222*2.589988110336 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.2222}} |- | style="padding:10px;" | <code><nowiki>0.00001</nowiki></code> | style="padding:10px;" | {{Precision|0.00001}} | style="padding:10px;" | {{#expr:0.00001*2.589988110336 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.00001*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.00001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22222</nowiki></code> | style="padding:10px;" | {{Precision|0.22222}} | style="padding:10px;" | {{#expr:0.22222*2.589988110336 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22222*2.589988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|sqmi=0.22222}} |} === hectare (ha) === <code><nowiki>{{Infobox settlement/areadisp|ha=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! ha= ! [[Template:Precision|Precision]] ! Conversion<br/>(acres) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! ha= ! [[Template:Precision|Precision]] ! Conversion<br/>(acres) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{#expr:10000/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{#expr:22222/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{#expr:1000/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{#expr:2222/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{#expr:100/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{#expr:222/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{#expr:10/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{#expr:22/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1/0.4046856422 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2/0.4046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1/0.4046856422 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2/0.4046856422 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01/0.4046856422 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22/0.4046856422 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001/0.4046856422 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222/0.4046856422 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001/0.4046856422 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222/0.4046856422 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.2222}} |- | style="padding:10px;" | <code><nowiki>0.00001</nowiki></code> | style="padding:10px;" | {{Precision|0.00001}} | style="padding:10px;" | {{#expr:0.00001/0.4046856422 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.00001/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.00001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22222</nowiki></code> | style="padding:10px;" | {{Precision|0.22222}} | style="padding:10px;" | {{#expr:0.22222/0.4046856422 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22222/0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|ha=0.22222}} |} === acre === <code><nowiki>{{Infobox settlement/areadisp|pref=UK|acre=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! acre= ! [[Template:Precision|Precision]] ! Conversion<br/>(hectares) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! acre= ! [[Template:Precision|Precision]] ! Conversion<br/>(hectares) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{#expr:10000*0.4046856422 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{#expr:22222*0.4046856422 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{#expr:1000*0.4046856422 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{#expr:2222*0.4046856422 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{#expr:100*0.4046856422 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{#expr:222*0.4046856422 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{#expr:10*0.4046856422 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{#expr:22*0.4046856422 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1*0.4046856422 round 3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2*0.4046856422 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1*0.4046856422 round 4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2*0.4046856422 round 3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01*0.4046856422 round 5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22*0.4046856422 round 4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001*0.4046856422 round 6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222*0.4046856422 round 4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001*0.4046856422 round 7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222*0.4046856422 round 5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222*0.4046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=UK|acre=0.2222}} |} === dunam === <code><nowiki>{{Infobox settlement/areadisp|pref=Dunam|dunam=N}}</nowiki></code> {| class="wikitable" style="font-size:85%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! dunam= ! [[Template:Precision|Precision]] ! Conversion ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! dunam= ! [[Template:Precision|Precision]] ! Conversion ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>100000</nowiki></code> | style="padding:10px;" | {{Precision|100000}} | style="padding:10px;" | km2:&nbsp;{{#expr:100000/1E3}}<br/>sqmi:&nbsp;{{Rnd|{{#expr:100000/2589.988110336}}|3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100000/1E3}}}}<br/>{{Order of magnitude|{{#expr:100000/2589.988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=100000}} | &nbsp; | style="padding:10px;" | <code><nowiki>222222</nowiki></code> | style="padding:10px;" | {{Precision|222222}} | style="padding:10px;" | km2:&nbsp;{{#expr:222222/1E3}}<br/>sqmi:&nbsp;{{Rnd|{{#expr:222222/2589.9881103363}}|3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222222/1E3}}}}<br/>{{Order of magnitude|{{#expr:222222/2589.988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=222222}} |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | km2:&nbsp;{{#expr:10000/1E3}}<br/>sqmi:&nbsp;{{Rnd|{{#expr:10000/2589.988110336}}|3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000/1E3}}}}<br/>{{Order of magnitude|{{#expr:10000/2589.988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | km2:&nbsp;{{#expr:22222/1E3}}<br/>sqmi:&nbsp;{{Rnd|{{#expr:22222/2589.9881103363}}|3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222/1E3}}}}<br/>{{Order of magnitude|{{#expr:22222/2589.988110336}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | km2:&nbsp;{{#expr:1000/1E3}}<br/>ac:&nbsp;{{#expr:1000/4.046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000/1E3}}}}<br/>{{Order of magnitude|{{#expr:1000/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | km2:&nbsp;{{#expr:2222/1E3}}<br/>ac:&nbsp;{{#expr:2222/4.046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222/1E3}}}}<br/>{{Order of magnitude|{{#expr:2222/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | ha:&nbsp;{{#expr:100/10}}<br/>ac:&nbsp;{{#expr:100/4.046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100/10}}}}<br/>{{Order of magnitude|{{#expr:100/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | ha:&nbsp;{{#expr:222/10}}<br/>ac:&nbsp;{{#expr:222/4.046856422 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222/10}}}}<br/>{{Order of magnitude|{{#expr:222/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | ha:&nbsp;{{#expr:10/10}}<br/>ac:&nbsp;{{#expr:10/4.046856422 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/10}}}}<br/>{{Order of magnitude|{{#expr:10/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | ha:&nbsp;{{#expr:22/10}}<br/>ac:&nbsp;{{#expr:22/4.046856422 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22/10}}}}<br/>{{Order of magnitude|{{#expr:22/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | ha:&nbsp;{{#expr:1/10}}<br/>ac:&nbsp;{{#expr:1/4.046856422 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1/10}}}}<br/>{{Order of magnitude|{{#expr:1/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | ha:&nbsp;{{#expr:2/10}}<br/>ac:&nbsp;{{#expr:2/4.046856422 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2/10}}}}<br/>{{Order of magnitude|{{#expr:2/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.1/10}}<br/>ac:&nbsp;{{#expr:0.1/4.046856422 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1/10}}}}<br/>{{Order of magnitude|{{#expr:0.1/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.2/10}}<br/>ac:&nbsp;{{#expr:0.2/4.046856422 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2/10}}}}<br/>{{Order of magnitude|{{#expr:0.2/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.01/10}}<br/>ac:&nbsp;{{#expr:0.01/4.046856422 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01/10}}}}<br/>{{Order of magnitude|{{#expr:0.01/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.22/10}}<br/>ac:&nbsp;{{#expr:0.22/4.046856422 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22/10}}}}<br/>{{Order of magnitude|{{#expr:0.22/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.001/10}}<br/>ac:&nbsp;{{#expr:0.001/4.046856422 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001/10}}}}<br/>{{Order of magnitude|{{#expr:0.001/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.222/10}}<br/>ac:&nbsp;{{#expr:0.222/4.046856422 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222/10}}}}<br/>{{Order of magnitude|{{#expr:0.222/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.0001/10}}<br/>ac:&nbsp;{{#expr:0.0001/4.046856422 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001/10}}}}<br/>{{Order of magnitude|{{#expr:0.0001/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | ha:&nbsp;{{#expr:0.2222/10}}<br/>ac:&nbsp;{{#expr:0.2222/4.046856422 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222/10}}}}<br/>{{Order of magnitude|{{#expr:0.2222/4.046856422}}}} | style="padding:10px;" | {{Infobox settlement/areadisp|pref=Dunam|dunam=0.2222}} |} == See also == *{{Tl|Infobox settlement}} *{{Tl|Infobox settlement/densdisp}} *{{Tl|Infobox settlement/lengthdisp}} *{{tl|Infobox settlement/link}} *{{Tl|Infobox settlement/cleaner}} <includeonly>{{Sandbox other|| <!-- CATEGORIES HERE, THANKS --> [[Category:Place infobox subtemplates]] }}</includeonly> 7e1kev0wn2ugp7yeylqk35bndb770o5 Template:Infobox settlement/areadisp/sandbox 10 7962 72796 72408 2026-06-30T21:30:48Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/areadisp/sandbox]] para [[Template:Infokaixa fatin-koabitasaun/areadisp/sandbox]]: localise 72407 wikitext text/x-wiki <includeonly>{{#invoke:ConvertIB/sandbox|area}}</includeonly><noinclude> {{documentation}} </noinclude> mri2hp4b235z2rqnv0wvr1akgx2ibol 72846 72796 2026-07-01T02:02:37Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/areadisp/sandbox]] para o seu redirecionamento [[Template:Infobox settlement/areadisp/sandbox]], suprimindo o primeiro: fixing 72407 wikitext text/x-wiki <includeonly>{{#invoke:ConvertIB/sandbox|area}}</includeonly><noinclude> {{documentation}} </noinclude> mri2hp4b235z2rqnv0wvr1akgx2ibol Template:Infobox settlement/areadisp/testcases 10 7963 72798 72410 2026-06-30T21:30:48Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/areadisp/testcases]] para [[Template:Infokaixa fatin-koabitasaun/areadisp/testcases]]: localise 72409 wikitext text/x-wiki {{template test cases notice}} == Test precision == {| class="wikitable" ! Sandbox template ! Main template ! km<sup>2</sup> (not rounded) |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=10000}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=10000}} | style="padding:10px;" | {{#expr:10000*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=1000}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=1000}} | style="padding:10px;" | {{#expr:1000*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=100}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=100}} | style="padding:10px;" | {{#expr:100*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=10}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=10}} | style="padding:10px;" | {{#expr:10*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=1}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=1}} | style="padding:10px;" | {{#expr:1*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.1}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.1}} | style="padding:10px;" | {{#expr:0.1*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.01}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.01}} | style="padding:10px;" | {{#expr:0.01*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.001}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.001}} | style="padding:10px;" | {{#expr:0.001*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.0001}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.0001}} | style="padding:10px;" | {{#expr:0.0001*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.00001}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.00001}} | style="padding:10px;" | {{#expr:0.00001*2.589988110336}} |} {| class="wikitable" ! Sandbox template ! Main template ! km<sup>2</sup> (not rounded) |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=22222}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=22222}} | style="padding:10px;" | {{#expr:22222*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=2222}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=2222}} | style="padding:10px;" | {{#expr:2222*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=222}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=222}} | style="padding:10px;" | {{#expr:222*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=22}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=22}} | style="padding:10px;" | {{#expr:22*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=2}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=2}} | style="padding:10px;" | {{#expr:2*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.2}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.2}} | style="padding:10px;" | {{#expr:0.2*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.22}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.22}} | style="padding:10px;" | {{#expr:0.22*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.222}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.222}} | style="padding:10px;" | {{#expr:0.222*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.2222}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.2222}} | style="padding:10px;" | {{#expr:0.2222*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.22222}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.22222}} | style="padding:10px;" | {{#expr:0.22222*2.589988110336}} |} ==Other tests== {{Testcase table|_collapsible=1|_titlecode=1|km2=222}} {{Testcase table|_collapsible=1|_titlecode=1|km2=km2}} {{Testcase table|_collapsible=1|_titlecode=1|km2=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|km2=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|km2=222|name=United Kingdom|link=on}} {{Testcase table|_collapsible=1|_titlecode=1|km2=100}} {{Testcase table|_collapsible=1|_titlecode=1|km2=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|km2=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|km2=100|name=United Kingdom}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=222}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=222|name=United Kingdom}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=100}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=100|name=United Kingdom|link=on}} {{Testcase table|_collapsible=1|_titlecode=1|ha=222}} {{Testcase table|_collapsible=1|_titlecode=1|ha=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|ha=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|ha=222|name=United Kingdom|link=on}} {{Testcase table|_collapsible=1|_titlecode=1|ha=100}} {{Testcase table|_collapsible=1|_titlecode=1|ha=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|ha=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|ha=100|name=United Kingdom}} {{Testcase table|_collapsible=1|_titlecode=1|acre=222}} {{Testcase table|_collapsible=1|_titlecode=1|acre=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|acre=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|acre=222|name=United Kingdom}} {{Testcase table|_collapsible=1|_titlecode=1|acre=100}} {{Testcase table|_collapsible=1|_titlecode=1|acre=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|acre=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|acre=100|name=United Kingdom|link=on}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=222}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=22222}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=100}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=10000}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=22222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=10000|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=222|pref=standard}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=22222|pref=standard}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=100|pref=standard}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=10000|pref=standard}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=222|pref=dunam|link=on}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=22222|pref=dunam}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=22,222|pref=dunam}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=dunam|pref=dunam}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=100|pref=dunam|link=off}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=10000|pref=dunam|link=water}} bajrn4xakxdh23rrpeltvws3iaom0dc 72847 72798 2026-07-01T02:02:38Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/areadisp/testcases]] para o seu redirecionamento [[Template:Infobox settlement/areadisp/testcases]], suprimindo o primeiro: fixing 72409 wikitext text/x-wiki {{template test cases notice}} == Test precision == {| class="wikitable" ! Sandbox template ! Main template ! km<sup>2</sup> (not rounded) |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=10000}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=10000}} | style="padding:10px;" | {{#expr:10000*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=1000}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=1000}} | style="padding:10px;" | {{#expr:1000*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=100}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=100}} | style="padding:10px;" | {{#expr:100*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=10}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=10}} | style="padding:10px;" | {{#expr:10*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=1}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=1}} | style="padding:10px;" | {{#expr:1*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.1}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.1}} | style="padding:10px;" | {{#expr:0.1*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.01}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.01}} | style="padding:10px;" | {{#expr:0.01*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.001}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.001}} | style="padding:10px;" | {{#expr:0.001*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.0001}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.0001}} | style="padding:10px;" | {{#expr:0.0001*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.00001}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.00001}} | style="padding:10px;" | {{#expr:0.00001*2.589988110336}} |} {| class="wikitable" ! Sandbox template ! Main template ! km<sup>2</sup> (not rounded) |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=22222}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=22222}} | style="padding:10px;" | {{#expr:22222*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=2222}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=2222}} | style="padding:10px;" | {{#expr:2222*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=222}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=222}} | style="padding:10px;" | {{#expr:222*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=22}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=22}} | style="padding:10px;" | {{#expr:22*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=2}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=2}} | style="padding:10px;" | {{#expr:2*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.2}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.2}} | style="padding:10px;" | {{#expr:0.2*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.22}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.22}} | style="padding:10px;" | {{#expr:0.22*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.222}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.222}} | style="padding:10px;" | {{#expr:0.222*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.2222}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.2222}} | style="padding:10px;" | {{#expr:0.2222*2.589988110336}} |- | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}/sandbox|pref=US|sqmi=0.22222}} | style="padding:10px;" | {{{{TEMPLATENAMEE|require=testcases}}|pref=US|sqmi=0.22222}} | style="padding:10px;" | {{#expr:0.22222*2.589988110336}} |} ==Other tests== {{Testcase table|_collapsible=1|_titlecode=1|km2=222}} {{Testcase table|_collapsible=1|_titlecode=1|km2=km2}} {{Testcase table|_collapsible=1|_titlecode=1|km2=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|km2=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|km2=222|name=United Kingdom|link=on}} {{Testcase table|_collapsible=1|_titlecode=1|km2=100}} {{Testcase table|_collapsible=1|_titlecode=1|km2=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|km2=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|km2=100|name=United Kingdom}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=222}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=222|name=United Kingdom}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=100}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|sqmi=100|name=United Kingdom|link=on}} {{Testcase table|_collapsible=1|_titlecode=1|ha=222}} {{Testcase table|_collapsible=1|_titlecode=1|ha=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|ha=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|ha=222|name=United Kingdom|link=on}} {{Testcase table|_collapsible=1|_titlecode=1|ha=100}} {{Testcase table|_collapsible=1|_titlecode=1|ha=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|ha=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|ha=100|name=United Kingdom}} {{Testcase table|_collapsible=1|_titlecode=1|acre=222}} {{Testcase table|_collapsible=1|_titlecode=1|acre=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|acre=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|acre=222|name=United Kingdom}} {{Testcase table|_collapsible=1|_titlecode=1|acre=100}} {{Testcase table|_collapsible=1|_titlecode=1|acre=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|acre=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|acre=100|name=United Kingdom|link=on}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=222}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=22222}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=100}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=10000}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=22222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=10000|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=222|pref=standard}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=22222|pref=standard}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=100|pref=standard}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=10000|pref=standard}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=222|pref=dunam|link=on}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=22222|pref=dunam}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=22,222|pref=dunam}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=dunam|pref=dunam}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=100|pref=dunam|link=off}} {{Testcase table|_collapsible=1|_titlecode=1|dunam=10000|pref=dunam|link=water}} bajrn4xakxdh23rrpeltvws3iaom0dc Template:Infobox settlement/cleaner 10 7968 72800 72420 2026-06-30T21:30:48Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/cleaner]] para [[Template:Infokaixa fatin-koabitasaun/cleaner]]: localise 72419 wikitext text/x-wiki {{<includeonly>safesubst:</includeonly>#invoke:Unsubst-infobox||$template-name=Infobox settlement|$params= embed, name, official_name, native_name, native_name_lang, other_name, type, settlement_type, translit_lang1, translit_lang1_type, translit_lang1_info, translit_lang1_type1, translit_lang1_info1, translit_lang1_type2, translit_lang1_info2, translit_lang1_type3, translit_lang1_info3, translit_lang1_type4, translit_lang1_info4, translit_lang1_type5, translit_lang1_info5, translit_lang1_type6, translit_lang1_info6, translit_lang2, translit_lang2_type, translit_lang2_info, translit_lang2_type1, translit_lang2_info1, translit_lang2_type2, translit_lang2_info2, translit_lang2_type3, translit_lang2_info3, translit_lang2_type4, translit_lang2_info4, translit_lang2_type5, translit_lang2_info5, translit_lang2_type6, translit_lang2_info6, image_skyline, imagesize, image_size, alt, image_alt, image_caption, caption, image_flag, flag_size, flag_alt, flag_border, flag_link, image_seal, seal_size, seal_alt, seal_link, seal_type, image_shield, shield_size, shield_alt, shield_link, image_blank_emblem, blank_emblem_type, blank_emblem_size, blank_emblem_alt, blank_emblem_link, etymology, nickname_link, nickname, nicknames, motto_link, motto, mottoes, anthem_link, anthem, image_map, mapsize, map_alt, map_caption, image_map1, mapsize1, map_alt1, map_caption1, pushpin_map, pushpin_mapsize, pushpin_map_narrow, pushpin_map_alt, pushpin_map_caption, pushpin_map_caption_notsmall, pushpin_label, pushpin_label_position, pushpin_outside, pushpin_relief, pushpin_image, pushpin_overlay, coordinates, coor_pinpoint, coor_type, coordinates_footnotes, grid_name, grid_position, subdivision_type, subdivision_name, subdivision_type1, subdivision_name1, subdivision_type2, subdivision_name2, subdivision_type3, subdivision_name3, subdivision_type4, subdivision_name4, subdivision_type5, subdivision_name5, subdivision_type6, subdivision_name6, established_title, established_date, established_title1, established_date1, established_title2, established_date2, established_title3, established_date3, established_title4, established_date4, established_title5, established_date5, established_title6, established_date6, established_title7, established_date7, extinct_title, extinct_date, founder, named_for, seat_type, seat, seat1_type, seat1, seat2_type, seat2, parts_type, parts_style, parts, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16, p17, p18, p19, p20, p21, p22, p23, p24, p25, p26, p27, p28, p29, p30, p31, p32, p33, p34, p35, p36, p37, p38, p39, p40, p41, p42, p43, p44, p45, p46, p47, p48, p49, p50, government_footnotes, government_type, governing_body, leader_party, leader_title, leader_name, leader_title1, leader_name1, leader_title2, leader_name2, leader_title3, leader_name3, leader_title4, leader_name4, government_blank1_title, government_blank1, government_blank2_title, government_blank2, government_blank3_title, government_blank3, government_blank4_title, government_blank4, government_blank5_title, government_blank5, government_blank6_title, government_blank6, total_type, unit_pref, area_footnotes, dunam_link, area_total_km2, area_total_sq_mi, area_total_ha, area_total_acre, area_total_dunam, area_land_km2, area_land_sq_mi, area_land_ha, area_land_acre, area_land_dunam, area_water_km2, area_water_sq_mi, area_water_ha, area_water_acre, area_water_dunam, area_water_percent, area_urban_footnotes, area_urban_km2, area_urban_sq_mi, area_urban_ha, area_urban_acre, area_urban_dunam, area_rural_footnotes, area_rural_km2, area_rural_sq_mi, area_rural_ha, area_rural_acre, area_rural_dunam, area_metro_footnotes, area_metro_km2, area_metro_sq_mi, area_metro_ha, area_metro_acre, area_metro_dunam, area_rank, area_blank1_title, area_blank1_km2, area_blank1_sq_mi, area_blank1_ha, area_blank1_acre, area_blank1_dunam, area_blank2_title, area_blank2_km2, area_blank2_sq_mi, area_blank2_ha, area_blank2_acre, area_blank2_dunam, area_note, dimensions_footnotes, length_km, length_mi, width_km, width_mi, elevation_footnotes, elevation_link, elevation_m, elevation_ft, elevation_point, elevation_max_footnotes, elevation_max_m, elevation_max_ft, elevation_max_point, elevation_max_rank, elevation_min_footnotes, elevation_min_m, elevation_min_ft, elevation_min_point, elevation_min_rank, population_footnotes, population_as_of, population, population_total, pop_est_footnotes, pop_est_as_of, population_est, population_rank, population_density_km2, population_density_sq_mi, population_urban_footnotes, population_urban, population_density_urban_km2, population_density_urban_sq_mi, population_rural_footnotes, population_rural, population_density_rural_km2, population_density_rural_sq_mi, population_metro_footnotes, population_metro, population_density_metro_km2, population_density_metro_sq_mi, population_density_rank, population_blank1_footnotes, population_blank1_title, population_blank1, population_density_blank1_km2, population_density_blank1_sq_mi, population_blank2_footnotes, population_blank2_title, population_blank2, population_density_blank2_km2, population_density_blank2_sq_mi, population_demonym, population_demonyms, population_note, demographics_type1, demographics1_footnotes, demographics1_title1, demographics1_info1, demographics1_title2, demographics1_info2, demographics1_title3, demographics1_info3, demographics1_title4, demographics1_info4, demographics1_title5, demographics1_info5, demographics1_title6, demographics1_info6, demographics1_title7, demographics1_info7, demographics1_title8, demographics1_info8, demographics1_title9, demographics1_info9, demographics1_title10, demographics1_info10, demographics_type2, demographics2_footnotes, demographics2_title1, demographics2_info1, demographics2_title2, demographics2_info2, demographics2_title3, demographics2_info3, demographics2_title4, demographics2_info4, demographics2_title5, demographics2_info5, demographics2_title6, demographics2_info6, demographics2_title7, demographics2_info7, demographics2_title8, demographics2_info8, demographics2_title9, demographics2_info9, demographics2_title10, demographics2_info10, timezone_link, timezone, timezone_DST, utc_offset, utc_offset_DST, timezone1_location, timezone1, utc_offset1, timezone1_DST, utc_offset1_DST, timezone2_location, timezone2, utc_offset2, timezone2_DST, utc_offset2_DST, timezone3_location, timezone3, utc_offset3, timezone3_DST, utc_offset3_DST, timezone4_location, timezone4, utc_offset4, timezone4_DST, utc_offset4_DST, timezone5_location, timezone5, utc_offset5, timezone5_DST, utc_offset5_DST, postal_code_type, postal_code, postal2_code_type, postal2_code, area_code_type, area_code, area_codes, geocode, iso_code, registration_plate_type, registration_plate, code1_name, code1_info, code2_name, code2_info, blank_name, blank_info, blank1_name, blank1_info, blank2_name, blank2_info, blank3_name, blank3_info, blank4_name, blank4_info, blank5_name, blank5_info, blank6_name, blank6_info, blank7_name, blank7_info, blank_name_sec1, blank_info_sec1, blank1_name_sec1, blank1_info_sec1, blank2_name_sec1, blank2_info_sec1, blank3_name_sec1, blank3_info_sec1, blank4_name_sec1, blank4_info_sec1, blank5_name_sec1, blank5_info_sec1, blank6_name_sec1, blank6_info_sec1, blank7_name_sec1, blank7_info_sec1, blank_name_sec2, blank_info_sec2, blank1_name_sec2, blank1_info_sec2, blank2_name_sec2, blank2_info_sec2, blank3_name_sec2, blank3_info_sec2, blank4_name_sec2, blank4_info_sec2, blank5_name_sec2, blank5_info_sec2, blank6_name_sec2, blank6_info_sec2, blank7_name_sec2, blank7_info_sec2, website, module, footnotes |$extra=embed, name, official_name, native_name, native_name_lang, other_name, type, settlement_type, translit_lang1, translit_lang1_type, translit_lang1_info, translit_lang1_type1, translit_lang1_info1, translit_lang1_type2, translit_lang1_info2, translit_lang1_type3, translit_lang1_info3, translit_lang1_type4, translit_lang1_info4, translit_lang1_type5, translit_lang1_info5, translit_lang1_type6, translit_lang1_info6, translit_lang2, translit_lang2_type, translit_lang2_info, translit_lang2_type1, translit_lang2_info1, translit_lang2_type2, translit_lang2_info2, translit_lang2_type3, translit_lang2_info3, translit_lang2_type4, translit_lang2_info4, translit_lang2_type5, translit_lang2_info5, translit_lang2_type6, translit_lang2_info6, image_skyline, imagesize, image_size, alt, image_alt, image_caption, caption, image_flag, flag_size, flag_alt, flag_border, flag_link, image_seal, seal_size, seal_alt, seal_link, seal_type, image_shield, shield_size, shield_alt, shield_link, image_blank_emblem, blank_emblem_type, blank_emblem_size, blank_emblem_alt, blank_emblem_link, etymology, nickname_link, nickname, nicknames, motto_link, motto, mottoes, anthem_link, anthem, image_map, mapsize, map_alt, map_caption, image_map1, mapsize1, map_alt1, map_caption1, pushpin_map, pushpin_mapsize, pushpin_map_narrow, pushpin_map_alt, pushpin_map_caption, pushpin_map_caption_notsmall, pushpin_label, pushpin_label_position, pushpin_outside, pushpin_relief, pushpin_image, pushpin_overlay, coordinates, coor_pinpoint, coor_type, coordinates_footnotes, grid_name, grid_position, subdivision_type1, subdivision_name1, subdivision_type2, subdivision_name2, subdivision_type3, subdivision_name3, subdivision_type4, subdivision_name4, subdivision_type5, subdivision_name5, subdivision_type6, subdivision_name6, established_title, established_date, established_title1, established_date1, established_title2, established_date2, established_title3, established_date3, established_title4, established_date4, established_title5, established_date5, established_title6, established_date6, established_title7, established_date7, extinct_title, extinct_date, founder, named_for, seat_type, seat, seat1_type, seat1, seat2_type, seat2, parts_type, parts_style, parts, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16, p17, p18, p19, p20, p21, p22, p23, p24, p25, p26, p27, p28, p29, p30, p31, p32, p33, p34, p35, p36, p37, p38, p39, p40, p41, p42, p43, p44, p45, p46, p47, p48, p49, p50, government_footnotes, government_type, governing_body, leader_party, leader_title, leader_name, leader_title1, leader_name1, leader_title2, leader_name2, leader_title3, leader_name3, leader_title4, leader_name4, government_blank1_title, government_blank1, government_blank2_title, government_blank2, government_blank3_title, government_blank3, government_blank4_title, government_blank4, government_blank5_title, government_blank5, government_blank6_title, government_blank6, total_type, unit_pref, area_footnotes, dunam_link, area_total_km2, area_total_sq_mi, area_total_ha, area_total_acre, area_total_dunam, area_land_km2, area_land_sq_mi, area_land_ha, area_land_acre, area_land_dunam, area_water_km2, area_water_sq_mi, area_water_ha, area_water_acre, area_water_dunam, area_water_percent, area_urban_footnotes, area_urban_km2, area_urban_sq_mi, area_urban_ha, area_urban_acre, area_urban_dunam, area_rural_footnotes, area_rural_km2, area_rural_sq_mi, area_rural_ha, area_rural_acre, area_rural_dunam, area_metro_footnotes, area_metro_km2, area_metro_sq_mi, area_metro_ha, area_metro_acre, area_metro_dunam, area_rank, area_blank1_title, area_blank1_km2, area_blank1_sq_mi, area_blank1_ha, area_blank1_acre, area_blank1_dunam, area_blank2_title, area_blank2_km2, area_blank2_sq_mi, area_blank2_ha, area_blank2_acre, area_blank2_dunam, area_note, dimensions_footnotes, length_km, length_mi, width_km, width_mi, elevation_footnotes, elevation_link, elevation_m, elevation_ft, elevation_point, elevation_max_footnotes, elevation_max_m, elevation_max_ft, elevation_max_point, elevation_max_rank, elevation_min_footnotes, elevation_min_m, elevation_min_ft, elevation_min_point, elevation_min_rank, population_footnotes, population_as_of, population, population_total, pop_est_footnotes, pop_est_as_of, population_est, population_rank, population_density_km2, population_density_sq_mi, population_urban_footnotes, population_urban, population_density_urban_km2, population_density_urban_sq_mi, population_rural_footnotes, population_rural, population_density_rural_km2, population_density_rural_sq_mi, population_metro_footnotes, population_metro, population_density_metro_km2, population_density_metro_sq_mi, population_density_rank, population_blank1_footnotes, population_blank1_title, population_blank1, population_density_blank1_km2, population_density_blank1_sq_mi, population_blank2_footnotes, population_blank2_title, population_blank2, population_density_blank2_km2, population_density_blank2_sq_mi, population_demonym, population_demonyms, population_note, demographics_type1, demographics1_footnotes, demographics1_title1, demographics1_info1, demographics1_title2, demographics1_info2, demographics1_title3, demographics1_info3, demographics1_title4, demographics1_info4, demographics1_title5, demographics1_info5, demographics1_title6, demographics1_info6, demographics1_title7, demographics1_info7, demographics1_title8, demographics1_info8, demographics1_title9, demographics1_info9, demographics1_title10, demographics1_info10, demographics_type2, demographics2_footnotes, demographics2_title1, demographics2_info1, demographics2_title2, demographics2_info2, demographics2_title3, demographics2_info3, demographics2_title4, demographics2_info4, demographics2_title5, demographics2_info5, demographics2_title6, demographics2_info6, demographics2_title7, demographics2_info7, demographics2_title8, demographics2_info8, demographics2_title9, demographics2_info9, demographics2_title10, demographics2_info10, timezone_link, timezone, timezone_DST, utc_offset, utc_offset_DST, timezone1_location, timezone1, utc_offset1, timezone1_DST, utc_offset1_DST, timezone2_location, timezone2, utc_offset2, timezone2_DST, utc_offset2_DST, timezone3_location, timezone3, utc_offset3, timezone3_DST, utc_offset3_DST, timezone4_location, timezone4, utc_offset4, timezone4_DST, utc_offset4_DST, timezone5_location, timezone5, utc_offset5, timezone5_DST, utc_offset5_DST, postal_code_type, postal_code, postal2_code_type, postal2_code, area_code_type, area_code, area_codes, geocode, iso_code, registration_plate_type, registration_plate, code1_name, code1_info, code2_name, code2_info, blank_name, blank_info, blank1_name, blank1_info, blank2_name, blank2_info, blank3_name, blank3_info, blank4_name, blank4_info, blank5_name, blank5_info, blank6_name, blank6_info, blank7_name, blank7_info, blank_name_sec1, blank_info_sec1, blank1_name_sec1, blank1_info_sec1, blank2_name_sec1, blank2_info_sec1, blank3_name_sec1, blank3_info_sec1, blank4_name_sec1, blank4_info_sec1, blank5_name_sec1, blank5_info_sec1, blank6_name_sec1, blank6_info_sec1, blank7_name_sec1, blank7_info_sec1, blank_name_sec2, blank_info_sec2, blank1_name_sec2, blank1_info_sec2, blank2_name_sec2, blank2_info_sec2, blank3_name_sec2, blank3_info_sec2, blank4_name_sec2, blank4_info_sec2, blank5_name_sec2, blank5_info_sec2, blank6_name_sec2, blank6_info_sec2, blank7_name_sec2, blank7_info_sec2, website, module, footnotes |$flags=override |$B={{#invoke:Template wrapper|wrap|_template=Infobox settlement}} }}<noinclude> {{documentation|content= {{subst only|auto=yes}} Replacing <code><nowiki>{{Infobox settlement</nowiki></code> with <code><nowiki>{{subst:Infobox settlement/cleaner|</nowiki></code> to clean up uses of {{tl|infobox settlement}} by (1) reordering the parameters to use the standard ordering, (2) remove blank parameters, (3) remove unknown parameters, and (4) indent. }}</noinclude> m54yst9ekqobzw7ydpggcodr2uq6onx 72848 72800 2026-07-01T02:02:39Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/cleaner]] para o seu redirecionamento [[Template:Infobox settlement/cleaner]], suprimindo o primeiro: fixing 72419 wikitext text/x-wiki {{<includeonly>safesubst:</includeonly>#invoke:Unsubst-infobox||$template-name=Infobox settlement|$params= embed, name, official_name, native_name, native_name_lang, other_name, type, settlement_type, translit_lang1, translit_lang1_type, translit_lang1_info, translit_lang1_type1, translit_lang1_info1, translit_lang1_type2, translit_lang1_info2, translit_lang1_type3, translit_lang1_info3, translit_lang1_type4, translit_lang1_info4, translit_lang1_type5, translit_lang1_info5, translit_lang1_type6, translit_lang1_info6, translit_lang2, translit_lang2_type, translit_lang2_info, translit_lang2_type1, translit_lang2_info1, translit_lang2_type2, translit_lang2_info2, translit_lang2_type3, translit_lang2_info3, translit_lang2_type4, translit_lang2_info4, translit_lang2_type5, translit_lang2_info5, translit_lang2_type6, translit_lang2_info6, image_skyline, imagesize, image_size, alt, image_alt, image_caption, caption, image_flag, flag_size, flag_alt, flag_border, flag_link, image_seal, seal_size, seal_alt, seal_link, seal_type, image_shield, shield_size, shield_alt, shield_link, image_blank_emblem, blank_emblem_type, blank_emblem_size, blank_emblem_alt, blank_emblem_link, etymology, nickname_link, nickname, nicknames, motto_link, motto, mottoes, anthem_link, anthem, image_map, mapsize, map_alt, map_caption, image_map1, mapsize1, map_alt1, map_caption1, pushpin_map, pushpin_mapsize, pushpin_map_narrow, pushpin_map_alt, pushpin_map_caption, pushpin_map_caption_notsmall, pushpin_label, pushpin_label_position, pushpin_outside, pushpin_relief, pushpin_image, pushpin_overlay, coordinates, coor_pinpoint, coor_type, coordinates_footnotes, grid_name, grid_position, subdivision_type, subdivision_name, subdivision_type1, subdivision_name1, subdivision_type2, subdivision_name2, subdivision_type3, subdivision_name3, subdivision_type4, subdivision_name4, subdivision_type5, subdivision_name5, subdivision_type6, subdivision_name6, established_title, established_date, established_title1, established_date1, established_title2, established_date2, established_title3, established_date3, established_title4, established_date4, established_title5, established_date5, established_title6, established_date6, established_title7, established_date7, extinct_title, extinct_date, founder, named_for, seat_type, seat, seat1_type, seat1, seat2_type, seat2, parts_type, parts_style, parts, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16, p17, p18, p19, p20, p21, p22, p23, p24, p25, p26, p27, p28, p29, p30, p31, p32, p33, p34, p35, p36, p37, p38, p39, p40, p41, p42, p43, p44, p45, p46, p47, p48, p49, p50, government_footnotes, government_type, governing_body, leader_party, leader_title, leader_name, leader_title1, leader_name1, leader_title2, leader_name2, leader_title3, leader_name3, leader_title4, leader_name4, government_blank1_title, government_blank1, government_blank2_title, government_blank2, government_blank3_title, government_blank3, government_blank4_title, government_blank4, government_blank5_title, government_blank5, government_blank6_title, government_blank6, total_type, unit_pref, area_footnotes, dunam_link, area_total_km2, area_total_sq_mi, area_total_ha, area_total_acre, area_total_dunam, area_land_km2, area_land_sq_mi, area_land_ha, area_land_acre, area_land_dunam, area_water_km2, area_water_sq_mi, area_water_ha, area_water_acre, area_water_dunam, area_water_percent, area_urban_footnotes, area_urban_km2, area_urban_sq_mi, area_urban_ha, area_urban_acre, area_urban_dunam, area_rural_footnotes, area_rural_km2, area_rural_sq_mi, area_rural_ha, area_rural_acre, area_rural_dunam, area_metro_footnotes, area_metro_km2, area_metro_sq_mi, area_metro_ha, area_metro_acre, area_metro_dunam, area_rank, area_blank1_title, area_blank1_km2, area_blank1_sq_mi, area_blank1_ha, area_blank1_acre, area_blank1_dunam, area_blank2_title, area_blank2_km2, area_blank2_sq_mi, area_blank2_ha, area_blank2_acre, area_blank2_dunam, area_note, dimensions_footnotes, length_km, length_mi, width_km, width_mi, elevation_footnotes, elevation_link, elevation_m, elevation_ft, elevation_point, elevation_max_footnotes, elevation_max_m, elevation_max_ft, elevation_max_point, elevation_max_rank, elevation_min_footnotes, elevation_min_m, elevation_min_ft, elevation_min_point, elevation_min_rank, population_footnotes, population_as_of, population, population_total, pop_est_footnotes, pop_est_as_of, population_est, population_rank, population_density_km2, population_density_sq_mi, population_urban_footnotes, population_urban, population_density_urban_km2, population_density_urban_sq_mi, population_rural_footnotes, population_rural, population_density_rural_km2, population_density_rural_sq_mi, population_metro_footnotes, population_metro, population_density_metro_km2, population_density_metro_sq_mi, population_density_rank, population_blank1_footnotes, population_blank1_title, population_blank1, population_density_blank1_km2, population_density_blank1_sq_mi, population_blank2_footnotes, population_blank2_title, population_blank2, population_density_blank2_km2, population_density_blank2_sq_mi, population_demonym, population_demonyms, population_note, demographics_type1, demographics1_footnotes, demographics1_title1, demographics1_info1, demographics1_title2, demographics1_info2, demographics1_title3, demographics1_info3, demographics1_title4, demographics1_info4, demographics1_title5, demographics1_info5, demographics1_title6, demographics1_info6, demographics1_title7, demographics1_info7, demographics1_title8, demographics1_info8, demographics1_title9, demographics1_info9, demographics1_title10, demographics1_info10, demographics_type2, demographics2_footnotes, demographics2_title1, demographics2_info1, demographics2_title2, demographics2_info2, demographics2_title3, demographics2_info3, demographics2_title4, demographics2_info4, demographics2_title5, demographics2_info5, demographics2_title6, demographics2_info6, demographics2_title7, demographics2_info7, demographics2_title8, demographics2_info8, demographics2_title9, demographics2_info9, demographics2_title10, demographics2_info10, timezone_link, timezone, timezone_DST, utc_offset, utc_offset_DST, timezone1_location, timezone1, utc_offset1, timezone1_DST, utc_offset1_DST, timezone2_location, timezone2, utc_offset2, timezone2_DST, utc_offset2_DST, timezone3_location, timezone3, utc_offset3, timezone3_DST, utc_offset3_DST, timezone4_location, timezone4, utc_offset4, timezone4_DST, utc_offset4_DST, timezone5_location, timezone5, utc_offset5, timezone5_DST, utc_offset5_DST, postal_code_type, postal_code, postal2_code_type, postal2_code, area_code_type, area_code, area_codes, geocode, iso_code, registration_plate_type, registration_plate, code1_name, code1_info, code2_name, code2_info, blank_name, blank_info, blank1_name, blank1_info, blank2_name, blank2_info, blank3_name, blank3_info, blank4_name, blank4_info, blank5_name, blank5_info, blank6_name, blank6_info, blank7_name, blank7_info, blank_name_sec1, blank_info_sec1, blank1_name_sec1, blank1_info_sec1, blank2_name_sec1, blank2_info_sec1, blank3_name_sec1, blank3_info_sec1, blank4_name_sec1, blank4_info_sec1, blank5_name_sec1, blank5_info_sec1, blank6_name_sec1, blank6_info_sec1, blank7_name_sec1, blank7_info_sec1, blank_name_sec2, blank_info_sec2, blank1_name_sec2, blank1_info_sec2, blank2_name_sec2, blank2_info_sec2, blank3_name_sec2, blank3_info_sec2, blank4_name_sec2, blank4_info_sec2, blank5_name_sec2, blank5_info_sec2, blank6_name_sec2, blank6_info_sec2, blank7_name_sec2, blank7_info_sec2, website, module, footnotes |$extra=embed, name, official_name, native_name, native_name_lang, other_name, type, settlement_type, translit_lang1, translit_lang1_type, translit_lang1_info, translit_lang1_type1, translit_lang1_info1, translit_lang1_type2, translit_lang1_info2, translit_lang1_type3, translit_lang1_info3, translit_lang1_type4, translit_lang1_info4, translit_lang1_type5, translit_lang1_info5, translit_lang1_type6, translit_lang1_info6, translit_lang2, translit_lang2_type, translit_lang2_info, translit_lang2_type1, translit_lang2_info1, translit_lang2_type2, translit_lang2_info2, translit_lang2_type3, translit_lang2_info3, translit_lang2_type4, translit_lang2_info4, translit_lang2_type5, translit_lang2_info5, translit_lang2_type6, translit_lang2_info6, image_skyline, imagesize, image_size, alt, image_alt, image_caption, caption, image_flag, flag_size, flag_alt, flag_border, flag_link, image_seal, seal_size, seal_alt, seal_link, seal_type, image_shield, shield_size, shield_alt, shield_link, image_blank_emblem, blank_emblem_type, blank_emblem_size, blank_emblem_alt, blank_emblem_link, etymology, nickname_link, nickname, nicknames, motto_link, motto, mottoes, anthem_link, anthem, image_map, mapsize, map_alt, map_caption, image_map1, mapsize1, map_alt1, map_caption1, pushpin_map, pushpin_mapsize, pushpin_map_narrow, pushpin_map_alt, pushpin_map_caption, pushpin_map_caption_notsmall, pushpin_label, pushpin_label_position, pushpin_outside, pushpin_relief, pushpin_image, pushpin_overlay, coordinates, coor_pinpoint, coor_type, coordinates_footnotes, grid_name, grid_position, subdivision_type1, subdivision_name1, subdivision_type2, subdivision_name2, subdivision_type3, subdivision_name3, subdivision_type4, subdivision_name4, subdivision_type5, subdivision_name5, subdivision_type6, subdivision_name6, established_title, established_date, established_title1, established_date1, established_title2, established_date2, established_title3, established_date3, established_title4, established_date4, established_title5, established_date5, established_title6, established_date6, established_title7, established_date7, extinct_title, extinct_date, founder, named_for, seat_type, seat, seat1_type, seat1, seat2_type, seat2, parts_type, parts_style, parts, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16, p17, p18, p19, p20, p21, p22, p23, p24, p25, p26, p27, p28, p29, p30, p31, p32, p33, p34, p35, p36, p37, p38, p39, p40, p41, p42, p43, p44, p45, p46, p47, p48, p49, p50, government_footnotes, government_type, governing_body, leader_party, leader_title, leader_name, leader_title1, leader_name1, leader_title2, leader_name2, leader_title3, leader_name3, leader_title4, leader_name4, government_blank1_title, government_blank1, government_blank2_title, government_blank2, government_blank3_title, government_blank3, government_blank4_title, government_blank4, government_blank5_title, government_blank5, government_blank6_title, government_blank6, total_type, unit_pref, area_footnotes, dunam_link, area_total_km2, area_total_sq_mi, area_total_ha, area_total_acre, area_total_dunam, area_land_km2, area_land_sq_mi, area_land_ha, area_land_acre, area_land_dunam, area_water_km2, area_water_sq_mi, area_water_ha, area_water_acre, area_water_dunam, area_water_percent, area_urban_footnotes, area_urban_km2, area_urban_sq_mi, area_urban_ha, area_urban_acre, area_urban_dunam, area_rural_footnotes, area_rural_km2, area_rural_sq_mi, area_rural_ha, area_rural_acre, area_rural_dunam, area_metro_footnotes, area_metro_km2, area_metro_sq_mi, area_metro_ha, area_metro_acre, area_metro_dunam, area_rank, area_blank1_title, area_blank1_km2, area_blank1_sq_mi, area_blank1_ha, area_blank1_acre, area_blank1_dunam, area_blank2_title, area_blank2_km2, area_blank2_sq_mi, area_blank2_ha, area_blank2_acre, area_blank2_dunam, area_note, dimensions_footnotes, length_km, length_mi, width_km, width_mi, elevation_footnotes, elevation_link, elevation_m, elevation_ft, elevation_point, elevation_max_footnotes, elevation_max_m, elevation_max_ft, elevation_max_point, elevation_max_rank, elevation_min_footnotes, elevation_min_m, elevation_min_ft, elevation_min_point, elevation_min_rank, population_footnotes, population_as_of, population, population_total, pop_est_footnotes, pop_est_as_of, population_est, population_rank, population_density_km2, population_density_sq_mi, population_urban_footnotes, population_urban, population_density_urban_km2, population_density_urban_sq_mi, population_rural_footnotes, population_rural, population_density_rural_km2, population_density_rural_sq_mi, population_metro_footnotes, population_metro, population_density_metro_km2, population_density_metro_sq_mi, population_density_rank, population_blank1_footnotes, population_blank1_title, population_blank1, population_density_blank1_km2, population_density_blank1_sq_mi, population_blank2_footnotes, population_blank2_title, population_blank2, population_density_blank2_km2, population_density_blank2_sq_mi, population_demonym, population_demonyms, population_note, demographics_type1, demographics1_footnotes, demographics1_title1, demographics1_info1, demographics1_title2, demographics1_info2, demographics1_title3, demographics1_info3, demographics1_title4, demographics1_info4, demographics1_title5, demographics1_info5, demographics1_title6, demographics1_info6, demographics1_title7, demographics1_info7, demographics1_title8, demographics1_info8, demographics1_title9, demographics1_info9, demographics1_title10, demographics1_info10, demographics_type2, demographics2_footnotes, demographics2_title1, demographics2_info1, demographics2_title2, demographics2_info2, demographics2_title3, demographics2_info3, demographics2_title4, demographics2_info4, demographics2_title5, demographics2_info5, demographics2_title6, demographics2_info6, demographics2_title7, demographics2_info7, demographics2_title8, demographics2_info8, demographics2_title9, demographics2_info9, demographics2_title10, demographics2_info10, timezone_link, timezone, timezone_DST, utc_offset, utc_offset_DST, timezone1_location, timezone1, utc_offset1, timezone1_DST, utc_offset1_DST, timezone2_location, timezone2, utc_offset2, timezone2_DST, utc_offset2_DST, timezone3_location, timezone3, utc_offset3, timezone3_DST, utc_offset3_DST, timezone4_location, timezone4, utc_offset4, timezone4_DST, utc_offset4_DST, timezone5_location, timezone5, utc_offset5, timezone5_DST, utc_offset5_DST, postal_code_type, postal_code, postal2_code_type, postal2_code, area_code_type, area_code, area_codes, geocode, iso_code, registration_plate_type, registration_plate, code1_name, code1_info, code2_name, code2_info, blank_name, blank_info, blank1_name, blank1_info, blank2_name, blank2_info, blank3_name, blank3_info, blank4_name, blank4_info, blank5_name, blank5_info, blank6_name, blank6_info, blank7_name, blank7_info, blank_name_sec1, blank_info_sec1, blank1_name_sec1, blank1_info_sec1, blank2_name_sec1, blank2_info_sec1, blank3_name_sec1, blank3_info_sec1, blank4_name_sec1, blank4_info_sec1, blank5_name_sec1, blank5_info_sec1, blank6_name_sec1, blank6_info_sec1, blank7_name_sec1, blank7_info_sec1, blank_name_sec2, blank_info_sec2, blank1_name_sec2, blank1_info_sec2, blank2_name_sec2, blank2_info_sec2, blank3_name_sec2, blank3_info_sec2, blank4_name_sec2, blank4_info_sec2, blank5_name_sec2, blank5_info_sec2, blank6_name_sec2, blank6_info_sec2, blank7_name_sec2, blank7_info_sec2, website, module, footnotes |$flags=override |$B={{#invoke:Template wrapper|wrap|_template=Infobox settlement}} }}<noinclude> {{documentation|content= {{subst only|auto=yes}} Replacing <code><nowiki>{{Infobox settlement</nowiki></code> with <code><nowiki>{{subst:Infobox settlement/cleaner|</nowiki></code> to clean up uses of {{tl|infobox settlement}} by (1) reordering the parameters to use the standard ordering, (2) remove blank parameters, (3) remove unknown parameters, and (4) indent. }}</noinclude> m54yst9ekqobzw7ydpggcodr2uq6onx Template:Infobox settlement/columns/doc 10 7977 72804 72438 2026-06-30T21:30:49Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/columns/doc]] para [[Template:Infokaixa fatin-koabitasaun/columns/doc]]: localise 72437 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} <!-- Categories go at the bottom of this page and interwikis go in Wikidata. --> This is a subtemplate of {{tl|Infobox settlement}} and should not be used directly. == Examples == === With 0 === {| class="wikitable" style="width:8em" |{{Infobox settlement/columns{{sandbox other|/sandbox|}}|0=Right|1=1|2=2|3=3|4=4|5=5}} |} === Without 0 === {| class="wikitable" |+ Four |- | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=2|3=3|4=4}} |} {| class="wikitable" |+ Three |- | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=2|3=3|4=4}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=|3=3|4=4}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=2|3=|4=4}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=2|3=3|4=}} |} {| class="wikitable" |+ Two |- | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=|3=3|4=4}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=2|3=|4=4}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=2|3=3|4=}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=|3=|4=4}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=|3=3|4=}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=2|3=|4=}} |} {| class="wikitable" |+ One | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=|3=|4=}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=2|3=|4=}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=|3=3|4=}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=|3=|4=4}} |} {| class="wikitable" |+ None |- | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=|3=|4=}} |} == See also == <includeonly> <!-- Categories go here, and interwikis go in Wikidata --> </includeonly> pk324mim4u34kbfw0t5fna1ibuf5pi5 72850 72804 2026-07-01T02:02:39Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/columns/doc]] para o seu redirecionamento [[Template:Infobox settlement/columns/doc]], suprimindo o primeiro: fixing 72437 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} <!-- Categories go at the bottom of this page and interwikis go in Wikidata. --> This is a subtemplate of {{tl|Infobox settlement}} and should not be used directly. == Examples == === With 0 === {| class="wikitable" style="width:8em" |{{Infobox settlement/columns{{sandbox other|/sandbox|}}|0=Right|1=1|2=2|3=3|4=4|5=5}} |} === Without 0 === {| class="wikitable" |+ Four |- | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=2|3=3|4=4}} |} {| class="wikitable" |+ Three |- | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=2|3=3|4=4}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=|3=3|4=4}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=2|3=|4=4}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=2|3=3|4=}} |} {| class="wikitable" |+ Two |- | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=|3=3|4=4}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=2|3=|4=4}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=2|3=3|4=}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=|3=|4=4}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=|3=3|4=}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=2|3=|4=}} |} {| class="wikitable" |+ One | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=1|2=|3=|4=}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=2|3=|4=}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=|3=3|4=}} | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=|3=|4=4}} |} {| class="wikitable" |+ None |- | style="width: 5em" | {{Infobox settlement/columns{{sandbox other|/sandbox|}}|1=|2=|3=|4=}} |} == See also == <includeonly> <!-- Categories go here, and interwikis go in Wikidata --> </includeonly> pk324mim4u34kbfw0t5fna1ibuf5pi5 Template:Infobox settlement/densdisp/doc 10 7978 72809 72440 2026-06-30T21:30:49Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/densdisp/doc]] para [[Template:Infokaixa fatin-koabitasaun/densdisp/doc]]: localise 72439 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} {{Lua|Module:ConvertIB}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> This '''subtemplate of {{Tl|Infobox settlement}}''' displays a metric/imperial pair of population density values for a line in the main infobox. == Usage == <syntaxhighlight lang="wikitext"> {{Infobox settlement/densdisp | /km2 = ''auto'' or population density per [[Square kilometre|km<sup>2</sup>]] (via ''population_density_km2'' and others) | /sqmi = ''auto'' or population density per [[sqmi]] (via ''population_density_sq_mi'' and others) | pop = population (via ''population_total'' and others) | km2 = area in square kilometres (via ''area_total_km2'' and others) | sqmi = area in square miles (via ''area_total_sq_mi'' and others) | ha = area in [[hectare]]s (via ''area_total_ha'' and others) | acre = area in [[acre]]s (via ''area_total_acre'' and others) | dunam = area in [[dunam]]s (via ''area_total_dunam'' and others) | pref = preference to display /km2 or /sqmi (via ''unit_pref'') | name = name of country (via ''subdivision_name'') }} </syntaxhighlight> ==Examples== === density as auto === As shown in the following examples, this template calculates the density if all three of the following conditions are met: /km2 (or /sqmi) is set to auto, a number if given for population, and a number is given for area. It also strips any formatting from the numbers, such as population with commas in the examples, which would otherwise cause an error in the calculation (see [[mw:Help:Magic words#Formatting]]). {| class="wikitable" ! Code ! Result ! Number<br/>(not rounded) ! [[Order of magnitude|Order of<br/>magnitude]] |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.00023456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.00023456}} | style="padding:10px;" | {{#expr:10/0.00023456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/0.00023456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.0023456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.0023456}} | style="padding:10px;" | {{#expr:10/0.0023456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/0.0023456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.023456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.023456}} | style="padding:10px;" | {{#expr:10/0.023456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/0.023456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.23456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.23456}} | style="padding:10px;" | {{#expr:10/0.23456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/0.23456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=2.3456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=2.3456}} | style="padding:10px;" | {{#expr:10/2.3456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/2.3456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=23.456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=23.456}} | style="padding:10px;" | {{#expr:10/23.456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/23.456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=234.56}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=234.56}} | style="padding:10px;" | {{#expr:10/234.56}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/234.56}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=2345.6}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=2345.6}} | style="padding:10px;" | {{#expr:10/2345.6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/2345.6}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=23456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=23456}} | style="padding:10px;" | {{#expr:10/23456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/23456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=0|km2=23456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=0|km2=23456}} | style="padding:10px;" | {{#expr:0/23456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0/23456}}}} |} {| class="wikitable" ! Code ! Result ! Number<br/>(not rounded) |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=123,456|sqmi=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=123,456|sqmi=10}} | style="padding:10px;" | {{#expr:123456/10}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=12345|sqmi=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=12345|sqmi=10}} | style="padding:10px;" | {{#expr:12345/10}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=1234|sqmi=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=1234|sqmi=10}} | style="padding:10px;" | {{#expr:1234/10}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=123|sqmi=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=123|sqmi=10}} | style="padding:10px;" | {{#expr:123/10}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=12|sqmi=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=12|sqmi=10}} | style="padding:10px;" | {{#expr:12/10}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=0|sqmi=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=0|sqmi=10}} | style="padding:10px;" | {{#expr:0/10}} |} === missing population or area === As shown in the following examples, this template outputs nothing if density = auto, but either population or area is missing. {| class="wikitable" ! Code ! Result |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=123,456|km2= }}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=123,456|km2= }} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop= |km2=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop= |km2=10}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop= |km2= }}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop= |km2= }} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2= |pop= |km2= }}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2= |pop= |km2= }} |} === density as number === As shown in the following examples, this template always displays the density if given as a number, regardless of whether the population and area are defined. It also strips any formatting in the number, such as the commas in the examples. {| class="wikitable" ! Code ! Result |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=12,345.67}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=12,345.67}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/sqmi=12,345.67}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/sqmi=12,345.67}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=12,345.67}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=12,345.67}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=0}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=0}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=0}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=0}} |} == See also == *{{Tl|Infobox settlement}} *{{Tl|Infobox settlement/areadisp}} *{{Tl|Infobox settlement/lengthdisp}} *{{tl|Infobox settlement/link}} *{{Tl|Infobox settlement/cleaner}} <includeonly>{{Sandbox other|| <!-- CATEGORIES HERE, THANKS --> [[Category:Place infobox subtemplates]] }}</includeonly> b2xowbpt9j5dzxyl8vfdicsuu0rr88b 72854 72809 2026-07-01T02:02:40Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/densdisp/doc]] para o seu redirecionamento [[Template:Infobox settlement/densdisp/doc]], suprimindo o primeiro: fixing 72439 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} {{Lua|Module:ConvertIB}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> This '''subtemplate of {{Tl|Infobox settlement}}''' displays a metric/imperial pair of population density values for a line in the main infobox. == Usage == <syntaxhighlight lang="wikitext"> {{Infobox settlement/densdisp | /km2 = ''auto'' or population density per [[Square kilometre|km<sup>2</sup>]] (via ''population_density_km2'' and others) | /sqmi = ''auto'' or population density per [[sqmi]] (via ''population_density_sq_mi'' and others) | pop = population (via ''population_total'' and others) | km2 = area in square kilometres (via ''area_total_km2'' and others) | sqmi = area in square miles (via ''area_total_sq_mi'' and others) | ha = area in [[hectare]]s (via ''area_total_ha'' and others) | acre = area in [[acre]]s (via ''area_total_acre'' and others) | dunam = area in [[dunam]]s (via ''area_total_dunam'' and others) | pref = preference to display /km2 or /sqmi (via ''unit_pref'') | name = name of country (via ''subdivision_name'') }} </syntaxhighlight> ==Examples== === density as auto === As shown in the following examples, this template calculates the density if all three of the following conditions are met: /km2 (or /sqmi) is set to auto, a number if given for population, and a number is given for area. It also strips any formatting from the numbers, such as population with commas in the examples, which would otherwise cause an error in the calculation (see [[mw:Help:Magic words#Formatting]]). {| class="wikitable" ! Code ! Result ! Number<br/>(not rounded) ! [[Order of magnitude|Order of<br/>magnitude]] |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.00023456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.00023456}} | style="padding:10px;" | {{#expr:10/0.00023456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/0.00023456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.0023456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.0023456}} | style="padding:10px;" | {{#expr:10/0.0023456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/0.0023456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.023456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.023456}} | style="padding:10px;" | {{#expr:10/0.023456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/0.023456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.23456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=0.23456}} | style="padding:10px;" | {{#expr:10/0.23456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/0.23456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=2.3456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=2.3456}} | style="padding:10px;" | {{#expr:10/2.3456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/2.3456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=23.456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=23.456}} | style="padding:10px;" | {{#expr:10/23.456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/23.456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=234.56}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=234.56}} | style="padding:10px;" | {{#expr:10/234.56}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/234.56}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=2345.6}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=2345.6}} | style="padding:10px;" | {{#expr:10/2345.6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/2345.6}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=10|km2=23456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=10|km2=23456}} | style="padding:10px;" | {{#expr:10/23456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/23456}}}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=0|km2=23456}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=0|km2=23456}} | style="padding:10px;" | {{#expr:0/23456}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0/23456}}}} |} {| class="wikitable" ! Code ! Result ! Number<br/>(not rounded) |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=123,456|sqmi=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=123,456|sqmi=10}} | style="padding:10px;" | {{#expr:123456/10}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=12345|sqmi=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=12345|sqmi=10}} | style="padding:10px;" | {{#expr:12345/10}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=1234|sqmi=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=1234|sqmi=10}} | style="padding:10px;" | {{#expr:1234/10}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=123|sqmi=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=123|sqmi=10}} | style="padding:10px;" | {{#expr:123/10}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=12|sqmi=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=12|sqmi=10}} | style="padding:10px;" | {{#expr:12/10}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=0|sqmi=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=auto|pop=0|sqmi=10}} | style="padding:10px;" | {{#expr:0/10}} |} === missing population or area === As shown in the following examples, this template outputs nothing if density = auto, but either population or area is missing. {| class="wikitable" ! Code ! Result |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop=123,456|km2= }}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop=123,456|km2= }} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop= |km2=10}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop= |km2=10}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=auto|pop= |km2= }}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=auto|pop= |km2= }} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2= |pop= |km2= }}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2= |pop= |km2= }} |} === density as number === As shown in the following examples, this template always displays the density if given as a number, regardless of whether the population and area are defined. It also strips any formatting in the number, such as the commas in the examples. {| class="wikitable" ! Code ! Result |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=12,345.67}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=12,345.67}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/sqmi=12,345.67}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/sqmi=12,345.67}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=12,345.67}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=12,345.67}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|/km2=0}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|/km2=0}} |- | style="padding:10px;" | <code><nowiki>{{Infobox settlement/densdisp|pref=Imperial|/sqmi=0}}</nowiki></code> | style="padding:10px;" | {{Infobox settlement/densdisp|pref=Imperial|/sqmi=0}} |} == See also == *{{Tl|Infobox settlement}} *{{Tl|Infobox settlement/areadisp}} *{{Tl|Infobox settlement/lengthdisp}} *{{tl|Infobox settlement/link}} *{{Tl|Infobox settlement/cleaner}} <includeonly>{{Sandbox other|| <!-- CATEGORIES HERE, THANKS --> [[Category:Place infobox subtemplates]] }}</includeonly> b2xowbpt9j5dzxyl8vfdicsuu0rr88b Template:Infobox settlement/densdisp/sandbox 10 7979 72811 72443 2026-06-30T21:30:49Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/densdisp/sandbox]] para [[Template:Infokaixa fatin-koabitasaun/densdisp/sandbox]]: localise 72442 wikitext text/x-wiki <includeonly>{{#invoke:ConvertIB/sandbox|density}}</includeonly><noinclude> {{documentation}} </noinclude> mz9d94fvv23cczr3tr71ozfz6rqyhi3 72855 72811 2026-07-01T02:02:41Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/densdisp/sandbox]] para o seu redirecionamento [[Template:Infobox settlement/densdisp/sandbox]], suprimindo o primeiro: fixing 72442 wikitext text/x-wiki <includeonly>{{#invoke:ConvertIB/sandbox|density}}</includeonly><noinclude> {{documentation}} </noinclude> mz9d94fvv23cczr3tr71ozfz6rqyhi3 Template:Infobox settlement/lengthdisp/doc 10 7980 72817 72445 2026-06-30T21:30:50Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/lengthdisp/doc]] para [[Template:Infokaixa fatin-koabitasaun/lengthdisp/doc]]: localise 72444 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} {{Lua|Module:ConvertIB}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> {{notice|'''This subtemplate is not intended to be used directly'''}} This '''subtemplate of {{tl|Infobox settlement}}''' displays length (e.g. elevation) values. == Usage == <syntaxhighlight lang="wikitext"> {{Infobox settlement/lengthdisp | km = length in kilometres | mi = length in miles | m = length in metres | ft = length in feet | pref = preference to display km or mi (via ''unit_pref'') | name = name of country (via ''subdivision_name'') }} </syntaxhighlight> ==Examples== === kilometre (km) === <code><nowiki>{{Infobox settlement/lengthdisp|km=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! km= ! [[Template:Precision|Precision]] ! Conversion<br/>(mi.) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! km= ! [[Template:Precision|Precision]] ! Conversion<br/>(mi.) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{Rnd|{{#expr:10000/1.609344}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{Rnd|{{#expr:22222/1.609344}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{#expr:1000/1.609344 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{#expr:2222/1.609344 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{#expr:100/1.609344 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{#expr:222/1.609344 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{#expr:10/1.609344 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{#expr:22/1.609344 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1/1.609344 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2/1.609344 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1/1.609344 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2/1.609344 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01/1.609344 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22/1.609344 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001/1.609344 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222/1.609344 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001/1.609344 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222/1.609344 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.2222}} |} === mile (mi) === <code><nowiki>{{Infobox settlement/lengthdisp|pref=UK|mi=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! mi= ! [[Template:Precision|Precision]] ! Conversion<br/>(km) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! mi= ! [[Template:Precision|Precision]] ! Conversion<br/>(km) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{Rnd|{{#expr:10000*1.609344}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{Rnd|{{#expr:22222*1.609344}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{Rnd|{{#expr:1000*1.609344}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{Rnd|{{#expr:2222*1.609344}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{Rnd|{{#expr:100*1.609344}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{Rnd|{{#expr:222*1.609344}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{Rnd|{{#expr:10*1.609344}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{Rnd|{{#expr:22*1.609344}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1*1.609344 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2*1.609344 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1*1.609344 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2*1.609344 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01*1.609344 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22*1.609344 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001*1.609344 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222*1.609344 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001*1.609344 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222*1.609344 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.2222}} |- | style="padding:10px;" | <code><nowiki>0.00001</nowiki></code> | style="padding:10px;" | {{Precision|0.00001}} | style="padding:10px;" | {{#expr:0.00001*1.609344 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.00001*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.00001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22222</nowiki></code> | style="padding:10px;" | {{Precision|0.22222}} | style="padding:10px;" | {{#expr:0.22222*1.609344 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22222*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.22222}} |} === metre (m) === <code><nowiki>{{Infobox settlement/lengthdisp|m=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! m= ! [[Template:Precision|Precision]] ! Conversion<br/>(ft) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! m= ! [[Template:Precision|Precision]] ! Conversion<br/>(ft) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{#expr:10000/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{#expr:22222/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{#expr:1000/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{#expr:2222/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{#expr:100/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{#expr:222/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{#expr:10/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{#expr:22/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1/0.3048 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1/0.3048 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2/0.3048 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01/0.3048 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22/0.3048 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001/0.3048 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222/0.3048 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001/0.3048 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222/0.3048 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.2222}} |- | style="padding:10px;" | <code><nowiki>0.00001</nowiki></code> | style="padding:10px;" | {{Precision|0.00001}} | style="padding:10px;" | {{#expr:0.00001/0.3048 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.00001/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.00001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22222</nowiki></code> | style="padding:10px;" | {{Precision|0.22222}} | style="padding:10px;" | {{#expr:0.22222/0.3048 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22222/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.22222}} |} === feet (ft) === <code><nowiki>{{Infobox settlement/lengthdisp|pref=UK|ft=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! ft= ! [[Template:Precision|Precision]] ! Conversion<br/>(m) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! ft= ! [[Template:Precision|Precision]] ! Conversion<br/>(m) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{#expr:10000*0.3048 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{#expr:22222*0.3048 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{#expr:1000*0.3048 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{#expr:2222*0.3048 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{#expr:100*0.3048 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{#expr:222*0.3048 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{#expr:10*0.3048 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{#expr:22*0.3048 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1*0.3048 round 3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2*0.3048 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1*0.3048 round 4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2*0.3048 round 3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01*0.3048 round 5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22*0.3048 round 4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001*0.3048 round 6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222*0.3048 round 4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001*0.3048 round 7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222*0.3048 round 5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.2222}} |} == See also == *{{Tl|Infobox settlement}} *{{tl|Infobox settlement/areadisp}} *{{Tl|Infobox settlement/densdisp}} *{{tl|Infobox settlement/link}} *{{Tl|Infobox settlement/cleaner}} <includeonly>{{Sandbox other|| <!-- CATEGORIES HERE, THANKS --> [[Category:Place infobox subtemplates]] }}</includeonly> 9822a1xz25rileujw0vyx40bv02axtk 72858 72817 2026-07-01T02:02:43Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/lengthdisp/doc]] para o seu redirecionamento [[Template:Infobox settlement/lengthdisp/doc]], suprimindo o primeiro: fixing 72444 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} {{Lua|Module:ConvertIB}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> {{notice|'''This subtemplate is not intended to be used directly'''}} This '''subtemplate of {{tl|Infobox settlement}}''' displays length (e.g. elevation) values. == Usage == <syntaxhighlight lang="wikitext"> {{Infobox settlement/lengthdisp | km = length in kilometres | mi = length in miles | m = length in metres | ft = length in feet | pref = preference to display km or mi (via ''unit_pref'') | name = name of country (via ''subdivision_name'') }} </syntaxhighlight> ==Examples== === kilometre (km) === <code><nowiki>{{Infobox settlement/lengthdisp|km=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! km= ! [[Template:Precision|Precision]] ! Conversion<br/>(mi.) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! km= ! [[Template:Precision|Precision]] ! Conversion<br/>(mi.) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{Rnd|{{#expr:10000/1.609344}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{Rnd|{{#expr:22222/1.609344}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{#expr:1000/1.609344 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{#expr:2222/1.609344 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{#expr:100/1.609344 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{#expr:222/1.609344 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{#expr:10/1.609344 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{#expr:22/1.609344 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1/1.609344 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2/1.609344 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1/1.609344 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2/1.609344 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01/1.609344 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22/1.609344 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001/1.609344 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222/1.609344 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001/1.609344 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222/1.609344 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222/1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|km=0.2222}} |} === mile (mi) === <code><nowiki>{{Infobox settlement/lengthdisp|pref=UK|mi=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! mi= ! [[Template:Precision|Precision]] ! Conversion<br/>(km) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! mi= ! [[Template:Precision|Precision]] ! Conversion<br/>(km) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{Rnd|{{#expr:10000*1.609344}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{Rnd|{{#expr:22222*1.609344}}|1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{Rnd|{{#expr:1000*1.609344}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{Rnd|{{#expr:2222*1.609344}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{Rnd|{{#expr:100*1.609344}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{Rnd|{{#expr:222*1.609344}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{Rnd|{{#expr:10*1.609344}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{Rnd|{{#expr:22*1.609344}}|2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1*1.609344 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2*1.609344 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1*1.609344 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2*1.609344 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01*1.609344 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22*1.609344 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001*1.609344 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222*1.609344 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001*1.609344 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222*1.609344 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.2222}} |- | style="padding:10px;" | <code><nowiki>0.00001</nowiki></code> | style="padding:10px;" | {{Precision|0.00001}} | style="padding:10px;" | {{#expr:0.00001*1.609344 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.00001*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.00001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22222</nowiki></code> | style="padding:10px;" | {{Precision|0.22222}} | style="padding:10px;" | {{#expr:0.22222*1.609344 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22222*1.609344}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|mi=0.22222}} |} === metre (m) === <code><nowiki>{{Infobox settlement/lengthdisp|m=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! m= ! [[Template:Precision|Precision]] ! Conversion<br/>(ft) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! m= ! [[Template:Precision|Precision]] ! Conversion<br/>(ft) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{#expr:10000/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{#expr:22222/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{#expr:1000/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{#expr:2222/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{#expr:100/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{#expr:222/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{#expr:10/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{#expr:22/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1/0.3048 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2/0.3048 round1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1/0.3048 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2/0.3048 round2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01/0.3048 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22/0.3048 round3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001/0.3048 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222/0.3048 round4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001/0.3048 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222/0.3048 round5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.2222}} |- | style="padding:10px;" | <code><nowiki>0.00001</nowiki></code> | style="padding:10px;" | {{Precision|0.00001}} | style="padding:10px;" | {{#expr:0.00001/0.3048 round7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.00001/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.00001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22222</nowiki></code> | style="padding:10px;" | {{Precision|0.22222}} | style="padding:10px;" | {{#expr:0.22222/0.3048 round6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22222/0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|m=0.22222}} |} === feet (ft) === <code><nowiki>{{Infobox settlement/lengthdisp|pref=UK|ft=N}}</nowiki></code> {| class="wikitable" style="font-size:95%;" ! colspan=2 | Input ! colspan=3 | Output ! &nbsp; ! colspan=2 | Input ! colspan=3 | Output |- ! ft= ! [[Template:Precision|Precision]] ! Conversion<br/>(m) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output ! &nbsp; ! ft= ! [[Template:Precision|Precision]] ! Conversion<br/>(m) ! [[Template:Order of magnitude|Order of<br/>magnitude]] ! Template<br>output |- | style="padding:10px;" | <code><nowiki>10000</nowiki></code> | style="padding:10px;" | {{Precision|10000}} | style="padding:10px;" | {{#expr:10000*0.3048 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10000*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=10000}} | &nbsp; | style="padding:10px;" | <code><nowiki>22222</nowiki></code> | style="padding:10px;" | {{Precision|22222}} | style="padding:10px;" | {{#expr:22222*0.3048 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22222*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=22222}} |- | style="padding:10px;" | <code><nowiki>1000</nowiki></code> | style="padding:10px;" | {{Precision|1000}} | style="padding:10px;" | {{#expr:1000*0.3048 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1000*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=1000}} | &nbsp; | style="padding:10px;" | <code><nowiki>2222</nowiki></code> | style="padding:10px;" | {{Precision|2222}} | style="padding:10px;" | {{#expr:2222*0.3048 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2222*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=2222}} |- | style="padding:10px;" | <code><nowiki>100</nowiki></code> | style="padding:10px;" | {{Precision|100}} | style="padding:10px;" | {{#expr:100*0.3048 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:100*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=100}} | &nbsp; | style="padding:10px;" | <code><nowiki>222</nowiki></code> | style="padding:10px;" | {{Precision|222}} | style="padding:10px;" | {{#expr:222*0.3048 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:222*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=222}} |- | style="padding:10px;" | <code><nowiki>10</nowiki></code> | style="padding:10px;" | {{Precision|10}} | style="padding:10px;" | {{#expr:10*0.3048 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:10*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=10}} | &nbsp; | style="padding:10px;" | <code><nowiki>22</nowiki></code> | style="padding:10px;" | {{Precision|22}} | style="padding:10px;" | {{#expr:22*0.3048 round 1}} | style="padding:10px;" | {{Order of magnitude|{{#expr:22*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=22}} |- | style="padding:10px;" | <code><nowiki>1</nowiki></code> | style="padding:10px;" | {{Precision|1}} | style="padding:10px;" | {{#expr:1*0.3048 round 3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:1*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=1}} | &nbsp; | style="padding:10px;" | <code><nowiki>2</nowiki></code> | style="padding:10px;" | {{Precision|2}} | style="padding:10px;" | {{#expr:2*0.3048 round 2}} | style="padding:10px;" | {{Order of magnitude|{{#expr:2*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=2}} |- | style="padding:10px;" | <code><nowiki>0.1</nowiki></code> | style="padding:10px;" | {{Precision|0.1}} | style="padding:10px;" | {{#expr:0.1*0.3048 round 4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.1*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.1}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2</nowiki></code> | style="padding:10px;" | {{Precision|0.2}} | style="padding:10px;" | {{#expr:0.2*0.3048 round 3}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.2}} |- | style="padding:10px;" | <code><nowiki>0.01</nowiki></code> | style="padding:10px;" | {{Precision|0.01}} | style="padding:10px;" | {{#expr:0.01*0.3048 round 5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.01*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.01}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.22</nowiki></code> | style="padding:10px;" | {{Precision|0.22}} | style="padding:10px;" | {{#expr:0.22*0.3048 round 4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.22*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.22}} |- | style="padding:10px;" | <code><nowiki>0.001</nowiki></code> | style="padding:10px;" | {{Precision|0.001}} | style="padding:10px;" | {{#expr:0.001*0.3048 round 6}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.001*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.222</nowiki></code> | style="padding:10px;" | {{Precision|0.222}} | style="padding:10px;" | {{#expr:0.222*0.3048 round 4}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.222*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.222}} |- | style="padding:10px;" | <code><nowiki>0.0001</nowiki></code> | style="padding:10px;" | {{Precision|0.0001}} | style="padding:10px;" | {{#expr:0.0001*0.3048 round 7}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.0001*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.0001}} | &nbsp; | style="padding:10px;" | <code><nowiki>0.2222</nowiki></code> | style="padding:10px;" | {{Precision|0.2222}} | style="padding:10px;" | {{#expr:0.2222*0.3048 round 5}} | style="padding:10px;" | {{Order of magnitude|{{#expr:0.2222*0.3048}}}} | style="padding:10px;" | {{Infobox settlement/lengthdisp|pref=UK|ft=0.2222}} |} == See also == *{{Tl|Infobox settlement}} *{{tl|Infobox settlement/areadisp}} *{{Tl|Infobox settlement/densdisp}} *{{tl|Infobox settlement/link}} *{{Tl|Infobox settlement/cleaner}} <includeonly>{{Sandbox other|| <!-- CATEGORIES HERE, THANKS --> [[Category:Place infobox subtemplates]] }}</includeonly> 9822a1xz25rileujw0vyx40bv02axtk Template:Infobox settlement/lengthdisp/sandbox 10 7981 72819 72448 2026-06-30T21:30:51Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/lengthdisp/sandbox]] para [[Template:Infokaixa fatin-koabitasaun/lengthdisp/sandbox]]: localise 72447 wikitext text/x-wiki <includeonly>{{#invoke:ConvertIB/sandbox|length}}</includeonly><noinclude> {{Documentation}} </noinclude> lh9znam4jejdt3qkixfax29k4bwiqhx 72859 72819 2026-07-01T02:02:44Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/lengthdisp/sandbox]] para o seu redirecionamento [[Template:Infobox settlement/lengthdisp/sandbox]], suprimindo o primeiro: fixing 72447 wikitext text/x-wiki <includeonly>{{#invoke:ConvertIB/sandbox|length}}</includeonly><noinclude> {{Documentation}} </noinclude> lh9znam4jejdt3qkixfax29k4bwiqhx Template:Infobox settlement/lengthdisp/testcases 10 7982 72821 72450 2026-06-30T21:30:51Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/lengthdisp/testcases]] para [[Template:Infokaixa fatin-koabitasaun/lengthdisp/testcases]]: localise 72449 wikitext text/x-wiki {{Testcases notice <!--|toc=on-->}} {{Testcase table|_collapsible=1|_titlecode=1}} {{Testcase table|_collapsible=1|_titlecode=1|km=km}} {{Testcase table|_collapsible=1|_titlecode=1|km=222}} {{Testcase table|_collapsible=1|_titlecode=1|km=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|km=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|km=100}} {{Testcase table|_collapsible=1|_titlecode=1|km=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|km=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|km=km}} {{Testcase table|_collapsible=1|_titlecode=1|mi=222}} {{Testcase table|_collapsible=1|_titlecode=1|mi=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|mi=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|mi=100}} {{Testcase table|_collapsible=1|_titlecode=1|mi=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|mi=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|m=222}} {{Testcase table|_collapsible=1|_titlecode=1|m=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|m=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|m=100}} {{Testcase table|_collapsible=1|_titlecode=1|m=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|m=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|ft=222}} {{Testcase table|_collapsible=1|_titlecode=1|ft=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|ft=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|ft=100}} {{Testcase table|_collapsible=1|_titlecode=1|ft=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|ft=100|pref=US}} 79ovd4bjg7v46soiq94zrkcjl0gqt3y 72860 72821 2026-07-01T02:02:44Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/lengthdisp/testcases]] para o seu redirecionamento [[Template:Infobox settlement/lengthdisp/testcases]], suprimindo o primeiro: fixing 72449 wikitext text/x-wiki {{Testcases notice <!--|toc=on-->}} {{Testcase table|_collapsible=1|_titlecode=1}} {{Testcase table|_collapsible=1|_titlecode=1|km=km}} {{Testcase table|_collapsible=1|_titlecode=1|km=222}} {{Testcase table|_collapsible=1|_titlecode=1|km=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|km=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|km=100}} {{Testcase table|_collapsible=1|_titlecode=1|km=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|km=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|km=km}} {{Testcase table|_collapsible=1|_titlecode=1|mi=222}} {{Testcase table|_collapsible=1|_titlecode=1|mi=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|mi=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|mi=100}} {{Testcase table|_collapsible=1|_titlecode=1|mi=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|mi=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|m=222}} {{Testcase table|_collapsible=1|_titlecode=1|m=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|m=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|m=100}} {{Testcase table|_collapsible=1|_titlecode=1|m=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|m=100|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|ft=222}} {{Testcase table|_collapsible=1|_titlecode=1|ft=222|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|ft=222|pref=US}} {{Testcase table|_collapsible=1|_titlecode=1|ft=100}} {{Testcase table|_collapsible=1|_titlecode=1|ft=100|name=United States}} {{Testcase table|_collapsible=1|_titlecode=1|ft=100|pref=US}} 79ovd4bjg7v46soiq94zrkcjl0gqt3y Template:Infobox settlement/link/doc 10 7983 72825 72452 2026-06-30T21:30:51Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/link/doc]] para [[Template:Infokaixa fatin-koabitasaun/link/doc]]: localise 72451 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} {{notice|'''This subtemplate is not intended to be used directly'''}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> This subtemplate of {{tl|Infobox settlement}} is used for automatic linking for various image captions. It is not meant to be used directly. === Usage === {| class="wikitable" |- ! Code !! Result |- | <code><nowiki>{{Infobox settlement/link}}</nowiki></code> || {{Infobox settlement/link}} |- | <code><nowiki>{{Infobox settlement/link|type=Flag}}</nowiki></code> || {{Infobox settlement/link|type=Flag}} |- | <code><nowiki>{{Infobox settlement/link|type=Flag|link=Template:Infobox settlement}}</nowiki></code> || {{Infobox settlement/link|type=Flag|link=Template:Infobox settlement}} |- | <code><nowiki>{{Infobox settlement/link|type=Flag|name= }}</nowiki></code> || {{Infobox settlement/link|type=Flag|name= }} |- | <code><nowiki>{{Infobox settlement/link|type=Flag|name=the United States}}</nowiki></code> || {{Infobox settlement/link|type=Flag|name=the United States}} |- |} === See also === *{{tl|Infobox settlement}} *{{tl|Infobox settlement/densdisp}} *{{tl|Infobox settlement/lengthdisp}} *{{tl|Infobox settlement/link}} *{{tl|Infobox settlement/cleaner}} <includeonly>{{Sandbox other|| <!-- CATEGORIES AND INTERWIKIS HERE, THANKS --> [[Category:Place infobox subtemplates]] [[bn:টেমপ্লেট:Infobox settlement/link]] [[sl:Predloga:Infopolje Naselje/link]] }}</includeonly> 83v0t4m84ml2vr35e0ig0o4yf6ew4i3 72862 72825 2026-07-01T02:02:45Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/link/doc]] para o seu redirecionamento [[Template:Infobox settlement/link/doc]], suprimindo o primeiro: fixing 72451 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} {{notice|'''This subtemplate is not intended to be used directly'''}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> This subtemplate of {{tl|Infobox settlement}} is used for automatic linking for various image captions. It is not meant to be used directly. === Usage === {| class="wikitable" |- ! Code !! Result |- | <code><nowiki>{{Infobox settlement/link}}</nowiki></code> || {{Infobox settlement/link}} |- | <code><nowiki>{{Infobox settlement/link|type=Flag}}</nowiki></code> || {{Infobox settlement/link|type=Flag}} |- | <code><nowiki>{{Infobox settlement/link|type=Flag|link=Template:Infobox settlement}}</nowiki></code> || {{Infobox settlement/link|type=Flag|link=Template:Infobox settlement}} |- | <code><nowiki>{{Infobox settlement/link|type=Flag|name= }}</nowiki></code> || {{Infobox settlement/link|type=Flag|name= }} |- | <code><nowiki>{{Infobox settlement/link|type=Flag|name=the United States}}</nowiki></code> || {{Infobox settlement/link|type=Flag|name=the United States}} |- |} === See also === *{{tl|Infobox settlement}} *{{tl|Infobox settlement/densdisp}} *{{tl|Infobox settlement/lengthdisp}} *{{tl|Infobox settlement/link}} *{{tl|Infobox settlement/cleaner}} <includeonly>{{Sandbox other|| <!-- CATEGORIES AND INTERWIKIS HERE, THANKS --> [[Category:Place infobox subtemplates]] [[bn:টেমপ্লেট:Infobox settlement/link]] [[sl:Predloga:Infopolje Naselje/link]] }}</includeonly> 83v0t4m84ml2vr35e0ig0o4yf6ew4i3 Template:Infobox settlement/mergedmap 10 7984 72827 72454 2026-06-30T21:30:51Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/mergedmap]] para [[Template:Infokaixa fatin-koabitasaun/mergedmap]]: localise 72453 wikitext text/x-wiki <includeonly>{{main other|{{#invoke:Settlement short description|main}}|}}{{Infobox | child = {{yesno|{{{embed|}}}}} | bodyclass = ib-settlement vcard <!--** names, type, and transliterations ** --> | above = <div class="fn org">{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}</div> {{#if:{{{native_name|}}}|<div class="nickname ib-settlement-native" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}"}}>{{{native_name}}}</div>}}{{#if:{{{other_name|}}}|<div class="nickname ib-settlement-other-name">{{{other_name}}}</div>}} | subheader = {{#if:{{{settlement_type|{{{type|}}}}}}|<div class="category">{{{settlement_type|{{{type}}}}}}</div>}} | rowclass1 = mergedtoprow ib-settlement-official | data1 = {{#if:{{{name|}}}|{{{official_name|}}}}} <!-- ***Transliteration language 1*** --> | rowclass2 = mergedtoprow | header2 = {{#if:{{{translit_lang1|}}}|{{{translit_lang1}}}&nbsp;transcription(s)}} | rowclass3 = {{#if:{{{translit_lang1_type1|}}}|mergedrow|mergedbottomrow}} | label3 = &nbsp;•&nbsp;{{{translit_lang1_type}}} | data3 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type|}}}|{{{translit_lang1_info|}}}}}}} | rowclass4 = {{#if:{{{translit_lang1_type2|}}}|mergedrow|mergedbottomrow}} | label4 = &nbsp;•&nbsp;{{{translit_lang1_type1}}} | data4 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type1|}}}|{{{translit_lang1_info1|}}}}}}} | rowclass5 = {{#if:{{{translit_lang1_type3|}}}|mergedrow|mergedbottomrow}} | label5 =&nbsp;•&nbsp;{{{translit_lang1_type2}}} | data5 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type2|}}}|{{{translit_lang1_info2|}}}}}}} | rowclass6 = {{#if:{{{translit_lang1_type4|}}}|mergedrow|mergedbottomrow}} | label6 = &nbsp;•&nbsp;{{{translit_lang1_type3}}} | data6 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type3|}}}|{{{translit_lang1_info3|}}}}}}} | rowclass7 = {{#if:{{{translit_lang1_type5|}}}|mergedrow|mergedbottomrow}} | label7 = &nbsp;•&nbsp;{{{translit_lang1_type4}}} | data7 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type4|}}}|{{{translit_lang1_info4|}}}}}}} | rowclass8 = {{#if:{{{translit_lang1_type6|}}}|mergedrow|mergedbottomrow}} | label8 = &nbsp;•&nbsp;{{{translit_lang1_type5}}} | data8 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type5|}}}|{{{translit_lang1_info5|}}}}}}} | rowclass9 = mergedbottomrow | label9 = &nbsp;•&nbsp;{{{translit_lang1_type6}}} | data9 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type6|}}}|{{{translit_lang1_info6|}}}}}}} <!-- ***Transliteration language 2*** --> | rowclass10 = mergedtoprow | header10 = {{#if:{{{translit_lang2|}}}|{{{translit_lang2}}}&nbsp;transcription(s)}} | rowclass11 = {{#if:{{{translit_lang2_type1|}}}|mergedrow|mergedbottomrow}} | label11 = &nbsp;•&nbsp;{{{translit_lang2_type}}} | data11 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type|}}}|{{{translit_lang2_info|}}}}}}} | rowclass12 = {{#if:{{{translit_lang2_type2|}}}|mergedrow|mergedbottomrow}} | label12 = &nbsp;•&nbsp;{{{translit_lang2_type1}}} | data12 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type1|}}}|{{{translit_lang2_info1|}}}}}}} | rowclass13 = {{#if:{{{translit_lang2_type3|}}}|mergedrow|mergedbottomrow}} | label13 =&nbsp;•&nbsp;{{{translit_lang2_type2}}} | data13 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type2|}}}|{{{translit_lang2_info2|}}}}}}} | rowclass14 = {{#if:{{{translit_lang2_type4|}}}|mergedrow|mergedbottomrow}} | label14 = &nbsp;•&nbsp;{{{translit_lang2_type3}}} | data14 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type3|}}}|{{{translit_lang2_info3|}}}}}}} | rowclass15 = {{#if:{{{translit_lang2_type5|}}}|mergedrow|mergedbottomrow}} | label15 = &nbsp;•&nbsp;{{{translit_lang2_type4}}} | data15 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type4|}}}|{{{translit_lang2_info4|}}}}}}} | rowclass16 = {{#if:{{{translit_lang2_type6|}}}|mergedrow|mergedbottomrow}} | label16 = &nbsp;•&nbsp;{{{translit_lang2_type5}}} | data16 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type5|}}}|{{{translit_lang2_info5|}}}}}}} | rowclass17 = mergedbottomrow | label17 = &nbsp;•&nbsp;{{{translit_lang2_type6}}} | data17 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type6|}}}|{{{translit_lang2_info6|}}}}}}} <!-- end ** names, type, and transliterations ** --> <!-- ***Skyline Image*** --> | rowclass18 = mergedtoprow | data18 = {{#if:{{{image_skyline|}}}|<!-- -->{{#invoke:InfoboxImage|InfoboxImage<!-- -->|image={{{image_skyline|}}}<!-- -->|size={{if empty|{{{image_size|}}}|{{{imagesize|}}}}}|sizedefault={{{image_sizedefault|250px}}}|upright={{{image_upright|}}}<!-- -->|alt={{if empty|{{{image_alt|}}}|{{{alt|}}}}}<!-- -->|title={{if empty|{{{image_caption|}}}|{{{caption|}}}|{{{image_alt|}}}|{{{alt|}}}}}}}<!-- -->{{#if:{{{image_caption|}}}{{{caption|}}}|<div class="ib-settlement-caption">{{if empty|{{{image_caption|}}}|{{{caption|}}}}}</div>}} }} <!-- ***Flag, Seal, Shield and Coat of arms*** --> | rowclass19 = mergedtoprow | class19 = maptable | data19 = {{#if:{{{image_flag|}}}{{{image_seal|}}}{{{image_shield|}}}{{{image_blank_emblem|}}}{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}} |{{Infobox settlement/columns | 1 = {{#if:{{{image_flag|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_flag}}}|size={{{flag_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|125px|100x100px}}|border={{yesno |{{{flag_border|}}}|yes=yes|blank=yes}}|alt={{{flag_alt|}}}|title=Flag of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Flag|link={{{flag_link|}}}|name={{{official_name}}}}}</div>}} | 2 = {{#if:{{{image_seal|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_seal|}}}|size={{{seal_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{seal_alt|}}}|title=Official seal of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{seal_type|}}}|{{{seal_type}}}|Seal}}|link={{{seal_link|}}}|name={{{official_name}}}}}</div>}} | 3 = {{#if:{{{image_shield|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_shield|}}}||size={{{shield_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{shield_alt|}}}|title=Coat of arms of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Coat of arms|link={{{shield_link|}}}|name={{{official_name}}}}}</div>}} | 4 = {{#if:{{{image_blank_emblem|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_blank_emblem|}}}|size={{{blank_emblem_size|}}}|sizedefault={{{blank_emblem_sizedefault|{{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}}}}|upright={{{blank_emblem_upright|}}}|alt={{{blank_emblem_alt|}}}|title=Official logo of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{blank_emblem_type|}}}|{{{blank_emblem_type}}}}}|link={{{blank_emblem_link|}}}|name={{{official_name}}}}}</div>}} | 5 = {{#if:{{{image_map|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=100x100px|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption-link">{{{map_caption}}}</div>}}}} | 0 = {{#if:{{{pushpin_map_narrow|}}}|{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{{map_caption}}}}}}}}} |float = center |width = {{#if:{{{pushpin_mapsize|}}}|{{{pushpin_mapsize}}}|150}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map --> |position = {{{pushpin_label_position|}}} }} }} }} }} }} <!-- ***Etymology*** --> | rowclass20 = mergedtoprow | data20 = {{#if:{{{etymology|}}}|Etymology: {{{etymology}}} }} <!-- ***Nickname*** --> | rowclass21 = {{#if:{{{etymology|}}}|mergedrow|mergedtoprow}} | data21 = {{#if:{{{nickname|}}}{{{nicknames|}}}|<!-- -->{{Pluralize from text|parse_links=1|{{if empty|{{{nickname|}}}|{{{nicknames|}}}{{force plural}}}}|<!-- -->link={{{nickname_link|}}}|singular=Nickname|likely=Nickname(s)|plural=Nicknames}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{nickname|}}}|{{{nicknames|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|parse_links=1|{{{nickname|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible nickname list]]}}}}}} <!-- ***Motto*** --> | rowclass22 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}|mergedrow|mergedtoprow}} | data22 = {{#if:{{{motto|}}}{{{mottoes|}}}|<!-- -->{{Pluralize from text|{{if empty|{{{motto|}}}|{{{mottoes|}}}{{force plural}}}}|<!-- -->link={{{motto_link|}}}|singular=Motto|likely=Motto(s)|plural=Mottoes}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{motto|}}}|{{{mottoes|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|{{{motto|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible motto list]]}}}}}} <!-- ***Anthem*** --> | rowclass23 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}{{{motto|}}}{{{mottoes|}}}|mergedrow|mergedtoprow}} | data23 = {{#if:{{{anthem|}}}|{{#if:{{{anthem_link|}}}|[[{{{anthem_link|}}}|Anthem:]]|Anthem:}} {{{anthem}}}}} <!-- ***Map*** --> | rowclass24 = mergedtoprow | data24 = {{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}||{{#if:{{{image_map|}}} |{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault={{{image_sizedefault|250px}}}|upright={{{image_upright|}}}|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption">{{{map_caption}}}</div>}} }}}} | rowclass25 = mergedrow | data25 = {{#if:{{{image_map1|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map1}}}|size={{{mapsize1|}}}|sizedefault={{{image_sizedefault|250px}}}|upright={{{image_upright|}}}|alt={{{map_alt1|}}}|title={{{map_caption1|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption1|}}}|<div class="ib-settlement-caption">{{{map_caption1}}}</div>}} }} <!-- | data26 = {{#invoke:Infobox mapframe | autoWithCaption | onByDefault = {{#if:{{{mapQuery|}}}{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}|no|yes}} | mapframe-frame-width = 250 | mapframe-stroke-width = 2 | mapframe-zoom = 2 | mapframe-length_km = {{{length_km|}}} | mapframe-length_mi = {{{length_mi|}}} | mapframe-width_km = {{{width_km|}}} | mapframe-width_mi = {{{width_mi|}}} | mapframe-area_km2 = {{{area_total_km2|}}} | mapframe-area_ha = {{{area_total_ha|}}} | mapframe-area_acre = {{{area_total_acre|}}} | mapframe-area_sq_mi = {{{area_total_sq_mi|}}} | mapframe-type = city | mapframe-population = {{if empty|{{{population_metro|}}}|{{{population_total|}}}}} | mapframe-marker = town | mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}} }} --> | data27 = {{#invoke:MergedMap/settlement|main|{{{mapQuery|}}} |coordinates = {{{coordinates|{{#invoke:coordinates|coord2text|{{#:property:625}}}}}}} |label = {{{MergedMap_label|{{{label|{{PAGENAMEBASE}}}}}}}} |mapframeId = {{{mapframeId|{{#if:{{Get QID}}|{{Get QID}}|Q84}}}}} |mapframe-marker = city }} <!-- ***Pushpin Map*** --> <!-- | rowclass28 = mergedtoprow | data28 = {{#if:{{{pushpin_map_narrow|}}}||{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{#if:{{{image_map|}}}||{{{map_caption}}}}}}}}}}} |float = center |width = {{{pushpin_mapsize|}}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{#if:{{{name|}}}|{{{name}}}|{{{official_name|}}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map |position = {{{pushpin_label_position|}}} }} }} }} --> <!-- ***Coordinates*** --> | rowclass29 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|{{#if:{{{grid_position|}}}|mergedrow|mergedbottomrow}}}} | data29 = {{#if:{{{coordinates|}}} |Coordinates{{#if:{{{coor_pinpoint|{{{coor_type|}}}}}}|&#32;({{{coor_pinpoint|{{{coor_type|}}}}}})}}: {{#invoke:ISO 3166|geocoordinsert|nocat=true|1={{{coordinates|}}}|country={{{subdivision_name|}}}|subdivision1={{{subdivision_name1|}}}|subdivision2={{{subdivision_name2|}}}|subdivision3={{{subdivision_name3|}}}|type=city{{#if:{{{population_total|}}}|{{#iferror:{{#expr:{{formatnum:{{{population_total}}}|R}}+1}}||({{formatnum:{{replace|{{{population_total}}}|,|}}|R}})}}}} }}{{{coordinates_footnotes|}}} }} | rowclass30 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|mergedbottomrow|mergedrow}} | label30 = {{if empty|{{{grid_name|}}}|Grid&nbsp;position}} | data30 = {{{grid_position|}}} <!-- ***Subdivisions*** --> | rowclass31 = mergedtoprow | label31 = {{{subdivision_type}}} | data31 = {{#if:{{{subdivision_type|}}}|{{{subdivision_name|}}} }} | rowclass32 = mergedrow | label32 = {{{subdivision_type1}}} | data32 = {{#if:{{{subdivision_type1|}}}|{{{subdivision_name1|}}} }} | rowclass33 = mergedrow | label33 = {{{subdivision_type2}}} | data33 = {{#if:{{{subdivision_type2|}}}|{{{subdivision_name2|}}} }} | rowclass34 = mergedrow | label34 = {{{subdivision_type3}}} | data34 = {{#if:{{{subdivision_type3|}}}|{{{subdivision_name3|}}} }} | rowclass35 = mergedrow | label35 = {{{subdivision_type4}}} | data35 = {{#if:{{{subdivision_type4|}}}|{{{subdivision_name4|}}} }} | rowclass36 = mergedrow | label36 = {{{subdivision_type5}}} | data36 = {{#if:{{{subdivision_type5|}}}|{{{subdivision_name5|}}} }} | rowclass37 = mergedrow | label37 = {{{subdivision_type6}}} | data37 = {{#if:{{{subdivision_type6|}}}|{{{subdivision_name6|}}} }} <!--***Established*** --> | rowclass38 = mergedtoprow | label38 = {{if empty|{{{established_title|}}}|Established}} | data38 = {{{established_date|}}} | rowclass39 = mergedrow | label39 = {{{established_title1}}} | data39 = {{#if:{{{established_title1|}}}|{{{established_date1|}}} }} | rowclass40 = mergedrow | label40 = {{{established_title2}}} | data40 = {{#if:{{{established_title2|}}}|{{{established_date2|}}} }} | rowclass41 = mergedrow | label41 = {{{established_title3}}} | data41 = {{#if:{{{established_title3|}}}|{{{established_date3|}}} }} | rowclass42 = mergedrow | label42 = {{{established_title4}}} | data42 = {{#if:{{{established_title4|}}}|{{{established_date4|}}} }} | rowclass43 = mergedrow | label43 = {{{established_title5}}} | data43 = {{#if:{{{established_title5|}}}|{{{established_date5|}}} }} | rowclass44 = mergedrow | label44 = {{{established_title6}}} | data44 = {{#if:{{{established_title6|}}}|{{{established_date6|}}} }} | rowclass45 = mergedrow | label45 = {{{established_title7}}} | data45 = {{#if:{{{established_title7|}}}|{{{established_date7|}}} }} | rowclass46 = mergedrow | label46 = {{{extinct_title}}} | data46 = {{#if:{{{extinct_title|}}}|{{{extinct_date|}}} }} | rowclass47 = mergedrow | label47 = Founded by | data47 = {{{founder|}}} | rowclass48 = mergedrow | label48 = [[Namesake|Named after]] | data48 = {{{named_for|}}} <!-- ***Seat of government and subdivisions within the settlement*** --> | rowclass49 = mergedtoprow | label49 = {{#if:{{{seat_type|}}}|{{{seat_type}}}|Seat}} | data49 = {{{seat|}}} | rowclass50 = mergedrow | label50 = {{#if:{{{seat1_type|}}}|{{{seat1_type}}}|Former seat}} | data50 = {{{seat1|}}} | rowclass51 = mergedrow | label51 = {{#if:{{{seat2_type|}}}|{{{seat2_type}}}|Former seat}} | data51 = {{{seat2|}}} | rowclass52 = {{#if:{{{seat|}}}{{{seat1|}}}{{{seat2|}}}|mergedrow|mergedtoprow}} | label52 = {{#if:{{{parts_type|}}}|{{{parts_type}}}|Boroughs}} | data52 = {{#ifexpr:{{#invoke:params|with_name_matching|^p%d+$|count}} > 0 | {{#ifeq:{{{parts_style|}}}|para | {{#invoke:params|with_name_matching|^p%d+$|all_sorted|setting|h/i|{{#if:{{{parts|}}}|<b>{{{parts}}}&#58;&nbsp;</b>}}|, |list_values}} | {{#invoke:params|with_name_matching|^p%d+$|renaming_by_replacing|^p(%d+)$|%1|1|concat_and_call|Collapsible list | title = {{{parts|}}} | expand = {{#switch:{{{parts_style|}}}|coll=|list=y|#default={{#ifexpr:{{#invoke:params|with_name_matching|^p%d+$|count}} < 6|y}}}} }} }} | {{#if:{{{parts|}}} | {{#ifeq:{{{parts_style|}}}|para|<b>{{{parts}}}</b>|{{{parts}}}}} }} }} <!-- ***Government type and Leader*** --> | rowclass53 = mergedtoprow | header53 = {{#if:{{{government_type|}}}{{{governing_body|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{leader_name2|}}}{{{leader_name3|}}}{{{leader_name4|}}}|Government<div class="ib-settlement-fn">{{{government_footnotes|}}}</div>}} <!-- ***Government*** --> | rowclass54 = mergedrow | label54 = &nbsp;•&nbsp;Type | data54 = {{{government_type|}}} | rowclass55 = mergedrow | label55 = &nbsp;•&nbsp;Body | class55 = agent | data55 = {{{governing_body|}}} | rowclass56 = mergedrow | label56 = &nbsp;•&nbsp;{{{leader_title}}} | data56 = {{#if:{{{leader_title|}}}|{{{leader_name|}}} {{#if:{{{leader_party|}}}|({{Polparty|{{{subdivision_name}}}|{{{leader_party}}}}})}}}} | rowclass57 = mergedrow | label57 = &nbsp;•&nbsp;{{{leader_title1}}} | data57 = {{#if:{{{leader_title1|}}}|{{{leader_name1|}}}}} | rowclass58 = mergedrow | label58 = &nbsp;•&nbsp;{{{leader_title2}}} | data58 = {{#if:{{{leader_title2|}}}|{{{leader_name2|}}}}} | rowclass59 = mergedrow | label59 = &nbsp;•&nbsp;{{{leader_title3}}} | data59 = {{#if:{{{leader_title3|}}}|{{{leader_name3|}}}}} | rowclass60 = mergedrow | label60 = &nbsp;•&nbsp;{{{leader_title4}}} | data60 = {{#if:{{{leader_title4|}}}|{{{leader_name4|}}}}} | rowclass61 = mergedrow | label61 = &nbsp;•&nbsp;{{{leader_title5}}} | data61 = {{#if:{{{leader_title5|}}}|{{{leader_name5|}}}}} | rowclass62 = mergedrow | label62 = {{{government_blank1_title}}} | data62 = {{#if:{{{government_blank1|}}}|{{{government_blank1|}}}}} | rowclass63 = mergedrow | label63 = {{{government_blank2_title}}} | data63 = {{#if:{{{government_blank2|}}}|{{{government_blank2|}}}}} | rowclass64 = mergedrow | label64 = {{{government_blank3_title}}} | data64 = {{#if:{{{government_blank3|}}}|{{{government_blank3|}}}}} | rowclass65 = mergedrow | label65 = {{{government_blank4_title}}} | data65 = {{#if:{{{government_blank4|}}}|{{{government_blank4|}}}}} | rowclass66 = mergedrow | label66 = {{{government_blank5_title}}} | data66 = {{#if:{{{government_blank5|}}}|{{{government_blank5|}}}}} | rowclass67 = mergedrow | label67 = {{{government_blank6_title}}} | data67 = {{#if:{{{government_blank6|}}}|{{{government_blank6|}}}}} <!-- ***Geographical characteristics*** --> <!-- ***Area*** --> | rowclass68 = mergedtoprow | header68 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_rural_sq_mi|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_km2|}}}{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_metro_sq_mi|}}}{{{area_blank1_sq_mi|}}} |{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |<!-- displayed below --> |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> }} }} | rowclass69 = {{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}}|mergedtoprow|mergedrow}} | label69 = <div style="white-space:nowrap;">{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> |&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}|{{#if:{{{settlement_type|{{{type|}}}}}}|{{{settlement_type|{{{type}}}}}}|City}}|Total}}}} }}</div> | data69 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_total_km2|}}} |ha ={{{area_total_ha|}}} |acre ={{{area_total_acre|}}} |sqmi ={{{area_total_sq_mi|}}} |dunam={{{area_total_dunam|}}} |link ={{#switch:{{{dunam_link|}}}||on|total=on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass70 = mergedrow | label70 = &nbsp;•&nbsp;Land | data70 = {{#if:{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_land_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_land_km2|}}} |ha ={{{area_land_ha|}}} |acre ={{{area_land_acre|}}} |sqmi ={{{area_land_sq_mi|}}} |dunam={{{area_land_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|land|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass71 = mergedrow | label71 = &nbsp;•&nbsp;Water | data71 = {{#if:{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_water_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_water_km2|}}} |ha ={{{area_water_ha|}}} |acre ={{{area_water_acre|}}} |sqmi ={{{area_water_sq_mi|}}} |dunam={{{area_water_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|water|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }} {{#if:{{{area_water_percent|}}}| &nbsp;{{{area_water_percent}}}{{#ifeq:%|{{#invoke:string|sub|{{{area_water_percent|}}}|-1}}||%}}}}}} | rowclass72 = mergedrow | label72 = &nbsp;•&nbsp;Urban<div class="ib-settlement-fn">{{{area_urban_footnotes|}}}</div> | data72 = {{#if:{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_urban_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_urban_km2|}}} |ha ={{{area_urban_ha|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|urban|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass73 = mergedrow | label73 = &nbsp;•&nbsp;Rural<div class="ib-settlement-fn">{{{area_rural_footnotes|}}}</div> | data73 = {{#if:{{{area_rural_km2|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_sq_mi|}}}{{{area_rural_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_rural_km2|}}} |ha ={{{area_rural_ha|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|rural|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass74 = mergedrow | label74 =&nbsp;•&nbsp;Metro<div class="ib-settlement-fn">{{{area_metro_footnotes|}}}</div> | data74 = {{#if:{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_metro_sq_mi|}}}{{{area_metro_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_metro_km2|}}} |ha ={{{area_metro_ha|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|metro|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Area rank*** --> | rowclass75 = mergedrow | label75 = &nbsp;•&nbsp;Rank | data75 = {{{area_rank|}}} | rowclass76 = mergedrow | label76 = &nbsp;•&nbsp;{{{area_blank1_title}}} | data76 = {{#if:{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_blank1_sq_mi|}}}{{{area_blank1_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank1_km2|}}} |ha ={{{area_blank1_ha|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank1|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass77 = mergedrow | label77 = &nbsp;•&nbsp;{{{area_blank2_title}}} | data77 = {{#if:{{{area_blank2_km2|}}}{{{area_blank2_ha|}}}{{{area_blank2_acre|}}}{{{area_blank2_sq_mi|}}}{{{area_blank2_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank2_km2|}}} |ha ={{{area_blank2_ha|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank2|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass78 = mergedrow | label78 = &nbsp; | data78 = {{{area_note|}}} <!-- ***Dimensions*** --> | rowclass79 = mergedtoprow | header79 = {{#if:{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|Dimensions<div class="ib-settlement-fn">{{{dimensions_footnotes|}}}</div>}} | rowclass80 = mergedrow | label80 = &nbsp;•&nbsp;Length | data80 = {{#if:{{{length_km|}}}{{{length_mi|}}} | {{infobox_settlement/lengthdisp |km ={{{length_km|}}} |mi ={{{length_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass81 = mergedrow | label81 = &nbsp;•&nbsp;Width | data81 = {{#if:{{{width_km|}}}{{{width_mi|}}} |{{infobox_settlement/lengthdisp |km ={{{width_km|}}} |mi ={{{width_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation*** --> | rowclass82 = mergedtoprow | label82 = {{#if:{{{elevation_link|}}}|[[{{{elevation_link|}}}|Elevation]]|Elevation}}<div class="ib-settlement-fn">{{{elevation_footnotes|}}}{{#if:{{{elevation_point|}}}|&#32;({{{elevation_point}}})}}</div> | data82 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_m|}}} |ft ={{{elevation_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass83 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}}|mergedrow|mergedtoprow}} | label83 = Highest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_max_footnotes|}}}{{#if:{{{elevation_max_point|}}}|&#32;({{{elevation_max_point}}})}}</div> | data83 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_max_m|}}} |ft ={{{elevation_max_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation max rank*** --> | rowclass84 = mergedrow | label84 = &nbsp;•&nbsp;Rank | data84 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}}| {{{elevation_max_rank|}}} }} | rowclass85 = {{#if:{{{elevation_min_rank|}}}|mergedrow|mergedbottomrow}} | label85 = Lowest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_min_footnotes|}}}{{#if:{{{elevation_min_point|}}}|&#32;({{{elevation_min_point}}})}}</div> | data85 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_min_m|}}} |ft ={{{elevation_min_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation min rank*** --> | rowclass86 = mergedrow | label86 = &nbsp;•&nbsp;Rank | data86 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}}|{{{elevation_min_rank|}}}}} <!-- ***Population*** --> | rowclass87 = mergedtoprow | label87 = Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> | data87 = {{fix comma category|{{#ifeq:{{{total_type}}}|&nbsp; | {{#if:{{{population_total|}}} | {{formatnum:{{replace|{{{population_total}}}|,|}}}} }} }} }} | rowclass88 = mergedtoprow | header88 ={{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}}{{{population_urban|}}}{{{population_rural|}}}{{{population_metro|}}}{{{population_blank1|}}}{{{population_blank2|}}}{{{population_est|}}} |Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> }} }} | rowclass89 = mergedrow | label89 = <div style="white-space:nowrap;">&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}|{{#if:{{{settlement_type|{{{type|}}}}}}|{{{settlement_type|{{{type}}}}}}|City}}|Total}}}}</div> | data89 = {{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}} | {{fix comma category|{{formatnum:{{replace|{{{population_total}}}|,|}}}}}} }} }} | rowclass90 = mergedrow | label90 = <div style="white-space:nowrap;">&nbsp;•&nbsp;Estimate&nbsp;{{#if:{{{pop_est_as_of|}}}|<div class="ib-settlement-fn">({{{pop_est_as_of}}}){{{pop_est_footnotes|}}}</div>}}</div> | data90 = {{#if:{{{population_est|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_est}}}|,|}}}}}} }} <!-- ***Population rank*** --> | rowclass91 = mergedrow | label91 =&nbsp;•&nbsp;Rank | data91 = {{{population_rank|}}} | rowclass92 = mergedrow | label92 = &nbsp;•&nbsp;Density | data92 = {{#if:{{{population_density_km2|}}}{{{population_density_sq_mi|}}}{{{population_total|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_km2|}}} |/sqmi={{{population_density_sq_mi|}}} |pop ={{{population_total|}}} |dunam={{if empty|{{{area_land_dunam|}}}|{{{area_total_dunam|}}}}} |ha ={{if empty|{{{area_land_ha|}}}|{{{area_total_ha|}}}}} |km2 ={{if empty|{{{area_land_km2|}}}|{{{area_total_km2|}}}}} |acre ={{if empty|{{{area_land_acre|}}}|{{{area_total_acre|}}}}} |sqmi ={{if empty|{{{area_land_sq_mi|}}}|{{{area_total_sq_mi|}}}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Population density rank*** --> | rowclass93 = mergedrow | label93 = &nbsp;&nbsp;•&nbsp;Rank | data93 = {{{population_density_rank|}}} | rowclass94 = mergedrow | label94 = &nbsp;•&nbsp;[[Urban area|Urban]]<div class="ib-settlement-fn">{{{population_urban_footnotes|}}}</div> | data94 = {{#if:{{{population_urban|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_urban}}}|,|}}}}}} }} | rowclass95 = mergedrow | label95 = &nbsp;•&nbsp;Urban&nbsp;density | data95 = {{#if:{{{population_density_urban_km2|}}}{{{population_density_urban_sq_mi|}}}{{{population_urban|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_urban_km2|}}} |/sqmi={{{population_density_urban_sq_mi|}}} |pop ={{{population_urban|}}} |ha ={{{area_urban_ha|}}} |km2 ={{{area_urban_km2|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass96 = mergedrow | label96 = &nbsp;•&nbsp;[[Rural area|Rural]]<div class="ib-settlement-fn">{{{population_rural_footnotes|}}}</div> | data96 = {{#if:{{{population_rural|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_rural}}}|,|}}}}}}}} | rowclass97 = mergedrow | label97 = &nbsp;•&nbsp;Rural&nbsp;density | data97 = {{#if:{{{population_density_rural_km2|}}}{{{population_density_rural_sq_mi|}}}{{{population_rural|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_rural_km2|}}} |/sqmi={{{population_density_rural_sq_mi|}}} |pop ={{{population_rural|}}} |ha ={{{area_rural_ha|}}} |km2 ={{{area_rural_km2|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass98 = mergedrow | label98 =&nbsp;•&nbsp;[[Metropolitan area|Metro]]<div class="ib-settlement-fn">{{{population_metro_footnotes|}}}</div> | data98 = {{#if:{{{population_metro|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_metro}}}|,|}}}}}} }} | rowclass99 = mergedrow | label99 = &nbsp;•&nbsp;Metro&nbsp;density | data99 = {{#if:{{{population_density_metro_km2|}}}{{{population_density_metro_sq_mi|}}}{{{population_metro|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_metro_km2|}}} |/sqmi={{{population_density_metro_sq_mi|}}} |pop ={{{population_metro|}}} |ha ={{{area_metro_ha|}}} |km2 ={{{area_metro_km2|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass100 = mergedrow | label100 = &nbsp;•&nbsp;{{{population_blank1_title|}}}<div class="ib-settlement-fn">{{{population_blank1_footnotes|}}}</div> | data100 = {{#if:{{{population_blank1|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank1}}}|,|}}}}}}}} | rowclass101 = mergedrow | label101 = &nbsp;•&nbsp;{{#if:{{{population_blank1_title|}}}|{{{population_blank1_title}}} density|Density}} | data101 = {{#if:{{{population_density_blank1_km2|}}}{{{population_density_blank1_sq_mi|}}}{{{population_blank1|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank1_km2|}}} |/sqmi={{{population_density_blank1_sq_mi|}}} |pop ={{{population_blank1|}}} |ha ={{{area_blank1_ha|}}} |km2 ={{{area_blank1_km2|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass102 = mergedrow | label102 = &nbsp;•&nbsp;{{{population_blank2_title|}}}<div class="ib-settlement-fn">{{{population_blank2_footnotes|}}}</div> | data102 = {{#if:{{{population_blank2|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank2}}}|,|}}}}}}}} | rowclass103 = mergedrow | label103 = &nbsp;•&nbsp;{{#if:{{{population_blank2_title|}}}|{{{population_blank2_title}}} density|Density}} | data103 = {{#if:{{{population_density_blank2_km2|}}}{{{population_density_blank2_sq_mi|}}}{{{population_blank2|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank2_km2|}}} |/sqmi={{{population_density_blank2_sq_mi|}}} |pop ={{{population_blank2|}}} |ha ={{{area_blank2_ha|}}} |km2 ={{{area_blank2_km2|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass104 = mergedrow | label104 = &nbsp; | data104 = {{{population_note|}}} | rowclass105 = mergedtoprow | label105 = {{Pluralize from text|{{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}{{force plural}}}}|<!-- -->link=Demonym|singular=Demonym|likely=Demonym(s)|plural=Demonyms}} | data105 = {{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}}}{{Main other|{{Pluralize from text|{{{population_demonym|}}}|likely=[[Category:Pages using infobox settlement with possible demonym list]]}}}} <!-- ***Demographics 1*** --> | rowclass106 = mergedtoprow | header106 = {{#if:{{{demographics_type1|}}} |{{{demographics_type1}}}<div class="ib-settlement-fn">{{{demographics1_footnotes|}}}</div>}} | rowclass107 = mergedrow | label107 = &nbsp;•&nbsp;{{{demographics1_title1}}} | data107 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title1|}}}|{{{demographics1_info1|}}}}}}} | rowclass108 = mergedrow | label108 = &nbsp;•&nbsp;{{{demographics1_title2}}} | data108 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title2|}}}|{{{demographics1_info2|}}}}}}} | rowclass109 = mergedrow | label109 = &nbsp;•&nbsp;{{{demographics1_title3}}} | data109 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title3|}}}|{{{demographics1_info3|}}}}}}} | rowclass110 = mergedrow | label110 = &nbsp;•&nbsp;{{{demographics1_title4}}} | data110 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title4|}}}|{{{demographics1_info4|}}}}}}} | rowclass111 = mergedrow | label111 = &nbsp;•&nbsp;{{{demographics1_title5}}} | data111 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title5|}}}|{{{demographics1_info5|}}}}}}} | rowclass112 = mergedrow | label112 = &nbsp;•&nbsp;{{{demographics1_title6}}} | data112 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title6|}}}|{{{demographics1_info6|}}}}}}} | rowclass113 = mergedrow | label113 = &nbsp;•&nbsp;{{{demographics1_title7}}} | data113 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title7|}}}|{{{demographics1_info7|}}}}}}} | rowclass114 = mergedrow | label114 = &nbsp;•&nbsp;{{{demographics1_title8}}} | data114 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title8|}}}|{{{demographics1_info8|}}}}}}} | rowclass115 = mergedrow | label115 = &nbsp;•&nbsp;{{{demographics1_title9}}} | data115 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title9|}}}|{{{demographics1_info9|}}}}}}} | rowclass116 = mergedrow | label116 = &nbsp;•&nbsp;{{{demographics1_title10}}} | data116 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title10|}}}|{{{demographics1_info10|}}}}}}} <!-- ***Demographics 2*** --> | rowclass117 = mergedtoprow | header117 = {{#if:{{{demographics_type2|}}} |{{{demographics_type2}}}<div class="ib-settlement-fn">{{{demographics2_footnotes|}}}</div>}} | rowclass118 = mergedrow | label118 = &nbsp;•&nbsp;{{{demographics2_title1}}} | data118 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title1|}}}|{{{demographics2_info1|}}}}}}} | rowclass119 = mergedrow | label119 = &nbsp;•&nbsp;{{{demographics2_title2}}} | data119 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title2|}}}|{{{demographics2_info2|}}}}}}} | rowclass120 = mergedrow | label120 = &nbsp;•&nbsp;{{{demographics2_title3}}} | data120 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title3|}}}|{{{demographics2_info3|}}}}}}} | rowclass121 = mergedrow | label121 = &nbsp;•&nbsp;{{{demographics2_title4}}} | data121 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title4|}}}|{{{demographics2_info4|}}}}}}} | rowclass122 = mergedrow | label122 = &nbsp;•&nbsp;{{{demographics2_title5}}} | data122 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title5|}}}|{{{demographics2_info5|}}}}}}} | rowclass123 = mergedrow | label123 = &nbsp;•&nbsp;{{{demographics2_title6}}} | data123 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title6|}}}|{{{demographics2_info6|}}}}}}} | rowclass124 = mergedrow | label124 = &nbsp;•&nbsp;{{{demographics2_title7}}} | data124 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title7|}}}|{{{demographics2_info7|}}}}}}} | rowclass125 = mergedrow | label125 = &nbsp;•&nbsp;{{{demographics2_title8}}} | data125 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title8|}}}|{{{demographics2_info8|}}}}}}} | rowclass126 = mergedrow | label126 = &nbsp;•&nbsp;{{{demographics2_title9}}} | data126 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title9|}}}|{{{demographics2_info9|}}}}}}} | rowclass127 = mergedrow | label127 = &nbsp;•&nbsp;{{{demographics2_title10}}} | data127 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title10|}}}|{{{demographics2_info10|}}}}}}} <!-- ***Time Zones*** --> | rowclass128 = mergedtoprow | header128 = {{#if:{{{timezone1_location|}}}|{{#if:{{{timezone2|}}}|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]s|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]}}|}} | rowclass129 = {{#if:{{{timezone1_location|}}}|mergedrow|mergedtoprow}} | label129 = {{#if:{{{timezone1_location|}}}|{{{timezone1_location}}}|{{#if:{{{timezone2_location|}}}|{{{timezone2_location}}}|{{#if:{{{timezone2|}}}|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]s|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]}}}}}} | data129 = {{#if:{{{utc_offset1|{{{utc_offset|}}} }}} |[[UTC{{{utc_offset1|{{{utc_offset}}}}}}]] {{#if:{{{timezone1|{{{timezone|}}}}}}|({{{timezone1|{{{timezone}}}}}})}} |{{{timezone1|{{{timezone|}}}}}} }} | rowclass130 = mergedrow | label130 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data130 = {{#if:{{{utc_offset1_DST|{{{utc_offset_DST|}}}}}} |[[UTC{{{utc_offset1_DST|{{{utc_offset_DST|}}}}}}]] {{#if:{{{timezone1_DST|{{{timezone_DST|}}}}}}|({{{timezone1_DST|{{{timezone_DST}}}}}})}} |{{{timezone1_DST|{{{timezone_DST|}}}}}} }} | rowclass131 = mergedrow | label131 = {{#if:{{{timezone2_location|}}}| {{{timezone2_location|}}}|<nowiki />}} | data131 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset2|{{{utc_offset2|}}} }}} |[[UTC{{{utc_offset2|{{{utc_offset2}}}}}}]] {{#if:{{{timezone2|}}}|({{{timezone2}}})}} |{{{timezone2|}}} }} }} | rowclass132 = mergedrow | label132 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data132 = {{#if:{{{utc_offset2_DST|}}}|[[UTC{{{utc_offset2_DST|}}}]] {{#if:{{{timezone2_DST|}}}|({{{timezone2_DST|}}})}} |{{{timezone2_DST|}}} }} | rowclass133 = mergedrow | label133 = {{#if:{{{timezone3_location|}}}| {{{timezone3_location|}}}|<nowiki />}} | data133 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset3|{{{utc_offset3|}}} }}} |[[UTC{{{utc_offset3|{{{utc_offset3}}}}}}]] {{#if:{{{timezone3|}}}|({{{timezone3}}})}} |{{{timezone3|}}} }} }} | rowclass134 = mergedrow | label134 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data134 = {{#if:{{{utc_offset3_DST|}}}|[[UTC{{{utc_offset3_DST|}}}]] {{#if:{{{timezone3_DST|}}}|({{{timezone3_DST|}}})}} |{{{timezone3_DST|}}} }} | rowclass135 = mergedrow | label135 = {{#if:{{{timezone4_location|}}}| {{{timezone4_location|}}}|<nowiki />}} | data135 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset4|{{{utc_offset4|}}} }}} |[[UTC{{{utc_offset4|{{{utc_offset4}}}}}}]] {{#if:{{{timezone4|}}}|({{{timezone4}}})}} |{{{timezone4|}}} }} }} | rowclass136 = mergedrow | label136 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data136 = {{#if:{{{utc_offset4_DST|}}}|[[UTC{{{utc_offset4_DST|}}}]] {{#if:{{{timezone4_DST|}}}|({{{timezone4_DST|}}})}} |{{{timezone4_DST|}}} }} | rowclass137 = mergedrow | label137 = {{#if:{{{timezone5_location|}}}| {{{timezone5_location|}}}|<nowiki />}} | data137 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset5|{{{utc_offset5|}}} }}} |[[UTC{{{utc_offset5|{{{utc_offset5}}}}}}]] {{#if:{{{timezone5|}}}|({{{timezone5}}})}} |{{{timezone5|}}} }} }} | rowclass138 = mergedrow | label138 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data138 = {{#if:{{{utc_offset5_DST|}}}|[[UTC{{{utc_offset5_DST|}}}]] {{#if:{{{timezone5_DST|}}}|({{{timezone5_DST|}}})}} |{{{timezone5_DST|}}} }} <!-- ***Postal Code(s)*** --> | rowclass139 = mergedtoprow | label139 = {{if empty|{{{postal_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class139 = adr | data139 = {{#if:{{{postal_code|}}}|<div class="postal-code">{{{postal_code}}}</div>}} | rowclass140 = {{#if:{{{postal_code|}}}|mergedbottomrow|mergedtoprow}} | label140 = {{if empty|{{{postal2_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal2_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class140 = adr | data140 = {{#if:{{{postal2_code|}}}|<div class="postal-code">{{{postal2_code}}}</div>}} <!-- ***Area Code(s)*** --> | rowclass141 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}|mergedrow|mergedtoprow}} | label141 = {{if empty|{{{area_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{if empty|{{{area_code|}}}|{{{area_codes|}}}{{force plural}}}}|<!-- -->link=Telephone numbering plan|singular=Area code|likely=Area code(s)|plural=Area codes}}}} | data141 = {{if empty|{{{area_code|}}}|{{{area_codes|}}}}}{{#if:{{{area_code_type|}}}||{{Main other|{{Pluralize from text|any_comma=1|parse_links=1|{{{area_code|}}}|||[[Category:Pages using infobox settlement with possible area code list]]}}}}}} <!-- Geocode--> | rowclass142 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}|mergedrow|mergedtoprow}} | label142 = [[Geocode]] | class142 = nickname | data142 = {{{geocode|}}} <!-- ISO Code--> | rowclass143 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}|mergedrow|mergedtoprow}} | label143 = [[ISO 3166|ISO 3166 code]] | class143 = nickname | data143 = {{{iso_code|}}} <!-- Vehicle registration plate--> | rowclass144 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}|mergedrow|mergedtoprow}} | label144 = {{if empty|{{{registration_plate_type|}}}|[[Vehicle registration plate|Vehicle registration]]}} | data144 = {{{registration_plate|}}} <!-- Other codes --> | rowclass145 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}|mergedrow|mergedtoprow}} | label145 = {{{code1_name|}}} | class145 = nickname | data145 = {{#if:{{{code1_name|}}}|{{{code1_info|}}}}} | rowclass146 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}{{{code1_name|}}}|mergedrow|mergedtoprow}} | label146 = {{{code2_name|}}} | class146 = nickname | data146 = {{#if:{{{code2_name|}}}|{{{code2_info|}}}}} <!-- ***Blank Fields (two sections)*** --> | rowclass147 = mergedtoprow | label147 = {{{blank_name_sec1|{{{blank_name|}}}}}} | data147 = {{#if:{{{blank_name_sec1|{{{blank_name|}}}}}}|{{{blank_info_sec1|{{{blank_info|}}}}}}}} | rowclass148 = mergedrow | label148 = {{{blank1_name_sec1|{{{blank1_name|}}}}}} | data148 = {{#if:{{{blank1_name_sec1|{{{blank1_name|}}}}}}|{{{blank1_info_sec1|{{{blank1_info|}}}}}}}} | rowclass149 = mergedrow | label149 = {{{blank2_name_sec1|{{{blank2_name|}}}}}} | data149 = {{#if:{{{blank2_name_sec1|{{{blank2_name|}}}}}}|{{{blank2_info_sec1|{{{blank2_info|}}}}}}}} | rowclass150 = mergedrow | label150 = {{{blank3_name_sec1|{{{blank3_name|}}}}}} | data150 = {{#if:{{{blank3_name_sec1|{{{blank3_name|}}}}}}|{{{blank3_info_sec1|{{{blank3_info|}}}}}}}} | rowclass151 = mergedrow | label151 = {{{blank4_name_sec1|{{{blank4_name|}}}}}} | data151 = {{#if:{{{blank4_name_sec1|{{{blank4_name|}}}}}}|{{{blank4_info_sec1|{{{blank4_info|}}}}}}}} | rowclass152 = mergedrow | label152 = {{{blank5_name_sec1|{{{blank5_name|}}}}}} | data152 = {{#if:{{{blank5_name_sec1|{{{blank5_name|}}}}}}|{{{blank5_info_sec1|{{{blank5_info|}}}}}}}} | rowclass153 = mergedrow | label153 = {{{blank6_name_sec1|{{{blank6_name|}}}}}} | data153 = {{#if:{{{blank6_name_sec1|{{{blank6_name|}}}}}}|{{{blank6_info_sec1|{{{blank6_info|}}}}}}}} | rowclass154 = mergedrow | label154 = {{{blank7_name_sec1|{{{blank7_name|}}}}}} | data154 = {{#if:{{{blank7_name_sec1|{{{blank7_name|}}}}}}|{{{blank7_info_sec1|{{{blank7_info|}}}}}}}} | rowclass155 = mergedtoprow | label155 = {{{blank_name_sec2}}} | data155 = {{#if:{{{blank_name_sec2|}}}|{{{blank_info_sec2|}}}}} | rowclass156 = mergedrow | label156 = {{{blank1_name_sec2}}} | data156 = {{#if:{{{blank1_name_sec2|}}}|{{{blank1_info_sec2|}}}}} | rowclass157 = mergedrow | label157 = {{{blank2_name_sec2}}} | data157 = {{#if:{{{blank2_name_sec2|}}}|{{{blank2_info_sec2|}}}}} | rowclass158 = mergedrow | label158 = {{{blank3_name_sec2}}} | data158 = {{#if:{{{blank3_name_sec2|}}}|{{{blank3_info_sec2|}}}}} | rowclass159 = mergedrow | label159 = {{{blank4_name_sec2}}} | data159 = {{#if:{{{blank4_name_sec2|}}}|{{{blank4_info_sec2|}}}}} | rowclass160 = mergedrow | label160 = {{{blank5_name_sec2}}} | data160 = {{#if:{{{blank5_name_sec2|}}}|{{{blank5_info_sec2|}}}}} | rowclass161 = mergedrow | label161 = {{{blank6_name_sec2}}} | data161 = {{#if:{{{blank6_name_sec2|}}}|{{{blank6_info_sec2|}}}}} | rowclass162 = mergedrow | label162 = {{{blank7_name_sec2}}} | data162 = {{#if:{{{blank7_name_sec2|}}}|{{{blank7_info_sec2|}}}}} <!-- ***Website*** --> | rowclass163 = mergedtoprow | label163 = Website | data163 = {{#if:{{{website|}}}|{{{website}}}}} | class164 = maptable | data164 = {{#if:{{{module|}}}|{{{module}}}}} <!-- ***Footnotes*** --> | belowrowclass = mergedtoprow | below = {{{footnotes|}}} }}<!-- Check for unknowns -->{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview = Page using [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y | alt | anthem | anthem_link | area_blank1_acre | area_blank1_dunam | area_blank1_ha | area_blank1_km2 | area_blank1_sq_mi | area_blank1_title | area_blank2_acre | area_blank2_dunam | area_blank2_ha | area_blank2_km2 | area_blank2_sq_mi | area_blank2_title | area_code | area_code_type | area_codes | area_footnotes | area_land_acre | area_land_dunam | area_land_ha | area_land_km2 | area_land_sq_mi | area_metro_acre | area_metro_dunam | area_metro_footnotes | area_metro_ha | area_metro_km2 | area_metro_sq_mi | area_note | area_rank | area_rural_acre | area_rural_dunam | area_rural_footnotes | area_rural_ha | area_rural_km2 | area_rural_sq_mi | area_total_acre | area_total_dunam | area_total_ha | area_total_km2 | area_total_sq_mi | area_urban_acre | area_urban_dunam | area_urban_footnotes | area_urban_ha | area_urban_km2 | area_urban_sq_mi | area_water_acre | area_water_dunam | area_water_ha | area_water_km2 | area_water_percent | area_water_sq_mi | blank_emblem_alt | blank_emblem_link | blank_emblem_size | blank_emblem_type | blank_emblem_sizedefault | blank_emblem_upright | blank_info | blank_info_sec1 | blank_info_sec2 | blank_name | blank_name_sec1 | blank_name_sec2 | blank1_info | blank1_info_sec1 | blank1_info_sec2 | blank1_name | blank1_name_sec1 | blank1_name_sec2 | blank2_info | blank2_info_sec1 | blank2_info_sec2 | blank2_name | blank2_name_sec1 | blank2_name_sec2 | blank3_info | blank3_info_sec1 | blank3_info_sec2 | blank3_name | blank3_name_sec1 | blank3_name_sec2 | blank4_info | blank4_info_sec1 | blank4_info_sec2 | blank4_name | blank4_name_sec1 | blank4_name_sec2 | blank5_info | blank5_info_sec1 | blank5_info_sec2 | blank5_name | blank5_name_sec1 | blank5_name_sec2 | blank6_info | blank6_info_sec1 | blank6_info_sec2 | blank6_name | blank6_name_sec1 | blank6_name_sec2 | blank7_info | blank7_info_sec1 | blank7_info_sec2 | blank7_name | blank7_name_sec1 | blank7_name_sec2 | caption | code1_info | code1_name | code2_info | code2_name | coor_pinpoint | coor_type | coordinates | coordinates_footnotes | demographics_type1 | demographics_type2 | demographics1_footnotes | demographics1_info1 | demographics1_info10 | demographics1_info2 | demographics1_info3 | demographics1_info4 | demographics1_info5 | demographics1_info6 | demographics1_info7 | demographics1_info8 | demographics1_info9 | demographics1_title1 | demographics1_title10 | demographics1_title2 | demographics1_title3 | demographics1_title4 | demographics1_title5 | demographics1_title6 | demographics1_title7 | demographics1_title8 | demographics1_title9 | demographics2_footnotes | demographics2_info1 | demographics2_info10 | demographics2_info2 | demographics2_info3 | demographics2_info4 | demographics2_info5 | demographics2_info6 | demographics2_info7 | demographics2_info8 | demographics2_info9 | demographics2_title1 | demographics2_title10 | demographics2_title2 | demographics2_title3 | demographics2_title4 | demographics2_title5 | demographics2_title6 | demographics2_title7 | demographics2_title8 | demographics2_title9 | dimensions_footnotes | dunam_link | elevation_footnotes | elevation_ft | elevation_link | elevation_m | elevation_max_footnotes | elevation_max_ft | elevation_max_m | elevation_max_point | elevation_max_rank | elevation_min_footnotes | elevation_min_ft | elevation_min_m | elevation_min_point | elevation_min_rank | elevation_point | embed | established_date | established_date1 | established_date2 | established_date3 | established_date4 | established_date5 | established_date6 | established_date7 | established_title | established_title1 | established_title2 | established_title3 | established_title4 | established_title5 | established_title6 | established_title7 | etymology | extinct_date | extinct_title | flag_alt | flag_border | flag_link | flag_size | footnotes | founder | geocode | governing_body | government_footnotes | government_type | government_blank1_title | government_blank1 | government_blank2_title | government_blank2 | government_blank2_title | government_blank3 | government_blank3_title | government_blank3 | government_blank4_title | government_blank4 | government_blank5_title | government_blank5 | government_blank6_title | government_blank6 | grid_name | grid_position | image_alt | image_blank_emblem | image_caption | image_flag | image_map | image_map1 | image_seal | image_shield | image_size | image_skyline | imagesize | image_sizedefault | image_upright | mapQuery | iso_code | leader_name | leader_name1 | leader_name2 | leader_name3 | leader_name4 | leader_name5 | leader_party | leader_title | leader_title1 | leader_title2 | leader_title3 | leader_title4 | leader_title5 | length_km | length_mi | map_alt | map_alt1 | map_caption | map_caption1 | mapsize | mapsize1 | module | motto | motto_link | mottoes | name | named_for | native_name | native_name_lang | nickname | nickname_link | nicknames | official_name | other_name | p1 | p10 | p11 | p12 | p13 | p14 | p15 | p16 | p17 | p18 | p19 | p2 | p20 | p21 | p22 | p23 | p24 | p25 | p26 | p27 | p28 | p29 | p3 | p30 | p31 | p32 | p33 | p34 | p35 | p36 | p37 | p38 | p39 | p4 | p40 | p41 | p42 | p43 | p44 | p45 | p46 | p47 | p48 | p49 | p5 | p50 | p6 | p7 | p8 | p9 | parts | parts_style | parts_type | pop_est_as_of | pop_est_footnotes | population_as_of | population_blank1 | population_blank1_footnotes | population_blank1_title | population_blank2 | population_blank2_footnotes | population_blank2_title | population_demonym | population_demonyms | population_density_blank1_km2 | population_density_blank1_sq_mi | population_density_blank2_km2 | population_density_blank2_sq_mi | population_density_km2 | population_density_metro_km2 | population_density_metro_sq_mi | population_density_rank | population_density_rural_km2 | population_density_rural_sq_mi | population_density_sq_mi | population_density_urban_km2 | population_density_urban_sq_mi | population_est | population_footnotes | population_metro | population_metro_footnotes | population_note | population_rank | population_rural | population_rural_footnotes | population_total | population_urban | population_urban_footnotes | postal_code | postal_code_type | postal2_code | postal2_code_type | pushpin_image | pushpin_label | pushpin_label_position | pushpin_map | pushpin_map_alt | pushpin_map_caption | pushpin_map_caption_notsmall | pushpin_map_narrow | pushpin_mapsize | pushpin_outside | pushpin_overlay | pushpin_relief | registration_plate | registration_plate_type | seal_alt | seal_link | seal_size | seal_type | seat | seat_type | seat1 | seat1_type | seat2 | seat2_type | settlement_type | shield_alt | shield_link | shield_size | short_description <!--used by Module:Settlement short description-->| subdivision_name | subdivision_name1 | subdivision_name2 | subdivision_name3 | subdivision_name4 | subdivision_name5 | subdivision_name6 | subdivision_type | subdivision_type1 | subdivision_type2 | subdivision_type3 | subdivision_type4 | subdivision_type5 | subdivision_type6 | template_name | timezone | timezone_DST | timezone_link | timezone1 | timezone1_DST | timezone1_location | timezone2 | timezone2_DST | timezone2_location | timezone3 | timezone3_DST | timezone3_location | timezone4 | timezone4_DST | timezone4_location | timezone5 | timezone5_DST | timezone5_location | total_type | translit_lang1 | translit_lang1_info | translit_lang1_info1 | translit_lang1_info2 | translit_lang1_info3 | translit_lang1_info4 | translit_lang1_info5 | translit_lang1_info6 | translit_lang1_type | translit_lang1_type1 | translit_lang1_type2 | translit_lang1_type3 | translit_lang1_type4 | translit_lang1_type5 | translit_lang1_type6 | translit_lang2 | translit_lang2_info | translit_lang2_info1 | translit_lang2_info2 | translit_lang2_info3 | translit_lang2_info4 | translit_lang2_info5 | translit_lang2_info6 | translit_lang2_type | translit_lang2_type1 | translit_lang2_type2 | translit_lang2_type3 | translit_lang2_type4 | translit_lang2_type5 | translit_lang2_type6 | type | unit_pref | utc_offset | utc_offset_DST | utc_offset1 | utc_offset1_DST | utc_offset2 | utc_offset2_DST | utc_offset3 | utc_offset3_DST | utc_offset4 | utc_offset4_DST | utc_offset5 | utc_offset5_DST | website | width_km | width_mi }}<!-- -->{{#invoke:Check for conflicting parameters|check | template = [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] | cat = {{main other|Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with conflicting parameters}} | image_size; imagesize | image_alt; alt | image_caption; caption | settlement_type; type | utc_offset1; utc_offset | timezone1; timezone }}<!-- Wikidata -->{{#if:{{{coordinates_wikidata|}}}{{{wikidata|}}} |[[Category:Pages using infobox settlement with the wikidata parameter]] }}{{main other|<!-- Missing country -->{{#if:{{{subdivision_name|}}}||[[Category:Pages using infobox settlement with missing country]]}}<!-- No map -->{{#if:{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}||[[Category:Pages using infobox settlement with no map]]}}<!-- Image_map1 without image_map -->{{#if:{{{image_map1|}}}|{{#if:{{{image_map|}}}||[[Category:Pages using infobox settlement with image_map1 but not image_map]]}}}}<!-- No coordinates -->{{#if:{{{coordinates|}}}||[[Category:Pages using infobox settlement with no coordinates]]}}<!-- -->{{#if:{{{embed|}}}|[[Category:Pages using infobox settlement with embed]]}} }}<!-- Gathering information on over-use of maps -->{{#ifexpr:{{#invoke:ParameterCount|main|mapframe|image_map|image_map1|pushpin_map}} >2 |{{main other| [[Category:Pages using infobox settlement with potentially too many maps]]}}}}</includeonly><noinclude> {{documentation}} <!--Please add this template's categories to the /doc subpage, not here - thanks!--> </noinclude> 30palre80wzp6ye67fau6o3k96jb8yb 72863 72827 2026-07-01T02:02:45Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/mergedmap]] para o seu redirecionamento [[Template:Infobox settlement/mergedmap]], suprimindo o primeiro: fixing 72453 wikitext text/x-wiki <includeonly>{{main other|{{#invoke:Settlement short description|main}}|}}{{Infobox | child = {{yesno|{{{embed|}}}}} | bodyclass = ib-settlement vcard <!--** names, type, and transliterations ** --> | above = <div class="fn org">{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}</div> {{#if:{{{native_name|}}}|<div class="nickname ib-settlement-native" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}"}}>{{{native_name}}}</div>}}{{#if:{{{other_name|}}}|<div class="nickname ib-settlement-other-name">{{{other_name}}}</div>}} | subheader = {{#if:{{{settlement_type|{{{type|}}}}}}|<div class="category">{{{settlement_type|{{{type}}}}}}</div>}} | rowclass1 = mergedtoprow ib-settlement-official | data1 = {{#if:{{{name|}}}|{{{official_name|}}}}} <!-- ***Transliteration language 1*** --> | rowclass2 = mergedtoprow | header2 = {{#if:{{{translit_lang1|}}}|{{{translit_lang1}}}&nbsp;transcription(s)}} | rowclass3 = {{#if:{{{translit_lang1_type1|}}}|mergedrow|mergedbottomrow}} | label3 = &nbsp;•&nbsp;{{{translit_lang1_type}}} | data3 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type|}}}|{{{translit_lang1_info|}}}}}}} | rowclass4 = {{#if:{{{translit_lang1_type2|}}}|mergedrow|mergedbottomrow}} | label4 = &nbsp;•&nbsp;{{{translit_lang1_type1}}} | data4 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type1|}}}|{{{translit_lang1_info1|}}}}}}} | rowclass5 = {{#if:{{{translit_lang1_type3|}}}|mergedrow|mergedbottomrow}} | label5 =&nbsp;•&nbsp;{{{translit_lang1_type2}}} | data5 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type2|}}}|{{{translit_lang1_info2|}}}}}}} | rowclass6 = {{#if:{{{translit_lang1_type4|}}}|mergedrow|mergedbottomrow}} | label6 = &nbsp;•&nbsp;{{{translit_lang1_type3}}} | data6 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type3|}}}|{{{translit_lang1_info3|}}}}}}} | rowclass7 = {{#if:{{{translit_lang1_type5|}}}|mergedrow|mergedbottomrow}} | label7 = &nbsp;•&nbsp;{{{translit_lang1_type4}}} | data7 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type4|}}}|{{{translit_lang1_info4|}}}}}}} | rowclass8 = {{#if:{{{translit_lang1_type6|}}}|mergedrow|mergedbottomrow}} | label8 = &nbsp;•&nbsp;{{{translit_lang1_type5}}} | data8 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type5|}}}|{{{translit_lang1_info5|}}}}}}} | rowclass9 = mergedbottomrow | label9 = &nbsp;•&nbsp;{{{translit_lang1_type6}}} | data9 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type6|}}}|{{{translit_lang1_info6|}}}}}}} <!-- ***Transliteration language 2*** --> | rowclass10 = mergedtoprow | header10 = {{#if:{{{translit_lang2|}}}|{{{translit_lang2}}}&nbsp;transcription(s)}} | rowclass11 = {{#if:{{{translit_lang2_type1|}}}|mergedrow|mergedbottomrow}} | label11 = &nbsp;•&nbsp;{{{translit_lang2_type}}} | data11 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type|}}}|{{{translit_lang2_info|}}}}}}} | rowclass12 = {{#if:{{{translit_lang2_type2|}}}|mergedrow|mergedbottomrow}} | label12 = &nbsp;•&nbsp;{{{translit_lang2_type1}}} | data12 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type1|}}}|{{{translit_lang2_info1|}}}}}}} | rowclass13 = {{#if:{{{translit_lang2_type3|}}}|mergedrow|mergedbottomrow}} | label13 =&nbsp;•&nbsp;{{{translit_lang2_type2}}} | data13 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type2|}}}|{{{translit_lang2_info2|}}}}}}} | rowclass14 = {{#if:{{{translit_lang2_type4|}}}|mergedrow|mergedbottomrow}} | label14 = &nbsp;•&nbsp;{{{translit_lang2_type3}}} | data14 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type3|}}}|{{{translit_lang2_info3|}}}}}}} | rowclass15 = {{#if:{{{translit_lang2_type5|}}}|mergedrow|mergedbottomrow}} | label15 = &nbsp;•&nbsp;{{{translit_lang2_type4}}} | data15 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type4|}}}|{{{translit_lang2_info4|}}}}}}} | rowclass16 = {{#if:{{{translit_lang2_type6|}}}|mergedrow|mergedbottomrow}} | label16 = &nbsp;•&nbsp;{{{translit_lang2_type5}}} | data16 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type5|}}}|{{{translit_lang2_info5|}}}}}}} | rowclass17 = mergedbottomrow | label17 = &nbsp;•&nbsp;{{{translit_lang2_type6}}} | data17 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type6|}}}|{{{translit_lang2_info6|}}}}}}} <!-- end ** names, type, and transliterations ** --> <!-- ***Skyline Image*** --> | rowclass18 = mergedtoprow | data18 = {{#if:{{{image_skyline|}}}|<!-- -->{{#invoke:InfoboxImage|InfoboxImage<!-- -->|image={{{image_skyline|}}}<!-- -->|size={{if empty|{{{image_size|}}}|{{{imagesize|}}}}}|sizedefault={{{image_sizedefault|250px}}}|upright={{{image_upright|}}}<!-- -->|alt={{if empty|{{{image_alt|}}}|{{{alt|}}}}}<!-- -->|title={{if empty|{{{image_caption|}}}|{{{caption|}}}|{{{image_alt|}}}|{{{alt|}}}}}}}<!-- -->{{#if:{{{image_caption|}}}{{{caption|}}}|<div class="ib-settlement-caption">{{if empty|{{{image_caption|}}}|{{{caption|}}}}}</div>}} }} <!-- ***Flag, Seal, Shield and Coat of arms*** --> | rowclass19 = mergedtoprow | class19 = maptable | data19 = {{#if:{{{image_flag|}}}{{{image_seal|}}}{{{image_shield|}}}{{{image_blank_emblem|}}}{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}} |{{Infobox settlement/columns | 1 = {{#if:{{{image_flag|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_flag}}}|size={{{flag_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|125px|100x100px}}|border={{yesno |{{{flag_border|}}}|yes=yes|blank=yes}}|alt={{{flag_alt|}}}|title=Flag of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Flag|link={{{flag_link|}}}|name={{{official_name}}}}}</div>}} | 2 = {{#if:{{{image_seal|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_seal|}}}|size={{{seal_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{seal_alt|}}}|title=Official seal of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{seal_type|}}}|{{{seal_type}}}|Seal}}|link={{{seal_link|}}}|name={{{official_name}}}}}</div>}} | 3 = {{#if:{{{image_shield|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_shield|}}}||size={{{shield_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{shield_alt|}}}|title=Coat of arms of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Coat of arms|link={{{shield_link|}}}|name={{{official_name}}}}}</div>}} | 4 = {{#if:{{{image_blank_emblem|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_blank_emblem|}}}|size={{{blank_emblem_size|}}}|sizedefault={{{blank_emblem_sizedefault|{{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}}}}|upright={{{blank_emblem_upright|}}}|alt={{{blank_emblem_alt|}}}|title=Official logo of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{blank_emblem_type|}}}|{{{blank_emblem_type}}}}}|link={{{blank_emblem_link|}}}|name={{{official_name}}}}}</div>}} | 5 = {{#if:{{{image_map|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=100x100px|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption-link">{{{map_caption}}}</div>}}}} | 0 = {{#if:{{{pushpin_map_narrow|}}}|{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{{map_caption}}}}}}}}} |float = center |width = {{#if:{{{pushpin_mapsize|}}}|{{{pushpin_mapsize}}}|150}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map --> |position = {{{pushpin_label_position|}}} }} }} }} }} }} <!-- ***Etymology*** --> | rowclass20 = mergedtoprow | data20 = {{#if:{{{etymology|}}}|Etymology: {{{etymology}}} }} <!-- ***Nickname*** --> | rowclass21 = {{#if:{{{etymology|}}}|mergedrow|mergedtoprow}} | data21 = {{#if:{{{nickname|}}}{{{nicknames|}}}|<!-- -->{{Pluralize from text|parse_links=1|{{if empty|{{{nickname|}}}|{{{nicknames|}}}{{force plural}}}}|<!-- -->link={{{nickname_link|}}}|singular=Nickname|likely=Nickname(s)|plural=Nicknames}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{nickname|}}}|{{{nicknames|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|parse_links=1|{{{nickname|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible nickname list]]}}}}}} <!-- ***Motto*** --> | rowclass22 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}|mergedrow|mergedtoprow}} | data22 = {{#if:{{{motto|}}}{{{mottoes|}}}|<!-- -->{{Pluralize from text|{{if empty|{{{motto|}}}|{{{mottoes|}}}{{force plural}}}}|<!-- -->link={{{motto_link|}}}|singular=Motto|likely=Motto(s)|plural=Mottoes}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{motto|}}}|{{{mottoes|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|{{{motto|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible motto list]]}}}}}} <!-- ***Anthem*** --> | rowclass23 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}{{{motto|}}}{{{mottoes|}}}|mergedrow|mergedtoprow}} | data23 = {{#if:{{{anthem|}}}|{{#if:{{{anthem_link|}}}|[[{{{anthem_link|}}}|Anthem:]]|Anthem:}} {{{anthem}}}}} <!-- ***Map*** --> | rowclass24 = mergedtoprow | data24 = {{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}||{{#if:{{{image_map|}}} |{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault={{{image_sizedefault|250px}}}|upright={{{image_upright|}}}|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption">{{{map_caption}}}</div>}} }}}} | rowclass25 = mergedrow | data25 = {{#if:{{{image_map1|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map1}}}|size={{{mapsize1|}}}|sizedefault={{{image_sizedefault|250px}}}|upright={{{image_upright|}}}|alt={{{map_alt1|}}}|title={{{map_caption1|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption1|}}}|<div class="ib-settlement-caption">{{{map_caption1}}}</div>}} }} <!-- | data26 = {{#invoke:Infobox mapframe | autoWithCaption | onByDefault = {{#if:{{{mapQuery|}}}{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}|no|yes}} | mapframe-frame-width = 250 | mapframe-stroke-width = 2 | mapframe-zoom = 2 | mapframe-length_km = {{{length_km|}}} | mapframe-length_mi = {{{length_mi|}}} | mapframe-width_km = {{{width_km|}}} | mapframe-width_mi = {{{width_mi|}}} | mapframe-area_km2 = {{{area_total_km2|}}} | mapframe-area_ha = {{{area_total_ha|}}} | mapframe-area_acre = {{{area_total_acre|}}} | mapframe-area_sq_mi = {{{area_total_sq_mi|}}} | mapframe-type = city | mapframe-population = {{if empty|{{{population_metro|}}}|{{{population_total|}}}}} | mapframe-marker = town | mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}} }} --> | data27 = {{#invoke:MergedMap/settlement|main|{{{mapQuery|}}} |coordinates = {{{coordinates|{{#invoke:coordinates|coord2text|{{#:property:625}}}}}}} |label = {{{MergedMap_label|{{{label|{{PAGENAMEBASE}}}}}}}} |mapframeId = {{{mapframeId|{{#if:{{Get QID}}|{{Get QID}}|Q84}}}}} |mapframe-marker = city }} <!-- ***Pushpin Map*** --> <!-- | rowclass28 = mergedtoprow | data28 = {{#if:{{{pushpin_map_narrow|}}}||{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{#if:{{{image_map|}}}||{{{map_caption}}}}}}}}}}} |float = center |width = {{{pushpin_mapsize|}}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{#if:{{{name|}}}|{{{name}}}|{{{official_name|}}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map |position = {{{pushpin_label_position|}}} }} }} }} --> <!-- ***Coordinates*** --> | rowclass29 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|{{#if:{{{grid_position|}}}|mergedrow|mergedbottomrow}}}} | data29 = {{#if:{{{coordinates|}}} |Coordinates{{#if:{{{coor_pinpoint|{{{coor_type|}}}}}}|&#32;({{{coor_pinpoint|{{{coor_type|}}}}}})}}: {{#invoke:ISO 3166|geocoordinsert|nocat=true|1={{{coordinates|}}}|country={{{subdivision_name|}}}|subdivision1={{{subdivision_name1|}}}|subdivision2={{{subdivision_name2|}}}|subdivision3={{{subdivision_name3|}}}|type=city{{#if:{{{population_total|}}}|{{#iferror:{{#expr:{{formatnum:{{{population_total}}}|R}}+1}}||({{formatnum:{{replace|{{{population_total}}}|,|}}|R}})}}}} }}{{{coordinates_footnotes|}}} }} | rowclass30 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|mergedbottomrow|mergedrow}} | label30 = {{if empty|{{{grid_name|}}}|Grid&nbsp;position}} | data30 = {{{grid_position|}}} <!-- ***Subdivisions*** --> | rowclass31 = mergedtoprow | label31 = {{{subdivision_type}}} | data31 = {{#if:{{{subdivision_type|}}}|{{{subdivision_name|}}} }} | rowclass32 = mergedrow | label32 = {{{subdivision_type1}}} | data32 = {{#if:{{{subdivision_type1|}}}|{{{subdivision_name1|}}} }} | rowclass33 = mergedrow | label33 = {{{subdivision_type2}}} | data33 = {{#if:{{{subdivision_type2|}}}|{{{subdivision_name2|}}} }} | rowclass34 = mergedrow | label34 = {{{subdivision_type3}}} | data34 = {{#if:{{{subdivision_type3|}}}|{{{subdivision_name3|}}} }} | rowclass35 = mergedrow | label35 = {{{subdivision_type4}}} | data35 = {{#if:{{{subdivision_type4|}}}|{{{subdivision_name4|}}} }} | rowclass36 = mergedrow | label36 = {{{subdivision_type5}}} | data36 = {{#if:{{{subdivision_type5|}}}|{{{subdivision_name5|}}} }} | rowclass37 = mergedrow | label37 = {{{subdivision_type6}}} | data37 = {{#if:{{{subdivision_type6|}}}|{{{subdivision_name6|}}} }} <!--***Established*** --> | rowclass38 = mergedtoprow | label38 = {{if empty|{{{established_title|}}}|Established}} | data38 = {{{established_date|}}} | rowclass39 = mergedrow | label39 = {{{established_title1}}} | data39 = {{#if:{{{established_title1|}}}|{{{established_date1|}}} }} | rowclass40 = mergedrow | label40 = {{{established_title2}}} | data40 = {{#if:{{{established_title2|}}}|{{{established_date2|}}} }} | rowclass41 = mergedrow | label41 = {{{established_title3}}} | data41 = {{#if:{{{established_title3|}}}|{{{established_date3|}}} }} | rowclass42 = mergedrow | label42 = {{{established_title4}}} | data42 = {{#if:{{{established_title4|}}}|{{{established_date4|}}} }} | rowclass43 = mergedrow | label43 = {{{established_title5}}} | data43 = {{#if:{{{established_title5|}}}|{{{established_date5|}}} }} | rowclass44 = mergedrow | label44 = {{{established_title6}}} | data44 = {{#if:{{{established_title6|}}}|{{{established_date6|}}} }} | rowclass45 = mergedrow | label45 = {{{established_title7}}} | data45 = {{#if:{{{established_title7|}}}|{{{established_date7|}}} }} | rowclass46 = mergedrow | label46 = {{{extinct_title}}} | data46 = {{#if:{{{extinct_title|}}}|{{{extinct_date|}}} }} | rowclass47 = mergedrow | label47 = Founded by | data47 = {{{founder|}}} | rowclass48 = mergedrow | label48 = [[Namesake|Named after]] | data48 = {{{named_for|}}} <!-- ***Seat of government and subdivisions within the settlement*** --> | rowclass49 = mergedtoprow | label49 = {{#if:{{{seat_type|}}}|{{{seat_type}}}|Seat}} | data49 = {{{seat|}}} | rowclass50 = mergedrow | label50 = {{#if:{{{seat1_type|}}}|{{{seat1_type}}}|Former seat}} | data50 = {{{seat1|}}} | rowclass51 = mergedrow | label51 = {{#if:{{{seat2_type|}}}|{{{seat2_type}}}|Former seat}} | data51 = {{{seat2|}}} | rowclass52 = {{#if:{{{seat|}}}{{{seat1|}}}{{{seat2|}}}|mergedrow|mergedtoprow}} | label52 = {{#if:{{{parts_type|}}}|{{{parts_type}}}|Boroughs}} | data52 = {{#ifexpr:{{#invoke:params|with_name_matching|^p%d+$|count}} > 0 | {{#ifeq:{{{parts_style|}}}|para | {{#invoke:params|with_name_matching|^p%d+$|all_sorted|setting|h/i|{{#if:{{{parts|}}}|<b>{{{parts}}}&#58;&nbsp;</b>}}|, |list_values}} | {{#invoke:params|with_name_matching|^p%d+$|renaming_by_replacing|^p(%d+)$|%1|1|concat_and_call|Collapsible list | title = {{{parts|}}} | expand = {{#switch:{{{parts_style|}}}|coll=|list=y|#default={{#ifexpr:{{#invoke:params|with_name_matching|^p%d+$|count}} < 6|y}}}} }} }} | {{#if:{{{parts|}}} | {{#ifeq:{{{parts_style|}}}|para|<b>{{{parts}}}</b>|{{{parts}}}}} }} }} <!-- ***Government type and Leader*** --> | rowclass53 = mergedtoprow | header53 = {{#if:{{{government_type|}}}{{{governing_body|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{leader_name2|}}}{{{leader_name3|}}}{{{leader_name4|}}}|Government<div class="ib-settlement-fn">{{{government_footnotes|}}}</div>}} <!-- ***Government*** --> | rowclass54 = mergedrow | label54 = &nbsp;•&nbsp;Type | data54 = {{{government_type|}}} | rowclass55 = mergedrow | label55 = &nbsp;•&nbsp;Body | class55 = agent | data55 = {{{governing_body|}}} | rowclass56 = mergedrow | label56 = &nbsp;•&nbsp;{{{leader_title}}} | data56 = {{#if:{{{leader_title|}}}|{{{leader_name|}}} {{#if:{{{leader_party|}}}|({{Polparty|{{{subdivision_name}}}|{{{leader_party}}}}})}}}} | rowclass57 = mergedrow | label57 = &nbsp;•&nbsp;{{{leader_title1}}} | data57 = {{#if:{{{leader_title1|}}}|{{{leader_name1|}}}}} | rowclass58 = mergedrow | label58 = &nbsp;•&nbsp;{{{leader_title2}}} | data58 = {{#if:{{{leader_title2|}}}|{{{leader_name2|}}}}} | rowclass59 = mergedrow | label59 = &nbsp;•&nbsp;{{{leader_title3}}} | data59 = {{#if:{{{leader_title3|}}}|{{{leader_name3|}}}}} | rowclass60 = mergedrow | label60 = &nbsp;•&nbsp;{{{leader_title4}}} | data60 = {{#if:{{{leader_title4|}}}|{{{leader_name4|}}}}} | rowclass61 = mergedrow | label61 = &nbsp;•&nbsp;{{{leader_title5}}} | data61 = {{#if:{{{leader_title5|}}}|{{{leader_name5|}}}}} | rowclass62 = mergedrow | label62 = {{{government_blank1_title}}} | data62 = {{#if:{{{government_blank1|}}}|{{{government_blank1|}}}}} | rowclass63 = mergedrow | label63 = {{{government_blank2_title}}} | data63 = {{#if:{{{government_blank2|}}}|{{{government_blank2|}}}}} | rowclass64 = mergedrow | label64 = {{{government_blank3_title}}} | data64 = {{#if:{{{government_blank3|}}}|{{{government_blank3|}}}}} | rowclass65 = mergedrow | label65 = {{{government_blank4_title}}} | data65 = {{#if:{{{government_blank4|}}}|{{{government_blank4|}}}}} | rowclass66 = mergedrow | label66 = {{{government_blank5_title}}} | data66 = {{#if:{{{government_blank5|}}}|{{{government_blank5|}}}}} | rowclass67 = mergedrow | label67 = {{{government_blank6_title}}} | data67 = {{#if:{{{government_blank6|}}}|{{{government_blank6|}}}}} <!-- ***Geographical characteristics*** --> <!-- ***Area*** --> | rowclass68 = mergedtoprow | header68 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_rural_sq_mi|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_km2|}}}{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_metro_sq_mi|}}}{{{area_blank1_sq_mi|}}} |{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |<!-- displayed below --> |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> }} }} | rowclass69 = {{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}}|mergedtoprow|mergedrow}} | label69 = <div style="white-space:nowrap;">{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> |&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}|{{#if:{{{settlement_type|{{{type|}}}}}}|{{{settlement_type|{{{type}}}}}}|City}}|Total}}}} }}</div> | data69 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_total_km2|}}} |ha ={{{area_total_ha|}}} |acre ={{{area_total_acre|}}} |sqmi ={{{area_total_sq_mi|}}} |dunam={{{area_total_dunam|}}} |link ={{#switch:{{{dunam_link|}}}||on|total=on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass70 = mergedrow | label70 = &nbsp;•&nbsp;Land | data70 = {{#if:{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_land_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_land_km2|}}} |ha ={{{area_land_ha|}}} |acre ={{{area_land_acre|}}} |sqmi ={{{area_land_sq_mi|}}} |dunam={{{area_land_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|land|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass71 = mergedrow | label71 = &nbsp;•&nbsp;Water | data71 = {{#if:{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_water_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_water_km2|}}} |ha ={{{area_water_ha|}}} |acre ={{{area_water_acre|}}} |sqmi ={{{area_water_sq_mi|}}} |dunam={{{area_water_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|water|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }} {{#if:{{{area_water_percent|}}}| &nbsp;{{{area_water_percent}}}{{#ifeq:%|{{#invoke:string|sub|{{{area_water_percent|}}}|-1}}||%}}}}}} | rowclass72 = mergedrow | label72 = &nbsp;•&nbsp;Urban<div class="ib-settlement-fn">{{{area_urban_footnotes|}}}</div> | data72 = {{#if:{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_urban_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_urban_km2|}}} |ha ={{{area_urban_ha|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|urban|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass73 = mergedrow | label73 = &nbsp;•&nbsp;Rural<div class="ib-settlement-fn">{{{area_rural_footnotes|}}}</div> | data73 = {{#if:{{{area_rural_km2|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_sq_mi|}}}{{{area_rural_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_rural_km2|}}} |ha ={{{area_rural_ha|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|rural|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass74 = mergedrow | label74 =&nbsp;•&nbsp;Metro<div class="ib-settlement-fn">{{{area_metro_footnotes|}}}</div> | data74 = {{#if:{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_metro_sq_mi|}}}{{{area_metro_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_metro_km2|}}} |ha ={{{area_metro_ha|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|metro|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Area rank*** --> | rowclass75 = mergedrow | label75 = &nbsp;•&nbsp;Rank | data75 = {{{area_rank|}}} | rowclass76 = mergedrow | label76 = &nbsp;•&nbsp;{{{area_blank1_title}}} | data76 = {{#if:{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_blank1_sq_mi|}}}{{{area_blank1_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank1_km2|}}} |ha ={{{area_blank1_ha|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank1|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass77 = mergedrow | label77 = &nbsp;•&nbsp;{{{area_blank2_title}}} | data77 = {{#if:{{{area_blank2_km2|}}}{{{area_blank2_ha|}}}{{{area_blank2_acre|}}}{{{area_blank2_sq_mi|}}}{{{area_blank2_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank2_km2|}}} |ha ={{{area_blank2_ha|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank2|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass78 = mergedrow | label78 = &nbsp; | data78 = {{{area_note|}}} <!-- ***Dimensions*** --> | rowclass79 = mergedtoprow | header79 = {{#if:{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|Dimensions<div class="ib-settlement-fn">{{{dimensions_footnotes|}}}</div>}} | rowclass80 = mergedrow | label80 = &nbsp;•&nbsp;Length | data80 = {{#if:{{{length_km|}}}{{{length_mi|}}} | {{infobox_settlement/lengthdisp |km ={{{length_km|}}} |mi ={{{length_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass81 = mergedrow | label81 = &nbsp;•&nbsp;Width | data81 = {{#if:{{{width_km|}}}{{{width_mi|}}} |{{infobox_settlement/lengthdisp |km ={{{width_km|}}} |mi ={{{width_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation*** --> | rowclass82 = mergedtoprow | label82 = {{#if:{{{elevation_link|}}}|[[{{{elevation_link|}}}|Elevation]]|Elevation}}<div class="ib-settlement-fn">{{{elevation_footnotes|}}}{{#if:{{{elevation_point|}}}|&#32;({{{elevation_point}}})}}</div> | data82 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_m|}}} |ft ={{{elevation_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass83 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}}|mergedrow|mergedtoprow}} | label83 = Highest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_max_footnotes|}}}{{#if:{{{elevation_max_point|}}}|&#32;({{{elevation_max_point}}})}}</div> | data83 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_max_m|}}} |ft ={{{elevation_max_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation max rank*** --> | rowclass84 = mergedrow | label84 = &nbsp;•&nbsp;Rank | data84 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}}| {{{elevation_max_rank|}}} }} | rowclass85 = {{#if:{{{elevation_min_rank|}}}|mergedrow|mergedbottomrow}} | label85 = Lowest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_min_footnotes|}}}{{#if:{{{elevation_min_point|}}}|&#32;({{{elevation_min_point}}})}}</div> | data85 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_min_m|}}} |ft ={{{elevation_min_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation min rank*** --> | rowclass86 = mergedrow | label86 = &nbsp;•&nbsp;Rank | data86 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}}|{{{elevation_min_rank|}}}}} <!-- ***Population*** --> | rowclass87 = mergedtoprow | label87 = Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> | data87 = {{fix comma category|{{#ifeq:{{{total_type}}}|&nbsp; | {{#if:{{{population_total|}}} | {{formatnum:{{replace|{{{population_total}}}|,|}}}} }} }} }} | rowclass88 = mergedtoprow | header88 ={{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}}{{{population_urban|}}}{{{population_rural|}}}{{{population_metro|}}}{{{population_blank1|}}}{{{population_blank2|}}}{{{population_est|}}} |Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> }} }} | rowclass89 = mergedrow | label89 = <div style="white-space:nowrap;">&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}|{{#if:{{{settlement_type|{{{type|}}}}}}|{{{settlement_type|{{{type}}}}}}|City}}|Total}}}}</div> | data89 = {{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}} | {{fix comma category|{{formatnum:{{replace|{{{population_total}}}|,|}}}}}} }} }} | rowclass90 = mergedrow | label90 = <div style="white-space:nowrap;">&nbsp;•&nbsp;Estimate&nbsp;{{#if:{{{pop_est_as_of|}}}|<div class="ib-settlement-fn">({{{pop_est_as_of}}}){{{pop_est_footnotes|}}}</div>}}</div> | data90 = {{#if:{{{population_est|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_est}}}|,|}}}}}} }} <!-- ***Population rank*** --> | rowclass91 = mergedrow | label91 =&nbsp;•&nbsp;Rank | data91 = {{{population_rank|}}} | rowclass92 = mergedrow | label92 = &nbsp;•&nbsp;Density | data92 = {{#if:{{{population_density_km2|}}}{{{population_density_sq_mi|}}}{{{population_total|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_km2|}}} |/sqmi={{{population_density_sq_mi|}}} |pop ={{{population_total|}}} |dunam={{if empty|{{{area_land_dunam|}}}|{{{area_total_dunam|}}}}} |ha ={{if empty|{{{area_land_ha|}}}|{{{area_total_ha|}}}}} |km2 ={{if empty|{{{area_land_km2|}}}|{{{area_total_km2|}}}}} |acre ={{if empty|{{{area_land_acre|}}}|{{{area_total_acre|}}}}} |sqmi ={{if empty|{{{area_land_sq_mi|}}}|{{{area_total_sq_mi|}}}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Population density rank*** --> | rowclass93 = mergedrow | label93 = &nbsp;&nbsp;•&nbsp;Rank | data93 = {{{population_density_rank|}}} | rowclass94 = mergedrow | label94 = &nbsp;•&nbsp;[[Urban area|Urban]]<div class="ib-settlement-fn">{{{population_urban_footnotes|}}}</div> | data94 = {{#if:{{{population_urban|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_urban}}}|,|}}}}}} }} | rowclass95 = mergedrow | label95 = &nbsp;•&nbsp;Urban&nbsp;density | data95 = {{#if:{{{population_density_urban_km2|}}}{{{population_density_urban_sq_mi|}}}{{{population_urban|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_urban_km2|}}} |/sqmi={{{population_density_urban_sq_mi|}}} |pop ={{{population_urban|}}} |ha ={{{area_urban_ha|}}} |km2 ={{{area_urban_km2|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass96 = mergedrow | label96 = &nbsp;•&nbsp;[[Rural area|Rural]]<div class="ib-settlement-fn">{{{population_rural_footnotes|}}}</div> | data96 = {{#if:{{{population_rural|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_rural}}}|,|}}}}}}}} | rowclass97 = mergedrow | label97 = &nbsp;•&nbsp;Rural&nbsp;density | data97 = {{#if:{{{population_density_rural_km2|}}}{{{population_density_rural_sq_mi|}}}{{{population_rural|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_rural_km2|}}} |/sqmi={{{population_density_rural_sq_mi|}}} |pop ={{{population_rural|}}} |ha ={{{area_rural_ha|}}} |km2 ={{{area_rural_km2|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass98 = mergedrow | label98 =&nbsp;•&nbsp;[[Metropolitan area|Metro]]<div class="ib-settlement-fn">{{{population_metro_footnotes|}}}</div> | data98 = {{#if:{{{population_metro|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_metro}}}|,|}}}}}} }} | rowclass99 = mergedrow | label99 = &nbsp;•&nbsp;Metro&nbsp;density | data99 = {{#if:{{{population_density_metro_km2|}}}{{{population_density_metro_sq_mi|}}}{{{population_metro|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_metro_km2|}}} |/sqmi={{{population_density_metro_sq_mi|}}} |pop ={{{population_metro|}}} |ha ={{{area_metro_ha|}}} |km2 ={{{area_metro_km2|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass100 = mergedrow | label100 = &nbsp;•&nbsp;{{{population_blank1_title|}}}<div class="ib-settlement-fn">{{{population_blank1_footnotes|}}}</div> | data100 = {{#if:{{{population_blank1|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank1}}}|,|}}}}}}}} | rowclass101 = mergedrow | label101 = &nbsp;•&nbsp;{{#if:{{{population_blank1_title|}}}|{{{population_blank1_title}}} density|Density}} | data101 = {{#if:{{{population_density_blank1_km2|}}}{{{population_density_blank1_sq_mi|}}}{{{population_blank1|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank1_km2|}}} |/sqmi={{{population_density_blank1_sq_mi|}}} |pop ={{{population_blank1|}}} |ha ={{{area_blank1_ha|}}} |km2 ={{{area_blank1_km2|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass102 = mergedrow | label102 = &nbsp;•&nbsp;{{{population_blank2_title|}}}<div class="ib-settlement-fn">{{{population_blank2_footnotes|}}}</div> | data102 = {{#if:{{{population_blank2|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank2}}}|,|}}}}}}}} | rowclass103 = mergedrow | label103 = &nbsp;•&nbsp;{{#if:{{{population_blank2_title|}}}|{{{population_blank2_title}}} density|Density}} | data103 = {{#if:{{{population_density_blank2_km2|}}}{{{population_density_blank2_sq_mi|}}}{{{population_blank2|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank2_km2|}}} |/sqmi={{{population_density_blank2_sq_mi|}}} |pop ={{{population_blank2|}}} |ha ={{{area_blank2_ha|}}} |km2 ={{{area_blank2_km2|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass104 = mergedrow | label104 = &nbsp; | data104 = {{{population_note|}}} | rowclass105 = mergedtoprow | label105 = {{Pluralize from text|{{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}{{force plural}}}}|<!-- -->link=Demonym|singular=Demonym|likely=Demonym(s)|plural=Demonyms}} | data105 = {{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}}}{{Main other|{{Pluralize from text|{{{population_demonym|}}}|likely=[[Category:Pages using infobox settlement with possible demonym list]]}}}} <!-- ***Demographics 1*** --> | rowclass106 = mergedtoprow | header106 = {{#if:{{{demographics_type1|}}} |{{{demographics_type1}}}<div class="ib-settlement-fn">{{{demographics1_footnotes|}}}</div>}} | rowclass107 = mergedrow | label107 = &nbsp;•&nbsp;{{{demographics1_title1}}} | data107 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title1|}}}|{{{demographics1_info1|}}}}}}} | rowclass108 = mergedrow | label108 = &nbsp;•&nbsp;{{{demographics1_title2}}} | data108 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title2|}}}|{{{demographics1_info2|}}}}}}} | rowclass109 = mergedrow | label109 = &nbsp;•&nbsp;{{{demographics1_title3}}} | data109 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title3|}}}|{{{demographics1_info3|}}}}}}} | rowclass110 = mergedrow | label110 = &nbsp;•&nbsp;{{{demographics1_title4}}} | data110 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title4|}}}|{{{demographics1_info4|}}}}}}} | rowclass111 = mergedrow | label111 = &nbsp;•&nbsp;{{{demographics1_title5}}} | data111 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title5|}}}|{{{demographics1_info5|}}}}}}} | rowclass112 = mergedrow | label112 = &nbsp;•&nbsp;{{{demographics1_title6}}} | data112 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title6|}}}|{{{demographics1_info6|}}}}}}} | rowclass113 = mergedrow | label113 = &nbsp;•&nbsp;{{{demographics1_title7}}} | data113 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title7|}}}|{{{demographics1_info7|}}}}}}} | rowclass114 = mergedrow | label114 = &nbsp;•&nbsp;{{{demographics1_title8}}} | data114 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title8|}}}|{{{demographics1_info8|}}}}}}} | rowclass115 = mergedrow | label115 = &nbsp;•&nbsp;{{{demographics1_title9}}} | data115 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title9|}}}|{{{demographics1_info9|}}}}}}} | rowclass116 = mergedrow | label116 = &nbsp;•&nbsp;{{{demographics1_title10}}} | data116 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title10|}}}|{{{demographics1_info10|}}}}}}} <!-- ***Demographics 2*** --> | rowclass117 = mergedtoprow | header117 = {{#if:{{{demographics_type2|}}} |{{{demographics_type2}}}<div class="ib-settlement-fn">{{{demographics2_footnotes|}}}</div>}} | rowclass118 = mergedrow | label118 = &nbsp;•&nbsp;{{{demographics2_title1}}} | data118 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title1|}}}|{{{demographics2_info1|}}}}}}} | rowclass119 = mergedrow | label119 = &nbsp;•&nbsp;{{{demographics2_title2}}} | data119 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title2|}}}|{{{demographics2_info2|}}}}}}} | rowclass120 = mergedrow | label120 = &nbsp;•&nbsp;{{{demographics2_title3}}} | data120 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title3|}}}|{{{demographics2_info3|}}}}}}} | rowclass121 = mergedrow | label121 = &nbsp;•&nbsp;{{{demographics2_title4}}} | data121 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title4|}}}|{{{demographics2_info4|}}}}}}} | rowclass122 = mergedrow | label122 = &nbsp;•&nbsp;{{{demographics2_title5}}} | data122 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title5|}}}|{{{demographics2_info5|}}}}}}} | rowclass123 = mergedrow | label123 = &nbsp;•&nbsp;{{{demographics2_title6}}} | data123 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title6|}}}|{{{demographics2_info6|}}}}}}} | rowclass124 = mergedrow | label124 = &nbsp;•&nbsp;{{{demographics2_title7}}} | data124 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title7|}}}|{{{demographics2_info7|}}}}}}} | rowclass125 = mergedrow | label125 = &nbsp;•&nbsp;{{{demographics2_title8}}} | data125 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title8|}}}|{{{demographics2_info8|}}}}}}} | rowclass126 = mergedrow | label126 = &nbsp;•&nbsp;{{{demographics2_title9}}} | data126 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title9|}}}|{{{demographics2_info9|}}}}}}} | rowclass127 = mergedrow | label127 = &nbsp;•&nbsp;{{{demographics2_title10}}} | data127 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title10|}}}|{{{demographics2_info10|}}}}}}} <!-- ***Time Zones*** --> | rowclass128 = mergedtoprow | header128 = {{#if:{{{timezone1_location|}}}|{{#if:{{{timezone2|}}}|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]s|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]}}|}} | rowclass129 = {{#if:{{{timezone1_location|}}}|mergedrow|mergedtoprow}} | label129 = {{#if:{{{timezone1_location|}}}|{{{timezone1_location}}}|{{#if:{{{timezone2_location|}}}|{{{timezone2_location}}}|{{#if:{{{timezone2|}}}|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]s|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]}}}}}} | data129 = {{#if:{{{utc_offset1|{{{utc_offset|}}} }}} |[[UTC{{{utc_offset1|{{{utc_offset}}}}}}]] {{#if:{{{timezone1|{{{timezone|}}}}}}|({{{timezone1|{{{timezone}}}}}})}} |{{{timezone1|{{{timezone|}}}}}} }} | rowclass130 = mergedrow | label130 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data130 = {{#if:{{{utc_offset1_DST|{{{utc_offset_DST|}}}}}} |[[UTC{{{utc_offset1_DST|{{{utc_offset_DST|}}}}}}]] {{#if:{{{timezone1_DST|{{{timezone_DST|}}}}}}|({{{timezone1_DST|{{{timezone_DST}}}}}})}} |{{{timezone1_DST|{{{timezone_DST|}}}}}} }} | rowclass131 = mergedrow | label131 = {{#if:{{{timezone2_location|}}}| {{{timezone2_location|}}}|<nowiki />}} | data131 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset2|{{{utc_offset2|}}} }}} |[[UTC{{{utc_offset2|{{{utc_offset2}}}}}}]] {{#if:{{{timezone2|}}}|({{{timezone2}}})}} |{{{timezone2|}}} }} }} | rowclass132 = mergedrow | label132 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data132 = {{#if:{{{utc_offset2_DST|}}}|[[UTC{{{utc_offset2_DST|}}}]] {{#if:{{{timezone2_DST|}}}|({{{timezone2_DST|}}})}} |{{{timezone2_DST|}}} }} | rowclass133 = mergedrow | label133 = {{#if:{{{timezone3_location|}}}| {{{timezone3_location|}}}|<nowiki />}} | data133 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset3|{{{utc_offset3|}}} }}} |[[UTC{{{utc_offset3|{{{utc_offset3}}}}}}]] {{#if:{{{timezone3|}}}|({{{timezone3}}})}} |{{{timezone3|}}} }} }} | rowclass134 = mergedrow | label134 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data134 = {{#if:{{{utc_offset3_DST|}}}|[[UTC{{{utc_offset3_DST|}}}]] {{#if:{{{timezone3_DST|}}}|({{{timezone3_DST|}}})}} |{{{timezone3_DST|}}} }} | rowclass135 = mergedrow | label135 = {{#if:{{{timezone4_location|}}}| {{{timezone4_location|}}}|<nowiki />}} | data135 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset4|{{{utc_offset4|}}} }}} |[[UTC{{{utc_offset4|{{{utc_offset4}}}}}}]] {{#if:{{{timezone4|}}}|({{{timezone4}}})}} |{{{timezone4|}}} }} }} | rowclass136 = mergedrow | label136 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data136 = {{#if:{{{utc_offset4_DST|}}}|[[UTC{{{utc_offset4_DST|}}}]] {{#if:{{{timezone4_DST|}}}|({{{timezone4_DST|}}})}} |{{{timezone4_DST|}}} }} | rowclass137 = mergedrow | label137 = {{#if:{{{timezone5_location|}}}| {{{timezone5_location|}}}|<nowiki />}} | data137 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset5|{{{utc_offset5|}}} }}} |[[UTC{{{utc_offset5|{{{utc_offset5}}}}}}]] {{#if:{{{timezone5|}}}|({{{timezone5}}})}} |{{{timezone5|}}} }} }} | rowclass138 = mergedrow | label138 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data138 = {{#if:{{{utc_offset5_DST|}}}|[[UTC{{{utc_offset5_DST|}}}]] {{#if:{{{timezone5_DST|}}}|({{{timezone5_DST|}}})}} |{{{timezone5_DST|}}} }} <!-- ***Postal Code(s)*** --> | rowclass139 = mergedtoprow | label139 = {{if empty|{{{postal_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class139 = adr | data139 = {{#if:{{{postal_code|}}}|<div class="postal-code">{{{postal_code}}}</div>}} | rowclass140 = {{#if:{{{postal_code|}}}|mergedbottomrow|mergedtoprow}} | label140 = {{if empty|{{{postal2_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal2_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class140 = adr | data140 = {{#if:{{{postal2_code|}}}|<div class="postal-code">{{{postal2_code}}}</div>}} <!-- ***Area Code(s)*** --> | rowclass141 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}|mergedrow|mergedtoprow}} | label141 = {{if empty|{{{area_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{if empty|{{{area_code|}}}|{{{area_codes|}}}{{force plural}}}}|<!-- -->link=Telephone numbering plan|singular=Area code|likely=Area code(s)|plural=Area codes}}}} | data141 = {{if empty|{{{area_code|}}}|{{{area_codes|}}}}}{{#if:{{{area_code_type|}}}||{{Main other|{{Pluralize from text|any_comma=1|parse_links=1|{{{area_code|}}}|||[[Category:Pages using infobox settlement with possible area code list]]}}}}}} <!-- Geocode--> | rowclass142 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}|mergedrow|mergedtoprow}} | label142 = [[Geocode]] | class142 = nickname | data142 = {{{geocode|}}} <!-- ISO Code--> | rowclass143 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}|mergedrow|mergedtoprow}} | label143 = [[ISO 3166|ISO 3166 code]] | class143 = nickname | data143 = {{{iso_code|}}} <!-- Vehicle registration plate--> | rowclass144 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}|mergedrow|mergedtoprow}} | label144 = {{if empty|{{{registration_plate_type|}}}|[[Vehicle registration plate|Vehicle registration]]}} | data144 = {{{registration_plate|}}} <!-- Other codes --> | rowclass145 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}|mergedrow|mergedtoprow}} | label145 = {{{code1_name|}}} | class145 = nickname | data145 = {{#if:{{{code1_name|}}}|{{{code1_info|}}}}} | rowclass146 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}{{{code1_name|}}}|mergedrow|mergedtoprow}} | label146 = {{{code2_name|}}} | class146 = nickname | data146 = {{#if:{{{code2_name|}}}|{{{code2_info|}}}}} <!-- ***Blank Fields (two sections)*** --> | rowclass147 = mergedtoprow | label147 = {{{blank_name_sec1|{{{blank_name|}}}}}} | data147 = {{#if:{{{blank_name_sec1|{{{blank_name|}}}}}}|{{{blank_info_sec1|{{{blank_info|}}}}}}}} | rowclass148 = mergedrow | label148 = {{{blank1_name_sec1|{{{blank1_name|}}}}}} | data148 = {{#if:{{{blank1_name_sec1|{{{blank1_name|}}}}}}|{{{blank1_info_sec1|{{{blank1_info|}}}}}}}} | rowclass149 = mergedrow | label149 = {{{blank2_name_sec1|{{{blank2_name|}}}}}} | data149 = {{#if:{{{blank2_name_sec1|{{{blank2_name|}}}}}}|{{{blank2_info_sec1|{{{blank2_info|}}}}}}}} | rowclass150 = mergedrow | label150 = {{{blank3_name_sec1|{{{blank3_name|}}}}}} | data150 = {{#if:{{{blank3_name_sec1|{{{blank3_name|}}}}}}|{{{blank3_info_sec1|{{{blank3_info|}}}}}}}} | rowclass151 = mergedrow | label151 = {{{blank4_name_sec1|{{{blank4_name|}}}}}} | data151 = {{#if:{{{blank4_name_sec1|{{{blank4_name|}}}}}}|{{{blank4_info_sec1|{{{blank4_info|}}}}}}}} | rowclass152 = mergedrow | label152 = {{{blank5_name_sec1|{{{blank5_name|}}}}}} | data152 = {{#if:{{{blank5_name_sec1|{{{blank5_name|}}}}}}|{{{blank5_info_sec1|{{{blank5_info|}}}}}}}} | rowclass153 = mergedrow | label153 = {{{blank6_name_sec1|{{{blank6_name|}}}}}} | data153 = {{#if:{{{blank6_name_sec1|{{{blank6_name|}}}}}}|{{{blank6_info_sec1|{{{blank6_info|}}}}}}}} | rowclass154 = mergedrow | label154 = {{{blank7_name_sec1|{{{blank7_name|}}}}}} | data154 = {{#if:{{{blank7_name_sec1|{{{blank7_name|}}}}}}|{{{blank7_info_sec1|{{{blank7_info|}}}}}}}} | rowclass155 = mergedtoprow | label155 = {{{blank_name_sec2}}} | data155 = {{#if:{{{blank_name_sec2|}}}|{{{blank_info_sec2|}}}}} | rowclass156 = mergedrow | label156 = {{{blank1_name_sec2}}} | data156 = {{#if:{{{blank1_name_sec2|}}}|{{{blank1_info_sec2|}}}}} | rowclass157 = mergedrow | label157 = {{{blank2_name_sec2}}} | data157 = {{#if:{{{blank2_name_sec2|}}}|{{{blank2_info_sec2|}}}}} | rowclass158 = mergedrow | label158 = {{{blank3_name_sec2}}} | data158 = {{#if:{{{blank3_name_sec2|}}}|{{{blank3_info_sec2|}}}}} | rowclass159 = mergedrow | label159 = {{{blank4_name_sec2}}} | data159 = {{#if:{{{blank4_name_sec2|}}}|{{{blank4_info_sec2|}}}}} | rowclass160 = mergedrow | label160 = {{{blank5_name_sec2}}} | data160 = {{#if:{{{blank5_name_sec2|}}}|{{{blank5_info_sec2|}}}}} | rowclass161 = mergedrow | label161 = {{{blank6_name_sec2}}} | data161 = {{#if:{{{blank6_name_sec2|}}}|{{{blank6_info_sec2|}}}}} | rowclass162 = mergedrow | label162 = {{{blank7_name_sec2}}} | data162 = {{#if:{{{blank7_name_sec2|}}}|{{{blank7_info_sec2|}}}}} <!-- ***Website*** --> | rowclass163 = mergedtoprow | label163 = Website | data163 = {{#if:{{{website|}}}|{{{website}}}}} | class164 = maptable | data164 = {{#if:{{{module|}}}|{{{module}}}}} <!-- ***Footnotes*** --> | belowrowclass = mergedtoprow | below = {{{footnotes|}}} }}<!-- Check for unknowns -->{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview = Page using [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y | alt | anthem | anthem_link | area_blank1_acre | area_blank1_dunam | area_blank1_ha | area_blank1_km2 | area_blank1_sq_mi | area_blank1_title | area_blank2_acre | area_blank2_dunam | area_blank2_ha | area_blank2_km2 | area_blank2_sq_mi | area_blank2_title | area_code | area_code_type | area_codes | area_footnotes | area_land_acre | area_land_dunam | area_land_ha | area_land_km2 | area_land_sq_mi | area_metro_acre | area_metro_dunam | area_metro_footnotes | area_metro_ha | area_metro_km2 | area_metro_sq_mi | area_note | area_rank | area_rural_acre | area_rural_dunam | area_rural_footnotes | area_rural_ha | area_rural_km2 | area_rural_sq_mi | area_total_acre | area_total_dunam | area_total_ha | area_total_km2 | area_total_sq_mi | area_urban_acre | area_urban_dunam | area_urban_footnotes | area_urban_ha | area_urban_km2 | area_urban_sq_mi | area_water_acre | area_water_dunam | area_water_ha | area_water_km2 | area_water_percent | area_water_sq_mi | blank_emblem_alt | blank_emblem_link | blank_emblem_size | blank_emblem_type | blank_emblem_sizedefault | blank_emblem_upright | blank_info | blank_info_sec1 | blank_info_sec2 | blank_name | blank_name_sec1 | blank_name_sec2 | blank1_info | blank1_info_sec1 | blank1_info_sec2 | blank1_name | blank1_name_sec1 | blank1_name_sec2 | blank2_info | blank2_info_sec1 | blank2_info_sec2 | blank2_name | blank2_name_sec1 | blank2_name_sec2 | blank3_info | blank3_info_sec1 | blank3_info_sec2 | blank3_name | blank3_name_sec1 | blank3_name_sec2 | blank4_info | blank4_info_sec1 | blank4_info_sec2 | blank4_name | blank4_name_sec1 | blank4_name_sec2 | blank5_info | blank5_info_sec1 | blank5_info_sec2 | blank5_name | blank5_name_sec1 | blank5_name_sec2 | blank6_info | blank6_info_sec1 | blank6_info_sec2 | blank6_name | blank6_name_sec1 | blank6_name_sec2 | blank7_info | blank7_info_sec1 | blank7_info_sec2 | blank7_name | blank7_name_sec1 | blank7_name_sec2 | caption | code1_info | code1_name | code2_info | code2_name | coor_pinpoint | coor_type | coordinates | coordinates_footnotes | demographics_type1 | demographics_type2 | demographics1_footnotes | demographics1_info1 | demographics1_info10 | demographics1_info2 | demographics1_info3 | demographics1_info4 | demographics1_info5 | demographics1_info6 | demographics1_info7 | demographics1_info8 | demographics1_info9 | demographics1_title1 | demographics1_title10 | demographics1_title2 | demographics1_title3 | demographics1_title4 | demographics1_title5 | demographics1_title6 | demographics1_title7 | demographics1_title8 | demographics1_title9 | demographics2_footnotes | demographics2_info1 | demographics2_info10 | demographics2_info2 | demographics2_info3 | demographics2_info4 | demographics2_info5 | demographics2_info6 | demographics2_info7 | demographics2_info8 | demographics2_info9 | demographics2_title1 | demographics2_title10 | demographics2_title2 | demographics2_title3 | demographics2_title4 | demographics2_title5 | demographics2_title6 | demographics2_title7 | demographics2_title8 | demographics2_title9 | dimensions_footnotes | dunam_link | elevation_footnotes | elevation_ft | elevation_link | elevation_m | elevation_max_footnotes | elevation_max_ft | elevation_max_m | elevation_max_point | elevation_max_rank | elevation_min_footnotes | elevation_min_ft | elevation_min_m | elevation_min_point | elevation_min_rank | elevation_point | embed | established_date | established_date1 | established_date2 | established_date3 | established_date4 | established_date5 | established_date6 | established_date7 | established_title | established_title1 | established_title2 | established_title3 | established_title4 | established_title5 | established_title6 | established_title7 | etymology | extinct_date | extinct_title | flag_alt | flag_border | flag_link | flag_size | footnotes | founder | geocode | governing_body | government_footnotes | government_type | government_blank1_title | government_blank1 | government_blank2_title | government_blank2 | government_blank2_title | government_blank3 | government_blank3_title | government_blank3 | government_blank4_title | government_blank4 | government_blank5_title | government_blank5 | government_blank6_title | government_blank6 | grid_name | grid_position | image_alt | image_blank_emblem | image_caption | image_flag | image_map | image_map1 | image_seal | image_shield | image_size | image_skyline | imagesize | image_sizedefault | image_upright | mapQuery | iso_code | leader_name | leader_name1 | leader_name2 | leader_name3 | leader_name4 | leader_name5 | leader_party | leader_title | leader_title1 | leader_title2 | leader_title3 | leader_title4 | leader_title5 | length_km | length_mi | map_alt | map_alt1 | map_caption | map_caption1 | mapsize | mapsize1 | module | motto | motto_link | mottoes | name | named_for | native_name | native_name_lang | nickname | nickname_link | nicknames | official_name | other_name | p1 | p10 | p11 | p12 | p13 | p14 | p15 | p16 | p17 | p18 | p19 | p2 | p20 | p21 | p22 | p23 | p24 | p25 | p26 | p27 | p28 | p29 | p3 | p30 | p31 | p32 | p33 | p34 | p35 | p36 | p37 | p38 | p39 | p4 | p40 | p41 | p42 | p43 | p44 | p45 | p46 | p47 | p48 | p49 | p5 | p50 | p6 | p7 | p8 | p9 | parts | parts_style | parts_type | pop_est_as_of | pop_est_footnotes | population_as_of | population_blank1 | population_blank1_footnotes | population_blank1_title | population_blank2 | population_blank2_footnotes | population_blank2_title | population_demonym | population_demonyms | population_density_blank1_km2 | population_density_blank1_sq_mi | population_density_blank2_km2 | population_density_blank2_sq_mi | population_density_km2 | population_density_metro_km2 | population_density_metro_sq_mi | population_density_rank | population_density_rural_km2 | population_density_rural_sq_mi | population_density_sq_mi | population_density_urban_km2 | population_density_urban_sq_mi | population_est | population_footnotes | population_metro | population_metro_footnotes | population_note | population_rank | population_rural | population_rural_footnotes | population_total | population_urban | population_urban_footnotes | postal_code | postal_code_type | postal2_code | postal2_code_type | pushpin_image | pushpin_label | pushpin_label_position | pushpin_map | pushpin_map_alt | pushpin_map_caption | pushpin_map_caption_notsmall | pushpin_map_narrow | pushpin_mapsize | pushpin_outside | pushpin_overlay | pushpin_relief | registration_plate | registration_plate_type | seal_alt | seal_link | seal_size | seal_type | seat | seat_type | seat1 | seat1_type | seat2 | seat2_type | settlement_type | shield_alt | shield_link | shield_size | short_description <!--used by Module:Settlement short description-->| subdivision_name | subdivision_name1 | subdivision_name2 | subdivision_name3 | subdivision_name4 | subdivision_name5 | subdivision_name6 | subdivision_type | subdivision_type1 | subdivision_type2 | subdivision_type3 | subdivision_type4 | subdivision_type5 | subdivision_type6 | template_name | timezone | timezone_DST | timezone_link | timezone1 | timezone1_DST | timezone1_location | timezone2 | timezone2_DST | timezone2_location | timezone3 | timezone3_DST | timezone3_location | timezone4 | timezone4_DST | timezone4_location | timezone5 | timezone5_DST | timezone5_location | total_type | translit_lang1 | translit_lang1_info | translit_lang1_info1 | translit_lang1_info2 | translit_lang1_info3 | translit_lang1_info4 | translit_lang1_info5 | translit_lang1_info6 | translit_lang1_type | translit_lang1_type1 | translit_lang1_type2 | translit_lang1_type3 | translit_lang1_type4 | translit_lang1_type5 | translit_lang1_type6 | translit_lang2 | translit_lang2_info | translit_lang2_info1 | translit_lang2_info2 | translit_lang2_info3 | translit_lang2_info4 | translit_lang2_info5 | translit_lang2_info6 | translit_lang2_type | translit_lang2_type1 | translit_lang2_type2 | translit_lang2_type3 | translit_lang2_type4 | translit_lang2_type5 | translit_lang2_type6 | type | unit_pref | utc_offset | utc_offset_DST | utc_offset1 | utc_offset1_DST | utc_offset2 | utc_offset2_DST | utc_offset3 | utc_offset3_DST | utc_offset4 | utc_offset4_DST | utc_offset5 | utc_offset5_DST | website | width_km | width_mi }}<!-- -->{{#invoke:Check for conflicting parameters|check | template = [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] | cat = {{main other|Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with conflicting parameters}} | image_size; imagesize | image_alt; alt | image_caption; caption | settlement_type; type | utc_offset1; utc_offset | timezone1; timezone }}<!-- Wikidata -->{{#if:{{{coordinates_wikidata|}}}{{{wikidata|}}} |[[Category:Pages using infobox settlement with the wikidata parameter]] }}{{main other|<!-- Missing country -->{{#if:{{{subdivision_name|}}}||[[Category:Pages using infobox settlement with missing country]]}}<!-- No map -->{{#if:{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}||[[Category:Pages using infobox settlement with no map]]}}<!-- Image_map1 without image_map -->{{#if:{{{image_map1|}}}|{{#if:{{{image_map|}}}||[[Category:Pages using infobox settlement with image_map1 but not image_map]]}}}}<!-- No coordinates -->{{#if:{{{coordinates|}}}||[[Category:Pages using infobox settlement with no coordinates]]}}<!-- -->{{#if:{{{embed|}}}|[[Category:Pages using infobox settlement with embed]]}} }}<!-- Gathering information on over-use of maps -->{{#ifexpr:{{#invoke:ParameterCount|main|mapframe|image_map|image_map1|pushpin_map}} >2 |{{main other| [[Category:Pages using infobox settlement with potentially too many maps]]}}}}</includeonly><noinclude> {{documentation}} <!--Please add this template's categories to the /doc subpage, not here - thanks!--> </noinclude> 30palre80wzp6ye67fau6o3k96jb8yb Template:Infobox settlement/mergedmap/doc 10 7985 72829 72456 2026-06-30T21:30:52Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/mergedmap/doc]] para [[Template:Infokaixa fatin-koabitasaun/mergedmap/doc]]: localise 72455 wikitext text/x-wiki {{Documentation subpage}} {{notice|This is a temporary sandbox for testing of [[Module:MergedMap]] with {{tl|Infobox settlement}}.}} <includeonly>{{Sandbox other|| <!-- Categories below this line --> }}</includeonly> em6z75l5aaj7dlgchetole7ho576c93 72864 72829 2026-07-01T02:02:45Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/mergedmap/doc]] para o seu redirecionamento [[Template:Infobox settlement/mergedmap/doc]], suprimindo o primeiro: fixing 72455 wikitext text/x-wiki {{Documentation subpage}} {{notice|This is a temporary sandbox for testing of [[Module:MergedMap]] with {{tl|Infobox settlement}}.}} <includeonly>{{Sandbox other|| <!-- Categories below this line --> }}</includeonly> em6z75l5aaj7dlgchetole7ho576c93 Template:Infobox settlement/mergedmap1 10 7986 72831 72458 2026-06-30T21:30:52Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement/mergedmap1]] para [[Template:Infokaixa fatin-koabitasaun/mergedmap1]]: localise 72457 wikitext text/x-wiki <includeonly>{{main other|{{#invoke:Settlement short description|main}}|}}{{Infobox | child = {{yesno|{{{embed|}}}}} | bodyclass = ib-settlement vcard <!--** names, type, and transliterations ** --> | above = <div class="fn org">{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}</div> {{#if:{{{native_name|}}}|<div class="nickname ib-settlement-native" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}"}}>{{{native_name}}}</div>}}{{#if:{{{other_name|}}}|<div class="nickname ib-settlement-other-name">{{{other_name}}}</div>}} | subheader = {{#if:{{{settlement_type|{{{type|}}}}}}|<div class="category">{{{settlement_type|{{{type}}}}}}</div>}} | rowclass1 = mergedtoprow ib-settlement-official | data1 = {{#if:{{{name|}}}|{{{official_name|}}}}} <!-- ***Transliteration language 1*** --> | rowclass2 = mergedtoprow | header2 = {{#if:{{{translit_lang1|}}}|{{{translit_lang1}}}&nbsp;transcription(s)}} | rowclass3 = {{#if:{{{translit_lang1_type1|}}}|mergedrow|mergedbottomrow}} | label3 = &nbsp;•&nbsp;{{{translit_lang1_type}}} | data3 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type|}}}|{{{translit_lang1_info|}}}}}}} | rowclass4 = {{#if:{{{translit_lang1_type2|}}}|mergedrow|mergedbottomrow}} | label4 = &nbsp;•&nbsp;{{{translit_lang1_type1}}} | data4 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type1|}}}|{{{translit_lang1_info1|}}}}}}} | rowclass5 = {{#if:{{{translit_lang1_type3|}}}|mergedrow|mergedbottomrow}} | label5 =&nbsp;•&nbsp;{{{translit_lang1_type2}}} | data5 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type2|}}}|{{{translit_lang1_info2|}}}}}}} | rowclass6 = {{#if:{{{translit_lang1_type4|}}}|mergedrow|mergedbottomrow}} | label6 = &nbsp;•&nbsp;{{{translit_lang1_type3}}} | data6 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type3|}}}|{{{translit_lang1_info3|}}}}}}} | rowclass7 = {{#if:{{{translit_lang1_type5|}}}|mergedrow|mergedbottomrow}} | label7 = &nbsp;•&nbsp;{{{translit_lang1_type4}}} | data7 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type4|}}}|{{{translit_lang1_info4|}}}}}}} | rowclass8 = {{#if:{{{translit_lang1_type6|}}}|mergedrow|mergedbottomrow}} | label8 = &nbsp;•&nbsp;{{{translit_lang1_type5}}} | data8 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type5|}}}|{{{translit_lang1_info5|}}}}}}} | rowclass9 = mergedbottomrow | label9 = &nbsp;•&nbsp;{{{translit_lang1_type6}}} | data9 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type6|}}}|{{{translit_lang1_info6|}}}}}}} <!-- ***Transliteration language 2*** --> | rowclass10 = mergedtoprow | header10 = {{#if:{{{translit_lang2|}}}|{{{translit_lang2}}}&nbsp;transcription(s)}} | rowclass11 = {{#if:{{{translit_lang2_type1|}}}|mergedrow|mergedbottomrow}} | label11 = &nbsp;•&nbsp;{{{translit_lang2_type}}} | data11 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type|}}}|{{{translit_lang2_info|}}}}}}} | rowclass12 = {{#if:{{{translit_lang2_type2|}}}|mergedrow|mergedbottomrow}} | label12 = &nbsp;•&nbsp;{{{translit_lang2_type1}}} | data12 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type1|}}}|{{{translit_lang2_info1|}}}}}}} | rowclass13 = {{#if:{{{translit_lang2_type3|}}}|mergedrow|mergedbottomrow}} | label13 =&nbsp;•&nbsp;{{{translit_lang2_type2}}} | data13 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type2|}}}|{{{translit_lang2_info2|}}}}}}} | rowclass14 = {{#if:{{{translit_lang2_type4|}}}|mergedrow|mergedbottomrow}} | label14 = &nbsp;•&nbsp;{{{translit_lang2_type3}}} | data14 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type3|}}}|{{{translit_lang2_info3|}}}}}}} | rowclass15 = {{#if:{{{translit_lang2_type5|}}}|mergedrow|mergedbottomrow}} | label15 = &nbsp;•&nbsp;{{{translit_lang2_type4}}} | data15 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type4|}}}|{{{translit_lang2_info4|}}}}}}} | rowclass16 = {{#if:{{{translit_lang2_type6|}}}|mergedrow|mergedbottomrow}} | label16 = &nbsp;•&nbsp;{{{translit_lang2_type5}}} | data16 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type5|}}}|{{{translit_lang2_info5|}}}}}}} | rowclass17 = mergedbottomrow | label17 = &nbsp;•&nbsp;{{{translit_lang2_type6}}} | data17 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type6|}}}|{{{translit_lang2_info6|}}}}}}} <!-- end ** names, type, and transliterations ** --> <!-- ***Skyline Image*** --> | rowclass18 = mergedtoprow | data18 = {{#if:{{{image_skyline|}}}|<!-- -->{{#invoke:InfoboxImage|InfoboxImage<!-- -->|image={{{image_skyline|}}}<!-- -->|size={{if empty|{{{image_size|}}}|{{{imagesize|}}}}}|sizedefault={{{image_sizedefault|250px}}}|upright={{{image_upright|}}}<!-- -->|alt={{if empty|{{{image_alt|}}}|{{{alt|}}}}}<!-- -->|title={{if empty|{{{image_caption|}}}|{{{caption|}}}|{{{image_alt|}}}|{{{alt|}}}}}}}<!-- -->{{#if:{{{image_caption|}}}{{{caption|}}}|<div class="ib-settlement-caption">{{if empty|{{{image_caption|}}}|{{{caption|}}}}}</div>}} }} <!-- ***Flag, Seal, Shield and Coat of arms*** --> | rowclass19 = mergedtoprow | class19 = maptable | data19 = {{#if:{{{image_flag|}}}{{{image_seal|}}}{{{image_shield|}}}{{{image_blank_emblem|}}}{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}} |{{Infobox settlement/columns | 1 = {{#if:{{{image_flag|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_flag}}}|size={{{flag_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|125px|100x100px}}|border={{yesno |{{{flag_border|}}}|yes=yes|blank=yes}}|alt={{{flag_alt|}}}|title=Flag of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Flag|link={{{flag_link|}}}|name={{{official_name}}}}}</div>}} | 2 = {{#if:{{{image_seal|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_seal|}}}|size={{{seal_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{seal_alt|}}}|title=Official seal of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{seal_type|}}}|{{{seal_type}}}|Seal}}|link={{{seal_link|}}}|name={{{official_name}}}}}</div>}} | 3 = {{#if:{{{image_shield|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_shield|}}}||size={{{shield_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{shield_alt|}}}|title=Coat of arms of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Coat of arms|link={{{shield_link|}}}|name={{{official_name}}}}}</div>}} | 4 = {{#if:{{{image_blank_emblem|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_blank_emblem|}}}|size={{{blank_emblem_size|}}}|sizedefault={{{blank_emblem_sizedefault|{{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}}}}|upright={{{blank_emblem_upright|}}}|alt={{{blank_emblem_alt|}}}|title=Official logo of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{blank_emblem_type|}}}|{{{blank_emblem_type}}}}}|link={{{blank_emblem_link|}}}|name={{{official_name}}}}}</div>}} | 5 = {{#if:{{{image_map|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=100x100px|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption-link">{{{map_caption}}}</div>}}}} | 0 = {{#if:{{{pushpin_map_narrow|}}}|{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{{map_caption}}}}}}}}} |float = center |width = {{#if:{{{pushpin_mapsize|}}}|{{{pushpin_mapsize}}}|150}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map --> |position = {{{pushpin_label_position|}}} }} }} }} }} }} <!-- ***Etymology*** --> | rowclass20 = mergedtoprow | data20 = {{#if:{{{etymology|}}}|Etymology: {{{etymology}}} }} <!-- ***Nickname*** --> | rowclass21 = {{#if:{{{etymology|}}}|mergedrow|mergedtoprow}} | data21 = {{#if:{{{nickname|}}}{{{nicknames|}}}|<!-- -->{{Pluralize from text|parse_links=1|{{if empty|{{{nickname|}}}|{{{nicknames|}}}{{force plural}}}}|<!-- -->link={{{nickname_link|}}}|singular=Nickname|likely=Nickname(s)|plural=Nicknames}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{nickname|}}}|{{{nicknames|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|parse_links=1|{{{nickname|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible nickname list]]}}}}}} <!-- ***Motto*** --> | rowclass22 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}|mergedrow|mergedtoprow}} | data22 = {{#if:{{{motto|}}}{{{mottoes|}}}|<!-- -->{{Pluralize from text|{{if empty|{{{motto|}}}|{{{mottoes|}}}{{force plural}}}}|<!-- -->link={{{motto_link|}}}|singular=Motto|likely=Motto(s)|plural=Mottoes}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{motto|}}}|{{{mottoes|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|{{{motto|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible motto list]]}}}}}} <!-- ***Anthem*** --> | rowclass23 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}{{{motto|}}}{{{mottoes|}}}|mergedrow|mergedtoprow}} | data23 = {{#if:{{{anthem|}}}|{{#if:{{{anthem_link|}}}|[[{{{anthem_link|}}}|Anthem:]]|Anthem:}} {{{anthem}}}}} <!-- ***Map*** --> | rowclass24 = mergedtoprow | data24 = {{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}||{{#if:{{{image_map|}}} |{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault={{{image_sizedefault|250px}}}|upright={{{image_upright|}}}|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption">{{{map_caption}}}</div>}} }}}} | rowclass25 = mergedrow | data25 = {{#if:{{{image_map1|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map1}}}|size={{{mapsize1|}}}|sizedefault={{{image_sizedefault|250px}}}|upright={{{image_upright|}}}|alt={{{map_alt1|}}}|title={{{map_caption1|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption1|}}}|<div class="ib-settlement-caption">{{{map_caption1}}}</div>}} }} <!-- | data26 = {{#invoke:Infobox mapframe | autoWithCaption | onByDefault = {{#if:{{{mapQuery|}}}{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}|no|yes}} | mapframe-frame-width = 250 | mapframe-stroke-width = 2 | mapframe-zoom = 2 | mapframe-length_km = {{{length_km|}}} | mapframe-length_mi = {{{length_mi|}}} | mapframe-width_km = {{{width_km|}}} | mapframe-width_mi = {{{width_mi|}}} | mapframe-area_km2 = {{{area_total_km2|}}} | mapframe-area_ha = {{{area_total_ha|}}} | mapframe-area_acre = {{{area_total_acre|}}} | mapframe-area_sq_mi = {{{area_total_sq_mi|}}} | mapframe-type = city | mapframe-population = {{if empty|{{{population_metro|}}}|{{{population_total|}}}}} | mapframe-marker = town | mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}} }} --> | data27 = {{#invoke:MergedMap/settlement|main|{{{mapQuery|}}} |coordinates = {{{coordinates|{{#invoke:coordinates|coord2text|{{#:property:625}}}}}}} |label = {{{MergedMap_label|{{{label|{{PAGENAMEBASE}}}}}}}} |mapframeId = {{{mapframeId|{{#if:{{Get QID}}|{{Get QID}}|Q84}}}}} |mapframe-marker = city }} <!-- ***Pushpin Map*** --> <!-- | rowclass28 = mergedtoprow | data28 = {{#if:{{{pushpin_map_narrow|}}}||{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{#if:{{{image_map|}}}||{{{map_caption}}}}}}}}}}} |float = center |width = {{{pushpin_mapsize|}}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{#if:{{{name|}}}|{{{name}}}|{{{official_name|}}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map |position = {{{pushpin_label_position|}}} }} }} }} --> <!-- ***Coordinates*** --> | rowclass29 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|{{#if:{{{grid_position|}}}|mergedrow|mergedbottomrow}}}} | data29 = {{#if:{{{coordinates|}}} |Coordinates{{#if:{{{coor_pinpoint|{{{coor_type|}}}}}}|&#32;({{{coor_pinpoint|{{{coor_type|}}}}}})}}: {{#invoke:ISO 3166|geocoordinsert|nocat=true|1={{{coordinates|}}}|country={{{subdivision_name|}}}|subdivision1={{{subdivision_name1|}}}|subdivision2={{{subdivision_name2|}}}|subdivision3={{{subdivision_name3|}}}|type=city{{#if:{{{population_total|}}}|{{#iferror:{{#expr:{{formatnum:{{{population_total}}}|R}}+1}}||({{formatnum:{{replace|{{{population_total}}}|,|}}|R}})}}}} }}{{{coordinates_footnotes|}}} }} | rowclass30 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|mergedbottomrow|mergedrow}} | label30 = {{if empty|{{{grid_name|}}}|Grid&nbsp;position}} | data30 = {{{grid_position|}}} <!-- ***Subdivisions*** --> | rowclass31 = mergedtoprow | label31 = {{{subdivision_type}}} | data31 = {{#if:{{{subdivision_type|}}}|{{{subdivision_name|}}} }} | rowclass32 = mergedrow | label32 = {{{subdivision_type1}}} | data32 = {{#if:{{{subdivision_type1|}}}|{{{subdivision_name1|}}} }} | rowclass33 = mergedrow | label33 = {{{subdivision_type2}}} | data33 = {{#if:{{{subdivision_type2|}}}|{{{subdivision_name2|}}} }} | rowclass34 = mergedrow | label34 = {{{subdivision_type3}}} | data34 = {{#if:{{{subdivision_type3|}}}|{{{subdivision_name3|}}} }} | rowclass35 = mergedrow | label35 = {{{subdivision_type4}}} | data35 = {{#if:{{{subdivision_type4|}}}|{{{subdivision_name4|}}} }} | rowclass36 = mergedrow | label36 = {{{subdivision_type5}}} | data36 = {{#if:{{{subdivision_type5|}}}|{{{subdivision_name5|}}} }} | rowclass37 = mergedrow | label37 = {{{subdivision_type6}}} | data37 = {{#if:{{{subdivision_type6|}}}|{{{subdivision_name6|}}} }} <!--***Established*** --> | rowclass38 = mergedtoprow | label38 = {{if empty|{{{established_title|}}}|Established}} | data38 = {{{established_date|}}} | rowclass39 = mergedrow | label39 = {{{established_title1}}} | data39 = {{#if:{{{established_title1|}}}|{{{established_date1|}}} }} | rowclass40 = mergedrow | label40 = {{{established_title2}}} | data40 = {{#if:{{{established_title2|}}}|{{{established_date2|}}} }} | rowclass41 = mergedrow | label41 = {{{established_title3}}} | data41 = {{#if:{{{established_title3|}}}|{{{established_date3|}}} }} | rowclass42 = mergedrow | label42 = {{{established_title4}}} | data42 = {{#if:{{{established_title4|}}}|{{{established_date4|}}} }} | rowclass43 = mergedrow | label43 = {{{established_title5}}} | data43 = {{#if:{{{established_title5|}}}|{{{established_date5|}}} }} | rowclass44 = mergedrow | label44 = {{{established_title6}}} | data44 = {{#if:{{{established_title6|}}}|{{{established_date6|}}} }} | rowclass45 = mergedrow | label45 = {{{established_title7}}} | data45 = {{#if:{{{established_title7|}}}|{{{established_date7|}}} }} | rowclass46 = mergedrow | label46 = {{{extinct_title}}} | data46 = {{#if:{{{extinct_title|}}}|{{{extinct_date|}}} }} | rowclass47 = mergedrow | label47 = Founded by | data47 = {{{founder|}}} | rowclass48 = mergedrow | label48 = [[Namesake|Named after]] | data48 = {{{named_for|}}} <!-- ***Seat of government and subdivisions within the settlement*** --> | rowclass49 = mergedtoprow | label49 = {{#if:{{{seat_type|}}}|{{{seat_type}}}|Seat}} | data49 = {{{seat|}}} | rowclass50 = mergedrow | label50 = {{#if:{{{seat1_type|}}}|{{{seat1_type}}}|Former seat}} | data50 = {{{seat1|}}} | rowclass51 = mergedrow | label51 = {{#if:{{{seat2_type|}}}|{{{seat2_type}}}|Former seat}} | data51 = {{{seat2|}}} | rowclass52 = {{#if:{{{seat|}}}{{{seat1|}}}{{{seat2|}}}|mergedrow|mergedtoprow}} | label52 = {{#if:{{{parts_type|}}}|{{{parts_type}}}|Boroughs}} | data52 = {{#ifexpr:{{#invoke:params|with_name_matching|^p%d+$|count}} > 0 | {{#ifeq:{{{parts_style|}}}|para | {{#invoke:params|with_name_matching|^p%d+$|all_sorted|setting|h/i|{{#if:{{{parts|}}}|<b>{{{parts}}}&#58;&nbsp;</b>}}|, |list_values}} | {{#invoke:params|with_name_matching|^p%d+$|renaming_by_replacing|^p(%d+)$|%1|1|concat_and_call|Collapsible list | title = {{{parts|}}} | expand = {{#switch:{{{parts_style|}}}|coll=|list=y|#default={{#ifexpr:{{#invoke:params|with_name_matching|^p%d+$|count}} < 6|y}}}} }} }} | {{#if:{{{parts|}}} | {{#ifeq:{{{parts_style|}}}|para|<b>{{{parts}}}</b>|{{{parts}}}}} }} }} <!-- ***Government type and Leader*** --> | rowclass53 = mergedtoprow | header53 = {{#if:{{{government_type|}}}{{{governing_body|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{leader_name2|}}}{{{leader_name3|}}}{{{leader_name4|}}}|Government<div class="ib-settlement-fn">{{{government_footnotes|}}}</div>}} <!-- ***Government*** --> | rowclass54 = mergedrow | label54 = &nbsp;•&nbsp;Type | data54 = {{{government_type|}}} | rowclass55 = mergedrow | label55 = &nbsp;•&nbsp;Body | class55 = agent | data55 = {{{governing_body|}}} | rowclass56 = mergedrow | label56 = &nbsp;•&nbsp;{{{leader_title}}} | data56 = {{#if:{{{leader_title|}}}|{{{leader_name|}}} {{#if:{{{leader_party|}}}|({{Polparty|{{{subdivision_name}}}|{{{leader_party}}}}})}}}} | rowclass57 = mergedrow | label57 = &nbsp;•&nbsp;{{{leader_title1}}} | data57 = {{#if:{{{leader_title1|}}}|{{{leader_name1|}}}}} | rowclass58 = mergedrow | label58 = &nbsp;•&nbsp;{{{leader_title2}}} | data58 = {{#if:{{{leader_title2|}}}|{{{leader_name2|}}}}} | rowclass59 = mergedrow | label59 = &nbsp;•&nbsp;{{{leader_title3}}} | data59 = {{#if:{{{leader_title3|}}}|{{{leader_name3|}}}}} | rowclass60 = mergedrow | label60 = &nbsp;•&nbsp;{{{leader_title4}}} | data60 = {{#if:{{{leader_title4|}}}|{{{leader_name4|}}}}} | rowclass61 = mergedrow | label61 = &nbsp;•&nbsp;{{{leader_title5}}} | data61 = {{#if:{{{leader_title5|}}}|{{{leader_name5|}}}}} | rowclass62 = mergedrow | label62 = {{{government_blank1_title}}} | data62 = {{#if:{{{government_blank1|}}}|{{{government_blank1|}}}}} | rowclass63 = mergedrow | label63 = {{{government_blank2_title}}} | data63 = {{#if:{{{government_blank2|}}}|{{{government_blank2|}}}}} | rowclass64 = mergedrow | label64 = {{{government_blank3_title}}} | data64 = {{#if:{{{government_blank3|}}}|{{{government_blank3|}}}}} | rowclass65 = mergedrow | label65 = {{{government_blank4_title}}} | data65 = {{#if:{{{government_blank4|}}}|{{{government_blank4|}}}}} | rowclass66 = mergedrow | label66 = {{{government_blank5_title}}} | data66 = {{#if:{{{government_blank5|}}}|{{{government_blank5|}}}}} | rowclass67 = mergedrow | label67 = {{{government_blank6_title}}} | data67 = {{#if:{{{government_blank6|}}}|{{{government_blank6|}}}}} <!-- ***Geographical characteristics*** --> <!-- ***Area*** --> | rowclass68 = mergedtoprow | header68 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_rural_sq_mi|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_km2|}}}{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_metro_sq_mi|}}}{{{area_blank1_sq_mi|}}} |{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |<!-- displayed below --> |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> }} }} | rowclass69 = {{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}}|mergedtoprow|mergedrow}} | label69 = <div style="white-space:nowrap;">{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> |&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}|{{#if:{{{settlement_type|{{{type|}}}}}}|{{{settlement_type|{{{type}}}}}}|City}}|Total}}}} }}</div> | data69 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_total_km2|}}} |ha ={{{area_total_ha|}}} |acre ={{{area_total_acre|}}} |sqmi ={{{area_total_sq_mi|}}} |dunam={{{area_total_dunam|}}} |link ={{#switch:{{{dunam_link|}}}||on|total=on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass70 = mergedrow | label70 = &nbsp;•&nbsp;Land | data70 = {{#if:{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_land_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_land_km2|}}} |ha ={{{area_land_ha|}}} |acre ={{{area_land_acre|}}} |sqmi ={{{area_land_sq_mi|}}} |dunam={{{area_land_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|land|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass71 = mergedrow | label71 = &nbsp;•&nbsp;Water | data71 = {{#if:{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_water_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_water_km2|}}} |ha ={{{area_water_ha|}}} |acre ={{{area_water_acre|}}} |sqmi ={{{area_water_sq_mi|}}} |dunam={{{area_water_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|water|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }} {{#if:{{{area_water_percent|}}}| &nbsp;{{{area_water_percent}}}{{#ifeq:%|{{#invoke:string|sub|{{{area_water_percent|}}}|-1}}||%}}}}}} | rowclass72 = mergedrow | label72 = &nbsp;•&nbsp;Urban<div class="ib-settlement-fn">{{{area_urban_footnotes|}}}</div> | data72 = {{#if:{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_urban_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_urban_km2|}}} |ha ={{{area_urban_ha|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|urban|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass73 = mergedrow | label73 = &nbsp;•&nbsp;Rural<div class="ib-settlement-fn">{{{area_rural_footnotes|}}}</div> | data73 = {{#if:{{{area_rural_km2|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_sq_mi|}}}{{{area_rural_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_rural_km2|}}} |ha ={{{area_rural_ha|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|rural|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass74 = mergedrow | label74 =&nbsp;•&nbsp;Metro<div class="ib-settlement-fn">{{{area_metro_footnotes|}}}</div> | data74 = {{#if:{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_metro_sq_mi|}}}{{{area_metro_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_metro_km2|}}} |ha ={{{area_metro_ha|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|metro|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Area rank*** --> | rowclass75 = mergedrow | label75 = &nbsp;•&nbsp;Rank | data75 = {{{area_rank|}}} | rowclass76 = mergedrow | label76 = &nbsp;•&nbsp;{{{area_blank1_title}}} | data76 = {{#if:{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_blank1_sq_mi|}}}{{{area_blank1_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank1_km2|}}} |ha ={{{area_blank1_ha|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank1|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass77 = mergedrow | label77 = &nbsp;•&nbsp;{{{area_blank2_title}}} | data77 = {{#if:{{{area_blank2_km2|}}}{{{area_blank2_ha|}}}{{{area_blank2_acre|}}}{{{area_blank2_sq_mi|}}}{{{area_blank2_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank2_km2|}}} |ha ={{{area_blank2_ha|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank2|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass78 = mergedrow | label78 = &nbsp; | data78 = {{{area_note|}}} <!-- ***Dimensions*** --> | rowclass79 = mergedtoprow | header79 = {{#if:{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|Dimensions<div class="ib-settlement-fn">{{{dimensions_footnotes|}}}</div>}} | rowclass80 = mergedrow | label80 = &nbsp;•&nbsp;Length | data80 = {{#if:{{{length_km|}}}{{{length_mi|}}} | {{infobox_settlement/lengthdisp |km ={{{length_km|}}} |mi ={{{length_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass81 = mergedrow | label81 = &nbsp;•&nbsp;Width | data81 = {{#if:{{{width_km|}}}{{{width_mi|}}} |{{infobox_settlement/lengthdisp |km ={{{width_km|}}} |mi ={{{width_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation*** --> | rowclass82 = mergedtoprow | label82 = {{#if:{{{elevation_link|}}}|[[{{{elevation_link|}}}|Elevation]]|Elevation}}<div class="ib-settlement-fn">{{{elevation_footnotes|}}}{{#if:{{{elevation_point|}}}|&#32;({{{elevation_point}}})}}</div> | data82 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_m|}}} |ft ={{{elevation_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass83 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}}|mergedrow|mergedtoprow}} | label83 = Highest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_max_footnotes|}}}{{#if:{{{elevation_max_point|}}}|&#32;({{{elevation_max_point}}})}}</div> | data83 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_max_m|}}} |ft ={{{elevation_max_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation max rank*** --> | rowclass84 = mergedrow | label84 = &nbsp;•&nbsp;Rank | data84 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}}| {{{elevation_max_rank|}}} }} | rowclass85 = {{#if:{{{elevation_min_rank|}}}|mergedrow|mergedbottomrow}} | label85 = Lowest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_min_footnotes|}}}{{#if:{{{elevation_min_point|}}}|&#32;({{{elevation_min_point}}})}}</div> | data85 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_min_m|}}} |ft ={{{elevation_min_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation min rank*** --> | rowclass86 = mergedrow | label86 = &nbsp;•&nbsp;Rank | data86 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}}|{{{elevation_min_rank|}}}}} <!-- ***Population*** --> | rowclass87 = mergedtoprow | label87 = Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> | data87 = {{fix comma category|{{#ifeq:{{{total_type}}}|&nbsp; | {{#if:{{{population_total|}}} | {{formatnum:{{replace|{{{population_total}}}|,|}}}} }} }} }} | rowclass88 = mergedtoprow | header88 ={{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}}{{{population_urban|}}}{{{population_rural|}}}{{{population_metro|}}}{{{population_blank1|}}}{{{population_blank2|}}}{{{population_est|}}} |Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> }} }} | rowclass89 = mergedrow | label89 = <div style="white-space:nowrap;">&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}|{{#if:{{{settlement_type|{{{type|}}}}}}|{{{settlement_type|{{{type}}}}}}|City}}|Total}}}}</div> | data89 = {{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}} | {{fix comma category|{{formatnum:{{replace|{{{population_total}}}|,|}}}}}} }} }} | rowclass90 = mergedrow | label90 = <div style="white-space:nowrap;">&nbsp;•&nbsp;Estimate&nbsp;{{#if:{{{pop_est_as_of|}}}|<div class="ib-settlement-fn">({{{pop_est_as_of}}}){{{pop_est_footnotes|}}}</div>}}</div> | data90 = {{#if:{{{population_est|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_est}}}|,|}}}}}} }} <!-- ***Population rank*** --> | rowclass91 = mergedrow | label91 =&nbsp;•&nbsp;Rank | data91 = {{{population_rank|}}} | rowclass92 = mergedrow | label92 = &nbsp;•&nbsp;Density | data92 = {{#if:{{{population_density_km2|}}}{{{population_density_sq_mi|}}}{{{population_total|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_km2|}}} |/sqmi={{{population_density_sq_mi|}}} |pop ={{{population_total|}}} |dunam={{if empty|{{{area_land_dunam|}}}|{{{area_total_dunam|}}}}} |ha ={{if empty|{{{area_land_ha|}}}|{{{area_total_ha|}}}}} |km2 ={{if empty|{{{area_land_km2|}}}|{{{area_total_km2|}}}}} |acre ={{if empty|{{{area_land_acre|}}}|{{{area_total_acre|}}}}} |sqmi ={{if empty|{{{area_land_sq_mi|}}}|{{{area_total_sq_mi|}}}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Population density rank*** --> | rowclass93 = mergedrow | label93 = &nbsp;&nbsp;•&nbsp;Rank | data93 = {{{population_density_rank|}}} | rowclass94 = mergedrow | label94 = &nbsp;•&nbsp;[[Urban area|Urban]]<div class="ib-settlement-fn">{{{population_urban_footnotes|}}}</div> | data94 = {{#if:{{{population_urban|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_urban}}}|,|}}}}}} }} | rowclass95 = mergedrow | label95 = &nbsp;•&nbsp;Urban&nbsp;density | data95 = {{#if:{{{population_density_urban_km2|}}}{{{population_density_urban_sq_mi|}}}{{{population_urban|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_urban_km2|}}} |/sqmi={{{population_density_urban_sq_mi|}}} |pop ={{{population_urban|}}} |ha ={{{area_urban_ha|}}} |km2 ={{{area_urban_km2|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass96 = mergedrow | label96 = &nbsp;•&nbsp;[[Rural area|Rural]]<div class="ib-settlement-fn">{{{population_rural_footnotes|}}}</div> | data96 = {{#if:{{{population_rural|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_rural}}}|,|}}}}}}}} | rowclass97 = mergedrow | label97 = &nbsp;•&nbsp;Rural&nbsp;density | data97 = {{#if:{{{population_density_rural_km2|}}}{{{population_density_rural_sq_mi|}}}{{{population_rural|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_rural_km2|}}} |/sqmi={{{population_density_rural_sq_mi|}}} |pop ={{{population_rural|}}} |ha ={{{area_rural_ha|}}} |km2 ={{{area_rural_km2|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass98 = mergedrow | label98 =&nbsp;•&nbsp;[[Metropolitan area|Metro]]<div class="ib-settlement-fn">{{{population_metro_footnotes|}}}</div> | data98 = {{#if:{{{population_metro|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_metro}}}|,|}}}}}} }} | rowclass99 = mergedrow | label99 = &nbsp;•&nbsp;Metro&nbsp;density | data99 = {{#if:{{{population_density_metro_km2|}}}{{{population_density_metro_sq_mi|}}}{{{population_metro|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_metro_km2|}}} |/sqmi={{{population_density_metro_sq_mi|}}} |pop ={{{population_metro|}}} |ha ={{{area_metro_ha|}}} |km2 ={{{area_metro_km2|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass100 = mergedrow | label100 = &nbsp;•&nbsp;{{{population_blank1_title|}}}<div class="ib-settlement-fn">{{{population_blank1_footnotes|}}}</div> | data100 = {{#if:{{{population_blank1|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank1}}}|,|}}}}}}}} | rowclass101 = mergedrow | label101 = &nbsp;•&nbsp;{{#if:{{{population_blank1_title|}}}|{{{population_blank1_title}}} density|Density}} | data101 = {{#if:{{{population_density_blank1_km2|}}}{{{population_density_blank1_sq_mi|}}}{{{population_blank1|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank1_km2|}}} |/sqmi={{{population_density_blank1_sq_mi|}}} |pop ={{{population_blank1|}}} |ha ={{{area_blank1_ha|}}} |km2 ={{{area_blank1_km2|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass102 = mergedrow | label102 = &nbsp;•&nbsp;{{{population_blank2_title|}}}<div class="ib-settlement-fn">{{{population_blank2_footnotes|}}}</div> | data102 = {{#if:{{{population_blank2|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank2}}}|,|}}}}}}}} | rowclass103 = mergedrow | label103 = &nbsp;•&nbsp;{{#if:{{{population_blank2_title|}}}|{{{population_blank2_title}}} density|Density}} | data103 = {{#if:{{{population_density_blank2_km2|}}}{{{population_density_blank2_sq_mi|}}}{{{population_blank2|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank2_km2|}}} |/sqmi={{{population_density_blank2_sq_mi|}}} |pop ={{{population_blank2|}}} |ha ={{{area_blank2_ha|}}} |km2 ={{{area_blank2_km2|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass104 = mergedrow | label104 = &nbsp; | data104 = {{{population_note|}}} | rowclass105 = mergedtoprow | label105 = {{Pluralize from text|{{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}{{force plural}}}}|<!-- -->link=Demonym|singular=Demonym|likely=Demonym(s)|plural=Demonyms}} | data105 = {{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}}}{{Main other|{{Pluralize from text|{{{population_demonym|}}}|likely=[[Category:Pages using infobox settlement with possible demonym list]]}}}} <!-- ***Demographics 1*** --> | rowclass106 = mergedtoprow | header106 = {{#if:{{{demographics_type1|}}} |{{{demographics_type1}}}<div class="ib-settlement-fn">{{{demographics1_footnotes|}}}</div>}} | rowclass107 = mergedrow | label107 = &nbsp;•&nbsp;{{{demographics1_title1}}} | data107 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title1|}}}|{{{demographics1_info1|}}}}}}} | rowclass108 = mergedrow | label108 = &nbsp;•&nbsp;{{{demographics1_title2}}} | data108 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title2|}}}|{{{demographics1_info2|}}}}}}} | rowclass109 = mergedrow | label109 = &nbsp;•&nbsp;{{{demographics1_title3}}} | data109 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title3|}}}|{{{demographics1_info3|}}}}}}} | rowclass110 = mergedrow | label110 = &nbsp;•&nbsp;{{{demographics1_title4}}} | data110 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title4|}}}|{{{demographics1_info4|}}}}}}} | rowclass111 = mergedrow | label111 = &nbsp;•&nbsp;{{{demographics1_title5}}} | data111 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title5|}}}|{{{demographics1_info5|}}}}}}} | rowclass112 = mergedrow | label112 = &nbsp;•&nbsp;{{{demographics1_title6}}} | data112 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title6|}}}|{{{demographics1_info6|}}}}}}} | rowclass113 = mergedrow | label113 = &nbsp;•&nbsp;{{{demographics1_title7}}} | data113 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title7|}}}|{{{demographics1_info7|}}}}}}} | rowclass114 = mergedrow | label114 = &nbsp;•&nbsp;{{{demographics1_title8}}} | data114 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title8|}}}|{{{demographics1_info8|}}}}}}} | rowclass115 = mergedrow | label115 = &nbsp;•&nbsp;{{{demographics1_title9}}} | data115 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title9|}}}|{{{demographics1_info9|}}}}}}} | rowclass116 = mergedrow | label116 = &nbsp;•&nbsp;{{{demographics1_title10}}} | data116 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title10|}}}|{{{demographics1_info10|}}}}}}} <!-- ***Demographics 2*** --> | rowclass117 = mergedtoprow | header117 = {{#if:{{{demographics_type2|}}} |{{{demographics_type2}}}<div class="ib-settlement-fn">{{{demographics2_footnotes|}}}</div>}} | rowclass118 = mergedrow | label118 = &nbsp;•&nbsp;{{{demographics2_title1}}} | data118 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title1|}}}|{{{demographics2_info1|}}}}}}} | rowclass119 = mergedrow | label119 = &nbsp;•&nbsp;{{{demographics2_title2}}} | data119 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title2|}}}|{{{demographics2_info2|}}}}}}} | rowclass120 = mergedrow | label120 = &nbsp;•&nbsp;{{{demographics2_title3}}} | data120 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title3|}}}|{{{demographics2_info3|}}}}}}} | rowclass121 = mergedrow | label121 = &nbsp;•&nbsp;{{{demographics2_title4}}} | data121 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title4|}}}|{{{demographics2_info4|}}}}}}} | rowclass122 = mergedrow | label122 = &nbsp;•&nbsp;{{{demographics2_title5}}} | data122 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title5|}}}|{{{demographics2_info5|}}}}}}} | rowclass123 = mergedrow | label123 = &nbsp;•&nbsp;{{{demographics2_title6}}} | data123 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title6|}}}|{{{demographics2_info6|}}}}}}} | rowclass124 = mergedrow | label124 = &nbsp;•&nbsp;{{{demographics2_title7}}} | data124 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title7|}}}|{{{demographics2_info7|}}}}}}} | rowclass125 = mergedrow | label125 = &nbsp;•&nbsp;{{{demographics2_title8}}} | data125 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title8|}}}|{{{demographics2_info8|}}}}}}} | rowclass126 = mergedrow | label126 = &nbsp;•&nbsp;{{{demographics2_title9}}} | data126 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title9|}}}|{{{demographics2_info9|}}}}}}} | rowclass127 = mergedrow | label127 = &nbsp;•&nbsp;{{{demographics2_title10}}} | data127 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title10|}}}|{{{demographics2_info10|}}}}}}} <!-- ***Time Zones*** --> | rowclass128 = mergedtoprow | header128 = {{#if:{{{timezone1_location|}}}|{{#if:{{{timezone2|}}}|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]s|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]}}|}} | rowclass129 = {{#if:{{{timezone1_location|}}}|mergedrow|mergedtoprow}} | label129 = {{#if:{{{timezone1_location|}}}|{{{timezone1_location}}}|{{#if:{{{timezone2_location|}}}|{{{timezone2_location}}}|{{#if:{{{timezone2|}}}|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]s|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]}}}}}} | data129 = {{#if:{{{utc_offset1|{{{utc_offset|}}} }}} |[[UTC{{{utc_offset1|{{{utc_offset}}}}}}]] {{#if:{{{timezone1|{{{timezone|}}}}}}|({{{timezone1|{{{timezone}}}}}})}} |{{{timezone1|{{{timezone|}}}}}} }} | rowclass130 = mergedrow | label130 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data130 = {{#if:{{{utc_offset1_DST|{{{utc_offset_DST|}}}}}} |[[UTC{{{utc_offset1_DST|{{{utc_offset_DST|}}}}}}]] {{#if:{{{timezone1_DST|{{{timezone_DST|}}}}}}|({{{timezone1_DST|{{{timezone_DST}}}}}})}} |{{{timezone1_DST|{{{timezone_DST|}}}}}} }} | rowclass131 = mergedrow | label131 = {{#if:{{{timezone2_location|}}}| {{{timezone2_location|}}}|<nowiki />}} | data131 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset2|{{{utc_offset2|}}} }}} |[[UTC{{{utc_offset2|{{{utc_offset2}}}}}}]] {{#if:{{{timezone2|}}}|({{{timezone2}}})}} |{{{timezone2|}}} }} }} | rowclass132 = mergedrow | label132 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data132 = {{#if:{{{utc_offset2_DST|}}}|[[UTC{{{utc_offset2_DST|}}}]] {{#if:{{{timezone2_DST|}}}|({{{timezone2_DST|}}})}} |{{{timezone2_DST|}}} }} | rowclass133 = mergedrow | label133 = {{#if:{{{timezone3_location|}}}| {{{timezone3_location|}}}|<nowiki />}} | data133 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset3|{{{utc_offset3|}}} }}} |[[UTC{{{utc_offset3|{{{utc_offset3}}}}}}]] {{#if:{{{timezone3|}}}|({{{timezone3}}})}} |{{{timezone3|}}} }} }} | rowclass134 = mergedrow | label134 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data134 = {{#if:{{{utc_offset3_DST|}}}|[[UTC{{{utc_offset3_DST|}}}]] {{#if:{{{timezone3_DST|}}}|({{{timezone3_DST|}}})}} |{{{timezone3_DST|}}} }} | rowclass135 = mergedrow | label135 = {{#if:{{{timezone4_location|}}}| {{{timezone4_location|}}}|<nowiki />}} | data135 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset4|{{{utc_offset4|}}} }}} |[[UTC{{{utc_offset4|{{{utc_offset4}}}}}}]] {{#if:{{{timezone4|}}}|({{{timezone4}}})}} |{{{timezone4|}}} }} }} | rowclass136 = mergedrow | label136 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data136 = {{#if:{{{utc_offset4_DST|}}}|[[UTC{{{utc_offset4_DST|}}}]] {{#if:{{{timezone4_DST|}}}|({{{timezone4_DST|}}})}} |{{{timezone4_DST|}}} }} | rowclass137 = mergedrow | label137 = {{#if:{{{timezone5_location|}}}| {{{timezone5_location|}}}|<nowiki />}} | data137 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset5|{{{utc_offset5|}}} }}} |[[UTC{{{utc_offset5|{{{utc_offset5}}}}}}]] {{#if:{{{timezone5|}}}|({{{timezone5}}})}} |{{{timezone5|}}} }} }} | rowclass138 = mergedrow | label138 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data138 = {{#if:{{{utc_offset5_DST|}}}|[[UTC{{{utc_offset5_DST|}}}]] {{#if:{{{timezone5_DST|}}}|({{{timezone5_DST|}}})}} |{{{timezone5_DST|}}} }} <!-- ***Postal Code(s)*** --> | rowclass139 = mergedtoprow | label139 = {{if empty|{{{postal_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class139 = adr | data139 = {{#if:{{{postal_code|}}}|<div class="postal-code">{{{postal_code}}}</div>}} | rowclass140 = {{#if:{{{postal_code|}}}|mergedbottomrow|mergedtoprow}} | label140 = {{if empty|{{{postal2_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal2_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class140 = adr | data140 = {{#if:{{{postal2_code|}}}|<div class="postal-code">{{{postal2_code}}}</div>}} <!-- ***Area Code(s)*** --> | rowclass141 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}|mergedrow|mergedtoprow}} | label141 = {{if empty|{{{area_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{if empty|{{{area_code|}}}|{{{area_codes|}}}{{force plural}}}}|<!-- -->link=Telephone numbering plan|singular=Area code|likely=Area code(s)|plural=Area codes}}}} | data141 = {{if empty|{{{area_code|}}}|{{{area_codes|}}}}}{{#if:{{{area_code_type|}}}||{{Main other|{{Pluralize from text|any_comma=1|parse_links=1|{{{area_code|}}}|||[[Category:Pages using infobox settlement with possible area code list]]}}}}}} <!-- Geocode--> | rowclass142 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}|mergedrow|mergedtoprow}} | label142 = [[Geocode]] | class142 = nickname | data142 = {{{geocode|}}} <!-- ISO Code--> | rowclass143 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}|mergedrow|mergedtoprow}} | label143 = [[ISO 3166|ISO 3166 code]] | class143 = nickname | data143 = {{{iso_code|}}} <!-- Vehicle registration plate--> | rowclass144 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}|mergedrow|mergedtoprow}} | label144 = {{if empty|{{{registration_plate_type|}}}|[[Vehicle registration plate|Vehicle registration]]}} | data144 = {{{registration_plate|}}} <!-- Other codes --> | rowclass145 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}|mergedrow|mergedtoprow}} | label145 = {{{code1_name|}}} | class145 = nickname | data145 = {{#if:{{{code1_name|}}}|{{{code1_info|}}}}} | rowclass146 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}{{{code1_name|}}}|mergedrow|mergedtoprow}} | label146 = {{{code2_name|}}} | class146 = nickname | data146 = {{#if:{{{code2_name|}}}|{{{code2_info|}}}}} <!-- ***Blank Fields (two sections)*** --> | rowclass147 = mergedtoprow | label147 = {{{blank_name_sec1|{{{blank_name|}}}}}} | data147 = {{#if:{{{blank_name_sec1|{{{blank_name|}}}}}}|{{{blank_info_sec1|{{{blank_info|}}}}}}}} | rowclass148 = mergedrow | label148 = {{{blank1_name_sec1|{{{blank1_name|}}}}}} | data148 = {{#if:{{{blank1_name_sec1|{{{blank1_name|}}}}}}|{{{blank1_info_sec1|{{{blank1_info|}}}}}}}} | rowclass149 = mergedrow | label149 = {{{blank2_name_sec1|{{{blank2_name|}}}}}} | data149 = {{#if:{{{blank2_name_sec1|{{{blank2_name|}}}}}}|{{{blank2_info_sec1|{{{blank2_info|}}}}}}}} | rowclass150 = mergedrow | label150 = {{{blank3_name_sec1|{{{blank3_name|}}}}}} | data150 = {{#if:{{{blank3_name_sec1|{{{blank3_name|}}}}}}|{{{blank3_info_sec1|{{{blank3_info|}}}}}}}} | rowclass151 = mergedrow | label151 = {{{blank4_name_sec1|{{{blank4_name|}}}}}} | data151 = {{#if:{{{blank4_name_sec1|{{{blank4_name|}}}}}}|{{{blank4_info_sec1|{{{blank4_info|}}}}}}}} | rowclass152 = mergedrow | label152 = {{{blank5_name_sec1|{{{blank5_name|}}}}}} | data152 = {{#if:{{{blank5_name_sec1|{{{blank5_name|}}}}}}|{{{blank5_info_sec1|{{{blank5_info|}}}}}}}} | rowclass153 = mergedrow | label153 = {{{blank6_name_sec1|{{{blank6_name|}}}}}} | data153 = {{#if:{{{blank6_name_sec1|{{{blank6_name|}}}}}}|{{{blank6_info_sec1|{{{blank6_info|}}}}}}}} | rowclass154 = mergedrow | label154 = {{{blank7_name_sec1|{{{blank7_name|}}}}}} | data154 = {{#if:{{{blank7_name_sec1|{{{blank7_name|}}}}}}|{{{blank7_info_sec1|{{{blank7_info|}}}}}}}} | rowclass155 = mergedtoprow | label155 = {{{blank_name_sec2}}} | data155 = {{#if:{{{blank_name_sec2|}}}|{{{blank_info_sec2|}}}}} | rowclass156 = mergedrow | label156 = {{{blank1_name_sec2}}} | data156 = {{#if:{{{blank1_name_sec2|}}}|{{{blank1_info_sec2|}}}}} | rowclass157 = mergedrow | label157 = {{{blank2_name_sec2}}} | data157 = {{#if:{{{blank2_name_sec2|}}}|{{{blank2_info_sec2|}}}}} | rowclass158 = mergedrow | label158 = {{{blank3_name_sec2}}} | data158 = {{#if:{{{blank3_name_sec2|}}}|{{{blank3_info_sec2|}}}}} | rowclass159 = mergedrow | label159 = {{{blank4_name_sec2}}} | data159 = {{#if:{{{blank4_name_sec2|}}}|{{{blank4_info_sec2|}}}}} | rowclass160 = mergedrow | label160 = {{{blank5_name_sec2}}} | data160 = {{#if:{{{blank5_name_sec2|}}}|{{{blank5_info_sec2|}}}}} | rowclass161 = mergedrow | label161 = {{{blank6_name_sec2}}} | data161 = {{#if:{{{blank6_name_sec2|}}}|{{{blank6_info_sec2|}}}}} | rowclass162 = mergedrow | label162 = {{{blank7_name_sec2}}} | data162 = {{#if:{{{blank7_name_sec2|}}}|{{{blank7_info_sec2|}}}}} <!-- ***Website*** --> | rowclass163 = mergedtoprow | label163 = Website | data163 = {{#if:{{{website|}}}|{{{website}}}}} | class164 = maptable | data164 = {{#if:{{{module|}}}|{{{module}}}}} <!-- ***Footnotes*** --> | belowrowclass = mergedtoprow | below = {{{footnotes|}}} }}<!-- Check for unknowns -->{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview = Page using [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y | alt | anthem | anthem_link | area_blank1_acre | area_blank1_dunam | area_blank1_ha | area_blank1_km2 | area_blank1_sq_mi | area_blank1_title | area_blank2_acre | area_blank2_dunam | area_blank2_ha | area_blank2_km2 | area_blank2_sq_mi | area_blank2_title | area_code | area_code_type | area_codes | area_footnotes | area_land_acre | area_land_dunam | area_land_ha | area_land_km2 | area_land_sq_mi | area_metro_acre | area_metro_dunam | area_metro_footnotes | area_metro_ha | area_metro_km2 | area_metro_sq_mi | area_note | area_rank | area_rural_acre | area_rural_dunam | area_rural_footnotes | area_rural_ha | area_rural_km2 | area_rural_sq_mi | area_total_acre | area_total_dunam | area_total_ha | area_total_km2 | area_total_sq_mi | area_urban_acre | area_urban_dunam | area_urban_footnotes | area_urban_ha | area_urban_km2 | area_urban_sq_mi | area_water_acre | area_water_dunam | area_water_ha | area_water_km2 | area_water_percent | area_water_sq_mi | blank_emblem_alt | blank_emblem_link | blank_emblem_size | blank_emblem_type | blank_emblem_sizedefault | blank_emblem_upright | blank_info | blank_info_sec1 | blank_info_sec2 | blank_name | blank_name_sec1 | blank_name_sec2 | blank1_info | blank1_info_sec1 | blank1_info_sec2 | blank1_name | blank1_name_sec1 | blank1_name_sec2 | blank2_info | blank2_info_sec1 | blank2_info_sec2 | blank2_name | blank2_name_sec1 | blank2_name_sec2 | blank3_info | blank3_info_sec1 | blank3_info_sec2 | blank3_name | blank3_name_sec1 | blank3_name_sec2 | blank4_info | blank4_info_sec1 | blank4_info_sec2 | blank4_name | blank4_name_sec1 | blank4_name_sec2 | blank5_info | blank5_info_sec1 | blank5_info_sec2 | blank5_name | blank5_name_sec1 | blank5_name_sec2 | blank6_info | blank6_info_sec1 | blank6_info_sec2 | blank6_name | blank6_name_sec1 | blank6_name_sec2 | blank7_info | blank7_info_sec1 | blank7_info_sec2 | blank7_name | blank7_name_sec1 | blank7_name_sec2 | caption | code1_info | code1_name | code2_info | code2_name | coor_pinpoint | coor_type | coordinates | coordinates_footnotes | demographics_type1 | demographics_type2 | demographics1_footnotes | demographics1_info1 | demographics1_info10 | demographics1_info2 | demographics1_info3 | demographics1_info4 | demographics1_info5 | demographics1_info6 | demographics1_info7 | demographics1_info8 | demographics1_info9 | demographics1_title1 | demographics1_title10 | demographics1_title2 | demographics1_title3 | demographics1_title4 | demographics1_title5 | demographics1_title6 | demographics1_title7 | demographics1_title8 | demographics1_title9 | demographics2_footnotes | demographics2_info1 | demographics2_info10 | demographics2_info2 | demographics2_info3 | demographics2_info4 | demographics2_info5 | demographics2_info6 | demographics2_info7 | demographics2_info8 | demographics2_info9 | demographics2_title1 | demographics2_title10 | demographics2_title2 | demographics2_title3 | demographics2_title4 | demographics2_title5 | demographics2_title6 | demographics2_title7 | demographics2_title8 | demographics2_title9 | dimensions_footnotes | dunam_link | elevation_footnotes | elevation_ft | elevation_link | elevation_m | elevation_max_footnotes | elevation_max_ft | elevation_max_m | elevation_max_point | elevation_max_rank | elevation_min_footnotes | elevation_min_ft | elevation_min_m | elevation_min_point | elevation_min_rank | elevation_point | embed | established_date | established_date1 | established_date2 | established_date3 | established_date4 | established_date5 | established_date6 | established_date7 | established_title | established_title1 | established_title2 | established_title3 | established_title4 | established_title5 | established_title6 | established_title7 | etymology | extinct_date | extinct_title | flag_alt | flag_border | flag_link | flag_size | footnotes | founder | geocode | governing_body | government_footnotes | government_type | government_blank1_title | government_blank1 | government_blank2_title | government_blank2 | government_blank2_title | government_blank3 | government_blank3_title | government_blank3 | government_blank4_title | government_blank4 | government_blank5_title | government_blank5 | government_blank6_title | government_blank6 | grid_name | grid_position | image_alt | image_blank_emblem | image_caption | image_flag | image_map | image_map1 | image_seal | image_shield | image_size | image_skyline | imagesize | image_sizedefault | image_upright | mapQuery | iso_code | leader_name | leader_name1 | leader_name2 | leader_name3 | leader_name4 | leader_name5 | leader_party | leader_title | leader_title1 | leader_title2 | leader_title3 | leader_title4 | leader_title5 | length_km | length_mi | map_alt | map_alt1 | map_caption | map_caption1 | mapsize | mapsize1 | module | motto | motto_link | mottoes | name | named_for | native_name | native_name_lang | nickname | nickname_link | nicknames | official_name | other_name | p1 | p10 | p11 | p12 | p13 | p14 | p15 | p16 | p17 | p18 | p19 | p2 | p20 | p21 | p22 | p23 | p24 | p25 | p26 | p27 | p28 | p29 | p3 | p30 | p31 | p32 | p33 | p34 | p35 | p36 | p37 | p38 | p39 | p4 | p40 | p41 | p42 | p43 | p44 | p45 | p46 | p47 | p48 | p49 | p5 | p50 | p6 | p7 | p8 | p9 | parts | parts_style | parts_type | pop_est_as_of | pop_est_footnotes | population_as_of | population_blank1 | population_blank1_footnotes | population_blank1_title | population_blank2 | population_blank2_footnotes | population_blank2_title | population_demonym | population_demonyms | population_density_blank1_km2 | population_density_blank1_sq_mi | population_density_blank2_km2 | population_density_blank2_sq_mi | population_density_km2 | population_density_metro_km2 | population_density_metro_sq_mi | population_density_rank | population_density_rural_km2 | population_density_rural_sq_mi | population_density_sq_mi | population_density_urban_km2 | population_density_urban_sq_mi | population_est | population_footnotes | population_metro | population_metro_footnotes | population_note | population_rank | population_rural | population_rural_footnotes | population_total | population_urban | population_urban_footnotes | postal_code | postal_code_type | postal2_code | postal2_code_type | pushpin_image | pushpin_label | pushpin_label_position | pushpin_map | pushpin_map_alt | pushpin_map_caption | pushpin_map_caption_notsmall | pushpin_map_narrow | pushpin_mapsize | pushpin_outside | pushpin_overlay | pushpin_relief | registration_plate | registration_plate_type | seal_alt | seal_link | seal_size | seal_type | seat | seat_type | seat1 | seat1_type | seat2 | seat2_type | settlement_type | shield_alt | shield_link | shield_size | short_description <!--used by Module:Settlement short description-->| subdivision_name | subdivision_name1 | subdivision_name2 | subdivision_name3 | subdivision_name4 | subdivision_name5 | subdivision_name6 | subdivision_type | subdivision_type1 | subdivision_type2 | subdivision_type3 | subdivision_type4 | subdivision_type5 | subdivision_type6 | template_name | timezone | timezone_DST | timezone_link | timezone1 | timezone1_DST | timezone1_location | timezone2 | timezone2_DST | timezone2_location | timezone3 | timezone3_DST | timezone3_location | timezone4 | timezone4_DST | timezone4_location | timezone5 | timezone5_DST | timezone5_location | total_type | translit_lang1 | translit_lang1_info | translit_lang1_info1 | translit_lang1_info2 | translit_lang1_info3 | translit_lang1_info4 | translit_lang1_info5 | translit_lang1_info6 | translit_lang1_type | translit_lang1_type1 | translit_lang1_type2 | translit_lang1_type3 | translit_lang1_type4 | translit_lang1_type5 | translit_lang1_type6 | translit_lang2 | translit_lang2_info | translit_lang2_info1 | translit_lang2_info2 | translit_lang2_info3 | translit_lang2_info4 | translit_lang2_info5 | translit_lang2_info6 | translit_lang2_type | translit_lang2_type1 | translit_lang2_type2 | translit_lang2_type3 | translit_lang2_type4 | translit_lang2_type5 | translit_lang2_type6 | type | unit_pref | utc_offset | utc_offset_DST | utc_offset1 | utc_offset1_DST | utc_offset2 | utc_offset2_DST | utc_offset3 | utc_offset3_DST | utc_offset4 | utc_offset4_DST | utc_offset5 | utc_offset5_DST | website | width_km | width_mi }}<!-- -->{{#invoke:Check for conflicting parameters|check | template = [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] | cat = {{main other|Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with conflicting parameters}} | image_size; imagesize | image_alt; alt | image_caption; caption | settlement_type; type | utc_offset1; utc_offset | timezone1; timezone }}<!-- Wikidata -->{{#if:{{{coordinates_wikidata|}}}{{{wikidata|}}} |[[Category:Pages using infobox settlement with the wikidata parameter]] }}{{main other|<!-- Missing country -->{{#if:{{{subdivision_name|}}}||[[Category:Pages using infobox settlement with missing country]]}}<!-- No map -->{{#if:{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}||[[Category:Pages using infobox settlement with no map]]}}<!-- Image_map1 without image_map -->{{#if:{{{image_map1|}}}|{{#if:{{{image_map|}}}||[[Category:Pages using infobox settlement with image_map1 but not image_map]]}}}}<!-- No coordinates -->{{#if:{{{coordinates|}}}||[[Category:Pages using infobox settlement with no coordinates]]}}<!-- -->{{#if:{{{embed|}}}|[[Category:Pages using infobox settlement with embed]]}} }}<!-- Gathering information on over-use of maps -->{{#ifexpr:{{#invoke:ParameterCount|main|mapframe|image_map|image_map1|pushpin_map}} >2 |{{main other| [[Category:Pages using infobox settlement with potentially too many maps]]}}}}</includeonly><noinclude> {{documentation}} <!--Please add this template's categories to the /doc subpage, not here - thanks!--> </noinclude> 30palre80wzp6ye67fau6o3k96jb8yb 72865 72831 2026-07-01T02:02:46Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun/mergedmap1]] para o seu redirecionamento [[Template:Infobox settlement/mergedmap1]], suprimindo o primeiro: fixing 72457 wikitext text/x-wiki <includeonly>{{main other|{{#invoke:Settlement short description|main}}|}}{{Infobox | child = {{yesno|{{{embed|}}}}} | bodyclass = ib-settlement vcard <!--** names, type, and transliterations ** --> | above = <div class="fn org">{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}</div> {{#if:{{{native_name|}}}|<div class="nickname ib-settlement-native" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}"}}>{{{native_name}}}</div>}}{{#if:{{{other_name|}}}|<div class="nickname ib-settlement-other-name">{{{other_name}}}</div>}} | subheader = {{#if:{{{settlement_type|{{{type|}}}}}}|<div class="category">{{{settlement_type|{{{type}}}}}}</div>}} | rowclass1 = mergedtoprow ib-settlement-official | data1 = {{#if:{{{name|}}}|{{{official_name|}}}}} <!-- ***Transliteration language 1*** --> | rowclass2 = mergedtoprow | header2 = {{#if:{{{translit_lang1|}}}|{{{translit_lang1}}}&nbsp;transcription(s)}} | rowclass3 = {{#if:{{{translit_lang1_type1|}}}|mergedrow|mergedbottomrow}} | label3 = &nbsp;•&nbsp;{{{translit_lang1_type}}} | data3 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type|}}}|{{{translit_lang1_info|}}}}}}} | rowclass4 = {{#if:{{{translit_lang1_type2|}}}|mergedrow|mergedbottomrow}} | label4 = &nbsp;•&nbsp;{{{translit_lang1_type1}}} | data4 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type1|}}}|{{{translit_lang1_info1|}}}}}}} | rowclass5 = {{#if:{{{translit_lang1_type3|}}}|mergedrow|mergedbottomrow}} | label5 =&nbsp;•&nbsp;{{{translit_lang1_type2}}} | data5 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type2|}}}|{{{translit_lang1_info2|}}}}}}} | rowclass6 = {{#if:{{{translit_lang1_type4|}}}|mergedrow|mergedbottomrow}} | label6 = &nbsp;•&nbsp;{{{translit_lang1_type3}}} | data6 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type3|}}}|{{{translit_lang1_info3|}}}}}}} | rowclass7 = {{#if:{{{translit_lang1_type5|}}}|mergedrow|mergedbottomrow}} | label7 = &nbsp;•&nbsp;{{{translit_lang1_type4}}} | data7 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type4|}}}|{{{translit_lang1_info4|}}}}}}} | rowclass8 = {{#if:{{{translit_lang1_type6|}}}|mergedrow|mergedbottomrow}} | label8 = &nbsp;•&nbsp;{{{translit_lang1_type5}}} | data8 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type5|}}}|{{{translit_lang1_info5|}}}}}}} | rowclass9 = mergedbottomrow | label9 = &nbsp;•&nbsp;{{{translit_lang1_type6}}} | data9 = {{#if:{{{translit_lang1|}}}|{{#if:{{{translit_lang1_type6|}}}|{{{translit_lang1_info6|}}}}}}} <!-- ***Transliteration language 2*** --> | rowclass10 = mergedtoprow | header10 = {{#if:{{{translit_lang2|}}}|{{{translit_lang2}}}&nbsp;transcription(s)}} | rowclass11 = {{#if:{{{translit_lang2_type1|}}}|mergedrow|mergedbottomrow}} | label11 = &nbsp;•&nbsp;{{{translit_lang2_type}}} | data11 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type|}}}|{{{translit_lang2_info|}}}}}}} | rowclass12 = {{#if:{{{translit_lang2_type2|}}}|mergedrow|mergedbottomrow}} | label12 = &nbsp;•&nbsp;{{{translit_lang2_type1}}} | data12 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type1|}}}|{{{translit_lang2_info1|}}}}}}} | rowclass13 = {{#if:{{{translit_lang2_type3|}}}|mergedrow|mergedbottomrow}} | label13 =&nbsp;•&nbsp;{{{translit_lang2_type2}}} | data13 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type2|}}}|{{{translit_lang2_info2|}}}}}}} | rowclass14 = {{#if:{{{translit_lang2_type4|}}}|mergedrow|mergedbottomrow}} | label14 = &nbsp;•&nbsp;{{{translit_lang2_type3}}} | data14 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type3|}}}|{{{translit_lang2_info3|}}}}}}} | rowclass15 = {{#if:{{{translit_lang2_type5|}}}|mergedrow|mergedbottomrow}} | label15 = &nbsp;•&nbsp;{{{translit_lang2_type4}}} | data15 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type4|}}}|{{{translit_lang2_info4|}}}}}}} | rowclass16 = {{#if:{{{translit_lang2_type6|}}}|mergedrow|mergedbottomrow}} | label16 = &nbsp;•&nbsp;{{{translit_lang2_type5}}} | data16 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type5|}}}|{{{translit_lang2_info5|}}}}}}} | rowclass17 = mergedbottomrow | label17 = &nbsp;•&nbsp;{{{translit_lang2_type6}}} | data17 = {{#if:{{{translit_lang2|}}}|{{#if:{{{translit_lang2_type6|}}}|{{{translit_lang2_info6|}}}}}}} <!-- end ** names, type, and transliterations ** --> <!-- ***Skyline Image*** --> | rowclass18 = mergedtoprow | data18 = {{#if:{{{image_skyline|}}}|<!-- -->{{#invoke:InfoboxImage|InfoboxImage<!-- -->|image={{{image_skyline|}}}<!-- -->|size={{if empty|{{{image_size|}}}|{{{imagesize|}}}}}|sizedefault={{{image_sizedefault|250px}}}|upright={{{image_upright|}}}<!-- -->|alt={{if empty|{{{image_alt|}}}|{{{alt|}}}}}<!-- -->|title={{if empty|{{{image_caption|}}}|{{{caption|}}}|{{{image_alt|}}}|{{{alt|}}}}}}}<!-- -->{{#if:{{{image_caption|}}}{{{caption|}}}|<div class="ib-settlement-caption">{{if empty|{{{image_caption|}}}|{{{caption|}}}}}</div>}} }} <!-- ***Flag, Seal, Shield and Coat of arms*** --> | rowclass19 = mergedtoprow | class19 = maptable | data19 = {{#if:{{{image_flag|}}}{{{image_seal|}}}{{{image_shield|}}}{{{image_blank_emblem|}}}{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}} |{{Infobox settlement/columns | 1 = {{#if:{{{image_flag|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_flag}}}|size={{{flag_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|125px|100x100px}}|border={{yesno |{{{flag_border|}}}|yes=yes|blank=yes}}|alt={{{flag_alt|}}}|title=Flag of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Flag|link={{{flag_link|}}}|name={{{official_name}}}}}</div>}} | 2 = {{#if:{{{image_seal|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_seal|}}}|size={{{seal_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{seal_alt|}}}|title=Official seal of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{seal_type|}}}|{{{seal_type}}}|Seal}}|link={{{seal_link|}}}|name={{{official_name}}}}}</div>}} | 3 = {{#if:{{{image_shield|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_shield|}}}||size={{{shield_size|}}}|sizedefault={{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}|alt={{{shield_alt|}}}|title=Coat of arms of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type=Coat of arms|link={{{shield_link|}}}|name={{{official_name}}}}}</div>}} | 4 = {{#if:{{{image_blank_emblem|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_blank_emblem|}}}|size={{{blank_emblem_size|}}}|sizedefault={{{blank_emblem_sizedefault|{{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}|85px|100x100px}}}}}|upright={{{blank_emblem_upright|}}}|alt={{{blank_emblem_alt|}}}|title=Official logo of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}<div class="ib-settlement-caption-link">{{Infobox settlement/link|type={{#if:{{{blank_emblem_type|}}}|{{{blank_emblem_type}}}}}|link={{{blank_emblem_link|}}}|name={{{official_name}}}}}</div>}} | 5 = {{#if:{{{image_map|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault=100x100px|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption-link">{{{map_caption}}}</div>}}}} | 0 = {{#if:{{{pushpin_map_narrow|}}}|{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{{map_caption}}}}}}}}} |float = center |width = {{#if:{{{pushpin_mapsize|}}}|{{{pushpin_mapsize}}}|150}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map --> |position = {{{pushpin_label_position|}}} }} }} }} }} }} <!-- ***Etymology*** --> | rowclass20 = mergedtoprow | data20 = {{#if:{{{etymology|}}}|Etymology: {{{etymology}}} }} <!-- ***Nickname*** --> | rowclass21 = {{#if:{{{etymology|}}}|mergedrow|mergedtoprow}} | data21 = {{#if:{{{nickname|}}}{{{nicknames|}}}|<!-- -->{{Pluralize from text|parse_links=1|{{if empty|{{{nickname|}}}|{{{nicknames|}}}{{force plural}}}}|<!-- -->link={{{nickname_link|}}}|singular=Nickname|likely=Nickname(s)|plural=Nicknames}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{nickname|}}}|{{{nicknames|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|parse_links=1|{{{nickname|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible nickname list]]}}}}}} <!-- ***Motto*** --> | rowclass22 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}|mergedrow|mergedtoprow}} | data22 = {{#if:{{{motto|}}}{{{mottoes|}}}|<!-- -->{{Pluralize from text|{{if empty|{{{motto|}}}|{{{mottoes|}}}{{force plural}}}}|<!-- -->link={{{motto_link|}}}|singular=Motto|likely=Motto(s)|plural=Mottoes}}:&nbsp;<!-- --><div class="ib-settlement-nickname nickname">{{if empty|{{{motto|}}}|{{{mottoes|}}}}}</div><!-- -->{{Main other|{{Pluralize from text|{{{motto|}}}|<!-- -->likely=[[Category:Pages using infobox settlement with possible motto list]]}}}}}} <!-- ***Anthem*** --> | rowclass23 = {{#if:{{{etymology|}}}{{{nickname|}}}{{{nicknames|}}}{{{motto|}}}{{{mottoes|}}}|mergedrow|mergedtoprow}} | data23 = {{#if:{{{anthem|}}}|{{#if:{{{anthem_link|}}}|[[{{{anthem_link|}}}|Anthem:]]|Anthem:}} {{{anthem}}}}} <!-- ***Map*** --> | rowclass24 = mergedtoprow | data24 = {{#if:{{both|{{{pushpin_map_narrow|}}}|{{{pushpin_map|}}}}}||{{#if:{{{image_map|}}} |{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map}}}|size={{{mapsize|}}}|sizedefault={{{image_sizedefault|250px}}}|upright={{{image_upright|}}}|alt={{{map_alt|}}}|title={{{map_caption|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption|}}}|<div class="ib-settlement-caption">{{{map_caption}}}</div>}} }}}} | rowclass25 = mergedrow | data25 = {{#if:{{{image_map1|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image_map1}}}|size={{{mapsize1|}}}|sizedefault={{{image_sizedefault|250px}}}|upright={{{image_upright|}}}|alt={{{map_alt1|}}}|title={{{map_caption1|Location of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}}}}}}{{#if:{{{map_caption1|}}}|<div class="ib-settlement-caption">{{{map_caption1}}}</div>}} }} <!-- | data26 = {{#invoke:Infobox mapframe | autoWithCaption | onByDefault = {{#if:{{{mapQuery|}}}{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}|no|yes}} | mapframe-frame-width = 250 | mapframe-stroke-width = 2 | mapframe-zoom = 2 | mapframe-length_km = {{{length_km|}}} | mapframe-length_mi = {{{length_mi|}}} | mapframe-width_km = {{{width_km|}}} | mapframe-width_mi = {{{width_mi|}}} | mapframe-area_km2 = {{{area_total_km2|}}} | mapframe-area_ha = {{{area_total_ha|}}} | mapframe-area_acre = {{{area_total_acre|}}} | mapframe-area_sq_mi = {{{area_total_sq_mi|}}} | mapframe-type = city | mapframe-population = {{if empty|{{{population_metro|}}}|{{{population_total|}}}}} | mapframe-marker = town | mapframe-caption = Interactive map of {{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}} }} --> | data27 = {{#invoke:MergedMap/settlement|main|{{{mapQuery|}}} |coordinates = {{{coordinates|{{#invoke:coordinates|coord2text|{{#:property:625}}}}}}} |label = {{{MergedMap_label|{{{label|{{PAGENAMEBASE}}}}}}}} |mapframeId = {{{mapframeId|{{#if:{{Get QID}}|{{Get QID}}|Q84}}}}} |mapframe-marker = city }} <!-- ***Pushpin Map*** --> <!-- | rowclass28 = mergedtoprow | data28 = {{#if:{{{pushpin_map_narrow|}}}||{{#if:{{both| {{{pushpin_map|}}} | {{{coordinates|}}} }}| {{location map|{{{pushpin_map|}}} |border = infobox |alt = {{{pushpin_map_alt|}}} |caption ={{#if:{{{pushpin_map_caption_notsmall|}}}|{{{pushpin_map_caption_notsmall|}}}|{{#if:{{{pushpin_map_caption|}}}|{{{pushpin_map_caption}}}|{{#if:{{{map_caption|}}}|{{#if:{{{image_map|}}}||{{{map_caption}}}}}}}}}}} |float = center |width = {{{pushpin_mapsize|}}} |default_width = 250 |relief= {{{pushpin_relief|}}} |AlternativeMap = {{{pushpin_image|}}} |overlay_image = {{{pushpin_overlay|}}} |coordinates = {{{coordinates|}}} |label = {{#ifeq: {{lc: {{{pushpin_label_position|}}} }} | none | | {{#if:{{{pushpin_label|}}}|{{{pushpin_label}}}|{{#if:{{{name|}}}|{{{name}}}|{{{official_name|}}}}}}} }} |marksize =6 |outside = {{{pushpin_outside|}}}<!-- pin is outside the map |position = {{{pushpin_label_position|}}} }} }} }} --> <!-- ***Coordinates*** --> | rowclass29 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|{{#if:{{{grid_position|}}}|mergedrow|mergedbottomrow}}}} | data29 = {{#if:{{{coordinates|}}} |Coordinates{{#if:{{{coor_pinpoint|{{{coor_type|}}}}}}|&#32;({{{coor_pinpoint|{{{coor_type|}}}}}})}}: {{#invoke:ISO 3166|geocoordinsert|nocat=true|1={{{coordinates|}}}|country={{{subdivision_name|}}}|subdivision1={{{subdivision_name1|}}}|subdivision2={{{subdivision_name2|}}}|subdivision3={{{subdivision_name3|}}}|type=city{{#if:{{{population_total|}}}|{{#iferror:{{#expr:{{formatnum:{{{population_total}}}|R}}+1}}||({{formatnum:{{replace|{{{population_total}}}|,|}}|R}})}}}} }}{{{coordinates_footnotes|}}} }} | rowclass30 = {{#if:{{{image_map|}}}{{{image_map1|}}}{{{pushpin_map|}}}|mergedbottomrow|mergedrow}} | label30 = {{if empty|{{{grid_name|}}}|Grid&nbsp;position}} | data30 = {{{grid_position|}}} <!-- ***Subdivisions*** --> | rowclass31 = mergedtoprow | label31 = {{{subdivision_type}}} | data31 = {{#if:{{{subdivision_type|}}}|{{{subdivision_name|}}} }} | rowclass32 = mergedrow | label32 = {{{subdivision_type1}}} | data32 = {{#if:{{{subdivision_type1|}}}|{{{subdivision_name1|}}} }} | rowclass33 = mergedrow | label33 = {{{subdivision_type2}}} | data33 = {{#if:{{{subdivision_type2|}}}|{{{subdivision_name2|}}} }} | rowclass34 = mergedrow | label34 = {{{subdivision_type3}}} | data34 = {{#if:{{{subdivision_type3|}}}|{{{subdivision_name3|}}} }} | rowclass35 = mergedrow | label35 = {{{subdivision_type4}}} | data35 = {{#if:{{{subdivision_type4|}}}|{{{subdivision_name4|}}} }} | rowclass36 = mergedrow | label36 = {{{subdivision_type5}}} | data36 = {{#if:{{{subdivision_type5|}}}|{{{subdivision_name5|}}} }} | rowclass37 = mergedrow | label37 = {{{subdivision_type6}}} | data37 = {{#if:{{{subdivision_type6|}}}|{{{subdivision_name6|}}} }} <!--***Established*** --> | rowclass38 = mergedtoprow | label38 = {{if empty|{{{established_title|}}}|Established}} | data38 = {{{established_date|}}} | rowclass39 = mergedrow | label39 = {{{established_title1}}} | data39 = {{#if:{{{established_title1|}}}|{{{established_date1|}}} }} | rowclass40 = mergedrow | label40 = {{{established_title2}}} | data40 = {{#if:{{{established_title2|}}}|{{{established_date2|}}} }} | rowclass41 = mergedrow | label41 = {{{established_title3}}} | data41 = {{#if:{{{established_title3|}}}|{{{established_date3|}}} }} | rowclass42 = mergedrow | label42 = {{{established_title4}}} | data42 = {{#if:{{{established_title4|}}}|{{{established_date4|}}} }} | rowclass43 = mergedrow | label43 = {{{established_title5}}} | data43 = {{#if:{{{established_title5|}}}|{{{established_date5|}}} }} | rowclass44 = mergedrow | label44 = {{{established_title6}}} | data44 = {{#if:{{{established_title6|}}}|{{{established_date6|}}} }} | rowclass45 = mergedrow | label45 = {{{established_title7}}} | data45 = {{#if:{{{established_title7|}}}|{{{established_date7|}}} }} | rowclass46 = mergedrow | label46 = {{{extinct_title}}} | data46 = {{#if:{{{extinct_title|}}}|{{{extinct_date|}}} }} | rowclass47 = mergedrow | label47 = Founded by | data47 = {{{founder|}}} | rowclass48 = mergedrow | label48 = [[Namesake|Named after]] | data48 = {{{named_for|}}} <!-- ***Seat of government and subdivisions within the settlement*** --> | rowclass49 = mergedtoprow | label49 = {{#if:{{{seat_type|}}}|{{{seat_type}}}|Seat}} | data49 = {{{seat|}}} | rowclass50 = mergedrow | label50 = {{#if:{{{seat1_type|}}}|{{{seat1_type}}}|Former seat}} | data50 = {{{seat1|}}} | rowclass51 = mergedrow | label51 = {{#if:{{{seat2_type|}}}|{{{seat2_type}}}|Former seat}} | data51 = {{{seat2|}}} | rowclass52 = {{#if:{{{seat|}}}{{{seat1|}}}{{{seat2|}}}|mergedrow|mergedtoprow}} | label52 = {{#if:{{{parts_type|}}}|{{{parts_type}}}|Boroughs}} | data52 = {{#ifexpr:{{#invoke:params|with_name_matching|^p%d+$|count}} > 0 | {{#ifeq:{{{parts_style|}}}|para | {{#invoke:params|with_name_matching|^p%d+$|all_sorted|setting|h/i|{{#if:{{{parts|}}}|<b>{{{parts}}}&#58;&nbsp;</b>}}|, |list_values}} | {{#invoke:params|with_name_matching|^p%d+$|renaming_by_replacing|^p(%d+)$|%1|1|concat_and_call|Collapsible list | title = {{{parts|}}} | expand = {{#switch:{{{parts_style|}}}|coll=|list=y|#default={{#ifexpr:{{#invoke:params|with_name_matching|^p%d+$|count}} < 6|y}}}} }} }} | {{#if:{{{parts|}}} | {{#ifeq:{{{parts_style|}}}|para|<b>{{{parts}}}</b>|{{{parts}}}}} }} }} <!-- ***Government type and Leader*** --> | rowclass53 = mergedtoprow | header53 = {{#if:{{{government_type|}}}{{{governing_body|}}}{{{leader_name|}}}{{{leader_name1|}}}{{{leader_name2|}}}{{{leader_name3|}}}{{{leader_name4|}}}|Government<div class="ib-settlement-fn">{{{government_footnotes|}}}</div>}} <!-- ***Government*** --> | rowclass54 = mergedrow | label54 = &nbsp;•&nbsp;Type | data54 = {{{government_type|}}} | rowclass55 = mergedrow | label55 = &nbsp;•&nbsp;Body | class55 = agent | data55 = {{{governing_body|}}} | rowclass56 = mergedrow | label56 = &nbsp;•&nbsp;{{{leader_title}}} | data56 = {{#if:{{{leader_title|}}}|{{{leader_name|}}} {{#if:{{{leader_party|}}}|({{Polparty|{{{subdivision_name}}}|{{{leader_party}}}}})}}}} | rowclass57 = mergedrow | label57 = &nbsp;•&nbsp;{{{leader_title1}}} | data57 = {{#if:{{{leader_title1|}}}|{{{leader_name1|}}}}} | rowclass58 = mergedrow | label58 = &nbsp;•&nbsp;{{{leader_title2}}} | data58 = {{#if:{{{leader_title2|}}}|{{{leader_name2|}}}}} | rowclass59 = mergedrow | label59 = &nbsp;•&nbsp;{{{leader_title3}}} | data59 = {{#if:{{{leader_title3|}}}|{{{leader_name3|}}}}} | rowclass60 = mergedrow | label60 = &nbsp;•&nbsp;{{{leader_title4}}} | data60 = {{#if:{{{leader_title4|}}}|{{{leader_name4|}}}}} | rowclass61 = mergedrow | label61 = &nbsp;•&nbsp;{{{leader_title5}}} | data61 = {{#if:{{{leader_title5|}}}|{{{leader_name5|}}}}} | rowclass62 = mergedrow | label62 = {{{government_blank1_title}}} | data62 = {{#if:{{{government_blank1|}}}|{{{government_blank1|}}}}} | rowclass63 = mergedrow | label63 = {{{government_blank2_title}}} | data63 = {{#if:{{{government_blank2|}}}|{{{government_blank2|}}}}} | rowclass64 = mergedrow | label64 = {{{government_blank3_title}}} | data64 = {{#if:{{{government_blank3|}}}|{{{government_blank3|}}}}} | rowclass65 = mergedrow | label65 = {{{government_blank4_title}}} | data65 = {{#if:{{{government_blank4|}}}|{{{government_blank4|}}}}} | rowclass66 = mergedrow | label66 = {{{government_blank5_title}}} | data66 = {{#if:{{{government_blank5|}}}|{{{government_blank5|}}}}} | rowclass67 = mergedrow | label67 = {{{government_blank6_title}}} | data67 = {{#if:{{{government_blank6|}}}|{{{government_blank6|}}}}} <!-- ***Geographical characteristics*** --> <!-- ***Area*** --> | rowclass68 = mergedtoprow | header68 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_rural_sq_mi|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_km2|}}}{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_metro_sq_mi|}}}{{{area_blank1_sq_mi|}}} |{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |<!-- displayed below --> |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> }} }} | rowclass69 = {{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}}|mergedtoprow|mergedrow}} | label69 = <div style="white-space:nowrap;">{{#if:{{both|{{#ifeq:{{{total_type}}}|&nbsp;|1}}|{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}}}} |Area<div class="ib-settlement-fn">{{{area_footnotes|}}}</div> |&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}|{{#if:{{{settlement_type|{{{type|}}}}}}|{{{settlement_type|{{{type}}}}}}|City}}|Total}}}} }}</div> | data69 = {{#if:{{{area_total_km2|}}}{{{area_total_ha|}}}{{{area_total_acre|}}}{{{area_total_sq_mi|}}}{{{area_total_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_total_km2|}}} |ha ={{{area_total_ha|}}} |acre ={{{area_total_acre|}}} |sqmi ={{{area_total_sq_mi|}}} |dunam={{{area_total_dunam|}}} |link ={{#switch:{{{dunam_link|}}}||on|total=on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass70 = mergedrow | label70 = &nbsp;•&nbsp;Land | data70 = {{#if:{{{area_land_km2|}}}{{{area_land_ha|}}}{{{area_land_acre|}}}{{{area_land_sq_mi|}}}{{{area_land_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_land_km2|}}} |ha ={{{area_land_ha|}}} |acre ={{{area_land_acre|}}} |sqmi ={{{area_land_sq_mi|}}} |dunam={{{area_land_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|land|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass71 = mergedrow | label71 = &nbsp;•&nbsp;Water | data71 = {{#if:{{{area_water_km2|}}}{{{area_water_ha|}}}{{{area_water_acre|}}}{{{area_water_sq_mi|}}}{{{area_water_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_water_km2|}}} |ha ={{{area_water_ha|}}} |acre ={{{area_water_acre|}}} |sqmi ={{{area_water_sq_mi|}}} |dunam={{{area_water_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|water|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }} {{#if:{{{area_water_percent|}}}| &nbsp;{{{area_water_percent}}}{{#ifeq:%|{{#invoke:string|sub|{{{area_water_percent|}}}|-1}}||%}}}}}} | rowclass72 = mergedrow | label72 = &nbsp;•&nbsp;Urban<div class="ib-settlement-fn">{{{area_urban_footnotes|}}}</div> | data72 = {{#if:{{{area_urban_km2|}}}{{{area_urban_ha|}}}{{{area_urban_acre|}}}{{{area_urban_sq_mi|}}}{{{area_urban_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_urban_km2|}}} |ha ={{{area_urban_ha|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|urban|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass73 = mergedrow | label73 = &nbsp;•&nbsp;Rural<div class="ib-settlement-fn">{{{area_rural_footnotes|}}}</div> | data73 = {{#if:{{{area_rural_km2|}}}{{{area_rural_ha|}}}{{{area_rural_acre|}}}{{{area_rural_sq_mi|}}}{{{area_rural_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_rural_km2|}}} |ha ={{{area_rural_ha|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|rural|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass74 = mergedrow | label74 =&nbsp;•&nbsp;Metro<div class="ib-settlement-fn">{{{area_metro_footnotes|}}}</div> | data74 = {{#if:{{{area_metro_km2|}}}{{{area_metro_ha|}}}{{{area_metro_acre|}}}{{{area_metro_sq_mi|}}}{{{area_metro_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_metro_km2|}}} |ha ={{{area_metro_ha|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|metro|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Area rank*** --> | rowclass75 = mergedrow | label75 = &nbsp;•&nbsp;Rank | data75 = {{{area_rank|}}} | rowclass76 = mergedrow | label76 = &nbsp;•&nbsp;{{{area_blank1_title}}} | data76 = {{#if:{{{area_blank1_km2|}}}{{{area_blank1_ha|}}}{{{area_blank1_acre|}}}{{{area_blank1_sq_mi|}}}{{{area_blank1_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank1_km2|}}} |ha ={{{area_blank1_ha|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank1|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass77 = mergedrow | label77 = &nbsp;•&nbsp;{{{area_blank2_title}}} | data77 = {{#if:{{{area_blank2_km2|}}}{{{area_blank2_ha|}}}{{{area_blank2_acre|}}}{{{area_blank2_sq_mi|}}}{{{area_blank2_dunam|}}} |{{infobox_settlement/areadisp |km2 ={{{area_blank2_km2|}}} |ha ={{{area_blank2_ha|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |link ={{#ifeq:{{{dunam_link|}}}|blank2|on}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass78 = mergedrow | label78 = &nbsp; | data78 = {{{area_note|}}} <!-- ***Dimensions*** --> | rowclass79 = mergedtoprow | header79 = {{#if:{{{length_km|}}}{{{length_mi|}}}{{{width_km|}}}{{{width_mi|}}}|Dimensions<div class="ib-settlement-fn">{{{dimensions_footnotes|}}}</div>}} | rowclass80 = mergedrow | label80 = &nbsp;•&nbsp;Length | data80 = {{#if:{{{length_km|}}}{{{length_mi|}}} | {{infobox_settlement/lengthdisp |km ={{{length_km|}}} |mi ={{{length_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass81 = mergedrow | label81 = &nbsp;•&nbsp;Width | data81 = {{#if:{{{width_km|}}}{{{width_mi|}}} |{{infobox_settlement/lengthdisp |km ={{{width_km|}}} |mi ={{{width_mi|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation*** --> | rowclass82 = mergedtoprow | label82 = {{#if:{{{elevation_link|}}}|[[{{{elevation_link|}}}|Elevation]]|Elevation}}<div class="ib-settlement-fn">{{{elevation_footnotes|}}}{{#if:{{{elevation_point|}}}|&#32;({{{elevation_point}}})}}</div> | data82 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_m|}}} |ft ={{{elevation_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} | rowclass83 = {{#if:{{{elevation_m|}}}{{{elevation_ft|}}}|mergedrow|mergedtoprow}} | label83 = Highest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_max_footnotes|}}}{{#if:{{{elevation_max_point|}}}|&#32;({{{elevation_max_point}}})}}</div> | data83 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_max_m|}}} |ft ={{{elevation_max_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation max rank*** --> | rowclass84 = mergedrow | label84 = &nbsp;•&nbsp;Rank | data84 = {{#if:{{{elevation_max_m|}}}{{{elevation_max_ft|}}}| {{{elevation_max_rank|}}} }} | rowclass85 = {{#if:{{{elevation_min_rank|}}}|mergedrow|mergedbottomrow}} | label85 = Lowest&nbsp;elevation<div class="ib-settlement-fn">{{{elevation_min_footnotes|}}}{{#if:{{{elevation_min_point|}}}|&#32;({{{elevation_min_point}}})}}</div> | data85 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}} |{{infobox_settlement/lengthdisp |m ={{{elevation_min_m|}}} |ft ={{{elevation_min_ft|}}} |pref={{{unit_pref|}}} |name={{{subdivision_name}}} }} }} <!-- ***Elevation min rank*** --> | rowclass86 = mergedrow | label86 = &nbsp;•&nbsp;Rank | data86 = {{#if:{{{elevation_min_m|}}}{{{elevation_min_ft|}}}|{{{elevation_min_rank|}}}}} <!-- ***Population*** --> | rowclass87 = mergedtoprow | label87 = Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> | data87 = {{fix comma category|{{#ifeq:{{{total_type}}}|&nbsp; | {{#if:{{{population_total|}}} | {{formatnum:{{replace|{{{population_total}}}|,|}}}} }} }} }} | rowclass88 = mergedtoprow | header88 ={{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}}{{{population_urban|}}}{{{population_rural|}}}{{{population_metro|}}}{{{population_blank1|}}}{{{population_blank2|}}}{{{population_est|}}} |Population<div class="ib-settlement-fn">{{#if:{{{population_as_of|}}}|{{nbsp}}({{{population_as_of}}})}}{{{population_footnotes|}}}</div> }} }} | rowclass89 = mergedrow | label89 = <div style="white-space:nowrap;">&nbsp;•&nbsp;{{#if:{{{total_type|}}}|{{{total_type}}}|{{#if:{{{population_metro|}}}{{{population_urban|}}}{{{population_rural|}}}{{{area_metro_km2|}}}{{{area_metro_sq_mi|}}}{{{area_urban_km2|}}}{{{area_urban_sq_mi|}}}{{{area_rural_km2|}}}{{{area_rural_sq_mi|}}}|{{#if:{{{settlement_type|{{{type|}}}}}}|{{{settlement_type|{{{type}}}}}}|City}}|Total}}}}</div> | data89 = {{#ifeq:{{{total_type}}}|&nbsp; | |{{#if:{{{population_total|}}} | {{fix comma category|{{formatnum:{{replace|{{{population_total}}}|,|}}}}}} }} }} | rowclass90 = mergedrow | label90 = <div style="white-space:nowrap;">&nbsp;•&nbsp;Estimate&nbsp;{{#if:{{{pop_est_as_of|}}}|<div class="ib-settlement-fn">({{{pop_est_as_of}}}){{{pop_est_footnotes|}}}</div>}}</div> | data90 = {{#if:{{{population_est|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_est}}}|,|}}}}}} }} <!-- ***Population rank*** --> | rowclass91 = mergedrow | label91 =&nbsp;•&nbsp;Rank | data91 = {{{population_rank|}}} | rowclass92 = mergedrow | label92 = &nbsp;•&nbsp;Density | data92 = {{#if:{{{population_density_km2|}}}{{{population_density_sq_mi|}}}{{{population_total|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_km2|}}} |/sqmi={{{population_density_sq_mi|}}} |pop ={{{population_total|}}} |dunam={{if empty|{{{area_land_dunam|}}}|{{{area_total_dunam|}}}}} |ha ={{if empty|{{{area_land_ha|}}}|{{{area_total_ha|}}}}} |km2 ={{if empty|{{{area_land_km2|}}}|{{{area_total_km2|}}}}} |acre ={{if empty|{{{area_land_acre|}}}|{{{area_total_acre|}}}}} |sqmi ={{if empty|{{{area_land_sq_mi|}}}|{{{area_total_sq_mi|}}}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} <!-- ***Population density rank*** --> | rowclass93 = mergedrow | label93 = &nbsp;&nbsp;•&nbsp;Rank | data93 = {{{population_density_rank|}}} | rowclass94 = mergedrow | label94 = &nbsp;•&nbsp;[[Urban area|Urban]]<div class="ib-settlement-fn">{{{population_urban_footnotes|}}}</div> | data94 = {{#if:{{{population_urban|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_urban}}}|,|}}}}}} }} | rowclass95 = mergedrow | label95 = &nbsp;•&nbsp;Urban&nbsp;density | data95 = {{#if:{{{population_density_urban_km2|}}}{{{population_density_urban_sq_mi|}}}{{{population_urban|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_urban_km2|}}} |/sqmi={{{population_density_urban_sq_mi|}}} |pop ={{{population_urban|}}} |ha ={{{area_urban_ha|}}} |km2 ={{{area_urban_km2|}}} |acre ={{{area_urban_acre|}}} |sqmi ={{{area_urban_sq_mi|}}} |dunam={{{area_urban_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass96 = mergedrow | label96 = &nbsp;•&nbsp;[[Rural area|Rural]]<div class="ib-settlement-fn">{{{population_rural_footnotes|}}}</div> | data96 = {{#if:{{{population_rural|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_rural}}}|,|}}}}}}}} | rowclass97 = mergedrow | label97 = &nbsp;•&nbsp;Rural&nbsp;density | data97 = {{#if:{{{population_density_rural_km2|}}}{{{population_density_rural_sq_mi|}}}{{{population_rural|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_rural_km2|}}} |/sqmi={{{population_density_rural_sq_mi|}}} |pop ={{{population_rural|}}} |ha ={{{area_rural_ha|}}} |km2 ={{{area_rural_km2|}}} |acre ={{{area_rural_acre|}}} |sqmi ={{{area_rural_sq_mi|}}} |dunam={{{area_rural_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass98 = mergedrow | label98 =&nbsp;•&nbsp;[[Metropolitan area|Metro]]<div class="ib-settlement-fn">{{{population_metro_footnotes|}}}</div> | data98 = {{#if:{{{population_metro|}}}| {{fix comma category|{{formatnum:{{replace|{{{population_metro}}}|,|}}}}}} }} | rowclass99 = mergedrow | label99 = &nbsp;•&nbsp;Metro&nbsp;density | data99 = {{#if:{{{population_density_metro_km2|}}}{{{population_density_metro_sq_mi|}}}{{{population_metro|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_metro_km2|}}} |/sqmi={{{population_density_metro_sq_mi|}}} |pop ={{{population_metro|}}} |ha ={{{area_metro_ha|}}} |km2 ={{{area_metro_km2|}}} |acre ={{{area_metro_acre|}}} |sqmi ={{{area_metro_sq_mi|}}} |dunam={{{area_metro_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass100 = mergedrow | label100 = &nbsp;•&nbsp;{{{population_blank1_title|}}}<div class="ib-settlement-fn">{{{population_blank1_footnotes|}}}</div> | data100 = {{#if:{{{population_blank1|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank1}}}|,|}}}}}}}} | rowclass101 = mergedrow | label101 = &nbsp;•&nbsp;{{#if:{{{population_blank1_title|}}}|{{{population_blank1_title}}} density|Density}} | data101 = {{#if:{{{population_density_blank1_km2|}}}{{{population_density_blank1_sq_mi|}}}{{{population_blank1|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank1_km2|}}} |/sqmi={{{population_density_blank1_sq_mi|}}} |pop ={{{population_blank1|}}} |ha ={{{area_blank1_ha|}}} |km2 ={{{area_blank1_km2|}}} |acre ={{{area_blank1_acre|}}} |sqmi ={{{area_blank1_sq_mi|}}} |dunam={{{area_blank1_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass102 = mergedrow | label102 = &nbsp;•&nbsp;{{{population_blank2_title|}}}<div class="ib-settlement-fn">{{{population_blank2_footnotes|}}}</div> | data102 = {{#if:{{{population_blank2|}}}|{{fix comma category|{{formatnum:{{replace|{{{population_blank2}}}|,|}}}}}}}} | rowclass103 = mergedrow | label103 = &nbsp;•&nbsp;{{#if:{{{population_blank2_title|}}}|{{{population_blank2_title}}} density|Density}} | data103 = {{#if:{{{population_density_blank2_km2|}}}{{{population_density_blank2_sq_mi|}}}{{{population_blank2|}}} |{{infobox_settlement/densdisp |/km2 ={{{population_density_blank2_km2|}}} |/sqmi={{{population_density_blank2_sq_mi|}}} |pop ={{{population_blank2|}}} |ha ={{{area_blank2_ha|}}} |km2 ={{{area_blank2_km2|}}} |acre ={{{area_blank2_acre|}}} |sqmi ={{{area_blank2_sq_mi|}}} |dunam={{{area_blank2_dunam|}}} |pref ={{{unit_pref|}}} |name ={{{subdivision_name}}} }}}} | rowclass104 = mergedrow | label104 = &nbsp; | data104 = {{{population_note|}}} | rowclass105 = mergedtoprow | label105 = {{Pluralize from text|{{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}{{force plural}}}}|<!-- -->link=Demonym|singular=Demonym|likely=Demonym(s)|plural=Demonyms}} | data105 = {{if empty|{{{population_demonym|}}}|{{{population_demonyms|}}}}}{{Main other|{{Pluralize from text|{{{population_demonym|}}}|likely=[[Category:Pages using infobox settlement with possible demonym list]]}}}} <!-- ***Demographics 1*** --> | rowclass106 = mergedtoprow | header106 = {{#if:{{{demographics_type1|}}} |{{{demographics_type1}}}<div class="ib-settlement-fn">{{{demographics1_footnotes|}}}</div>}} | rowclass107 = mergedrow | label107 = &nbsp;•&nbsp;{{{demographics1_title1}}} | data107 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title1|}}}|{{{demographics1_info1|}}}}}}} | rowclass108 = mergedrow | label108 = &nbsp;•&nbsp;{{{demographics1_title2}}} | data108 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title2|}}}|{{{demographics1_info2|}}}}}}} | rowclass109 = mergedrow | label109 = &nbsp;•&nbsp;{{{demographics1_title3}}} | data109 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title3|}}}|{{{demographics1_info3|}}}}}}} | rowclass110 = mergedrow | label110 = &nbsp;•&nbsp;{{{demographics1_title4}}} | data110 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title4|}}}|{{{demographics1_info4|}}}}}}} | rowclass111 = mergedrow | label111 = &nbsp;•&nbsp;{{{demographics1_title5}}} | data111 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title5|}}}|{{{demographics1_info5|}}}}}}} | rowclass112 = mergedrow | label112 = &nbsp;•&nbsp;{{{demographics1_title6}}} | data112 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title6|}}}|{{{demographics1_info6|}}}}}}} | rowclass113 = mergedrow | label113 = &nbsp;•&nbsp;{{{demographics1_title7}}} | data113 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title7|}}}|{{{demographics1_info7|}}}}}}} | rowclass114 = mergedrow | label114 = &nbsp;•&nbsp;{{{demographics1_title8}}} | data114 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title8|}}}|{{{demographics1_info8|}}}}}}} | rowclass115 = mergedrow | label115 = &nbsp;•&nbsp;{{{demographics1_title9}}} | data115 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title9|}}}|{{{demographics1_info9|}}}}}}} | rowclass116 = mergedrow | label116 = &nbsp;•&nbsp;{{{demographics1_title10}}} | data116 = {{#if:{{{demographics_type1|}}} |{{#if:{{{demographics1_title10|}}}|{{{demographics1_info10|}}}}}}} <!-- ***Demographics 2*** --> | rowclass117 = mergedtoprow | header117 = {{#if:{{{demographics_type2|}}} |{{{demographics_type2}}}<div class="ib-settlement-fn">{{{demographics2_footnotes|}}}</div>}} | rowclass118 = mergedrow | label118 = &nbsp;•&nbsp;{{{demographics2_title1}}} | data118 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title1|}}}|{{{demographics2_info1|}}}}}}} | rowclass119 = mergedrow | label119 = &nbsp;•&nbsp;{{{demographics2_title2}}} | data119 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title2|}}}|{{{demographics2_info2|}}}}}}} | rowclass120 = mergedrow | label120 = &nbsp;•&nbsp;{{{demographics2_title3}}} | data120 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title3|}}}|{{{demographics2_info3|}}}}}}} | rowclass121 = mergedrow | label121 = &nbsp;•&nbsp;{{{demographics2_title4}}} | data121 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title4|}}}|{{{demographics2_info4|}}}}}}} | rowclass122 = mergedrow | label122 = &nbsp;•&nbsp;{{{demographics2_title5}}} | data122 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title5|}}}|{{{demographics2_info5|}}}}}}} | rowclass123 = mergedrow | label123 = &nbsp;•&nbsp;{{{demographics2_title6}}} | data123 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title6|}}}|{{{demographics2_info6|}}}}}}} | rowclass124 = mergedrow | label124 = &nbsp;•&nbsp;{{{demographics2_title7}}} | data124 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title7|}}}|{{{demographics2_info7|}}}}}}} | rowclass125 = mergedrow | label125 = &nbsp;•&nbsp;{{{demographics2_title8}}} | data125 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title8|}}}|{{{demographics2_info8|}}}}}}} | rowclass126 = mergedrow | label126 = &nbsp;•&nbsp;{{{demographics2_title9}}} | data126 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title9|}}}|{{{demographics2_info9|}}}}}}} | rowclass127 = mergedrow | label127 = &nbsp;•&nbsp;{{{demographics2_title10}}} | data127 = {{#if:{{{demographics_type2|}}} |{{#if:{{{demographics2_title10|}}}|{{{demographics2_info10|}}}}}}} <!-- ***Time Zones*** --> | rowclass128 = mergedtoprow | header128 = {{#if:{{{timezone1_location|}}}|{{#if:{{{timezone2|}}}|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]s|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]}}|}} | rowclass129 = {{#if:{{{timezone1_location|}}}|mergedrow|mergedtoprow}} | label129 = {{#if:{{{timezone1_location|}}}|{{{timezone1_location}}}|{{#if:{{{timezone2_location|}}}|{{{timezone2_location}}}|{{#if:{{{timezone2|}}}|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]s|[[{{#if:{{{timezone_link|}}}|{{{timezone_link}}}|Time zone}}|Time zone]]}}}}}} | data129 = {{#if:{{{utc_offset1|{{{utc_offset|}}} }}} |[[UTC{{{utc_offset1|{{{utc_offset}}}}}}]] {{#if:{{{timezone1|{{{timezone|}}}}}}|({{{timezone1|{{{timezone}}}}}})}} |{{{timezone1|{{{timezone|}}}}}} }} | rowclass130 = mergedrow | label130 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data130 = {{#if:{{{utc_offset1_DST|{{{utc_offset_DST|}}}}}} |[[UTC{{{utc_offset1_DST|{{{utc_offset_DST|}}}}}}]] {{#if:{{{timezone1_DST|{{{timezone_DST|}}}}}}|({{{timezone1_DST|{{{timezone_DST}}}}}})}} |{{{timezone1_DST|{{{timezone_DST|}}}}}} }} | rowclass131 = mergedrow | label131 = {{#if:{{{timezone2_location|}}}| {{{timezone2_location|}}}|<nowiki />}} | data131 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset2|{{{utc_offset2|}}} }}} |[[UTC{{{utc_offset2|{{{utc_offset2}}}}}}]] {{#if:{{{timezone2|}}}|({{{timezone2}}})}} |{{{timezone2|}}} }} }} | rowclass132 = mergedrow | label132 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data132 = {{#if:{{{utc_offset2_DST|}}}|[[UTC{{{utc_offset2_DST|}}}]] {{#if:{{{timezone2_DST|}}}|({{{timezone2_DST|}}})}} |{{{timezone2_DST|}}} }} | rowclass133 = mergedrow | label133 = {{#if:{{{timezone3_location|}}}| {{{timezone3_location|}}}|<nowiki />}} | data133 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset3|{{{utc_offset3|}}} }}} |[[UTC{{{utc_offset3|{{{utc_offset3}}}}}}]] {{#if:{{{timezone3|}}}|({{{timezone3}}})}} |{{{timezone3|}}} }} }} | rowclass134 = mergedrow | label134 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data134 = {{#if:{{{utc_offset3_DST|}}}|[[UTC{{{utc_offset3_DST|}}}]] {{#if:{{{timezone3_DST|}}}|({{{timezone3_DST|}}})}} |{{{timezone3_DST|}}} }} | rowclass135 = mergedrow | label135 = {{#if:{{{timezone4_location|}}}| {{{timezone4_location|}}}|<nowiki />}} | data135 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset4|{{{utc_offset4|}}} }}} |[[UTC{{{utc_offset4|{{{utc_offset4}}}}}}]] {{#if:{{{timezone4|}}}|({{{timezone4}}})}} |{{{timezone4|}}} }} }} | rowclass136 = mergedrow | label136 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data136 = {{#if:{{{utc_offset4_DST|}}}|[[UTC{{{utc_offset4_DST|}}}]] {{#if:{{{timezone4_DST|}}}|({{{timezone4_DST|}}})}} |{{{timezone4_DST|}}} }} | rowclass137 = mergedrow | label137 = {{#if:{{{timezone5_location|}}}| {{{timezone5_location|}}}|<nowiki />}} | data137 = {{#if:{{{timezone1|{{{timezone|}}}}}}{{{utc_offset1|{{{utc_offset|}}}}}} |{{#if:{{{utc_offset5|{{{utc_offset5|}}} }}} |[[UTC{{{utc_offset5|{{{utc_offset5}}}}}}]] {{#if:{{{timezone5|}}}|({{{timezone5}}})}} |{{{timezone5|}}} }} }} | rowclass138 = mergedrow | label138 = <span class="nowrap">&nbsp;•&nbsp;Summer ([[Daylight saving time|DST]])</span> | data138 = {{#if:{{{utc_offset5_DST|}}}|[[UTC{{{utc_offset5_DST|}}}]] {{#if:{{{timezone5_DST|}}}|({{{timezone5_DST|}}})}} |{{{timezone5_DST|}}} }} <!-- ***Postal Code(s)*** --> | rowclass139 = mergedtoprow | label139 = {{if empty|{{{postal_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class139 = adr | data139 = {{#if:{{{postal_code|}}}|<div class="postal-code">{{{postal_code}}}</div>}} | rowclass140 = {{#if:{{{postal_code|}}}|mergedbottomrow|mergedtoprow}} | label140 = {{if empty|{{{postal2_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{{postal2_code|}}}|link=Postal code|singular=Postal code|plural=Postal codes}}}} | class140 = adr | data140 = {{#if:{{{postal2_code|}}}|<div class="postal-code">{{{postal2_code}}}</div>}} <!-- ***Area Code(s)*** --> | rowclass141 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}|mergedrow|mergedtoprow}} | label141 = {{if empty|{{{area_code_type|}}}|{{Pluralize from text|any_comma=1|parse_links=1|{{if empty|{{{area_code|}}}|{{{area_codes|}}}{{force plural}}}}|<!-- -->link=Telephone numbering plan|singular=Area code|likely=Area code(s)|plural=Area codes}}}} | data141 = {{if empty|{{{area_code|}}}|{{{area_codes|}}}}}{{#if:{{{area_code_type|}}}||{{Main other|{{Pluralize from text|any_comma=1|parse_links=1|{{{area_code|}}}|||[[Category:Pages using infobox settlement with possible area code list]]}}}}}} <!-- Geocode--> | rowclass142 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}|mergedrow|mergedtoprow}} | label142 = [[Geocode]] | class142 = nickname | data142 = {{{geocode|}}} <!-- ISO Code--> | rowclass143 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}|mergedrow|mergedtoprow}} | label143 = [[ISO 3166|ISO 3166 code]] | class143 = nickname | data143 = {{{iso_code|}}} <!-- Vehicle registration plate--> | rowclass144 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}|mergedrow|mergedtoprow}} | label144 = {{if empty|{{{registration_plate_type|}}}|[[Vehicle registration plate|Vehicle registration]]}} | data144 = {{{registration_plate|}}} <!-- Other codes --> | rowclass145 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}|mergedrow|mergedtoprow}} | label145 = {{{code1_name|}}} | class145 = nickname | data145 = {{#if:{{{code1_name|}}}|{{{code1_info|}}}}} | rowclass146 = {{#if:{{{postal_code|}}}{{{postal2_code|}}}{{{area_code|}}}{{{geocode|}}}{{{iso_code|}}}{{{registration_plate|}}}{{{code1_name|}}}|mergedrow|mergedtoprow}} | label146 = {{{code2_name|}}} | class146 = nickname | data146 = {{#if:{{{code2_name|}}}|{{{code2_info|}}}}} <!-- ***Blank Fields (two sections)*** --> | rowclass147 = mergedtoprow | label147 = {{{blank_name_sec1|{{{blank_name|}}}}}} | data147 = {{#if:{{{blank_name_sec1|{{{blank_name|}}}}}}|{{{blank_info_sec1|{{{blank_info|}}}}}}}} | rowclass148 = mergedrow | label148 = {{{blank1_name_sec1|{{{blank1_name|}}}}}} | data148 = {{#if:{{{blank1_name_sec1|{{{blank1_name|}}}}}}|{{{blank1_info_sec1|{{{blank1_info|}}}}}}}} | rowclass149 = mergedrow | label149 = {{{blank2_name_sec1|{{{blank2_name|}}}}}} | data149 = {{#if:{{{blank2_name_sec1|{{{blank2_name|}}}}}}|{{{blank2_info_sec1|{{{blank2_info|}}}}}}}} | rowclass150 = mergedrow | label150 = {{{blank3_name_sec1|{{{blank3_name|}}}}}} | data150 = {{#if:{{{blank3_name_sec1|{{{blank3_name|}}}}}}|{{{blank3_info_sec1|{{{blank3_info|}}}}}}}} | rowclass151 = mergedrow | label151 = {{{blank4_name_sec1|{{{blank4_name|}}}}}} | data151 = {{#if:{{{blank4_name_sec1|{{{blank4_name|}}}}}}|{{{blank4_info_sec1|{{{blank4_info|}}}}}}}} | rowclass152 = mergedrow | label152 = {{{blank5_name_sec1|{{{blank5_name|}}}}}} | data152 = {{#if:{{{blank5_name_sec1|{{{blank5_name|}}}}}}|{{{blank5_info_sec1|{{{blank5_info|}}}}}}}} | rowclass153 = mergedrow | label153 = {{{blank6_name_sec1|{{{blank6_name|}}}}}} | data153 = {{#if:{{{blank6_name_sec1|{{{blank6_name|}}}}}}|{{{blank6_info_sec1|{{{blank6_info|}}}}}}}} | rowclass154 = mergedrow | label154 = {{{blank7_name_sec1|{{{blank7_name|}}}}}} | data154 = {{#if:{{{blank7_name_sec1|{{{blank7_name|}}}}}}|{{{blank7_info_sec1|{{{blank7_info|}}}}}}}} | rowclass155 = mergedtoprow | label155 = {{{blank_name_sec2}}} | data155 = {{#if:{{{blank_name_sec2|}}}|{{{blank_info_sec2|}}}}} | rowclass156 = mergedrow | label156 = {{{blank1_name_sec2}}} | data156 = {{#if:{{{blank1_name_sec2|}}}|{{{blank1_info_sec2|}}}}} | rowclass157 = mergedrow | label157 = {{{blank2_name_sec2}}} | data157 = {{#if:{{{blank2_name_sec2|}}}|{{{blank2_info_sec2|}}}}} | rowclass158 = mergedrow | label158 = {{{blank3_name_sec2}}} | data158 = {{#if:{{{blank3_name_sec2|}}}|{{{blank3_info_sec2|}}}}} | rowclass159 = mergedrow | label159 = {{{blank4_name_sec2}}} | data159 = {{#if:{{{blank4_name_sec2|}}}|{{{blank4_info_sec2|}}}}} | rowclass160 = mergedrow | label160 = {{{blank5_name_sec2}}} | data160 = {{#if:{{{blank5_name_sec2|}}}|{{{blank5_info_sec2|}}}}} | rowclass161 = mergedrow | label161 = {{{blank6_name_sec2}}} | data161 = {{#if:{{{blank6_name_sec2|}}}|{{{blank6_info_sec2|}}}}} | rowclass162 = mergedrow | label162 = {{{blank7_name_sec2}}} | data162 = {{#if:{{{blank7_name_sec2|}}}|{{{blank7_info_sec2|}}}}} <!-- ***Website*** --> | rowclass163 = mergedtoprow | label163 = Website | data163 = {{#if:{{{website|}}}|{{{website}}}}} | class164 = maptable | data164 = {{#if:{{{module|}}}|{{{module}}}}} <!-- ***Footnotes*** --> | belowrowclass = mergedtoprow | below = {{{footnotes|}}} }}<!-- Check for unknowns -->{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview = Page using [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] with unknown parameter "_VALUE_"|ignoreblank=y|mapframe_args=y | alt | anthem | anthem_link | area_blank1_acre | area_blank1_dunam | area_blank1_ha | area_blank1_km2 | area_blank1_sq_mi | area_blank1_title | area_blank2_acre | area_blank2_dunam | area_blank2_ha | area_blank2_km2 | area_blank2_sq_mi | area_blank2_title | area_code | area_code_type | area_codes | area_footnotes | area_land_acre | area_land_dunam | area_land_ha | area_land_km2 | area_land_sq_mi | area_metro_acre | area_metro_dunam | area_metro_footnotes | area_metro_ha | area_metro_km2 | area_metro_sq_mi | area_note | area_rank | area_rural_acre | area_rural_dunam | area_rural_footnotes | area_rural_ha | area_rural_km2 | area_rural_sq_mi | area_total_acre | area_total_dunam | area_total_ha | area_total_km2 | area_total_sq_mi | area_urban_acre | area_urban_dunam | area_urban_footnotes | area_urban_ha | area_urban_km2 | area_urban_sq_mi | area_water_acre | area_water_dunam | area_water_ha | area_water_km2 | area_water_percent | area_water_sq_mi | blank_emblem_alt | blank_emblem_link | blank_emblem_size | blank_emblem_type | blank_emblem_sizedefault | blank_emblem_upright | blank_info | blank_info_sec1 | blank_info_sec2 | blank_name | blank_name_sec1 | blank_name_sec2 | blank1_info | blank1_info_sec1 | blank1_info_sec2 | blank1_name | blank1_name_sec1 | blank1_name_sec2 | blank2_info | blank2_info_sec1 | blank2_info_sec2 | blank2_name | blank2_name_sec1 | blank2_name_sec2 | blank3_info | blank3_info_sec1 | blank3_info_sec2 | blank3_name | blank3_name_sec1 | blank3_name_sec2 | blank4_info | blank4_info_sec1 | blank4_info_sec2 | blank4_name | blank4_name_sec1 | blank4_name_sec2 | blank5_info | blank5_info_sec1 | blank5_info_sec2 | blank5_name | blank5_name_sec1 | blank5_name_sec2 | blank6_info | blank6_info_sec1 | blank6_info_sec2 | blank6_name | blank6_name_sec1 | blank6_name_sec2 | blank7_info | blank7_info_sec1 | blank7_info_sec2 | blank7_name | blank7_name_sec1 | blank7_name_sec2 | caption | code1_info | code1_name | code2_info | code2_name | coor_pinpoint | coor_type | coordinates | coordinates_footnotes | demographics_type1 | demographics_type2 | demographics1_footnotes | demographics1_info1 | demographics1_info10 | demographics1_info2 | demographics1_info3 | demographics1_info4 | demographics1_info5 | demographics1_info6 | demographics1_info7 | demographics1_info8 | demographics1_info9 | demographics1_title1 | demographics1_title10 | demographics1_title2 | demographics1_title3 | demographics1_title4 | demographics1_title5 | demographics1_title6 | demographics1_title7 | demographics1_title8 | demographics1_title9 | demographics2_footnotes | demographics2_info1 | demographics2_info10 | demographics2_info2 | demographics2_info3 | demographics2_info4 | demographics2_info5 | demographics2_info6 | demographics2_info7 | demographics2_info8 | demographics2_info9 | demographics2_title1 | demographics2_title10 | demographics2_title2 | demographics2_title3 | demographics2_title4 | demographics2_title5 | demographics2_title6 | demographics2_title7 | demographics2_title8 | demographics2_title9 | dimensions_footnotes | dunam_link | elevation_footnotes | elevation_ft | elevation_link | elevation_m | elevation_max_footnotes | elevation_max_ft | elevation_max_m | elevation_max_point | elevation_max_rank | elevation_min_footnotes | elevation_min_ft | elevation_min_m | elevation_min_point | elevation_min_rank | elevation_point | embed | established_date | established_date1 | established_date2 | established_date3 | established_date4 | established_date5 | established_date6 | established_date7 | established_title | established_title1 | established_title2 | established_title3 | established_title4 | established_title5 | established_title6 | established_title7 | etymology | extinct_date | extinct_title | flag_alt | flag_border | flag_link | flag_size | footnotes | founder | geocode | governing_body | government_footnotes | government_type | government_blank1_title | government_blank1 | government_blank2_title | government_blank2 | government_blank2_title | government_blank3 | government_blank3_title | government_blank3 | government_blank4_title | government_blank4 | government_blank5_title | government_blank5 | government_blank6_title | government_blank6 | grid_name | grid_position | image_alt | image_blank_emblem | image_caption | image_flag | image_map | image_map1 | image_seal | image_shield | image_size | image_skyline | imagesize | image_sizedefault | image_upright | mapQuery | iso_code | leader_name | leader_name1 | leader_name2 | leader_name3 | leader_name4 | leader_name5 | leader_party | leader_title | leader_title1 | leader_title2 | leader_title3 | leader_title4 | leader_title5 | length_km | length_mi | map_alt | map_alt1 | map_caption | map_caption1 | mapsize | mapsize1 | module | motto | motto_link | mottoes | name | named_for | native_name | native_name_lang | nickname | nickname_link | nicknames | official_name | other_name | p1 | p10 | p11 | p12 | p13 | p14 | p15 | p16 | p17 | p18 | p19 | p2 | p20 | p21 | p22 | p23 | p24 | p25 | p26 | p27 | p28 | p29 | p3 | p30 | p31 | p32 | p33 | p34 | p35 | p36 | p37 | p38 | p39 | p4 | p40 | p41 | p42 | p43 | p44 | p45 | p46 | p47 | p48 | p49 | p5 | p50 | p6 | p7 | p8 | p9 | parts | parts_style | parts_type | pop_est_as_of | pop_est_footnotes | population_as_of | population_blank1 | population_blank1_footnotes | population_blank1_title | population_blank2 | population_blank2_footnotes | population_blank2_title | population_demonym | population_demonyms | population_density_blank1_km2 | population_density_blank1_sq_mi | population_density_blank2_km2 | population_density_blank2_sq_mi | population_density_km2 | population_density_metro_km2 | population_density_metro_sq_mi | population_density_rank | population_density_rural_km2 | population_density_rural_sq_mi | population_density_sq_mi | population_density_urban_km2 | population_density_urban_sq_mi | population_est | population_footnotes | population_metro | population_metro_footnotes | population_note | population_rank | population_rural | population_rural_footnotes | population_total | population_urban | population_urban_footnotes | postal_code | postal_code_type | postal2_code | postal2_code_type | pushpin_image | pushpin_label | pushpin_label_position | pushpin_map | pushpin_map_alt | pushpin_map_caption | pushpin_map_caption_notsmall | pushpin_map_narrow | pushpin_mapsize | pushpin_outside | pushpin_overlay | pushpin_relief | registration_plate | registration_plate_type | seal_alt | seal_link | seal_size | seal_type | seat | seat_type | seat1 | seat1_type | seat2 | seat2_type | settlement_type | shield_alt | shield_link | shield_size | short_description <!--used by Module:Settlement short description-->| subdivision_name | subdivision_name1 | subdivision_name2 | subdivision_name3 | subdivision_name4 | subdivision_name5 | subdivision_name6 | subdivision_type | subdivision_type1 | subdivision_type2 | subdivision_type3 | subdivision_type4 | subdivision_type5 | subdivision_type6 | template_name | timezone | timezone_DST | timezone_link | timezone1 | timezone1_DST | timezone1_location | timezone2 | timezone2_DST | timezone2_location | timezone3 | timezone3_DST | timezone3_location | timezone4 | timezone4_DST | timezone4_location | timezone5 | timezone5_DST | timezone5_location | total_type | translit_lang1 | translit_lang1_info | translit_lang1_info1 | translit_lang1_info2 | translit_lang1_info3 | translit_lang1_info4 | translit_lang1_info5 | translit_lang1_info6 | translit_lang1_type | translit_lang1_type1 | translit_lang1_type2 | translit_lang1_type3 | translit_lang1_type4 | translit_lang1_type5 | translit_lang1_type6 | translit_lang2 | translit_lang2_info | translit_lang2_info1 | translit_lang2_info2 | translit_lang2_info3 | translit_lang2_info4 | translit_lang2_info5 | translit_lang2_info6 | translit_lang2_type | translit_lang2_type1 | translit_lang2_type2 | translit_lang2_type3 | translit_lang2_type4 | translit_lang2_type5 | translit_lang2_type6 | type | unit_pref | utc_offset | utc_offset_DST | utc_offset1 | utc_offset1_DST | utc_offset2 | utc_offset2_DST | utc_offset3 | utc_offset3_DST | utc_offset4 | utc_offset4_DST | utc_offset5 | utc_offset5_DST | website | width_km | width_mi }}<!-- -->{{#invoke:Check for conflicting parameters|check | template = [[Template:{{if empty|{{ucfirst:{{{template_name|}}}}}|Infobox settlement}}]] | cat = {{main other|Category:Pages using {{if empty|{{lcfirst:{{{template_name|}}}}}|infobox settlement}} with conflicting parameters}} | image_size; imagesize | image_alt; alt | image_caption; caption | settlement_type; type | utc_offset1; utc_offset | timezone1; timezone }}<!-- Wikidata -->{{#if:{{{coordinates_wikidata|}}}{{{wikidata|}}} |[[Category:Pages using infobox settlement with the wikidata parameter]] }}{{main other|<!-- Missing country -->{{#if:{{{subdivision_name|}}}||[[Category:Pages using infobox settlement with missing country]]}}<!-- No map -->{{#if:{{{pushpin_map|}}}{{{image_map|}}}{{{image_map1|}}}||[[Category:Pages using infobox settlement with no map]]}}<!-- Image_map1 without image_map -->{{#if:{{{image_map1|}}}|{{#if:{{{image_map|}}}||[[Category:Pages using infobox settlement with image_map1 but not image_map]]}}}}<!-- No coordinates -->{{#if:{{{coordinates|}}}||[[Category:Pages using infobox settlement with no coordinates]]}}<!-- -->{{#if:{{{embed|}}}|[[Category:Pages using infobox settlement with embed]]}} }}<!-- Gathering information on over-use of maps -->{{#ifexpr:{{#invoke:ParameterCount|main|mapframe|image_map|image_map1|pushpin_map}} >2 |{{main other| [[Category:Pages using infobox settlement with potentially too many maps]]}}}}</includeonly><noinclude> {{documentation}} <!--Please add this template's categories to the /doc subpage, not here - thanks!--> </noinclude> 30palre80wzp6ye67fau6o3k96jb8yb Administrasaun Tranzisaun Nasoens Unidas iha Timor Leste 0 8083 72691 72677 2026-06-30T19:04:31Z Robertsky 10424 Robertsky moveu [[UNTAET]] para [[Administrasaun Tranzisaun Nasoens Unidas iha Timor Leste]] 72677 wikitext text/x-wiki '''Administrasaun Tranzisaun Nasoens Unidas iha Timor Leste''' (UNTAET: Inglez United Nations Transitional Administration in East Timor) mak misaun Nasoens Unidas nian iha [[Timór Lorosa'e|Timor Lorosa’e]] ne’ebé ho objetivu atu rezolve krize iha [[Timór Lorosa'e|Timor Lorosa’e]] durante dékada barak nia laran iha área ne’ebé militár Indonézia okupa. [[UNTAET]] fornese administrasaun sivíl interinu no misaun manutensaun pás nian iha territóriu Timór-Leste nian, dezde nia estabelesimentu iha 25 Outubru 1999, to’o nia independénsia iha 20 Maiu 2002, nu’udar rezultadu husi Referendu Autonomia Espesial Timor Leste. Administrasaun tranzisaun harii hosi Rezolusaun Konsellu Seguransa Nasoins Unidas nian 1272 iha tinan 1999. husckp3brykd0jmgptutn62kyusog1y 72696 72691 2026-06-30T19:35:26Z J. Patrick Fischer 73 72696 wikitext text/x-wiki [[Imajen:INTERFET-UNTAET handover.jpg|miniaturadaimagem|Transferénsia kontrolu husi INTERFET ba UNTAET (1999)]] '''Administrasaun Tranzisaun Nasoens Unidas iha Timor Leste''' (UNTAET: Inglez United Nations Transitional Administration in East Timor) mak misaun Nasoens Unidas nian iha [[Timór Lorosa'e|Timor Lorosa’e]] ne’ebé ho objetivu atu rezolve krize iha [[Timór Lorosa'e|Timor Lorosa’e]] durante dékada barak nia laran iha área ne’ebé militár Indonézia okupa. [[UNTAET]] fornese administrasaun sivíl interinu no misaun manutensaun pás nian iha territóriu Timór-Leste nian, dezde nia estabelesimentu iha 25 Outubru 1999, to’o nia independénsia iha 20 Maiu 2002, nu’udar rezultadu husi Referendu Autonomia Espesial Timor Leste. Administrasaun tranzisaun harii hosi Rezolusaun Konsellu Seguransa Nasoins Unidas nian 1272 iha tinan 1999. 9peemj1nfw92ro3f53zoehlp8hrozvt 72697 72696 2026-06-30T19:36:17Z J. Patrick Fischer 73 72697 wikitext text/x-wiki [[Imajen:INTERFET-UNTAET handover.jpg|miniaturadaimagem|Transferénsia kontrolu husi [[INTERFET]] ba UNTAET (1999)]] '''Administrasaun Tranzisaun Nasoens Unidas iha Timor Leste''' (UNTAET: Inglez United Nations Transitional Administration in East Timor) mak misaun Nasoens Unidas nian iha [[Timór Lorosa'e|Timor Lorosa’e]] ne’ebé ho objetivu atu rezolve krize iha [[Timór Lorosa'e|Timor Lorosa’e]] durante dékada barak nia laran iha área ne’ebé militár Indonézia okupa. UNTAET fornese administrasaun sivíl interinu no misaun manutensaun pás nian iha territóriu Timór-Leste nian, dezde nia estabelesimentu iha 25 Outubru 1999, to’o nia independénsia iha 20 Maiu 2002, nu’udar rezultadu husi Referendu Autonomia Espesial Timor Leste. Administrasaun tranzisaun harii hosi Rezolusaun Konsellu Seguransa Nasoins Unidas nian 1272 iha tinan 1999. q7r76lrrugeuf9ep0vas19r9sf1rdud UNTAET 0 8095 72692 2026-06-30T19:04:31Z Robertsky 10424 Robertsky moveu [[UNTAET]] para [[Administrasaun Tranzisaun Nasoens Unidas iha Timor Leste]] 72692 wikitext text/x-wiki #REDIRECIONAMENTO [[Administrasaun Tranzisaun Nasoens Unidas iha Timor Leste]] 9mj7icot82c2waypw9swlbnqo0rwn39 Módulo:Infokaixa 828 8097 72699 2026-06-30T21:01:41Z Robertsky 10424 Robertsky moveu [[Módulo:Infokaixa]] para o seu redirecionamento [[Módulo:Infobox]]: revert due to style.css 72699 Scribunto text/plain return require [[Módulo:Infobox]] ps84081vdc3dgdi49td88bqjoxet66c Módulo:Infobox/doc 828 8098 72701 2025-12-13T06:30:43Z en>Tactica 0 Update {{Lua}}. 72701 wikitext text/x-wiki {{High-use|3308957|all-pages = yes}} {{module rating|protected}} {{Lua|Module:Italic title|Module:Navbar|Module:Yesno}} {{Uses TemplateStyles|Module:Infobox/styles.css|Template:Hlist/styles.css|Template:Plainlist/styles.css}} '''Module:Infobox''' is a [[WP:Module|module]] that implements the {{tl|Infobox}} template. Please see the template page for usage instructions. == Tracking categories == * {{clc|Pages using infobox templates with ignored data cells}} * {{clc|Articles using infobox templates with no data rows}} * {{clc|Pages using embedded infobox templates with the title parameter}} <includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox|| [[Category:Modules that add a tracking category]] [[Category:Wikipedia infoboxes]] [[Category:Infobox modules]] [[Category:Modules that check for strip markers]] }}</includeonly><noinclude> [[Category:Module documentation pages]] </noinclude> dneb69n9gth7d34gnv8y3zg9c5bycb1 72702 72701 2026-06-30T21:02:46Z Robertsky 10424 1 versaun husi [[:en:Module:Infobox/doc]] 72701 wikitext text/x-wiki {{High-use|3308957|all-pages = yes}} {{module rating|protected}} {{Lua|Module:Italic title|Module:Navbar|Module:Yesno}} {{Uses TemplateStyles|Module:Infobox/styles.css|Template:Hlist/styles.css|Template:Plainlist/styles.css}} '''Module:Infobox''' is a [[WP:Module|module]] that implements the {{tl|Infobox}} template. Please see the template page for usage instructions. == Tracking categories == * {{clc|Pages using infobox templates with ignored data cells}} * {{clc|Articles using infobox templates with no data rows}} * {{clc|Pages using embedded infobox templates with the title parameter}} <includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox|| [[Category:Modules that add a tracking category]] [[Category:Wikipedia infoboxes]] [[Category:Infobox modules]] [[Category:Modules that check for strip markers]] }}</includeonly><noinclude> [[Category:Module documentation pages]] </noinclude> dneb69n9gth7d34gnv8y3zg9c5bycb1 72703 72702 2026-06-30T21:03:25Z Robertsky 10424 72703 wikitext text/x-wiki {{module rating|protected}} {{Lua|Module:Italic title|Module:Navbar|Module:Yesno}} {{Uses TemplateStyles|Module:Infobox/styles.css|Template:Hlist/styles.css|Template:Plainlist/styles.css}} '''Module:Infobox''' is a [[WP:Module|module]] that implements the {{tl|Infobox}} template. Please see the template page for usage instructions. == Tracking categories == * {{clc|Pages using infobox templates with ignored data cells}} * {{clc|Articles using infobox templates with no data rows}} * {{clc|Pages using embedded infobox templates with the title parameter}} <includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox|| [[Category:Modules that add a tracking category]] [[Category:Wikipedia infoboxes]] [[Category:Infobox modules]] [[Category:Modules that check for strip markers]] }}</includeonly><noinclude> [[Category:Module documentation pages]] </noinclude> 7dxlxgf6ndj2kqjvet81tjqvc2au5lw Módulo:Message box/doc 828 8099 72705 2025-11-14T16:54:09Z en>DB1729 0 Reverted 1 edit by [[Special:Contributions/~2025-33574-07|~2025-33574-07]] ([[User talk:~2025-33574-07|talk]]) to last revision by 2600 etc 72705 wikitext text/x-wiki {{Used in system}} {{module rating|p}} {{cascade-protected template|page=module}} {{Lua|Module:Message box/configuration|Module:Yesno|Module:Arguments|Module:Category handler}} {{Uses TemplateStyles|Module:Message box/ambox.css|Module:Message box/cmbox.css|Module:Message box/fmbox.css|Module:Message box/imbox.css|Module:Message box/ombox.css|Module:Message box/tmbox.css}} This is a meta-module that implements the message box templates {{tl|mbox}}, {{tl|ambox}}, {{tl|cmbox}}, {{tl|fmbox}}, {{tl|imbox}}, {{tl|ombox}}, and {{tl|tmbox}}. It is intended to be used from Lua modules, and should not be used directly from wiki pages. If you want to use this module's functionality from a wiki page, please use the individual message box templates instead. == Usage == To use this module from another Lua module, first you need to load it. <syntaxhighlight lang="lua"> local messageBox = require('Module:Message box') </syntaxhighlight> To create a message box, use the <code>main</code> function. It takes two parameters: the first is the box type (as a string), and the second is a table containing the message box parameters. <syntaxhighlight lang="lua"> local box = messageBox.main( boxType, { param1 = param1, param2 = param2, -- More parameters... }) </syntaxhighlight> There are seven available box types: {| class="wikitable" ! Box type !! Template !! Purpose |- | <code>mbox</code> || {{tl|mbox}} || For message boxes to be used in multiple namespaces |- | <code>ambox</code> || {{tl|ambox}} || For article message boxes |- | <code>cmbox</code> || {{tl|cmbox}} || For category message boxes |- | <code>fmbox</code> || {{tl|fmbox}} || For interface message boxes |- | <code>imbox</code> || {{tl|imbox}} || For file namespace message boxes |- | <code>tmbox</code> || {{tl|tmbox}} || For talk page message boxes |- | <code>ombox</code> || {{tl|ombox}} || For message boxes in other namespaces |} See the template page of each box type for the available parameters. == Usage from #invoke == As well as the <code>main</code> function, this module has separate functions for each box type. They are accessed using the code <code><nowiki>{{#invoke:Message box|mbox|...}}</nowiki></code>, <code><nowiki>{{#invoke:Message box|ambox|...}}</nowiki></code>, etc. These will work when called from other modules, but they access code used to process arguments passed from #invoke, and so calling them will be less efficient than calling <code>main</code>. == Technical details == The module uses the same basic code for each of the templates listed above; the differences between each of them are configured using the data at [[Module:Message box/configuration]]. Here are the various configuration options and what they mean: * <code>types</code> – a table containing data used by the type parameter of the message box. The table keys are the values that can be passed to the type parameter, and the table values are tables containing the class and the image used by that type. * <code>default</code> – the type to use if no value was passed to the type parameter, or if an invalid value was specified. * <code>showInvalidTypeError</code> – whether to show an error if the value passed to the type parameter was invalid. * <code>allowBlankParams</code> – usually blank values are stripped from parameters passed to the module. However, whitespace is preserved for the parameters included in the allowBlankParams table. * <code>allowSmall</code> – whether a small version of the message box can be produced with "small=yes". * <code>smallParam</code> – a custom name for the small parameter. For example, if set to "left" you can produce a small message box using "small=left". * <code>smallClass</code> – the class to use for small message boxes. * <code>substCheck</code> – whether to perform a subst check or not. * <code>classes</code> – an array of classes to use with the message box. * <code>imageEmptyCell</code> – whether to use an empty {{tag|td}} cell if there is no image set. This is used to preserve spacing for message boxes with a width of less than 100% of the screen. * <code>imageEmptyCellStyle</code> – whether empty image cells should be styled. * <code>imageCheckBlank</code> – whether "image=blank" results in no image being displayed. * <code>imageSmallSize</code> – usually, images used in small message boxes are set to 30x30px. This sets a custom size. * <code>imageCellDiv</code> – whether to enclose the image in a div enforcing a maximum image size. * <code>useCollapsibleTextFields</code> – whether to use text fields that can be collapsed, i.e. "issue", "fix", "talk", etc. Currently only used in ambox. * <code>imageRightNone</code> – whether imageright=none results in no image being displayed on the right-hand side of the message box. * <code>sectionDefault</code> – the default name for the "section" parameter. Depends on <code>useCollapsibleTextFields</code>. * <code>allowMainspaceCategories</code> – allow categorisation in the main namespace. * <code>templateCategory</code> – the name of a category to be placed on the template page. * <code>templateCategoryRequireName</code> – whether the <code>name</code> parameter is required to display the template category. * <code>templateErrorCategory</code> – the name of the error category to be used on the template page. * <code>templateErrorParamsToCheck</code> – an array of parameter names to check. If any are absent, the <code>templateErrorCategory</code> is applied to the template page. <includeonly>{{Sandbox other|| [[Category:Wikipedia modules]] }}</includeonly> 6z0zbnabyeran1jvhnpy4leboi91619 72706 72705 2026-06-30T21:06:56Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/doc]] 72705 wikitext text/x-wiki {{Used in system}} {{module rating|p}} {{cascade-protected template|page=module}} {{Lua|Module:Message box/configuration|Module:Yesno|Module:Arguments|Module:Category handler}} {{Uses TemplateStyles|Module:Message box/ambox.css|Module:Message box/cmbox.css|Module:Message box/fmbox.css|Module:Message box/imbox.css|Module:Message box/ombox.css|Module:Message box/tmbox.css}} This is a meta-module that implements the message box templates {{tl|mbox}}, {{tl|ambox}}, {{tl|cmbox}}, {{tl|fmbox}}, {{tl|imbox}}, {{tl|ombox}}, and {{tl|tmbox}}. It is intended to be used from Lua modules, and should not be used directly from wiki pages. If you want to use this module's functionality from a wiki page, please use the individual message box templates instead. == Usage == To use this module from another Lua module, first you need to load it. <syntaxhighlight lang="lua"> local messageBox = require('Module:Message box') </syntaxhighlight> To create a message box, use the <code>main</code> function. It takes two parameters: the first is the box type (as a string), and the second is a table containing the message box parameters. <syntaxhighlight lang="lua"> local box = messageBox.main( boxType, { param1 = param1, param2 = param2, -- More parameters... }) </syntaxhighlight> There are seven available box types: {| class="wikitable" ! Box type !! Template !! Purpose |- | <code>mbox</code> || {{tl|mbox}} || For message boxes to be used in multiple namespaces |- | <code>ambox</code> || {{tl|ambox}} || For article message boxes |- | <code>cmbox</code> || {{tl|cmbox}} || For category message boxes |- | <code>fmbox</code> || {{tl|fmbox}} || For interface message boxes |- | <code>imbox</code> || {{tl|imbox}} || For file namespace message boxes |- | <code>tmbox</code> || {{tl|tmbox}} || For talk page message boxes |- | <code>ombox</code> || {{tl|ombox}} || For message boxes in other namespaces |} See the template page of each box type for the available parameters. == Usage from #invoke == As well as the <code>main</code> function, this module has separate functions for each box type. They are accessed using the code <code><nowiki>{{#invoke:Message box|mbox|...}}</nowiki></code>, <code><nowiki>{{#invoke:Message box|ambox|...}}</nowiki></code>, etc. These will work when called from other modules, but they access code used to process arguments passed from #invoke, and so calling them will be less efficient than calling <code>main</code>. == Technical details == The module uses the same basic code for each of the templates listed above; the differences between each of them are configured using the data at [[Module:Message box/configuration]]. Here are the various configuration options and what they mean: * <code>types</code> – a table containing data used by the type parameter of the message box. The table keys are the values that can be passed to the type parameter, and the table values are tables containing the class and the image used by that type. * <code>default</code> – the type to use if no value was passed to the type parameter, or if an invalid value was specified. * <code>showInvalidTypeError</code> – whether to show an error if the value passed to the type parameter was invalid. * <code>allowBlankParams</code> – usually blank values are stripped from parameters passed to the module. However, whitespace is preserved for the parameters included in the allowBlankParams table. * <code>allowSmall</code> – whether a small version of the message box can be produced with "small=yes". * <code>smallParam</code> – a custom name for the small parameter. For example, if set to "left" you can produce a small message box using "small=left". * <code>smallClass</code> – the class to use for small message boxes. * <code>substCheck</code> – whether to perform a subst check or not. * <code>classes</code> – an array of classes to use with the message box. * <code>imageEmptyCell</code> – whether to use an empty {{tag|td}} cell if there is no image set. This is used to preserve spacing for message boxes with a width of less than 100% of the screen. * <code>imageEmptyCellStyle</code> – whether empty image cells should be styled. * <code>imageCheckBlank</code> – whether "image=blank" results in no image being displayed. * <code>imageSmallSize</code> – usually, images used in small message boxes are set to 30x30px. This sets a custom size. * <code>imageCellDiv</code> – whether to enclose the image in a div enforcing a maximum image size. * <code>useCollapsibleTextFields</code> – whether to use text fields that can be collapsed, i.e. "issue", "fix", "talk", etc. Currently only used in ambox. * <code>imageRightNone</code> – whether imageright=none results in no image being displayed on the right-hand side of the message box. * <code>sectionDefault</code> – the default name for the "section" parameter. Depends on <code>useCollapsibleTextFields</code>. * <code>allowMainspaceCategories</code> – allow categorisation in the main namespace. * <code>templateCategory</code> – the name of a category to be placed on the template page. * <code>templateCategoryRequireName</code> – whether the <code>name</code> parameter is required to display the template category. * <code>templateErrorCategory</code> – the name of the error category to be used on the template page. * <code>templateErrorParamsToCheck</code> – an array of parameter names to check. If any are absent, the <code>templateErrorCategory</code> is applied to the template page. <includeonly>{{Sandbox other|| [[Category:Wikipedia modules]] }}</includeonly> 6z0zbnabyeran1jvhnpy4leboi91619 72707 72706 2026-06-30T21:08:16Z Robertsky 10424 72707 wikitext text/x-wiki {{Used in system}} {{module rating|p}} {{Lua|Module:Message box/configuration|Module:Yesno|Module:Arguments|Module:Category handler}} {{Uses TemplateStyles|Module:Message box/ambox.css|Module:Message box/cmbox.css|Module:Message box/fmbox.css|Module:Message box/imbox.css|Module:Message box/ombox.css|Module:Message box/tmbox.css}} This is a meta-module that implements the message box templates {{tl|mbox}}, {{tl|ambox}}, {{tl|cmbox}}, {{tl|fmbox}}, {{tl|imbox}}, {{tl|ombox}}, and {{tl|tmbox}}. It is intended to be used from Lua modules, and should not be used directly from wiki pages. If you want to use this module's functionality from a wiki page, please use the individual message box templates instead. == Usage == To use this module from another Lua module, first you need to load it. <syntaxhighlight lang="lua"> local messageBox = require('Module:Message box') </syntaxhighlight> To create a message box, use the <code>main</code> function. It takes two parameters: the first is the box type (as a string), and the second is a table containing the message box parameters. <syntaxhighlight lang="lua"> local box = messageBox.main( boxType, { param1 = param1, param2 = param2, -- More parameters... }) </syntaxhighlight> There are seven available box types: {| class="wikitable" ! Box type !! Template !! Purpose |- | <code>mbox</code> || {{tl|mbox}} || For message boxes to be used in multiple namespaces |- | <code>ambox</code> || {{tl|ambox}} || For article message boxes |- | <code>cmbox</code> || {{tl|cmbox}} || For category message boxes |- | <code>fmbox</code> || {{tl|fmbox}} || For interface message boxes |- | <code>imbox</code> || {{tl|imbox}} || For file namespace message boxes |- | <code>tmbox</code> || {{tl|tmbox}} || For talk page message boxes |- | <code>ombox</code> || {{tl|ombox}} || For message boxes in other namespaces |} See the template page of each box type for the available parameters. == Usage from #invoke == As well as the <code>main</code> function, this module has separate functions for each box type. They are accessed using the code <code><nowiki>{{#invoke:Message box|mbox|...}}</nowiki></code>, <code><nowiki>{{#invoke:Message box|ambox|...}}</nowiki></code>, etc. These will work when called from other modules, but they access code used to process arguments passed from #invoke, and so calling them will be less efficient than calling <code>main</code>. == Technical details == The module uses the same basic code for each of the templates listed above; the differences between each of them are configured using the data at [[Module:Message box/configuration]]. Here are the various configuration options and what they mean: * <code>types</code> – a table containing data used by the type parameter of the message box. The table keys are the values that can be passed to the type parameter, and the table values are tables containing the class and the image used by that type. * <code>default</code> – the type to use if no value was passed to the type parameter, or if an invalid value was specified. * <code>showInvalidTypeError</code> – whether to show an error if the value passed to the type parameter was invalid. * <code>allowBlankParams</code> – usually blank values are stripped from parameters passed to the module. However, whitespace is preserved for the parameters included in the allowBlankParams table. * <code>allowSmall</code> – whether a small version of the message box can be produced with "small=yes". * <code>smallParam</code> – a custom name for the small parameter. For example, if set to "left" you can produce a small message box using "small=left". * <code>smallClass</code> – the class to use for small message boxes. * <code>substCheck</code> – whether to perform a subst check or not. * <code>classes</code> – an array of classes to use with the message box. * <code>imageEmptyCell</code> – whether to use an empty {{tag|td}} cell if there is no image set. This is used to preserve spacing for message boxes with a width of less than 100% of the screen. * <code>imageEmptyCellStyle</code> – whether empty image cells should be styled. * <code>imageCheckBlank</code> – whether "image=blank" results in no image being displayed. * <code>imageSmallSize</code> – usually, images used in small message boxes are set to 30x30px. This sets a custom size. * <code>imageCellDiv</code> – whether to enclose the image in a div enforcing a maximum image size. * <code>useCollapsibleTextFields</code> – whether to use text fields that can be collapsed, i.e. "issue", "fix", "talk", etc. Currently only used in ambox. * <code>imageRightNone</code> – whether imageright=none results in no image being displayed on the right-hand side of the message box. * <code>sectionDefault</code> – the default name for the "section" parameter. Depends on <code>useCollapsibleTextFields</code>. * <code>allowMainspaceCategories</code> – allow categorisation in the main namespace. * <code>templateCategory</code> – the name of a category to be placed on the template page. * <code>templateCategoryRequireName</code> – whether the <code>name</code> parameter is required to display the template category. * <code>templateErrorCategory</code> – the name of the error category to be used on the template page. * <code>templateErrorParamsToCheck</code> – an array of parameter names to check. If any are absent, the <code>templateErrorCategory</code> is applied to the template page. <includeonly>{{Sandbox other|| [[Category:Wikipedia modules]] }}</includeonly> snmdmb6c8cj8vje3ldvsgb5hq9ohtp6 Módulo:Message box/ambox.css 828 8100 72708 2026-06-19T16:34:01Z en>Izno 0 this is silly (but also will clean this up a bit in Parsoid land) 72708 sanitized-css text/css /* {{pp|small=y}} */ .ambox { border: 1px solid #a2a9b1; /* @noflip */ border-left: 10px solid #36c; /* Default "notice" blue */ background-color: #fbfbfb; box-sizing: border-box; } /* Single border between stacked boxes. Take into account base templatestyles, * user styles, and Template:Dated maintenance category. * remove link selector when T200206 is fixed */ .ambox + link + .ambox, .ambox + link + style + .ambox, .ambox + link + link + .ambox, /* TODO: raise these as "is this really that necessary???". the change was Dec 2021 */ .ambox + .mw-empty-elt + link + .ambox, .ambox + .mw-empty-elt + link + style + .ambox, .ambox + .mw-empty-elt + link + link + .ambox, /* category and TemplateStyles are wrapped in an "empty" span in Parsoid [[phab:T378906]] * above variants can be removed when Parsoid is the one true parser */ .ambox + .mw-empty-elt + .ambox, .ambox + .mw-empty-elt + .mw-empty-elt + .ambox, /* * and Template:Dated maintenance category. we can probably remove this flavor * when T200206 is fixed */ .ambox + .mw-empty-elt + .mw-empty-elt + .mw-empty-elt + .ambox { margin-top: -1px; } /* For the "small=left" option. */ /* must override .ambox + .ambox styles above */ html body.mediawiki .ambox.mbox-small-left { /* @noflip */ margin: 4px 1em 4px 0; overflow: hidden; width: 238px; border-collapse: collapse; font-size: 88%; line-height: 1.25em; } .ambox-speedy { /* @noflip */ border-left: 10px solid #b32424; /* Red */ background-color: #fee7e6; /* Pink */ } .ambox-delete { /* @noflip */ border-left: 10px solid #b32424; /* Red */ } .ambox-content { /* @noflip */ border-left: 10px solid #f28500; /* Orange */ } .ambox-style { /* @noflip */ border-left: 10px solid #fc3; /* Yellow */ } .ambox-move { /* @noflip */ border-left: 10px solid #9932cc; /* Purple */ } .ambox-protection { /* @noflip */ border-left: 10px solid #a2a9b1; /* Gray-gold */ } .ambox .mbox-text { border: none; /* @noflip */ padding: 0.25em 0.5em; width: 100%; } .ambox .mbox-image { border: none; /* @noflip */ padding: 2px 0 2px 0.5em; text-align: center; } .ambox .mbox-imageright { border: none; /* @noflip */ padding: 2px 0.5em 2px 0; text-align: center; } /* An empty narrow cell */ .ambox .mbox-empty-cell { border: none; padding: 0; width: 1px; } .ambox .mbox-image-div { width: 52px; } @media (min-width: 720px) { .ambox { margin: 0 10%; /* 10% = Will not overlap with other elements */ } } @media print { body.ns-0 .ambox { display: none !important; } } 30g72q4fmk3q483xtebd7l9b8wtntki 72709 72708 2026-06-30T21:09:47Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/ambox.css]] 72708 sanitized-css text/css /* {{pp|small=y}} */ .ambox { border: 1px solid #a2a9b1; /* @noflip */ border-left: 10px solid #36c; /* Default "notice" blue */ background-color: #fbfbfb; box-sizing: border-box; } /* Single border between stacked boxes. Take into account base templatestyles, * user styles, and Template:Dated maintenance category. * remove link selector when T200206 is fixed */ .ambox + link + .ambox, .ambox + link + style + .ambox, .ambox + link + link + .ambox, /* TODO: raise these as "is this really that necessary???". the change was Dec 2021 */ .ambox + .mw-empty-elt + link + .ambox, .ambox + .mw-empty-elt + link + style + .ambox, .ambox + .mw-empty-elt + link + link + .ambox, /* category and TemplateStyles are wrapped in an "empty" span in Parsoid [[phab:T378906]] * above variants can be removed when Parsoid is the one true parser */ .ambox + .mw-empty-elt + .ambox, .ambox + .mw-empty-elt + .mw-empty-elt + .ambox, /* * and Template:Dated maintenance category. we can probably remove this flavor * when T200206 is fixed */ .ambox + .mw-empty-elt + .mw-empty-elt + .mw-empty-elt + .ambox { margin-top: -1px; } /* For the "small=left" option. */ /* must override .ambox + .ambox styles above */ html body.mediawiki .ambox.mbox-small-left { /* @noflip */ margin: 4px 1em 4px 0; overflow: hidden; width: 238px; border-collapse: collapse; font-size: 88%; line-height: 1.25em; } .ambox-speedy { /* @noflip */ border-left: 10px solid #b32424; /* Red */ background-color: #fee7e6; /* Pink */ } .ambox-delete { /* @noflip */ border-left: 10px solid #b32424; /* Red */ } .ambox-content { /* @noflip */ border-left: 10px solid #f28500; /* Orange */ } .ambox-style { /* @noflip */ border-left: 10px solid #fc3; /* Yellow */ } .ambox-move { /* @noflip */ border-left: 10px solid #9932cc; /* Purple */ } .ambox-protection { /* @noflip */ border-left: 10px solid #a2a9b1; /* Gray-gold */ } .ambox .mbox-text { border: none; /* @noflip */ padding: 0.25em 0.5em; width: 100%; } .ambox .mbox-image { border: none; /* @noflip */ padding: 2px 0 2px 0.5em; text-align: center; } .ambox .mbox-imageright { border: none; /* @noflip */ padding: 2px 0.5em 2px 0; text-align: center; } /* An empty narrow cell */ .ambox .mbox-empty-cell { border: none; padding: 0; width: 1px; } .ambox .mbox-image-div { width: 52px; } @media (min-width: 720px) { .ambox { margin: 0 10%; /* 10% = Will not overlap with other elements */ } } @media print { body.ns-0 .ambox { display: none !important; } } 30g72q4fmk3q483xtebd7l9b8wtntki Módulo:Message box/cmbox.css 828 8101 72710 2025-10-17T00:55:14Z en>Izno 0 bump paddings per [[Module talk:Message box#cmbox migration]] 72710 sanitized-css text/css /* {{pp|small=y}} */ .cmbox { margin: 3px 0; border: 1px solid #a2a9b1; background-color: #dfe8ff; /* Default "notice" blue */ box-sizing: border-box; overflow-x: hidden; /* necessary when embedded in other templates like [[:Category:Pending_AfC_submissions]] */ color: var(--color-base, #202122); } .cmbox-speedy { border: 4px solid #b32424; /* Red */ background-color: #ffdbdb; /* Pink */ } .cmbox-delete { background-color: #ffdbdb; /* Pink */ } .cmbox-content { background-color: #ffe7ce; /* Orange */ } .cmbox-style { background-color: #fff9db; /* Yellow */ } .cmbox-move { background-color: #e4d8ff; /* Purple */ } .cmbox-protection { background-color: #efefe1; /* Gray-gold */ } .cmbox .mbox-text { padding: 0.35em 1em; flex: 1 1 100%; } .cmbox .mbox-image, .cmbox .mbox-imageright { padding: 4px 2px; text-align: center; flex: none; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 480px) { .cmbox { display: flex; align-items: center; } .cmbox .mbox-image { /* @noflip */ padding-left: 1em; } .cmbox .mbox-imageright { /* @noflip */ padding-right: 1em; } } @media (min-width: 640px) { .cmbox { margin: 3px 10%; } } /* flipped lightness in hsl space except the main cmbox is the main page blue */ @media screen { html.skin-theme-clientpref-night .cmbox { background-color: #0d1a27; /* Default "notice" blue */ } html.skin-theme-clientpref-night .cmbox-speedy, html.skin-theme-clientpref-night .cmbox-delete { background-color: #300; /* Pink */ } html.skin-theme-clientpref-night .cmbox-content { background-color: #331a00; /* Orange */ } html.skin-theme-clientpref-night .cmbox-style { background-color: #332b00; /* Yellow */ } html.skin-theme-clientpref-night .cmbox-move { background-color: #08001a; /* Purple */ } html.skin-theme-clientpref-night .cmbox-protection { background-color: #212112; /* Gray-gold */ } } @media screen and ( prefers-color-scheme: dark) { html.skin-theme-clientpref-os .cmbox { background-color: #0d1a27; /* Default "notice" blue */ } html.skin-theme-clientpref-os .cmbox-speedy, html.skin-theme-clientpref-os .cmbox-delete { background-color: #300; /* Pink */ } html.skin-theme-clientpref-os .cmbox-content { background-color: #331a00; /* Orange */ } html.skin-theme-clientpref-os .cmbox-style { background-color: #332b00; /* Yellow */ } html.skin-theme-clientpref-os .cmbox-move { background-color: #08001a; /* Purple */ } html.skin-theme-clientpref-os .cmbox-protection { background-color: #212112; /* Gray-gold */ } } oqldcp715v0ajpe9d9mypufc7binn1n 72711 72710 2026-06-30T21:09:53Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/cmbox.css]] 72710 sanitized-css text/css /* {{pp|small=y}} */ .cmbox { margin: 3px 0; border: 1px solid #a2a9b1; background-color: #dfe8ff; /* Default "notice" blue */ box-sizing: border-box; overflow-x: hidden; /* necessary when embedded in other templates like [[:Category:Pending_AfC_submissions]] */ color: var(--color-base, #202122); } .cmbox-speedy { border: 4px solid #b32424; /* Red */ background-color: #ffdbdb; /* Pink */ } .cmbox-delete { background-color: #ffdbdb; /* Pink */ } .cmbox-content { background-color: #ffe7ce; /* Orange */ } .cmbox-style { background-color: #fff9db; /* Yellow */ } .cmbox-move { background-color: #e4d8ff; /* Purple */ } .cmbox-protection { background-color: #efefe1; /* Gray-gold */ } .cmbox .mbox-text { padding: 0.35em 1em; flex: 1 1 100%; } .cmbox .mbox-image, .cmbox .mbox-imageright { padding: 4px 2px; text-align: center; flex: none; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 480px) { .cmbox { display: flex; align-items: center; } .cmbox .mbox-image { /* @noflip */ padding-left: 1em; } .cmbox .mbox-imageright { /* @noflip */ padding-right: 1em; } } @media (min-width: 640px) { .cmbox { margin: 3px 10%; } } /* flipped lightness in hsl space except the main cmbox is the main page blue */ @media screen { html.skin-theme-clientpref-night .cmbox { background-color: #0d1a27; /* Default "notice" blue */ } html.skin-theme-clientpref-night .cmbox-speedy, html.skin-theme-clientpref-night .cmbox-delete { background-color: #300; /* Pink */ } html.skin-theme-clientpref-night .cmbox-content { background-color: #331a00; /* Orange */ } html.skin-theme-clientpref-night .cmbox-style { background-color: #332b00; /* Yellow */ } html.skin-theme-clientpref-night .cmbox-move { background-color: #08001a; /* Purple */ } html.skin-theme-clientpref-night .cmbox-protection { background-color: #212112; /* Gray-gold */ } } @media screen and ( prefers-color-scheme: dark) { html.skin-theme-clientpref-os .cmbox { background-color: #0d1a27; /* Default "notice" blue */ } html.skin-theme-clientpref-os .cmbox-speedy, html.skin-theme-clientpref-os .cmbox-delete { background-color: #300; /* Pink */ } html.skin-theme-clientpref-os .cmbox-content { background-color: #331a00; /* Orange */ } html.skin-theme-clientpref-os .cmbox-style { background-color: #332b00; /* Yellow */ } html.skin-theme-clientpref-os .cmbox-move { background-color: #08001a; /* Purple */ } html.skin-theme-clientpref-os .cmbox-protection { background-color: #212112; /* Gray-gold */ } } oqldcp715v0ajpe9d9mypufc7binn1n Módulo:Message box/configuration/doc 828 8102 72712 2025-09-09T07:24:20Z en>John of Reading 0 Reverted 1 edit by [[Special:Contributions/184.103.18.202|184.103.18.202]] ([[User talk:184.103.18.202|talk]]): That broke the formatting 72712 wikitext text/x-wiki {{Used in system}} {{Module rating|protected}} {{cascade-protected template|page=module}} Configuration for [[Module:Message box]]. kf9qmkp2rj9sqetq28z0nhoeakrj1pu 72713 72712 2026-06-30T21:10:05Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/configuration/doc]] 72712 wikitext text/x-wiki {{Used in system}} {{Module rating|protected}} {{cascade-protected template|page=module}} Configuration for [[Module:Message box]]. kf9qmkp2rj9sqetq28z0nhoeakrj1pu Módulo Discussão:Message box 829 8103 72714 2026-03-22T16:51:52Z en>Izno 0 Reverted edit by [[Special:Contribs/~2026-17896-29|~2026-17896-29]] ([[User talk:~2026-17896-29|talk]]) to last version by Jonesey95 72714 wikitext text/x-wiki {{oldtfdfull|date= 2020 February 15 |result=keep |disc=Module:Message box}} <noinclude>{{permprot}}</noinclude> {{Archives|bot=lowercase sigmabot III|age=30}} {{User:MiszaBot/config | algo = old(30d) | archive = Module talk:Message box/Archive %(counter)d | counter = 2 | maxarchivesize = 150K | archiveheader = {{Automatic archive navigator}} | minthreadstoarchive = 1 | minthreadsleft = 4 }} ==CSS instead of tables== <!-- [[User:DoNotArchiveUntil]] 07:19, 19 November 2026 (UTC) -->{{User:ClueBot III/DoNotArchiveUntil|1795072785}} {{moved discussion from|Template talk:Ambox#CSS instead of tables|[[User:Sapphaline|Sapphaline]] ([[User talk:Sapphaline|talk]]) 10:25, 20 August 2025 (UTC)}} Could this thing use <code><nowiki><div style="display:table;"></nowiki></code> and <code><nowiki><div style="display:table-cell;"></nowiki></code> instead of literal tables and table cells (<code><nowiki><table></nowiki></code>, <code><nowiki><td></nowiki></code>)? Were the any previous attempts to remake this using <code><nowiki><div></nowiki></code>? If so, what was the consensus? [[User:Sapphaline|Sapphaline]] ([[User talk:Sapphaline|talk]]) 09:46, 20 August 2025 (UTC) :A long time ago this would have been converted to divs but apparently IE sucked (this should not be news). :Today, I have [[User:Izno/Sandbox/Ambox]] with what are some skimmings and started a sandbox at [[Module:Message box/div]]. I have just done a very bad job of finishing this work. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 22:09, 24 August 2025 (UTC) ::Which might be closer to done than not, honestly. I think what it currently needs is to ::# Double check the ambox work ::# Add "soft" support for the other kinds of boxes (where soft is defined as module-supports but config disabled) ::# Merge tested /div version but not CSS into main ::# Enable boxes of each kind one by one. ::#* Leave ambox for penultimate as the most likely to cause some mass noise in a way ::#* Probably somewhere around here do ombox, [https://en.wikipedia.org/w/index.php?search=insource%3A%2FMessage%5B%20_%5Dbox%5C%2Fombox%5C.css%2F%20-intitle%3A%2F(%5BSs%5Dandbox%7C%5C%2Fdoc)%2F&title=Special%3ASearch&profile=advanced&fulltext=1&ns10=1&ns828=1 that has some needed coordination] ::#* Leave tmbox for ultimate, there is work to [https://en.wikipedia.org/w/index.php?search=insource%3A%2FMessage%5B%20_%5Dbox%5C%2Ftmbox%5C.css%2F%20-intitle%3A%2F(%5BSs%5Dandbox%7C%5C%2Fdoc)%2F&title=Special%3ASearch&profile=advanced&fulltext=1&ns10=1&ns828=1 coordinate] ::# Fix bugs that are identified ::# Move CSS over to better-named stylesheet ::# Delete the /div CSS (I won't be too sad) ::# Remove main support for table versions, possibly rename some things ::[[User:Izno|Izno]] ([[User talk:Izno|talk]]) 22:42, 24 August 2025 (UTC) ::I have now put this plan in a publicly editable place at [[Module:Message box/div/doc]]. [[User:Izno|Izno]][[User:IznoPublic|Public]] ([[User talk:Izno#top|talk]]) 00:26, 26 August 2025 (UTC) ::Hi! I didn't know you were doing this, so I made something similar. It seems to work: ::* Module: [https://en.wikipedia.org/w/index.php?title=Module%3AMessage_box%2Fsandbox&diff=1310791170&oldid=1300331049] ::* Styles: [https://en.wikipedia.org/w/index.php?title=Module%3AMessage_box%2Fsandbox%2Fambox.css&diff=1310791252&oldid=1305438959] :: [[User:Iniquity|Iniquity]] ([[User talk:Iniquity|talk]]) 16:57, 11 September 2025 (UTC) :::Yes, I did it in its own sandbox because it's a longterm enough project not to be done in the main sandbox, which should generally be releasable ad hoc for trivial issues. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 17:03, 11 September 2025 (UTC) :::And also, there are enough other dependencies that "just change the two or three places" isn't going to fly. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 17:06, 11 September 2025 (UTC) ::::Where else do you think this will affect? ​​It seems that only the mobile version is oriented towards <syntaxhighlight inline lang="css">table.ambox</syntaxhighlight>, which can also be corrected by CSS [[User:Iniquity|Iniquity]] ([[User talk:Iniquity|talk]]) 17:09, 11 September 2025 (UTC) :::::I have already documented in [[Module:Message box/div/doc]] multiple places that will need careful work, ambox among them. Please feel free to peruse and ask questions about what's there and why. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 17:41, 11 September 2025 (UTC) ::::::Thanks! [[User:Iniquity|Iniquity]] ([[User talk:Iniquity|talk]]) 17:47, 11 September 2025 (UTC) :What's broken here? I've probably wrong but AFAIK for accessibility the existing role="presentation" should suffice. [[User:Aaron Liu|<span class="skin-invert" style="color:#0645ad">Aaron Liu</span>]] ([[User talk:Aaron Liu#top|talk]]) 23:21, 28 August 2025 (UTC) ::You should always endeavor to use the default aria role element. In this case, that's not a table. Ignoring that, tables are shit for doing other presentation with. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 03:20, 29 August 2025 (UTC) :::This /div work is great work, thanks for this <span class="fn nickname" style="color:#CD0000">[[User:Waddie96|waddie96]] ★ ([[User talk:Waddie96|talk]])</span> 19:49, 8 September 2025 (UTC) :Ok, I think we can do {{tl|cmbox}} now. Based on what I wrote down before, the process of a rollout is: :# Alert some key pages. Has to include some verbiage like <blockquote>A change is occurring to how {{tl|cmbox}} is implemented to support mobile resolutions better. It may cause some temporary display weirdness. Further information is available at [[Module talk:Message box#cmbox migration]].</blockquote> with some text at the specific section <blockquote><p>A change is planned to occur in how {{tl|cmbox}} is implemented. It should help improve display at mobile resolutions now, and accessibility later. cmbox was chosen because it has lower reader-facing impact than most other message box types and it's fairly self-contained. The change to cmbox will likely pave the way for other message boxes ({{tl|fmbox}} is probably next).</p><p>You can expect some difference in styling from previous for a small period due to the [[WP:Job queue|job queue]], after which it should return to "normal". You should be able to correct it manually if you want with one of the usual steps ([[WP:PURGE|purge]], [[WP:NULL|null edit]], or [[Help:Dummy edit|dummy edit]]). If an issue with display persists, leave a comment here (this scenario may be possible with some unexpected setup cmboxes).</p></blockquote> :#* Here (here, here is the warning) :#* [[WP:VPT]] :#* [[MediaWiki talk:Common.css]] :#* Maybe [[WT:CAT]] and [[WT:CFD]] :# Sync [[Module:Message box/sandbox]] to [[Module:Message box]] (first time only) :# Within quick succession to next step, sync [[Module:Message box/configuration/sandbox]] to [[Module:Message box/configuration]] :# Within quick succession to previous step, sync [[Module:Message box/div/cmbox.css]] to [[Module:Message box/cmbox.css]] :[[User:Izno|Izno]] ([[User talk:Izno|talk]]) 17:08, 1 October 2025 (UTC) :: The /div main and config modules have got some other adjustments that now make it different from what will end up going live, so they shouldn't generally be synced directly. For future me. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 21:59, 1 October 2025 (UTC) ::Also messages now posted to VPT and Common.css. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 22:00, 1 October 2025 (UTC) ::cmbox is deployed. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 20:30, 2 October 2025 (UTC) :::Ok, cmbox has been basically quiet besides notes from the below. I will now work on fmbox, which should also be relatively low impact. I'm also starting to sketch out imbox which may need to interact with template content from Commons as well as [[:c:MediaWiki:Filepage.css]]. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 20:44, 7 October 2025 (UTC) ::::Turns out I don't currently have to worry about commons names, which is something I should have noted when I split message box CSS during the TemplateStylization. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 01:03, 17 October 2025 (UTC) :::::What does {{tq|split message box CSS during the TemplateStylization}} mean exactly? :::::Also, what can I help with. <span class="fn nickname" style="color:#CD0000">[[User:Waddie96|waddie96]] ★ ([[User talk:Waddie96|talk]])</span> 03:56, 17 October 2025 (UTC) ::::::All of the CSS for the message boxes was once in [[MediaWiki:Common.css]]. I moved it to TemplateStyles with some effort because of [[MediaWiki talk:Common.css/to do#description|reasons]]. ::::::This effort now that I've got my feet under me probably doesn't need much assistance. If you want to spend time on something, working on the problems listed at [[MediaWiki talk:Common.css/to do#Infobox]] would be excellent. If you want to spend some time on stuff, crafting an infobox (using Lua or template) to fix our ''career statistics'' pages would be super helpful. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 00:27, 19 October 2025 (UTC) :{{ping|Izno}} any progress? [[user:sapphaline|<span class="skin-nightmode-reset-color" style="color:#c20;text-decoration:underline">sapphaline</span>]] ([[user talk:sapphaline|<span class="skin-nightmode-reset-color" style="color:#236;text-decoration:underline">talk</span>]]) 13:20, 18 December 2025 (UTC) ::You can see the progress at [[Module:Message box/div/doc]]. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 18:08, 18 December 2025 (UTC) == T367463 == Since it's fixed, can the relevant CSS rule be removed? [[User:Andyrom75|<span style="color:#BB0000; font-family:Papyrus; font-size:12px">'''Andyrom75'''</span>]] ([[User talk:Andyrom75|talk]]) 07:07, 19 November 2025 (UTC) :@[[User:Izno|Izno]], @[[User:Jdlrobson|Jdlrobson]], ping. [[User:Andyrom75|<span style="color:#BB0000; font-family:Papyrus; font-size:12px">'''Andyrom75'''</span>]] ([[User talk:Andyrom75|talk]]) 07:08, 19 November 2025 (UTC) ::What do you think is fixed exactly? [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 07:14, 19 November 2025 (UTC) ::And what rule do you think should be removed? [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 07:19, 19 November 2025 (UTC) ==Plural for {{Tlx|Hooks}}== {{edit fully-protected|answered=yes}} Please copy [https://en.wikipedia.org/w/index.php?title=Module:Message_box/sandbox&oldid=1327882000 this sandbox version] (not the current version, which links to Module:Message box/configuration/sandbox) to live. [https://en.wikipedia.org/w/index.php?title=Module%3AMessage_box%2Fsandbox&diff=1327882000&oldid=1317219285 Changes.] Let me know when done, and I'll update the documentation for the module, and make other tweaks. All the best: ''[[User:Rich Farmbrough|Rich]] [[User talk:Rich Farmbrough|Farmbrough]]''<small> 17:12, 16 December 2025 (UTC).<br /></small> :[[File:X mark.svg|20px|link=|alt=]] '''Not done for now:''' please establish a [[Wikipedia:Consensus|consensus]] for this alteration '''[[Wikipedia:Edit requests#Planning a request|before]]''' creating an edit request.<!-- Template:EP --> Namely, making a change to a template used on 20 million pages because you created a template today? For a wording tweak? Please show a consensus that this is something desirable. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 18:09, 16 December 2025 (UTC) :: Looking at the archive I see you make changes without awaiting consensus. I find this modern gatekeeping behaviour unfortunate. All the best: ''[[User:Rich Farmbrough|Rich]] [[User talk:Rich Farmbrough|Farmbrough]]''<small> 02:48, 17 December 2025 (UTC).<br /></small> :::Flinging some incorrect mud (I have been very public about the changes I've implemented of my own resort in this module even if you didn't find where) is not any more likely to convince me or anyone else of the value of {{em|this}} change (see also [[WP:OTHERSTUFF]]: your edit request is relevant, not any of my edits). :::I also note that you were apparently able to [https://en.wikipedia.org/w/index.php?title=Template:Hooks&diff=cur&oldid=1327880498 implement the same display as what you wanted] without making the change in this module. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 04:00, 17 December 2025 (UTC) ::::And just to be very clear, the two changes at my desire have been the following: ::::# Supporting TemplateStyles. In this module, that had prior requests at [[Module_talk:Message_box/Archive_1#Use_TemplateStyles|Use TemplateStyles]], [[Module_talk:Message_box/Archive_1#A_question_to_small_param_and_TemplateStyle|A question to small param and TemplateStyle]], and [[Module_talk:Message_box/Archive_1#Site-local_configuration_source_for_sisters_importing_from_here|Site-local configuration...]]. I had set up [[MediaWiki talk:Common.css/to do]] previously with provided description there, and have generally advertised that link every chance I get because I don't like being the only person spending time on making changes more accessible to a wider public (you may check [[Special:Whatlinkshere/MediaWiki talk:Common.css/to do|what links here]] at your leisure), and had also generally mused about the problem {{em|much}} earlier at [[Wikipedia_talk:TemplateStyles/Archive_1#In_the_context_of_meta_templates|In the context of meta templates]]. That culminated, when I finally got around to it, in [[Module_talk:Message_box/Archive_1#mbox_is_now_TemplateStyled_only|mbox is now TemplateStyled only]] and associated target link. For which there have been no complaints not trivially remedied. ::::# Changing the table structure to divs. {{em|That}} change is [[Module_talk:Message_box#CSS_instead_of_tables|right there]] and was also implicated in [[Module_talk:Message_box/Archive_1#Aria_roles|Aria roles]] and separately reinforced in the individual advertisements I've so far made, like [[Module_talk:Message_box/Archive_2#cmbox_migration|cmbox migration]]. The cmbox migration section was incidentally also advertised to VPT. ::::Any other changes that I made were implemented due to requested edit. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 04:21, 17 December 2025 (UTC) :::::I don't mind that you made intelligent changes to the module, saying "Ok I did it anyway" - in fact I absolutely support them. ''Even if I would have disagreed with them.'' :::::And yes, I coded around the obstacle by using an older method which I had previously used in {{Tlx|Hook}} (which I created). People have "updated" that, I do them the courtesy of assuming that their updates add value, unless I know otherwise. :::::If someone wants to update {{Tlx|Hooks}} in the same way that {{Tlx|Hook}} was updated, they will have to, apparently, gain consensus. I won't. :::::If I see a problem on Wikipedia I like to fix it. If something stops me doing it one way, I'll usually try another. :::::Hope that is all clear, and that you agree with my sentiments. :::::All the best: ''[[User:Rich Farmbrough|Rich]] [[User talk:Rich Farmbrough|Farmbrough]]''<small> 13:47, 17 December 2025 (UTC).<br /></small> == Module:Message box/ombox.css needs a couple of color: additions == [[Module:Message box/ombox.css]] has three background-color: statements without a corresponding color: statement. This can make the Linter complain and might cause problems in dark mode. If someone could add color: statements after lines 19, 98, and 104, that would probably help. <ins><code>color:var(--color-base, #202122);</code> is usually safest when the color has been assumed to be black in the regular mode but should be near-white in dark mode. </ins> – [[User:Jonesey95|Jonesey95]] ([[User talk:Jonesey95|talk]]) 17:56, 16 February 2026 (UTC) :The same situation appears to apply to [[Module:Message box/ambox.css]], [[Module:Message box/cmbox.css]], [[Module:Message box/fmbox.css]], [[Module:Message box/imbox.css]], and [[Module:Message box/tmbox.css]]. – [[User:Jonesey95|Jonesey95]] ([[User talk:Jonesey95|talk]]) 18:03, 16 February 2026 (UTC) ::Three message box templates are showing up in the top 25 templates on [https://en.wikipedia.org/wiki/Special:LintTemplateErrors/night-mode-unaware-background-color this new report] of the most transclusions with dark mode errors. – [[User:Jonesey95|Jonesey95]] ([[User talk:Jonesey95|talk]]) 05:11, 17 March 2026 (UTC) p684mvn09d68og48ofwrqf6g9kr3rr2 72715 72714 2026-06-30T21:10:05Z Robertsky 10424 1 versaun husi [[:en:Module_talk:Message_box]] 72714 wikitext text/x-wiki {{oldtfdfull|date= 2020 February 15 |result=keep |disc=Module:Message box}} <noinclude>{{permprot}}</noinclude> {{Archives|bot=lowercase sigmabot III|age=30}} {{User:MiszaBot/config | algo = old(30d) | archive = Module talk:Message box/Archive %(counter)d | counter = 2 | maxarchivesize = 150K | archiveheader = {{Automatic archive navigator}} | minthreadstoarchive = 1 | minthreadsleft = 4 }} ==CSS instead of tables== <!-- [[User:DoNotArchiveUntil]] 07:19, 19 November 2026 (UTC) -->{{User:ClueBot III/DoNotArchiveUntil|1795072785}} {{moved discussion from|Template talk:Ambox#CSS instead of tables|[[User:Sapphaline|Sapphaline]] ([[User talk:Sapphaline|talk]]) 10:25, 20 August 2025 (UTC)}} Could this thing use <code><nowiki><div style="display:table;"></nowiki></code> and <code><nowiki><div style="display:table-cell;"></nowiki></code> instead of literal tables and table cells (<code><nowiki><table></nowiki></code>, <code><nowiki><td></nowiki></code>)? Were the any previous attempts to remake this using <code><nowiki><div></nowiki></code>? If so, what was the consensus? [[User:Sapphaline|Sapphaline]] ([[User talk:Sapphaline|talk]]) 09:46, 20 August 2025 (UTC) :A long time ago this would have been converted to divs but apparently IE sucked (this should not be news). :Today, I have [[User:Izno/Sandbox/Ambox]] with what are some skimmings and started a sandbox at [[Module:Message box/div]]. I have just done a very bad job of finishing this work. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 22:09, 24 August 2025 (UTC) ::Which might be closer to done than not, honestly. I think what it currently needs is to ::# Double check the ambox work ::# Add "soft" support for the other kinds of boxes (where soft is defined as module-supports but config disabled) ::# Merge tested /div version but not CSS into main ::# Enable boxes of each kind one by one. ::#* Leave ambox for penultimate as the most likely to cause some mass noise in a way ::#* Probably somewhere around here do ombox, [https://en.wikipedia.org/w/index.php?search=insource%3A%2FMessage%5B%20_%5Dbox%5C%2Fombox%5C.css%2F%20-intitle%3A%2F(%5BSs%5Dandbox%7C%5C%2Fdoc)%2F&title=Special%3ASearch&profile=advanced&fulltext=1&ns10=1&ns828=1 that has some needed coordination] ::#* Leave tmbox for ultimate, there is work to [https://en.wikipedia.org/w/index.php?search=insource%3A%2FMessage%5B%20_%5Dbox%5C%2Ftmbox%5C.css%2F%20-intitle%3A%2F(%5BSs%5Dandbox%7C%5C%2Fdoc)%2F&title=Special%3ASearch&profile=advanced&fulltext=1&ns10=1&ns828=1 coordinate] ::# Fix bugs that are identified ::# Move CSS over to better-named stylesheet ::# Delete the /div CSS (I won't be too sad) ::# Remove main support for table versions, possibly rename some things ::[[User:Izno|Izno]] ([[User talk:Izno|talk]]) 22:42, 24 August 2025 (UTC) ::I have now put this plan in a publicly editable place at [[Module:Message box/div/doc]]. [[User:Izno|Izno]][[User:IznoPublic|Public]] ([[User talk:Izno#top|talk]]) 00:26, 26 August 2025 (UTC) ::Hi! I didn't know you were doing this, so I made something similar. It seems to work: ::* Module: [https://en.wikipedia.org/w/index.php?title=Module%3AMessage_box%2Fsandbox&diff=1310791170&oldid=1300331049] ::* Styles: [https://en.wikipedia.org/w/index.php?title=Module%3AMessage_box%2Fsandbox%2Fambox.css&diff=1310791252&oldid=1305438959] :: [[User:Iniquity|Iniquity]] ([[User talk:Iniquity|talk]]) 16:57, 11 September 2025 (UTC) :::Yes, I did it in its own sandbox because it's a longterm enough project not to be done in the main sandbox, which should generally be releasable ad hoc for trivial issues. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 17:03, 11 September 2025 (UTC) :::And also, there are enough other dependencies that "just change the two or three places" isn't going to fly. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 17:06, 11 September 2025 (UTC) ::::Where else do you think this will affect? ​​It seems that only the mobile version is oriented towards <syntaxhighlight inline lang="css">table.ambox</syntaxhighlight>, which can also be corrected by CSS [[User:Iniquity|Iniquity]] ([[User talk:Iniquity|talk]]) 17:09, 11 September 2025 (UTC) :::::I have already documented in [[Module:Message box/div/doc]] multiple places that will need careful work, ambox among them. Please feel free to peruse and ask questions about what's there and why. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 17:41, 11 September 2025 (UTC) ::::::Thanks! [[User:Iniquity|Iniquity]] ([[User talk:Iniquity|talk]]) 17:47, 11 September 2025 (UTC) :What's broken here? I've probably wrong but AFAIK for accessibility the existing role="presentation" should suffice. [[User:Aaron Liu|<span class="skin-invert" style="color:#0645ad">Aaron Liu</span>]] ([[User talk:Aaron Liu#top|talk]]) 23:21, 28 August 2025 (UTC) ::You should always endeavor to use the default aria role element. In this case, that's not a table. Ignoring that, tables are shit for doing other presentation with. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 03:20, 29 August 2025 (UTC) :::This /div work is great work, thanks for this <span class="fn nickname" style="color:#CD0000">[[User:Waddie96|waddie96]] ★ ([[User talk:Waddie96|talk]])</span> 19:49, 8 September 2025 (UTC) :Ok, I think we can do {{tl|cmbox}} now. Based on what I wrote down before, the process of a rollout is: :# Alert some key pages. Has to include some verbiage like <blockquote>A change is occurring to how {{tl|cmbox}} is implemented to support mobile resolutions better. It may cause some temporary display weirdness. Further information is available at [[Module talk:Message box#cmbox migration]].</blockquote> with some text at the specific section <blockquote><p>A change is planned to occur in how {{tl|cmbox}} is implemented. It should help improve display at mobile resolutions now, and accessibility later. cmbox was chosen because it has lower reader-facing impact than most other message box types and it's fairly self-contained. The change to cmbox will likely pave the way for other message boxes ({{tl|fmbox}} is probably next).</p><p>You can expect some difference in styling from previous for a small period due to the [[WP:Job queue|job queue]], after which it should return to "normal". You should be able to correct it manually if you want with one of the usual steps ([[WP:PURGE|purge]], [[WP:NULL|null edit]], or [[Help:Dummy edit|dummy edit]]). If an issue with display persists, leave a comment here (this scenario may be possible with some unexpected setup cmboxes).</p></blockquote> :#* Here (here, here is the warning) :#* [[WP:VPT]] :#* [[MediaWiki talk:Common.css]] :#* Maybe [[WT:CAT]] and [[WT:CFD]] :# Sync [[Module:Message box/sandbox]] to [[Module:Message box]] (first time only) :# Within quick succession to next step, sync [[Module:Message box/configuration/sandbox]] to [[Module:Message box/configuration]] :# Within quick succession to previous step, sync [[Module:Message box/div/cmbox.css]] to [[Module:Message box/cmbox.css]] :[[User:Izno|Izno]] ([[User talk:Izno|talk]]) 17:08, 1 October 2025 (UTC) :: The /div main and config modules have got some other adjustments that now make it different from what will end up going live, so they shouldn't generally be synced directly. For future me. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 21:59, 1 October 2025 (UTC) ::Also messages now posted to VPT and Common.css. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 22:00, 1 October 2025 (UTC) ::cmbox is deployed. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 20:30, 2 October 2025 (UTC) :::Ok, cmbox has been basically quiet besides notes from the below. I will now work on fmbox, which should also be relatively low impact. I'm also starting to sketch out imbox which may need to interact with template content from Commons as well as [[:c:MediaWiki:Filepage.css]]. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 20:44, 7 October 2025 (UTC) ::::Turns out I don't currently have to worry about commons names, which is something I should have noted when I split message box CSS during the TemplateStylization. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 01:03, 17 October 2025 (UTC) :::::What does {{tq|split message box CSS during the TemplateStylization}} mean exactly? :::::Also, what can I help with. <span class="fn nickname" style="color:#CD0000">[[User:Waddie96|waddie96]] ★ ([[User talk:Waddie96|talk]])</span> 03:56, 17 October 2025 (UTC) ::::::All of the CSS for the message boxes was once in [[MediaWiki:Common.css]]. I moved it to TemplateStyles with some effort because of [[MediaWiki talk:Common.css/to do#description|reasons]]. ::::::This effort now that I've got my feet under me probably doesn't need much assistance. If you want to spend time on something, working on the problems listed at [[MediaWiki talk:Common.css/to do#Infobox]] would be excellent. If you want to spend some time on stuff, crafting an infobox (using Lua or template) to fix our ''career statistics'' pages would be super helpful. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 00:27, 19 October 2025 (UTC) :{{ping|Izno}} any progress? [[user:sapphaline|<span class="skin-nightmode-reset-color" style="color:#c20;text-decoration:underline">sapphaline</span>]] ([[user talk:sapphaline|<span class="skin-nightmode-reset-color" style="color:#236;text-decoration:underline">talk</span>]]) 13:20, 18 December 2025 (UTC) ::You can see the progress at [[Module:Message box/div/doc]]. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 18:08, 18 December 2025 (UTC) == T367463 == Since it's fixed, can the relevant CSS rule be removed? [[User:Andyrom75|<span style="color:#BB0000; font-family:Papyrus; font-size:12px">'''Andyrom75'''</span>]] ([[User talk:Andyrom75|talk]]) 07:07, 19 November 2025 (UTC) :@[[User:Izno|Izno]], @[[User:Jdlrobson|Jdlrobson]], ping. [[User:Andyrom75|<span style="color:#BB0000; font-family:Papyrus; font-size:12px">'''Andyrom75'''</span>]] ([[User talk:Andyrom75|talk]]) 07:08, 19 November 2025 (UTC) ::What do you think is fixed exactly? [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 07:14, 19 November 2025 (UTC) ::And what rule do you think should be removed? [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 07:19, 19 November 2025 (UTC) ==Plural for {{Tlx|Hooks}}== {{edit fully-protected|answered=yes}} Please copy [https://en.wikipedia.org/w/index.php?title=Module:Message_box/sandbox&oldid=1327882000 this sandbox version] (not the current version, which links to Module:Message box/configuration/sandbox) to live. [https://en.wikipedia.org/w/index.php?title=Module%3AMessage_box%2Fsandbox&diff=1327882000&oldid=1317219285 Changes.] Let me know when done, and I'll update the documentation for the module, and make other tweaks. All the best: ''[[User:Rich Farmbrough|Rich]] [[User talk:Rich Farmbrough|Farmbrough]]''<small> 17:12, 16 December 2025 (UTC).<br /></small> :[[File:X mark.svg|20px|link=|alt=]] '''Not done for now:''' please establish a [[Wikipedia:Consensus|consensus]] for this alteration '''[[Wikipedia:Edit requests#Planning a request|before]]''' creating an edit request.<!-- Template:EP --> Namely, making a change to a template used on 20 million pages because you created a template today? For a wording tweak? Please show a consensus that this is something desirable. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 18:09, 16 December 2025 (UTC) :: Looking at the archive I see you make changes without awaiting consensus. I find this modern gatekeeping behaviour unfortunate. All the best: ''[[User:Rich Farmbrough|Rich]] [[User talk:Rich Farmbrough|Farmbrough]]''<small> 02:48, 17 December 2025 (UTC).<br /></small> :::Flinging some incorrect mud (I have been very public about the changes I've implemented of my own resort in this module even if you didn't find where) is not any more likely to convince me or anyone else of the value of {{em|this}} change (see also [[WP:OTHERSTUFF]]: your edit request is relevant, not any of my edits). :::I also note that you were apparently able to [https://en.wikipedia.org/w/index.php?title=Template:Hooks&diff=cur&oldid=1327880498 implement the same display as what you wanted] without making the change in this module. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 04:00, 17 December 2025 (UTC) ::::And just to be very clear, the two changes at my desire have been the following: ::::# Supporting TemplateStyles. In this module, that had prior requests at [[Module_talk:Message_box/Archive_1#Use_TemplateStyles|Use TemplateStyles]], [[Module_talk:Message_box/Archive_1#A_question_to_small_param_and_TemplateStyle|A question to small param and TemplateStyle]], and [[Module_talk:Message_box/Archive_1#Site-local_configuration_source_for_sisters_importing_from_here|Site-local configuration...]]. I had set up [[MediaWiki talk:Common.css/to do]] previously with provided description there, and have generally advertised that link every chance I get because I don't like being the only person spending time on making changes more accessible to a wider public (you may check [[Special:Whatlinkshere/MediaWiki talk:Common.css/to do|what links here]] at your leisure), and had also generally mused about the problem {{em|much}} earlier at [[Wikipedia_talk:TemplateStyles/Archive_1#In_the_context_of_meta_templates|In the context of meta templates]]. That culminated, when I finally got around to it, in [[Module_talk:Message_box/Archive_1#mbox_is_now_TemplateStyled_only|mbox is now TemplateStyled only]] and associated target link. For which there have been no complaints not trivially remedied. ::::# Changing the table structure to divs. {{em|That}} change is [[Module_talk:Message_box#CSS_instead_of_tables|right there]] and was also implicated in [[Module_talk:Message_box/Archive_1#Aria_roles|Aria roles]] and separately reinforced in the individual advertisements I've so far made, like [[Module_talk:Message_box/Archive_2#cmbox_migration|cmbox migration]]. The cmbox migration section was incidentally also advertised to VPT. ::::Any other changes that I made were implemented due to requested edit. [[User:Izno|Izno]] ([[User talk:Izno|talk]]) 04:21, 17 December 2025 (UTC) :::::I don't mind that you made intelligent changes to the module, saying "Ok I did it anyway" - in fact I absolutely support them. ''Even if I would have disagreed with them.'' :::::And yes, I coded around the obstacle by using an older method which I had previously used in {{Tlx|Hook}} (which I created). People have "updated" that, I do them the courtesy of assuming that their updates add value, unless I know otherwise. :::::If someone wants to update {{Tlx|Hooks}} in the same way that {{Tlx|Hook}} was updated, they will have to, apparently, gain consensus. I won't. :::::If I see a problem on Wikipedia I like to fix it. If something stops me doing it one way, I'll usually try another. :::::Hope that is all clear, and that you agree with my sentiments. :::::All the best: ''[[User:Rich Farmbrough|Rich]] [[User talk:Rich Farmbrough|Farmbrough]]''<small> 13:47, 17 December 2025 (UTC).<br /></small> == Module:Message box/ombox.css needs a couple of color: additions == [[Module:Message box/ombox.css]] has three background-color: statements without a corresponding color: statement. This can make the Linter complain and might cause problems in dark mode. If someone could add color: statements after lines 19, 98, and 104, that would probably help. <ins><code>color:var(--color-base, #202122);</code> is usually safest when the color has been assumed to be black in the regular mode but should be near-white in dark mode. </ins> – [[User:Jonesey95|Jonesey95]] ([[User talk:Jonesey95|talk]]) 17:56, 16 February 2026 (UTC) :The same situation appears to apply to [[Module:Message box/ambox.css]], [[Module:Message box/cmbox.css]], [[Module:Message box/fmbox.css]], [[Module:Message box/imbox.css]], and [[Module:Message box/tmbox.css]]. – [[User:Jonesey95|Jonesey95]] ([[User talk:Jonesey95|talk]]) 18:03, 16 February 2026 (UTC) ::Three message box templates are showing up in the top 25 templates on [https://en.wikipedia.org/wiki/Special:LintTemplateErrors/night-mode-unaware-background-color this new report] of the most transclusions with dark mode errors. – [[User:Jonesey95|Jonesey95]] ([[User talk:Jonesey95|talk]]) 05:11, 17 March 2026 (UTC) p684mvn09d68og48ofwrqf6g9kr3rr2 Módulo Discussão:Message box/configuration 829 8104 72716 2014-01-27T01:11:12Z en>Mr. Stradivarius 0 move discussion to [[Module talk:Message box]] and redirect to keep discussion together 72716 wikitext text/x-wiki #REDIRECT [[Module talk:Message box]] p41ok8a8hnyo8almaepj1ct0hw0pt21 72717 72716 2026-06-30T21:10:05Z Robertsky 10424 1 versaun husi [[:en:Module_talk:Message_box/configuration]] 72716 wikitext text/x-wiki #REDIRECT [[Module talk:Message box]] p41ok8a8hnyo8almaepj1ct0hw0pt21 Módulo:Message box/div 828 8105 72718 2025-10-17T01:14:35Z en>Izno 0 sync back 72718 Scribunto text/plain require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/div/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions -------------------------------------------------------------------------------- local function getTitleObject(...) -- Get the title object, passing the function through pcall -- in case we are over the expensive function count limit. local success, title = pcall(mw.title.new, ...) if success then return title end end local function union(t1, t2) -- Returns the union of two arrays. local vals = {} for i, v in ipairs(t1) do vals[v] = true end for i, v in ipairs(t2) do vals[v] = true end local ret = {} for k in pairs(vals) do table.insert(ret, k) end table.sort(ret) return ret end local function getArgNums(args, prefix) local nums = {} for k, v in pairs(args) do local num = mw.ustring.match(tostring(k), '^' .. prefix .. '([1-9]%d*)$') if num then table.insert(nums, tonumber(num)) end end table.sort(nums) return nums end -------------------------------------------------------------------------------- -- Box class definition -------------------------------------------------------------------------------- local MessageBox = {} MessageBox.__index = MessageBox function MessageBox.new(boxType, args, cfg) args = args or {} local obj = {} -- Set the title object and the namespace. obj.title = getTitleObject(args.page) or mw.title.getCurrentTitle() -- Set the config for our box type. obj.cfg = cfg[boxType] if not obj.cfg then local ns = obj.title.namespace -- boxType is "mbox" or invalid input if args.demospace and args.demospace ~= '' then -- implement demospace parameter of mbox local demospace = string.lower(args.demospace) if DEMOSPACES[demospace] then -- use template from DEMOSPACES obj.cfg = cfg[DEMOSPACES[demospace]] elseif string.find( demospace, 'talk' ) then -- demo as a talk page obj.cfg = cfg.tmbox else -- default to ombox obj.cfg = cfg.ombox end elseif ns == 0 then obj.cfg = cfg.ambox -- main namespace elseif ns == 6 then obj.cfg = cfg.imbox -- file namespace elseif ns == 14 then obj.cfg = cfg.cmbox -- category namespace else local nsTable = mw.site.namespaces[ns] if nsTable and nsTable.isTalk then obj.cfg = cfg.tmbox -- any talk namespace else obj.cfg = cfg.ombox -- other namespaces or invalid input end end end -- Set the arguments, and remove all blank arguments except for the ones -- listed in cfg.allowBlankParams. do local newArgs = {} for k, v in pairs(args) do if v ~= '' then newArgs[k] = v end end for i, param in ipairs(obj.cfg.allowBlankParams or {}) do newArgs[param] = args[param] end obj.args = newArgs end -- Define internal data structure. obj.categories = {} obj.classes = {} -- For lazy loading of [[Module:Category handler]]. obj.hasCategories = false return setmetatable(obj, MessageBox) end function MessageBox:addCat(ns, cat, sort) if not cat then return nil end if sort then cat = string.format('[[Category:%s|%s]]', cat, sort) else cat = string.format('[[Category:%s]]', cat) end self.hasCategories = true self.categories[ns] = self.categories[ns] or {} table.insert(self.categories[ns], cat) end function MessageBox:addClass(class) if not class then return nil end table.insert(self.classes, class) end function MessageBox:setParameters() local args = self.args local cfg = self.cfg -- Get type data. self.type = args.type local typeData = cfg.types[self.type] self.invalidTypeError = cfg.showInvalidTypeError and self.type and not typeData typeData = typeData or cfg.types[cfg.default] self.typeClass = typeData.class self.typeImage = typeData.image self.typeImageNeedsLink = typeData.imageNeedsLink -- Find if the box has been wrongly substituted. self.isSubstituted = cfg.substCheck and args.subst == 'SUBST' -- Find whether we are using a small message box. self.isSmall = cfg.allowSmall and ( cfg.smallParam and args.small == cfg.smallParam or not cfg.smallParam and yesno(args.small) ) -- Set the below row. self.below = cfg.below and args.below -- Add attributes, classes and styles. self.id = args.id self.name = args.name if self.name then self:addClass('box-' .. string.gsub(self.name,' ','_')) end if yesno(args.plainlinks) ~= false then self:addClass('plainlinks') end if self.below then self:addClass('mbox-with-below') end for _, class in ipairs(cfg.classes or {}) do self:addClass(class) end if self.isSmall then self:addClass(cfg.smallClass or 'mbox-small') end self:addClass(self.typeClass) self:addClass(args.class) self.style = args.style self.attrs = args.attrs -- Set text style. self.textstyle = args.textstyle -- Set image classes. self.imageRightClass = args.imagerightclass or args.imageclass self.imageLeftClass = args.imageleftclass or args.imageclass -- Find if we are on the template page or not. This functionality is only -- used if useCollapsibleTextFields is set, or if both cfg.templateCategory -- and cfg.templateCategoryRequireName are set. self.useCollapsibleTextFields = cfg.useCollapsibleTextFields if self.useCollapsibleTextFields or cfg.templateCategory and cfg.templateCategoryRequireName then if self.name then local templateName = mw.ustring.match( self.name, '^[tT][eE][mM][pP][lL][aA][tT][eE][%s_]*:[%s_]*(.*)$' ) or self.name templateName = 'Template:' .. templateName self.templateTitle = getTitleObject(templateName) end self.isTemplatePage = self.templateTitle and mw.title.equals(self.title, self.templateTitle) end -- Process data for collapsible text fields. At the moment these are only -- used in {{ambox}}. if self.useCollapsibleTextFields then -- Get the self.issue value. if self.isSmall and args.smalltext then self.issue = args.smalltext else local sect if args.sect == '' then sect = 'This ' .. (cfg.sectionDefault or 'page') elseif type(args.sect) == 'string' then sect = 'This ' .. args.sect end local issue = args.issue issue = type(issue) == 'string' and issue ~= '' and issue or nil local text = args.text text = type(text) == 'string' and text or nil local issues = {} table.insert(issues, sect) table.insert(issues, issue) table.insert(issues, text) self.issue = table.concat(issues, ' ') end -- Get the self.talk value. local talk = args.talk -- Show talk links on the template page or template subpages if the talk -- parameter is blank. if talk == '' and self.templateTitle and ( mw.title.equals(self.templateTitle, self.title) or self.title:isSubpageOf(self.templateTitle) ) then talk = '#' elseif talk == '' then talk = nil end if talk then -- If the talk value is a talk page, make a link to that page. Else -- assume that it's a section heading, and make a link to the talk -- page of the current page with that section heading. local talkTitle = getTitleObject(talk) local talkArgIsTalkPage = true if not talkTitle or not talkTitle.isTalkPage then talkArgIsTalkPage = false talkTitle = getTitleObject( self.title.text, mw.site.namespaces[self.title.namespace].talk.id ) end if talkTitle and talkTitle.exists then local talkText if self.isSmall then local talkLink = talkArgIsTalkPage and talk or (talkTitle.prefixedText .. (talk == '#' and '' or '#') .. talk) talkText = string.format('([[%s|talk]])', talkLink) else talkText = 'Relevant discussion may be found on' if talkArgIsTalkPage then talkText = string.format( '%s [[%s|%s]].', talkText, talk, talkTitle.prefixedText ) else talkText = string.format( '%s the [[%s' .. (talk == '#' and '' or '#') .. '%s|talk page]].', talkText, talkTitle.prefixedText, talk ) end end self.talk = talkText end end -- Get other values. self.fix = args.fix ~= '' and args.fix or nil local date if args.date and args.date ~= '' then date = args.date elseif args.date == '' and self.isTemplatePage then date = lang:formatDate('F Y') end if date then self.date = string.format(" <span class='date-container'><i>(<span class='date'>%s</span>)</i></span>", date) end self.info = args.info if yesno(args.removalnotice) then self.removalNotice = cfg.removalNotice end end -- Set the non-collapsible text field. At the moment this is used by all box -- types other than ambox, and also by ambox when small=yes. if self.isSmall then self.text = args.smalltext or args.text else self.text = args.text end -- General image settings. self.imageCellDiv = not self.isSmall and cfg.imageCellDiv self.imageEmptyCell = cfg.imageEmptyCell -- Left image settings. local imageLeft = self.isSmall and args.smallimage or args.image if cfg.imageCheckBlank and imageLeft ~= 'blank' and imageLeft ~= 'none' or not cfg.imageCheckBlank and imageLeft ~= 'none' then self.imageLeft = imageLeft if not imageLeft then local imageSize = self.isSmall and (cfg.imageSmallSize or '30x30px') or '40x40px' self.imageLeft = string.format('[[File:%s|%s%s|alt=]]', self.typeImage or 'Information icon4.svg', imageSize, self.typeImageNeedsLink and "" or "|link=" ) end end -- Right image settings. local imageRight = self.isSmall and args.smallimageright or args.imageright if not (cfg.imageRightNone and imageRight == 'none') then self.imageRight = imageRight end -- set templatestyles -- DIV MIGRATION CONDITIONAL if cfg.div_templatestyles then self.base_templatestyles = cfg.div_templatestyles else self.base_templatestyles = cfg.templatestyles end -- END DIV MIGRATION CONDITIONAL self.templatestyles = args.templatestyles end function MessageBox:setMainspaceCategories() local args = self.args local cfg = self.cfg if not cfg.allowMainspaceCategories then return nil end local nums = {} for _, prefix in ipairs{'cat', 'category', 'all'} do args[prefix .. '1'] = args[prefix] nums = union(nums, getArgNums(args, prefix)) end -- The following is roughly equivalent to the old {{Ambox/category}}. local date = args.date date = type(date) == 'string' and date local preposition = 'from' for _, num in ipairs(nums) do local mainCat = args['cat' .. tostring(num)] or args['category' .. tostring(num)] local allCat = args['all' .. tostring(num)] mainCat = type(mainCat) == 'string' and mainCat allCat = type(allCat) == 'string' and allCat if mainCat and date and date ~= '' then local catTitle = string.format('%s %s %s', mainCat, preposition, date) self:addCat(0, catTitle) catTitle = getTitleObject('Category:' .. catTitle) if not catTitle or not catTitle.exists then self:addCat(0, 'Articles with invalid date parameter in template') end elseif mainCat and (not date or date == '') then self:addCat(0, mainCat) end if allCat then self:addCat(0, allCat) end end end function MessageBox:setTemplateCategories() local args = self.args local cfg = self.cfg -- Add template categories. if cfg.templateCategory then if cfg.templateCategoryRequireName then if self.isTemplatePage then self:addCat(10, cfg.templateCategory) end elseif not self.title.isSubpage then self:addCat(10, cfg.templateCategory) end end -- Add template error categories. if cfg.templateErrorCategory then local templateErrorCategory = cfg.templateErrorCategory local templateCat, templateSort if not self.name and not self.title.isSubpage then templateCat = templateErrorCategory elseif self.isTemplatePage then local paramsToCheck = cfg.templateErrorParamsToCheck or {} local count = 0 for i, param in ipairs(paramsToCheck) do if not args[param] then count = count + 1 end end if count > 0 then templateCat = templateErrorCategory templateSort = tostring(count) end if self.categoryNums and #self.categoryNums > 0 then templateCat = templateErrorCategory templateSort = 'C' end end self:addCat(10, templateCat, templateSort) end end function MessageBox:setAllNamespaceCategories() -- Set categories for all namespaces. if self.invalidTypeError then local allSort = (self.title.namespace == 0 and 'Main:' or '') .. self.title.prefixedText self:addCat('all', 'Wikipedia message box parameter needs fixing', allSort) end if self.isSubstituted then self:addCat('all', 'Pages with incorrectly substituted templates') end end function MessageBox:setCategories() if self.title.namespace == 0 then self:setMainspaceCategories() elseif self.title.namespace == 10 then self:setTemplateCategories() end self:setAllNamespaceCategories() end function MessageBox:renderCategories() if not self.hasCategories then -- No categories added, no need to pass them to Category handler so, -- if it was invoked, it would return the empty string. -- So we shortcut and return the empty string. return "" end -- Convert category tables to strings and pass them through -- [[Module:Category handler]]. return require('Module:Category handler')._main{ main = table.concat(self.categories[0] or {}), template = table.concat(self.categories[10] or {}), all = table.concat(self.categories.all or {}), nocat = self.args.nocat, page = self.args.page } end function MessageBox:exportDiv() local root = mw.html.create() -- Add the subst check error. if self.isSubstituted and self.name then root:tag('b') :addClass('error') :wikitext(string.format( 'Template <code>%s[[Template:%s|%s]]%s</code> has been incorrectly substituted.', mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}') )) end local frame = mw.getCurrentFrame() root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = self.base_templatestyles }, }) -- Add support for a single custom templatestyles sheet. Undocumented as -- need should be limited and many templates using mbox are substed; we -- don't want to spread templatestyles sheets around to arbitrary places if self.templatestyles then root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = self.templatestyles }, }) end -- Create the box. local mbox = root:tag('div') mbox:attr('id', self.id or nil) for i, class in ipairs(self.classes or {}) do mbox:addClass(class or nil) end mbox :cssText(self.style or nil) if self.attrs then mbox:attr(self.attrs) end local flex_container if self.below then -- we need to wrap the flex components (`image(right)` and `text`) in their -- own container div to support the `below` parameter flex_container = mw.html.create('div') flex_container:addClass('mbox-flex') else -- the mbox itself is the parent, so we need no HTML flex_container flex_container = mw.html.create() end -- Add the left-hand image. if self.imageLeft then local imageLeftCell = flex_container:tag('div'):addClass('mbox-image') imageLeftCell :addClass(self.imageLeftClass) :wikitext(self.imageLeft or nil) end -- Add the text. local textCell = flex_container:tag('div'):addClass('mbox-text') if self.useCollapsibleTextFields then -- The message box uses advanced text parameters that allow things to be -- collapsible. At the moment, only ambox uses this. textCell:cssText(self.textstyle or nil) local textCellDiv = textCell:tag('div') textCellDiv :addClass('mbox-text-span') :wikitext(self.issue or nil) if (self.talk or self.fix) then textCellDiv:tag('span') :addClass('hide-when-compact') :wikitext(self.talk and (' ' .. self.talk) or nil) :wikitext(self.fix and (' ' .. self.fix) or nil) end textCellDiv:wikitext(self.date and (' ' .. self.date) or nil) if self.info and not self.isSmall then textCellDiv :tag('span') :addClass('hide-when-compact') :wikitext(self.info and (' ' .. self.info) or nil) end if self.removalNotice then textCellDiv:tag('span') :addClass('hide-when-compact') :tag('i') :wikitext(string.format(" (%s)", self.removalNotice)) end else -- Default text formatting - anything goes. textCell :cssText(self.textstyle or nil) :wikitext(self.text or nil) end -- Add the right-hand image. if self.imageRight then local imageRightCell = flex_container:tag('div'):addClass('mbox-imageright') imageRightCell :addClass(self.imageRightClass) :wikitext(self.imageRight or nil) end mbox:node(flex_container) -- Add the below row. if self.below then mbox:tag('div') :addClass('mbox-text mbox-below') :cssText(self.textstyle or nil) :wikitext(self.below or nil) end -- Add error message for invalid type parameters. if self.invalidTypeError then root:tag('div') :addClass('mbox-invalid-type') :wikitext(string.format( 'This message box is using an invalid "type=%s" parameter and needs fixing.', self.type or '' )) end -- Add categories. root:wikitext(self:renderCategories() or nil) return tostring(root) end function MessageBox:export() local root = mw.html.create() -- Add the subst check error. if self.isSubstituted and self.name then root:tag('b') :addClass('error') :wikitext(string.format( 'Template <code>%s[[Template:%s|%s]]%s</code> has been incorrectly substituted.', mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}') )) end local frame = mw.getCurrentFrame() root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = self.base_templatestyles }, }) -- Add support for a single custom templatestyles sheet. Undocumented as -- need should be limited and many templates using mbox are substed; we -- don't want to spread templatestyles sheets around to arbitrary places if self.templatestyles then root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = self.templatestyles }, }) end -- Create the box table. local boxTable = root:tag('table') boxTable:attr('id', self.id or nil) for i, class in ipairs(self.classes or {}) do boxTable:addClass(class or nil) end boxTable :cssText(self.style or nil) :attr('role', 'presentation') if self.attrs then boxTable:attr(self.attrs) end -- Add the left-hand image. local row = boxTable:tag('tr') if self.imageLeft then local imageLeftCell = row:tag('td'):addClass('mbox-image') if self.imageCellDiv then -- If we are using a div, redefine imageLeftCell so that the image -- is inside it. Divs use style="width: 52px;", which limits the -- image width to 52px. If any images in a div are wider than that, -- they may overlap with the text or cause other display problems. imageLeftCell = imageLeftCell:tag('div'):addClass('mbox-image-div') end imageLeftCell :addClass(self.imageLeftClass) :wikitext(self.imageLeft or nil) elseif self.imageEmptyCell then -- Some message boxes define an empty cell if no image is specified, and -- some don't. The old template code in templates where empty cells are -- specified gives the following hint: "No image. Cell with some width -- or padding necessary for text cell to have 100% width." row:tag('td') :addClass('mbox-empty-cell') end -- Add the text. local textCell = row:tag('td'):addClass('mbox-text') if self.useCollapsibleTextFields then -- The message box uses advanced text parameters that allow things to be -- collapsible. At the moment, only ambox uses this. textCell:cssText(self.textstyle or nil) local textCellDiv = textCell:tag('div') textCellDiv :addClass('mbox-text-span') :wikitext(self.issue or nil) if (self.talk or self.fix) then textCellDiv:tag('span') :addClass('hide-when-compact') :wikitext(self.talk and (' ' .. self.talk) or nil) :wikitext(self.fix and (' ' .. self.fix) or nil) end textCellDiv:wikitext(self.date and (' ' .. self.date) or nil) if self.info and not self.isSmall then textCellDiv :tag('span') :addClass('hide-when-compact') :wikitext(self.info and (' ' .. self.info) or nil) end if self.removalNotice then textCellDiv:tag('span') :addClass('hide-when-compact') :tag('i') :wikitext(string.format(" (%s)", self.removalNotice)) end else -- Default text formatting - anything goes. textCell :cssText(self.textstyle or nil) :wikitext(self.text or nil) end -- Add the right-hand image. if self.imageRight then local imageRightCell = row:tag('td'):addClass('mbox-imageright') if self.imageCellDiv then -- If we are using a div, redefine imageRightCell so that the image -- is inside it. imageRightCell = imageRightCell:tag('div'):addClass('mbox-image-div') end imageRightCell :addClass(self.imageRightClass) :wikitext(self.imageRight or nil) end -- Add the below row. if self.below then boxTable:tag('tr') :tag('td') :attr('colspan', self.imageRight and '3' or '2') :addClass('mbox-text') :cssText(self.textstyle or nil) :wikitext(self.below or nil) end -- Add error message for invalid type parameters. if self.invalidTypeError then root:tag('div') :addClass('mbox-invalid-type') :wikitext(string.format( 'This message box is using an invalid "type=%s" parameter and needs fixing.', self.type or '' )) end -- Add categories. root:wikitext(self:renderCategories() or nil) return tostring(root) end -------------------------------------------------------------------------------- -- Exports -------------------------------------------------------------------------------- local p, mt = {}, {} function p._exportClasses() -- For testing. return { MessageBox = MessageBox } end function p.main(boxType, args, cfgTables) local box = MessageBox.new(boxType, args, cfgTables or mw.loadData(CONFIG_MODULE)) box:setParameters() box:setCategories() -- DIV MIGRATION CONDITIONAL if box.cfg.div_structure then return box:exportDiv() end -- END DIV MIGRATION CONDITIONAL return box:export() end function mt.__index(t, k) return function (frame) if not getArgs then getArgs = require('Module:Arguments').getArgs end return t.main(k, getArgs(frame, {trim = false, removeBlanks = false})) end end return setmetatable(p, mt) q4lkkteez395bfr1vc3p2sgliy3c8km 72719 72718 2026-06-30T21:10:20Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/div]] 72718 Scribunto text/plain require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/div/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions -------------------------------------------------------------------------------- local function getTitleObject(...) -- Get the title object, passing the function through pcall -- in case we are over the expensive function count limit. local success, title = pcall(mw.title.new, ...) if success then return title end end local function union(t1, t2) -- Returns the union of two arrays. local vals = {} for i, v in ipairs(t1) do vals[v] = true end for i, v in ipairs(t2) do vals[v] = true end local ret = {} for k in pairs(vals) do table.insert(ret, k) end table.sort(ret) return ret end local function getArgNums(args, prefix) local nums = {} for k, v in pairs(args) do local num = mw.ustring.match(tostring(k), '^' .. prefix .. '([1-9]%d*)$') if num then table.insert(nums, tonumber(num)) end end table.sort(nums) return nums end -------------------------------------------------------------------------------- -- Box class definition -------------------------------------------------------------------------------- local MessageBox = {} MessageBox.__index = MessageBox function MessageBox.new(boxType, args, cfg) args = args or {} local obj = {} -- Set the title object and the namespace. obj.title = getTitleObject(args.page) or mw.title.getCurrentTitle() -- Set the config for our box type. obj.cfg = cfg[boxType] if not obj.cfg then local ns = obj.title.namespace -- boxType is "mbox" or invalid input if args.demospace and args.demospace ~= '' then -- implement demospace parameter of mbox local demospace = string.lower(args.demospace) if DEMOSPACES[demospace] then -- use template from DEMOSPACES obj.cfg = cfg[DEMOSPACES[demospace]] elseif string.find( demospace, 'talk' ) then -- demo as a talk page obj.cfg = cfg.tmbox else -- default to ombox obj.cfg = cfg.ombox end elseif ns == 0 then obj.cfg = cfg.ambox -- main namespace elseif ns == 6 then obj.cfg = cfg.imbox -- file namespace elseif ns == 14 then obj.cfg = cfg.cmbox -- category namespace else local nsTable = mw.site.namespaces[ns] if nsTable and nsTable.isTalk then obj.cfg = cfg.tmbox -- any talk namespace else obj.cfg = cfg.ombox -- other namespaces or invalid input end end end -- Set the arguments, and remove all blank arguments except for the ones -- listed in cfg.allowBlankParams. do local newArgs = {} for k, v in pairs(args) do if v ~= '' then newArgs[k] = v end end for i, param in ipairs(obj.cfg.allowBlankParams or {}) do newArgs[param] = args[param] end obj.args = newArgs end -- Define internal data structure. obj.categories = {} obj.classes = {} -- For lazy loading of [[Module:Category handler]]. obj.hasCategories = false return setmetatable(obj, MessageBox) end function MessageBox:addCat(ns, cat, sort) if not cat then return nil end if sort then cat = string.format('[[Category:%s|%s]]', cat, sort) else cat = string.format('[[Category:%s]]', cat) end self.hasCategories = true self.categories[ns] = self.categories[ns] or {} table.insert(self.categories[ns], cat) end function MessageBox:addClass(class) if not class then return nil end table.insert(self.classes, class) end function MessageBox:setParameters() local args = self.args local cfg = self.cfg -- Get type data. self.type = args.type local typeData = cfg.types[self.type] self.invalidTypeError = cfg.showInvalidTypeError and self.type and not typeData typeData = typeData or cfg.types[cfg.default] self.typeClass = typeData.class self.typeImage = typeData.image self.typeImageNeedsLink = typeData.imageNeedsLink -- Find if the box has been wrongly substituted. self.isSubstituted = cfg.substCheck and args.subst == 'SUBST' -- Find whether we are using a small message box. self.isSmall = cfg.allowSmall and ( cfg.smallParam and args.small == cfg.smallParam or not cfg.smallParam and yesno(args.small) ) -- Set the below row. self.below = cfg.below and args.below -- Add attributes, classes and styles. self.id = args.id self.name = args.name if self.name then self:addClass('box-' .. string.gsub(self.name,' ','_')) end if yesno(args.plainlinks) ~= false then self:addClass('plainlinks') end if self.below then self:addClass('mbox-with-below') end for _, class in ipairs(cfg.classes or {}) do self:addClass(class) end if self.isSmall then self:addClass(cfg.smallClass or 'mbox-small') end self:addClass(self.typeClass) self:addClass(args.class) self.style = args.style self.attrs = args.attrs -- Set text style. self.textstyle = args.textstyle -- Set image classes. self.imageRightClass = args.imagerightclass or args.imageclass self.imageLeftClass = args.imageleftclass or args.imageclass -- Find if we are on the template page or not. This functionality is only -- used if useCollapsibleTextFields is set, or if both cfg.templateCategory -- and cfg.templateCategoryRequireName are set. self.useCollapsibleTextFields = cfg.useCollapsibleTextFields if self.useCollapsibleTextFields or cfg.templateCategory and cfg.templateCategoryRequireName then if self.name then local templateName = mw.ustring.match( self.name, '^[tT][eE][mM][pP][lL][aA][tT][eE][%s_]*:[%s_]*(.*)$' ) or self.name templateName = 'Template:' .. templateName self.templateTitle = getTitleObject(templateName) end self.isTemplatePage = self.templateTitle and mw.title.equals(self.title, self.templateTitle) end -- Process data for collapsible text fields. At the moment these are only -- used in {{ambox}}. if self.useCollapsibleTextFields then -- Get the self.issue value. if self.isSmall and args.smalltext then self.issue = args.smalltext else local sect if args.sect == '' then sect = 'This ' .. (cfg.sectionDefault or 'page') elseif type(args.sect) == 'string' then sect = 'This ' .. args.sect end local issue = args.issue issue = type(issue) == 'string' and issue ~= '' and issue or nil local text = args.text text = type(text) == 'string' and text or nil local issues = {} table.insert(issues, sect) table.insert(issues, issue) table.insert(issues, text) self.issue = table.concat(issues, ' ') end -- Get the self.talk value. local talk = args.talk -- Show talk links on the template page or template subpages if the talk -- parameter is blank. if talk == '' and self.templateTitle and ( mw.title.equals(self.templateTitle, self.title) or self.title:isSubpageOf(self.templateTitle) ) then talk = '#' elseif talk == '' then talk = nil end if talk then -- If the talk value is a talk page, make a link to that page. Else -- assume that it's a section heading, and make a link to the talk -- page of the current page with that section heading. local talkTitle = getTitleObject(talk) local talkArgIsTalkPage = true if not talkTitle or not talkTitle.isTalkPage then talkArgIsTalkPage = false talkTitle = getTitleObject( self.title.text, mw.site.namespaces[self.title.namespace].talk.id ) end if talkTitle and talkTitle.exists then local talkText if self.isSmall then local talkLink = talkArgIsTalkPage and talk or (talkTitle.prefixedText .. (talk == '#' and '' or '#') .. talk) talkText = string.format('([[%s|talk]])', talkLink) else talkText = 'Relevant discussion may be found on' if talkArgIsTalkPage then talkText = string.format( '%s [[%s|%s]].', talkText, talk, talkTitle.prefixedText ) else talkText = string.format( '%s the [[%s' .. (talk == '#' and '' or '#') .. '%s|talk page]].', talkText, talkTitle.prefixedText, talk ) end end self.talk = talkText end end -- Get other values. self.fix = args.fix ~= '' and args.fix or nil local date if args.date and args.date ~= '' then date = args.date elseif args.date == '' and self.isTemplatePage then date = lang:formatDate('F Y') end if date then self.date = string.format(" <span class='date-container'><i>(<span class='date'>%s</span>)</i></span>", date) end self.info = args.info if yesno(args.removalnotice) then self.removalNotice = cfg.removalNotice end end -- Set the non-collapsible text field. At the moment this is used by all box -- types other than ambox, and also by ambox when small=yes. if self.isSmall then self.text = args.smalltext or args.text else self.text = args.text end -- General image settings. self.imageCellDiv = not self.isSmall and cfg.imageCellDiv self.imageEmptyCell = cfg.imageEmptyCell -- Left image settings. local imageLeft = self.isSmall and args.smallimage or args.image if cfg.imageCheckBlank and imageLeft ~= 'blank' and imageLeft ~= 'none' or not cfg.imageCheckBlank and imageLeft ~= 'none' then self.imageLeft = imageLeft if not imageLeft then local imageSize = self.isSmall and (cfg.imageSmallSize or '30x30px') or '40x40px' self.imageLeft = string.format('[[File:%s|%s%s|alt=]]', self.typeImage or 'Information icon4.svg', imageSize, self.typeImageNeedsLink and "" or "|link=" ) end end -- Right image settings. local imageRight = self.isSmall and args.smallimageright or args.imageright if not (cfg.imageRightNone and imageRight == 'none') then self.imageRight = imageRight end -- set templatestyles -- DIV MIGRATION CONDITIONAL if cfg.div_templatestyles then self.base_templatestyles = cfg.div_templatestyles else self.base_templatestyles = cfg.templatestyles end -- END DIV MIGRATION CONDITIONAL self.templatestyles = args.templatestyles end function MessageBox:setMainspaceCategories() local args = self.args local cfg = self.cfg if not cfg.allowMainspaceCategories then return nil end local nums = {} for _, prefix in ipairs{'cat', 'category', 'all'} do args[prefix .. '1'] = args[prefix] nums = union(nums, getArgNums(args, prefix)) end -- The following is roughly equivalent to the old {{Ambox/category}}. local date = args.date date = type(date) == 'string' and date local preposition = 'from' for _, num in ipairs(nums) do local mainCat = args['cat' .. tostring(num)] or args['category' .. tostring(num)] local allCat = args['all' .. tostring(num)] mainCat = type(mainCat) == 'string' and mainCat allCat = type(allCat) == 'string' and allCat if mainCat and date and date ~= '' then local catTitle = string.format('%s %s %s', mainCat, preposition, date) self:addCat(0, catTitle) catTitle = getTitleObject('Category:' .. catTitle) if not catTitle or not catTitle.exists then self:addCat(0, 'Articles with invalid date parameter in template') end elseif mainCat and (not date or date == '') then self:addCat(0, mainCat) end if allCat then self:addCat(0, allCat) end end end function MessageBox:setTemplateCategories() local args = self.args local cfg = self.cfg -- Add template categories. if cfg.templateCategory then if cfg.templateCategoryRequireName then if self.isTemplatePage then self:addCat(10, cfg.templateCategory) end elseif not self.title.isSubpage then self:addCat(10, cfg.templateCategory) end end -- Add template error categories. if cfg.templateErrorCategory then local templateErrorCategory = cfg.templateErrorCategory local templateCat, templateSort if not self.name and not self.title.isSubpage then templateCat = templateErrorCategory elseif self.isTemplatePage then local paramsToCheck = cfg.templateErrorParamsToCheck or {} local count = 0 for i, param in ipairs(paramsToCheck) do if not args[param] then count = count + 1 end end if count > 0 then templateCat = templateErrorCategory templateSort = tostring(count) end if self.categoryNums and #self.categoryNums > 0 then templateCat = templateErrorCategory templateSort = 'C' end end self:addCat(10, templateCat, templateSort) end end function MessageBox:setAllNamespaceCategories() -- Set categories for all namespaces. if self.invalidTypeError then local allSort = (self.title.namespace == 0 and 'Main:' or '') .. self.title.prefixedText self:addCat('all', 'Wikipedia message box parameter needs fixing', allSort) end if self.isSubstituted then self:addCat('all', 'Pages with incorrectly substituted templates') end end function MessageBox:setCategories() if self.title.namespace == 0 then self:setMainspaceCategories() elseif self.title.namespace == 10 then self:setTemplateCategories() end self:setAllNamespaceCategories() end function MessageBox:renderCategories() if not self.hasCategories then -- No categories added, no need to pass them to Category handler so, -- if it was invoked, it would return the empty string. -- So we shortcut and return the empty string. return "" end -- Convert category tables to strings and pass them through -- [[Module:Category handler]]. return require('Module:Category handler')._main{ main = table.concat(self.categories[0] or {}), template = table.concat(self.categories[10] or {}), all = table.concat(self.categories.all or {}), nocat = self.args.nocat, page = self.args.page } end function MessageBox:exportDiv() local root = mw.html.create() -- Add the subst check error. if self.isSubstituted and self.name then root:tag('b') :addClass('error') :wikitext(string.format( 'Template <code>%s[[Template:%s|%s]]%s</code> has been incorrectly substituted.', mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}') )) end local frame = mw.getCurrentFrame() root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = self.base_templatestyles }, }) -- Add support for a single custom templatestyles sheet. Undocumented as -- need should be limited and many templates using mbox are substed; we -- don't want to spread templatestyles sheets around to arbitrary places if self.templatestyles then root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = self.templatestyles }, }) end -- Create the box. local mbox = root:tag('div') mbox:attr('id', self.id or nil) for i, class in ipairs(self.classes or {}) do mbox:addClass(class or nil) end mbox :cssText(self.style or nil) if self.attrs then mbox:attr(self.attrs) end local flex_container if self.below then -- we need to wrap the flex components (`image(right)` and `text`) in their -- own container div to support the `below` parameter flex_container = mw.html.create('div') flex_container:addClass('mbox-flex') else -- the mbox itself is the parent, so we need no HTML flex_container flex_container = mw.html.create() end -- Add the left-hand image. if self.imageLeft then local imageLeftCell = flex_container:tag('div'):addClass('mbox-image') imageLeftCell :addClass(self.imageLeftClass) :wikitext(self.imageLeft or nil) end -- Add the text. local textCell = flex_container:tag('div'):addClass('mbox-text') if self.useCollapsibleTextFields then -- The message box uses advanced text parameters that allow things to be -- collapsible. At the moment, only ambox uses this. textCell:cssText(self.textstyle or nil) local textCellDiv = textCell:tag('div') textCellDiv :addClass('mbox-text-span') :wikitext(self.issue or nil) if (self.talk or self.fix) then textCellDiv:tag('span') :addClass('hide-when-compact') :wikitext(self.talk and (' ' .. self.talk) or nil) :wikitext(self.fix and (' ' .. self.fix) or nil) end textCellDiv:wikitext(self.date and (' ' .. self.date) or nil) if self.info and not self.isSmall then textCellDiv :tag('span') :addClass('hide-when-compact') :wikitext(self.info and (' ' .. self.info) or nil) end if self.removalNotice then textCellDiv:tag('span') :addClass('hide-when-compact') :tag('i') :wikitext(string.format(" (%s)", self.removalNotice)) end else -- Default text formatting - anything goes. textCell :cssText(self.textstyle or nil) :wikitext(self.text or nil) end -- Add the right-hand image. if self.imageRight then local imageRightCell = flex_container:tag('div'):addClass('mbox-imageright') imageRightCell :addClass(self.imageRightClass) :wikitext(self.imageRight or nil) end mbox:node(flex_container) -- Add the below row. if self.below then mbox:tag('div') :addClass('mbox-text mbox-below') :cssText(self.textstyle or nil) :wikitext(self.below or nil) end -- Add error message for invalid type parameters. if self.invalidTypeError then root:tag('div') :addClass('mbox-invalid-type') :wikitext(string.format( 'This message box is using an invalid "type=%s" parameter and needs fixing.', self.type or '' )) end -- Add categories. root:wikitext(self:renderCategories() or nil) return tostring(root) end function MessageBox:export() local root = mw.html.create() -- Add the subst check error. if self.isSubstituted and self.name then root:tag('b') :addClass('error') :wikitext(string.format( 'Template <code>%s[[Template:%s|%s]]%s</code> has been incorrectly substituted.', mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}') )) end local frame = mw.getCurrentFrame() root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = self.base_templatestyles }, }) -- Add support for a single custom templatestyles sheet. Undocumented as -- need should be limited and many templates using mbox are substed; we -- don't want to spread templatestyles sheets around to arbitrary places if self.templatestyles then root:wikitext(frame:extensionTag{ name = 'templatestyles', args = { src = self.templatestyles }, }) end -- Create the box table. local boxTable = root:tag('table') boxTable:attr('id', self.id or nil) for i, class in ipairs(self.classes or {}) do boxTable:addClass(class or nil) end boxTable :cssText(self.style or nil) :attr('role', 'presentation') if self.attrs then boxTable:attr(self.attrs) end -- Add the left-hand image. local row = boxTable:tag('tr') if self.imageLeft then local imageLeftCell = row:tag('td'):addClass('mbox-image') if self.imageCellDiv then -- If we are using a div, redefine imageLeftCell so that the image -- is inside it. Divs use style="width: 52px;", which limits the -- image width to 52px. If any images in a div are wider than that, -- they may overlap with the text or cause other display problems. imageLeftCell = imageLeftCell:tag('div'):addClass('mbox-image-div') end imageLeftCell :addClass(self.imageLeftClass) :wikitext(self.imageLeft or nil) elseif self.imageEmptyCell then -- Some message boxes define an empty cell if no image is specified, and -- some don't. The old template code in templates where empty cells are -- specified gives the following hint: "No image. Cell with some width -- or padding necessary for text cell to have 100% width." row:tag('td') :addClass('mbox-empty-cell') end -- Add the text. local textCell = row:tag('td'):addClass('mbox-text') if self.useCollapsibleTextFields then -- The message box uses advanced text parameters that allow things to be -- collapsible. At the moment, only ambox uses this. textCell:cssText(self.textstyle or nil) local textCellDiv = textCell:tag('div') textCellDiv :addClass('mbox-text-span') :wikitext(self.issue or nil) if (self.talk or self.fix) then textCellDiv:tag('span') :addClass('hide-when-compact') :wikitext(self.talk and (' ' .. self.talk) or nil) :wikitext(self.fix and (' ' .. self.fix) or nil) end textCellDiv:wikitext(self.date and (' ' .. self.date) or nil) if self.info and not self.isSmall then textCellDiv :tag('span') :addClass('hide-when-compact') :wikitext(self.info and (' ' .. self.info) or nil) end if self.removalNotice then textCellDiv:tag('span') :addClass('hide-when-compact') :tag('i') :wikitext(string.format(" (%s)", self.removalNotice)) end else -- Default text formatting - anything goes. textCell :cssText(self.textstyle or nil) :wikitext(self.text or nil) end -- Add the right-hand image. if self.imageRight then local imageRightCell = row:tag('td'):addClass('mbox-imageright') if self.imageCellDiv then -- If we are using a div, redefine imageRightCell so that the image -- is inside it. imageRightCell = imageRightCell:tag('div'):addClass('mbox-image-div') end imageRightCell :addClass(self.imageRightClass) :wikitext(self.imageRight or nil) end -- Add the below row. if self.below then boxTable:tag('tr') :tag('td') :attr('colspan', self.imageRight and '3' or '2') :addClass('mbox-text') :cssText(self.textstyle or nil) :wikitext(self.below or nil) end -- Add error message for invalid type parameters. if self.invalidTypeError then root:tag('div') :addClass('mbox-invalid-type') :wikitext(string.format( 'This message box is using an invalid "type=%s" parameter and needs fixing.', self.type or '' )) end -- Add categories. root:wikitext(self:renderCategories() or nil) return tostring(root) end -------------------------------------------------------------------------------- -- Exports -------------------------------------------------------------------------------- local p, mt = {}, {} function p._exportClasses() -- For testing. return { MessageBox = MessageBox } end function p.main(boxType, args, cfgTables) local box = MessageBox.new(boxType, args, cfgTables or mw.loadData(CONFIG_MODULE)) box:setParameters() box:setCategories() -- DIV MIGRATION CONDITIONAL if box.cfg.div_structure then return box:exportDiv() end -- END DIV MIGRATION CONDITIONAL return box:export() end function mt.__index(t, k) return function (frame) if not getArgs then getArgs = require('Module:Arguments').getArgs end return t.main(k, getArgs(frame, {trim = false, removeBlanks = false})) end end return setmetatable(p, mt) q4lkkteez395bfr1vc3p2sgliy3c8km Template:Bulleted list 10 8106 72720 2015-12-26T16:25:12Z en>Frietjes 0 documentation does this 72720 wikitext text/x-wiki {{<includeonly>safesubst:</includeonly>#invoke:list|bulleted}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude> 6i48hhgfh5fc81eswo5wmwb9rx7sypn 72721 72720 2026-06-30T21:10:21Z Robertsky 10424 1 versaun husi [[:en:Template:Bulleted_list]] 72720 wikitext text/x-wiki {{<includeonly>safesubst:</includeonly>#invoke:list|bulleted}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude> 6i48hhgfh5fc81eswo5wmwb9rx7sypn Template:Unordered list 10 8107 72722 2018-01-10T19:22:23Z en>Primefac 0 Protected "[[Template:Unordered list]]": [[WP:SEMI|semi-protecting]] highly-visible templates in response to recent template-space vandalism ([Edit=Require autoconfirmed or confirmed access] (indefinite) [Move=Require autoconfirmed or confirmed access]... 72722 wikitext text/x-wiki #REDIRECT [[Template:Bulleted list]] {{R from move}} 0yguvlaqed0u70u3yq5ngrd20nej7bo 72723 72722 2026-06-30T21:10:21Z Robertsky 10424 1 versaun husi [[:en:Template:Unordered_list]] 72722 wikitext text/x-wiki #REDIRECT [[Template:Bulleted list]] {{R from move}} 0yguvlaqed0u70u3yq5ngrd20nej7bo Módulo:Message box/div/doc 828 8108 72724 2025-11-03T18:46:29Z en>Izno 0 /* Written */ note 72724 wikitext text/x-wiki {{Module rating|alpha}} This is basically currently a sandbox of [[Module:Message box]]. It is intended to get things to be at parity with the main module before deploying to a lot of pages. == Plan == === Diffs === * [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box&rev1=&page2=Module%3AMessage+box%2Fdiv&rev2=&action=&unhide= Message box diff] * [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2fconfiguration&rev1=&page2=Module%3AMessage+box%2Fdiv%2fconfiguration&rev2=&action=&unhide= Config diff] * [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2fambox.css&rev1=&page2=Module%3AMessage+box%2Fdiv%2fambox.css&rev2=&action=&unhide= ambox.css diff] * [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2fombox.css&rev1=&page2=Module%3AMessage+box%2Fdiv%2fombox.css&rev2=&action=&unhide= ombox.css diff] * [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2ftmbox.css&rev1=&page2=Module%3AMessage+box%2Fdiv%2ftmbox.css&rev2=&action=&unhide= tmbox.css diff] === Written === Plan is something like the following: # <s>Resync the couple changes from the live modules</s> # <s>Merge tested /div version but not CSS into main</s> # Check for main namespace use in [[Special:Search]] for stuff that isn't ambox # Add /div/*mbox.css support for each box and set the relevant configuration in [[Module:Message box/div/configuration]] ## ombox ##*[https://en.wikipedia.org/w/index.php?search=insource%3A%2FMessage%5B%20_%5Dbox%5C%2Fombox%5C.css%2F%20-intitle%3A%2F(%5BSs%5Dandbox%7C%5C%2Fdoc)%2F&title=Special%3ASearch&profile=advanced&fulltext=1&ns10=1&ns828=1 minor coordination] ##* Have to convert [[Module:Archives]] to use its own TemplateStyles sheet I think is probably the best approach given the convolution with both ombox and tmbox. I got started on that a while ago, clearly need to make a return. ##* <s>[[Wikipedia:Wikimedia sister projects#Specialized soft redirect templates]]</s> ## tmbox ##* [https://en.wikipedia.org/w/index.php?search=insource%3A%2FMessage%5B%20_%5Dbox%5C%2Ftmbox%5C.css%2F%20-intitle%3A%2F(%5BSs%5Dandbox%7C%5C%2Fdoc)%2F&title=Special%3ASearch&profile=advanced&fulltext=1&ns10=1&ns828=1 major coordination] ##* [https://en.wikipedia.org/w/index.php?search=contentmodel%3Asanitized-css%20insource%3A%2Fmin-width%20*%3A%20*%5B0-9%5D*%25%2F%20-intitle%3A%2F(Sandbox%5C%2F%7C%5C%2Fsandbox)%2F&title=Special%3ASearch&profile=advanced&fulltext=1&ns10=1&ns828=1 tmbox min-widths], instituted with [[Template_talk:Article_history#Remove_some_styles_to_improve_mobile_version|this discussion]] ## ambox (most reader visible) ##* At least one pain point [[phab:T402969]] ##* Consider in general lines like <code>.ambox div</code> [https://gerrit.wikimedia.org/g/mediawiki/extensions/WikimediaMessages/+/2154d751aecd0255ebab12ab1b5dd23c712bd5cb/modules/ext.wikimediamessages.styles/ambox.less#45] ##* [[Module_talk:Message_box#c-Jdlrobson-20251003213100-Izno-20251002203000|Learn more ends up in a weird place]] ##* ensure <code>imageCellDiv</code> is incorporated into the CSS somehow. # Merge relevant configuration into [[Module:Message box/configuration/sandbox]] (namely, set div_structure to true) # Enable boxes of each kind one by one. ## Move CSS from Module:Message box/div/*mbox.css to Module:Message box/div/*mbox.css ## Merge [[Module:Message box/configuration]] from sandbox ## Fix bugs that are identified # Delete the /div CSS (I won't be too sad) # Remove main support for table versions from module, rename some things #* Remove references to imageEmptyCell cross modules === Done === # cmbox #* [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2fcmbox.css&rev1=&page2=Module%3AMessage+box%2Fdiv%2fcmbox.css&rev2=&action=&unhide= cmbox.css diff] # fmbox #* [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2ffmbox.css&rev1=&page2=Module%3AMessage+box%2Fdiv%2ffmbox.css&rev2=&action=&unhide= fmbox.css diff] # imbox #* [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2fimbox.css&rev1=&page2=Module%3AMessage+box%2Fdiv%2fimbox.css&rev2=&action=&unhide= imbox.css diff] #* Tests: {{unordered list |1= <s>[[:File:World of Warcraft.png]] (entirely local): no foreign copy</s> |2= <s>[[:File:Information.svg]] (entirely local but shadows foreign): no issues with foreign copy</s> |3= <s>[[:File:India roadway map.svg]] (local description, foreign file)</s> |4= <s>[[:File:Cat playing with a lizard.jpg]] (foreign description and file)</s> |5= <s>Uses of [https://commons.wikimedia.org/w/index.php?title=Special:WhatLinksHere/Template:Mbox&namespace=6&limit=500&dir=next&offset=6%7C43708 mbox] which is the imbox analog at Commons</s> }} === Messaging === New section on [[Module talk:Message box]]: <pre> == cmbox migration == A change is planned to occur sometime starting in the next day or two in how {{tl|cmbox}} is implemented. It should help improve display at mobile resolutions now, and accessibility later. cmbox was chosen because it has lower reader-facing impact than most other message box types and it's fairly self-contained. The change to cmbox will likely pave the way for other message boxes ({{tl|fmbox}} or {{tl|imbox}} is probably next). (There is some other planning information in [[#CSS instead of tables]].) You can expect some difference in styling from previous for a small period due to the [[WP:Job queue|job queue]], after which it should return to "normal". You should be able to correct it manually if you want with one of the usual steps ([[WP:PURGE|purge]], [[WP:NULL|null edit]], or [[Help:Dummy edit|dummy edit]]). If an issue with display persists, leave a comment here (this scenario may be possible with some unexpected setup cmboxes). </pre> Advertised at least at [[WP:VPT]] and [[MediaWiki talk:Common.css]]: <pre>A change to how {{tl|cmbox}} is implemented to support mobile resolutions better is occurring soon. It may cause some temporary display weirdness. Further information is available at {{slink|Module talk:Message box|cmbox migration}}.</pre> <includeonly>{{Sandbox other|| <!-- Categories below this line; interwikis at Wikidata --> }}</includeonly><noinclude> [[Category:Module documentation pages]] </noinclude> 74iy7504fhlinvbrwecfrbs00k5n39t 72725 72724 2026-06-30T21:10:21Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/div/doc]] 72724 wikitext text/x-wiki {{Module rating|alpha}} This is basically currently a sandbox of [[Module:Message box]]. It is intended to get things to be at parity with the main module before deploying to a lot of pages. == Plan == === Diffs === * [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box&rev1=&page2=Module%3AMessage+box%2Fdiv&rev2=&action=&unhide= Message box diff] * [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2fconfiguration&rev1=&page2=Module%3AMessage+box%2Fdiv%2fconfiguration&rev2=&action=&unhide= Config diff] * [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2fambox.css&rev1=&page2=Module%3AMessage+box%2Fdiv%2fambox.css&rev2=&action=&unhide= ambox.css diff] * [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2fombox.css&rev1=&page2=Module%3AMessage+box%2Fdiv%2fombox.css&rev2=&action=&unhide= ombox.css diff] * [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2ftmbox.css&rev1=&page2=Module%3AMessage+box%2Fdiv%2ftmbox.css&rev2=&action=&unhide= tmbox.css diff] === Written === Plan is something like the following: # <s>Resync the couple changes from the live modules</s> # <s>Merge tested /div version but not CSS into main</s> # Check for main namespace use in [[Special:Search]] for stuff that isn't ambox # Add /div/*mbox.css support for each box and set the relevant configuration in [[Module:Message box/div/configuration]] ## ombox ##*[https://en.wikipedia.org/w/index.php?search=insource%3A%2FMessage%5B%20_%5Dbox%5C%2Fombox%5C.css%2F%20-intitle%3A%2F(%5BSs%5Dandbox%7C%5C%2Fdoc)%2F&title=Special%3ASearch&profile=advanced&fulltext=1&ns10=1&ns828=1 minor coordination] ##* Have to convert [[Module:Archives]] to use its own TemplateStyles sheet I think is probably the best approach given the convolution with both ombox and tmbox. I got started on that a while ago, clearly need to make a return. ##* <s>[[Wikipedia:Wikimedia sister projects#Specialized soft redirect templates]]</s> ## tmbox ##* [https://en.wikipedia.org/w/index.php?search=insource%3A%2FMessage%5B%20_%5Dbox%5C%2Ftmbox%5C.css%2F%20-intitle%3A%2F(%5BSs%5Dandbox%7C%5C%2Fdoc)%2F&title=Special%3ASearch&profile=advanced&fulltext=1&ns10=1&ns828=1 major coordination] ##* [https://en.wikipedia.org/w/index.php?search=contentmodel%3Asanitized-css%20insource%3A%2Fmin-width%20*%3A%20*%5B0-9%5D*%25%2F%20-intitle%3A%2F(Sandbox%5C%2F%7C%5C%2Fsandbox)%2F&title=Special%3ASearch&profile=advanced&fulltext=1&ns10=1&ns828=1 tmbox min-widths], instituted with [[Template_talk:Article_history#Remove_some_styles_to_improve_mobile_version|this discussion]] ## ambox (most reader visible) ##* At least one pain point [[phab:T402969]] ##* Consider in general lines like <code>.ambox div</code> [https://gerrit.wikimedia.org/g/mediawiki/extensions/WikimediaMessages/+/2154d751aecd0255ebab12ab1b5dd23c712bd5cb/modules/ext.wikimediamessages.styles/ambox.less#45] ##* [[Module_talk:Message_box#c-Jdlrobson-20251003213100-Izno-20251002203000|Learn more ends up in a weird place]] ##* ensure <code>imageCellDiv</code> is incorporated into the CSS somehow. # Merge relevant configuration into [[Module:Message box/configuration/sandbox]] (namely, set div_structure to true) # Enable boxes of each kind one by one. ## Move CSS from Module:Message box/div/*mbox.css to Module:Message box/div/*mbox.css ## Merge [[Module:Message box/configuration]] from sandbox ## Fix bugs that are identified # Delete the /div CSS (I won't be too sad) # Remove main support for table versions from module, rename some things #* Remove references to imageEmptyCell cross modules === Done === # cmbox #* [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2fcmbox.css&rev1=&page2=Module%3AMessage+box%2Fdiv%2fcmbox.css&rev2=&action=&unhide= cmbox.css diff] # fmbox #* [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2ffmbox.css&rev1=&page2=Module%3AMessage+box%2Fdiv%2ffmbox.css&rev2=&action=&unhide= fmbox.css diff] # imbox #* [https://en.wikipedia.org/wiki/Special:ComparePages?page1=Module%3AMessage+box%2fimbox.css&rev1=&page2=Module%3AMessage+box%2Fdiv%2fimbox.css&rev2=&action=&unhide= imbox.css diff] #* Tests: {{unordered list |1= <s>[[:File:World of Warcraft.png]] (entirely local): no foreign copy</s> |2= <s>[[:File:Information.svg]] (entirely local but shadows foreign): no issues with foreign copy</s> |3= <s>[[:File:India roadway map.svg]] (local description, foreign file)</s> |4= <s>[[:File:Cat playing with a lizard.jpg]] (foreign description and file)</s> |5= <s>Uses of [https://commons.wikimedia.org/w/index.php?title=Special:WhatLinksHere/Template:Mbox&namespace=6&limit=500&dir=next&offset=6%7C43708 mbox] which is the imbox analog at Commons</s> }} === Messaging === New section on [[Module talk:Message box]]: <pre> == cmbox migration == A change is planned to occur sometime starting in the next day or two in how {{tl|cmbox}} is implemented. It should help improve display at mobile resolutions now, and accessibility later. cmbox was chosen because it has lower reader-facing impact than most other message box types and it's fairly self-contained. The change to cmbox will likely pave the way for other message boxes ({{tl|fmbox}} or {{tl|imbox}} is probably next). (There is some other planning information in [[#CSS instead of tables]].) You can expect some difference in styling from previous for a small period due to the [[WP:Job queue|job queue]], after which it should return to "normal". You should be able to correct it manually if you want with one of the usual steps ([[WP:PURGE|purge]], [[WP:NULL|null edit]], or [[Help:Dummy edit|dummy edit]]). If an issue with display persists, leave a comment here (this scenario may be possible with some unexpected setup cmboxes). </pre> Advertised at least at [[WP:VPT]] and [[MediaWiki talk:Common.css]]: <pre>A change to how {{tl|cmbox}} is implemented to support mobile resolutions better is occurring soon. It may cause some temporary display weirdness. Further information is available at {{slink|Module talk:Message box|cmbox migration}}.</pre> <includeonly>{{Sandbox other|| <!-- Categories below this line; interwikis at Wikidata --> }}</includeonly><noinclude> [[Category:Module documentation pages]] </noinclude> 74iy7504fhlinvbrwecfrbs00k5n39t Módulo:Message box/div/ambox.css 828 8109 72726 2025-08-26T03:27:51Z en>IznoPublic 0 Undid revision [[Special:Diff/1307858311|1307858311]] by [[Special:Contributions/IznoPublic|IznoPublic]] ([[User talk:IznoPublic|talk]]) undo that for now 72726 sanitized-css text/css .ambox { border: 1px solid #a2a9b1; /* @noflip */ border-left: 10px solid #36c; /* Default "notice" blue */ background-color: #fbfbfb; box-sizing: border-box; } /* Single border between stacked boxes. Take into account base templatestyles, * user styles, and Template:Dated maintenance category. * remove link selector when T200206 is fixed */ .ambox + link + .ambox, .ambox + link + style + .ambox, .ambox + link + link + .ambox, /* TODO: raise these as "is this really that necessary???". the change was Dec 2021 */ .ambox + .mw-empty-elt + link + .ambox, .ambox + .mw-empty-elt + link + style + .ambox, .ambox + .mw-empty-elt + link + link + .ambox { margin-top: -1px; } /* For the "small=left" option. */ /* must override .ambox + .ambox styles above */ html body.mediawiki .ambox.mbox-small-left { /* @noflip */ margin: 4px 1em 4px 0; overflow: hidden; width: 238px; max-width: 100%; font-size: 88%; line-height: 1.25em; } .ambox-speedy { /* @noflip */ border-left: 10px solid #b32424; /* Red */ background-color: #fee7e6; /* Pink */ } .ambox-delete { /* @noflip */ border-left: 10px solid #b32424; /* Red */ } .ambox-content { /* @noflip */ border-left: 10px solid #f28500; /* Orange */ } .ambox-style { /* @noflip */ border-left: 10px solid #fc3; /* Yellow */ } .ambox-move { /* @noflip */ border-left: 10px solid #9932cc; /* Purple */ } .ambox-protection { /* @noflip */ border-left: 10px solid #a2a9b1; /* Gray-gold */ } .ambox .mbox-text { padding: 0.25em 0.5em; flex: 1 1 100%; } .ambox .mbox-image, .ambox .mbox-imageright { /* @noflip */ padding: 2px 0 2px 0.5em; text-align: center; min-width: 52px; flex: 1 0 52px; } .ambox .mbox-imageright { /* @noflip */ padding: 2px 0.5em 2px 0; } @media (min-width: 480px) { .ambox { display: flex; align-items: center; } } @media (min-width: 640px) { .ambox { margin: 0 10%; } } @media print { body.ns-0 .ambox { display: none !important; } } r7hi7z6xcw7cl8p1wvaeyzaawtnrb7e 72727 72726 2026-06-30T21:10:27Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/div/ambox.css]] 72726 sanitized-css text/css .ambox { border: 1px solid #a2a9b1; /* @noflip */ border-left: 10px solid #36c; /* Default "notice" blue */ background-color: #fbfbfb; box-sizing: border-box; } /* Single border between stacked boxes. Take into account base templatestyles, * user styles, and Template:Dated maintenance category. * remove link selector when T200206 is fixed */ .ambox + link + .ambox, .ambox + link + style + .ambox, .ambox + link + link + .ambox, /* TODO: raise these as "is this really that necessary???". the change was Dec 2021 */ .ambox + .mw-empty-elt + link + .ambox, .ambox + .mw-empty-elt + link + style + .ambox, .ambox + .mw-empty-elt + link + link + .ambox { margin-top: -1px; } /* For the "small=left" option. */ /* must override .ambox + .ambox styles above */ html body.mediawiki .ambox.mbox-small-left { /* @noflip */ margin: 4px 1em 4px 0; overflow: hidden; width: 238px; max-width: 100%; font-size: 88%; line-height: 1.25em; } .ambox-speedy { /* @noflip */ border-left: 10px solid #b32424; /* Red */ background-color: #fee7e6; /* Pink */ } .ambox-delete { /* @noflip */ border-left: 10px solid #b32424; /* Red */ } .ambox-content { /* @noflip */ border-left: 10px solid #f28500; /* Orange */ } .ambox-style { /* @noflip */ border-left: 10px solid #fc3; /* Yellow */ } .ambox-move { /* @noflip */ border-left: 10px solid #9932cc; /* Purple */ } .ambox-protection { /* @noflip */ border-left: 10px solid #a2a9b1; /* Gray-gold */ } .ambox .mbox-text { padding: 0.25em 0.5em; flex: 1 1 100%; } .ambox .mbox-image, .ambox .mbox-imageright { /* @noflip */ padding: 2px 0 2px 0.5em; text-align: center; min-width: 52px; flex: 1 0 52px; } .ambox .mbox-imageright { /* @noflip */ padding: 2px 0.5em 2px 0; } @media (min-width: 480px) { .ambox { display: flex; align-items: center; } } @media (min-width: 640px) { .ambox { margin: 0 10%; } } @media print { body.ns-0 .ambox { display: none !important; } } r7hi7z6xcw7cl8p1wvaeyzaawtnrb7e Módulo:Message box/div/cmbox.css 828 8110 72728 2025-10-01T02:58:51Z en>Izno 0 flex: none the images. this is a thing I have learned 72728 sanitized-css text/css .cmbox { margin: 3px 0; border: 1px solid #a2a9b1; background-color: #dfe8ff; /* Default "notice" blue */ box-sizing: border-box; /* necessary when embedded in other templates like [[:Category:Pending_AfC_submissions]] */ color: var( --color-base ); } .cmbox-speedy { border: 4px solid #b32424; /* Red */ background-color: #ffdbdb; /* Pink */ } .cmbox-delete { background-color: #ffdbdb; /* Pink */ } .cmbox-content { background-color: #ffe7ce; /* Orange */ } .cmbox-style { background-color: #fff9db; /* Yellow */ } .cmbox-move { background-color: #e4d8ff; /* Purple */ } .cmbox-protection { background-color: #efefe1; /* Gray-gold */ } .cmbox .mbox-text { padding: 0.25em 0.9em; flex: 1 1 100%; } .cmbox .mbox-image, .cmbox .mbox-imageright { padding: 2px 0; text-align: center; flex: none; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 480px) { .cmbox { display: flex; align-items: center; } .cmbox .mbox-image { /* @noflip */ padding-left: 0.9em; } .cmbox .mbox-imageright { /* @noflip */ padding-right: 0.9em; } } @media (min-width: 640px) { .cmbox { margin: 3px 10%; } } /* flipped lightness in hsl space except the main cmbox is the main page blue */ @media screen { html.skin-theme-clientpref-night .cmbox { background-color: #0d1a27; /* Default "notice" blue */ } html.skin-theme-clientpref-night .cmbox-speedy, html.skin-theme-clientpref-night .cmbox-delete { background-color: #300; /* Pink */ } html.skin-theme-clientpref-night .cmbox-content { background-color: #331a00; /* Orange */ } html.skin-theme-clientpref-night .cmbox-style { background-color: #332b00; /* Yellow */ } html.skin-theme-clientpref-night .cmbox-move { background-color: #08001a; /* Purple */ } html.skin-theme-clientpref-night .cmbox-protection { background-color: #212112; /* Gray-gold */ } } @media screen and ( prefers-color-scheme: dark) { html.skin-theme-clientpref-os .cmbox { background-color: #0d1a27; /* Default "notice" blue */ } html.skin-theme-clientpref-os .cmbox-speedy, html.skin-theme-clientpref-os .cmbox-delete { background-color: #300; /* Pink */ } html.skin-theme-clientpref-os .cmbox-content { background-color: #331a00; /* Orange */ } html.skin-theme-clientpref-os .cmbox-style { background-color: #332b00; /* Yellow */ } html.skin-theme-clientpref-os .cmbox-move { background-color: #08001a; /* Purple */ } html.skin-theme-clientpref-os .cmbox-protection { background-color: #212112; /* Gray-gold */ } } k1hhit8not3wowwshs6pzx3ik96gpi7 72729 72728 2026-06-30T21:10:33Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/div/cmbox.css]] 72728 sanitized-css text/css .cmbox { margin: 3px 0; border: 1px solid #a2a9b1; background-color: #dfe8ff; /* Default "notice" blue */ box-sizing: border-box; /* necessary when embedded in other templates like [[:Category:Pending_AfC_submissions]] */ color: var( --color-base ); } .cmbox-speedy { border: 4px solid #b32424; /* Red */ background-color: #ffdbdb; /* Pink */ } .cmbox-delete { background-color: #ffdbdb; /* Pink */ } .cmbox-content { background-color: #ffe7ce; /* Orange */ } .cmbox-style { background-color: #fff9db; /* Yellow */ } .cmbox-move { background-color: #e4d8ff; /* Purple */ } .cmbox-protection { background-color: #efefe1; /* Gray-gold */ } .cmbox .mbox-text { padding: 0.25em 0.9em; flex: 1 1 100%; } .cmbox .mbox-image, .cmbox .mbox-imageright { padding: 2px 0; text-align: center; flex: none; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 480px) { .cmbox { display: flex; align-items: center; } .cmbox .mbox-image { /* @noflip */ padding-left: 0.9em; } .cmbox .mbox-imageright { /* @noflip */ padding-right: 0.9em; } } @media (min-width: 640px) { .cmbox { margin: 3px 10%; } } /* flipped lightness in hsl space except the main cmbox is the main page blue */ @media screen { html.skin-theme-clientpref-night .cmbox { background-color: #0d1a27; /* Default "notice" blue */ } html.skin-theme-clientpref-night .cmbox-speedy, html.skin-theme-clientpref-night .cmbox-delete { background-color: #300; /* Pink */ } html.skin-theme-clientpref-night .cmbox-content { background-color: #331a00; /* Orange */ } html.skin-theme-clientpref-night .cmbox-style { background-color: #332b00; /* Yellow */ } html.skin-theme-clientpref-night .cmbox-move { background-color: #08001a; /* Purple */ } html.skin-theme-clientpref-night .cmbox-protection { background-color: #212112; /* Gray-gold */ } } @media screen and ( prefers-color-scheme: dark) { html.skin-theme-clientpref-os .cmbox { background-color: #0d1a27; /* Default "notice" blue */ } html.skin-theme-clientpref-os .cmbox-speedy, html.skin-theme-clientpref-os .cmbox-delete { background-color: #300; /* Pink */ } html.skin-theme-clientpref-os .cmbox-content { background-color: #331a00; /* Orange */ } html.skin-theme-clientpref-os .cmbox-style { background-color: #332b00; /* Yellow */ } html.skin-theme-clientpref-os .cmbox-move { background-color: #08001a; /* Purple */ } html.skin-theme-clientpref-os .cmbox-protection { background-color: #212112; /* Gray-gold */ } } k1hhit8not3wowwshs6pzx3ik96gpi7 Módulo:Message box/div/configuration 828 8111 72730 2025-10-16T03:43:32Z en>Izno 0 div imbox 72730 Scribunto text/plain -------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for [[Module:Message box]]. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'ambox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'ambox-content', image = 'Ambox important.svg' }, style = { class = 'ambox-style', image = 'Edit-clear.svg' }, move = { class = 'ambox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'ambox-protection', image = 'Semi-protection-shackle-keyhole.svg' }, notice = { class = 'ambox-notice', image = 'Information icon4.svg' } }, default = 'notice', allowBlankParams = {'talk', 'sect', 'date', 'issue', 'fix', 'subst', 'hidden'}, allowSmall = true, smallParam = 'left', smallClass = 'mbox-small-left', substCheck = true, classes = {'metadata', 'ambox'}, imageEmptyCell = true, imageCheckBlank = true, imageSmallSize = '20x20px', imageCellDiv = true, useCollapsibleTextFields = true, imageRightNone = true, sectionDefault = 'article', allowMainspaceCategories = true, templateCategory = 'Article message templates', templateCategoryRequireName = true, templateErrorCategory = 'Article message templates with missing parameters', templateErrorParamsToCheck = {'issue', 'fix', 'subst'}, removalNotice = '<small>[[Help:Maintenance template removal|Learn how and when to remove this message]]</small>', templatestyles = 'Module:Message box/ambox.css', div_structure = false, -- not ready for primetime, see [[Module:Message box/div/doc]] div_templatestyles = 'Module:Message box/div/ambox.css' }, cmbox = { types = { speedy = { class = 'cmbox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'cmbox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'cmbox-content', image = 'Ambox important.svg' }, style = { class = 'cmbox-style', image = 'Edit-clear.svg' }, move = { class = 'cmbox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'cmbox-protection', image = 'Semi-protection-shackle-keyhole.svg' }, notice = { class = 'cmbox-notice', image = 'Information icon4.svg' } }, default = 'notice', showInvalidTypeError = true, classes = {'cmbox'}, imageEmptyCell = true, templatestyles = 'Module:Message box/cmbox.css', div_structure = true, div_templatestyles = 'Module:Message box/div/cmbox.css' }, fmbox = { types = { warning = { class = 'fmbox-warning', image = 'Ambox warning pn.svg' }, editnotice = { class = 'fmbox-editnotice', image = 'Information icon4.svg' }, system = { class = 'fmbox-system', image = 'Information icon4.svg' } }, default = 'system', showInvalidTypeError = true, classes = {'fmbox'}, imageEmptyCell = false, imageRightNone = false, templatestyles = 'Module:Message box/fmbox.css', div_structure = true, div_templatestyles = 'Module:Message box/div/fmbox.css', }, imbox = { types = { speedy = { class = 'imbox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'imbox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'imbox-content', image = 'Ambox important.svg' }, style = { class = 'imbox-style', image = 'Edit-clear.svg' }, move = { class = 'imbox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'imbox-protection', image = 'Semi-protection-shackle-keyhole.svg' }, license = { class = 'imbox-license licensetpl', image = 'Imbox-license.svg' }, ["license-related"] = { class = 'imbox-license', image = 'Imbox-license.svg' }, featured = { class = 'imbox-featured', image = 'Cscr-featured.svg', imageNeedsLink = true }, notice = { class = 'imbox-notice', image = 'Information icon4.svg' } }, default = 'notice', showInvalidTypeError = true, classes = {'imbox'}, imageEmptyCell = true, below = true, templateCategory = 'File message boxes', templatestyles = 'Module:Message box/imbox.css', div_structure = true, div_templatestyles = 'Module:Message box/div/imbox.css', }, ombox = { types = { speedy = { class = 'ombox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'ombox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'ombox-content', image = 'Ambox important.svg' }, style = { class = 'ombox-style', image = 'Edit-clear.svg' }, move = { class = 'ombox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'ombox-protection', image = 'Semi-protection-shackle-keyhole.svg' }, notice = { class = 'ombox-notice', image = 'Information icon4.svg' } }, default = 'notice', showInvalidTypeError = true, classes = {'ombox'}, allowSmall = true, imageEmptyCell = true, imageRightNone = true, templatestyles = 'Module:Message box/ombox.css' }, tmbox = { types = { speedy = { class = 'tmbox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'tmbox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'tmbox-content', image = 'Ambox important.svg' }, style = { class = 'tmbox-style', image = 'Edit-clear.svg' }, move = { class = 'tmbox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'tmbox-protection', image = 'Semi-protection-shackle-keyhole.svg' }, notice = { class = 'tmbox-notice', image = 'Information icon4.svg' } }, default = 'notice', showInvalidTypeError = true, classes = {'tmbox'}, allowSmall = true, imageRightNone = true, imageEmptyCell = true, templateCategory = 'Talk message boxes', templatestyles = 'Module:Message box/tmbox.css' } } 2cazjdwv9w8i8n21i39k1dxrpi1xqbm 72731 72730 2026-06-30T21:10:40Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/div/configuration]] 72730 Scribunto text/plain -------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for [[Module:Message box]]. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'ambox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'ambox-content', image = 'Ambox important.svg' }, style = { class = 'ambox-style', image = 'Edit-clear.svg' }, move = { class = 'ambox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'ambox-protection', image = 'Semi-protection-shackle-keyhole.svg' }, notice = { class = 'ambox-notice', image = 'Information icon4.svg' } }, default = 'notice', allowBlankParams = {'talk', 'sect', 'date', 'issue', 'fix', 'subst', 'hidden'}, allowSmall = true, smallParam = 'left', smallClass = 'mbox-small-left', substCheck = true, classes = {'metadata', 'ambox'}, imageEmptyCell = true, imageCheckBlank = true, imageSmallSize = '20x20px', imageCellDiv = true, useCollapsibleTextFields = true, imageRightNone = true, sectionDefault = 'article', allowMainspaceCategories = true, templateCategory = 'Article message templates', templateCategoryRequireName = true, templateErrorCategory = 'Article message templates with missing parameters', templateErrorParamsToCheck = {'issue', 'fix', 'subst'}, removalNotice = '<small>[[Help:Maintenance template removal|Learn how and when to remove this message]]</small>', templatestyles = 'Module:Message box/ambox.css', div_structure = false, -- not ready for primetime, see [[Module:Message box/div/doc]] div_templatestyles = 'Module:Message box/div/ambox.css' }, cmbox = { types = { speedy = { class = 'cmbox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'cmbox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'cmbox-content', image = 'Ambox important.svg' }, style = { class = 'cmbox-style', image = 'Edit-clear.svg' }, move = { class = 'cmbox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'cmbox-protection', image = 'Semi-protection-shackle-keyhole.svg' }, notice = { class = 'cmbox-notice', image = 'Information icon4.svg' } }, default = 'notice', showInvalidTypeError = true, classes = {'cmbox'}, imageEmptyCell = true, templatestyles = 'Module:Message box/cmbox.css', div_structure = true, div_templatestyles = 'Module:Message box/div/cmbox.css' }, fmbox = { types = { warning = { class = 'fmbox-warning', image = 'Ambox warning pn.svg' }, editnotice = { class = 'fmbox-editnotice', image = 'Information icon4.svg' }, system = { class = 'fmbox-system', image = 'Information icon4.svg' } }, default = 'system', showInvalidTypeError = true, classes = {'fmbox'}, imageEmptyCell = false, imageRightNone = false, templatestyles = 'Module:Message box/fmbox.css', div_structure = true, div_templatestyles = 'Module:Message box/div/fmbox.css', }, imbox = { types = { speedy = { class = 'imbox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'imbox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'imbox-content', image = 'Ambox important.svg' }, style = { class = 'imbox-style', image = 'Edit-clear.svg' }, move = { class = 'imbox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'imbox-protection', image = 'Semi-protection-shackle-keyhole.svg' }, license = { class = 'imbox-license licensetpl', image = 'Imbox-license.svg' }, ["license-related"] = { class = 'imbox-license', image = 'Imbox-license.svg' }, featured = { class = 'imbox-featured', image = 'Cscr-featured.svg', imageNeedsLink = true }, notice = { class = 'imbox-notice', image = 'Information icon4.svg' } }, default = 'notice', showInvalidTypeError = true, classes = {'imbox'}, imageEmptyCell = true, below = true, templateCategory = 'File message boxes', templatestyles = 'Module:Message box/imbox.css', div_structure = true, div_templatestyles = 'Module:Message box/div/imbox.css', }, ombox = { types = { speedy = { class = 'ombox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'ombox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'ombox-content', image = 'Ambox important.svg' }, style = { class = 'ombox-style', image = 'Edit-clear.svg' }, move = { class = 'ombox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'ombox-protection', image = 'Semi-protection-shackle-keyhole.svg' }, notice = { class = 'ombox-notice', image = 'Information icon4.svg' } }, default = 'notice', showInvalidTypeError = true, classes = {'ombox'}, allowSmall = true, imageEmptyCell = true, imageRightNone = true, templatestyles = 'Module:Message box/ombox.css' }, tmbox = { types = { speedy = { class = 'tmbox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'tmbox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'tmbox-content', image = 'Ambox important.svg' }, style = { class = 'tmbox-style', image = 'Edit-clear.svg' }, move = { class = 'tmbox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'tmbox-protection', image = 'Semi-protection-shackle-keyhole.svg' }, notice = { class = 'tmbox-notice', image = 'Information icon4.svg' } }, default = 'notice', showInvalidTypeError = true, classes = {'tmbox'}, allowSmall = true, imageRightNone = true, imageEmptyCell = true, templateCategory = 'Talk message boxes', templatestyles = 'Module:Message box/tmbox.css' } } 2cazjdwv9w8i8n21i39k1dxrpi1xqbm Módulo:Message box/div/fmbox.css 828 8112 72732 2025-10-08T04:57:10Z en>Izno 0 note lack of need for overflow-x 72732 sanitized-css text/css .fmbox { clear: both; /* this sheet does not require overflow-x because of this clear */ margin: 0.2em 0; border: 1px solid #a2a9b1; background-color: var(--background-color-interactive-subtle, #f8f9fa); box-sizing: border-box; color: var(--color-base, #202122); } .fmbox-warning { border: 1px solid #bb7070; /* Dark pink */ background-color: #ffdbdb; /* Pink */ } .fmbox-editnotice { background-color: transparent; } .fmbox .mbox-text { /* @noflip */ padding: 0.25em 0.9em; flex: 1 1 100%; } .fmbox .mbox-image, .fmbox .mbox-imageright { padding: 2px 0; text-align: center; flex: none; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 480px) { .fmbox { display: flex; align-items: center; } .fmbox .mbox-image { /* @noflip */ padding-left: 0.9em; } .fmbox .mbox-imageright { /* @noflip */ padding-right: 0.9em; } } @media screen { html.skin-theme-clientpref-night .fmbox-warning { background-color: #300; /* Reddish, same hue/saturation as light */ } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .fmbox-warning { background-color: #300; /* Reddish, same hue/saturation as light */ } } sc16tj71l971yaqzs7zy1ixhohth0tt 72733 72732 2026-06-30T21:11:01Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/div/fmbox.css]] 72732 sanitized-css text/css .fmbox { clear: both; /* this sheet does not require overflow-x because of this clear */ margin: 0.2em 0; border: 1px solid #a2a9b1; background-color: var(--background-color-interactive-subtle, #f8f9fa); box-sizing: border-box; color: var(--color-base, #202122); } .fmbox-warning { border: 1px solid #bb7070; /* Dark pink */ background-color: #ffdbdb; /* Pink */ } .fmbox-editnotice { background-color: transparent; } .fmbox .mbox-text { /* @noflip */ padding: 0.25em 0.9em; flex: 1 1 100%; } .fmbox .mbox-image, .fmbox .mbox-imageright { padding: 2px 0; text-align: center; flex: none; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 480px) { .fmbox { display: flex; align-items: center; } .fmbox .mbox-image { /* @noflip */ padding-left: 0.9em; } .fmbox .mbox-imageright { /* @noflip */ padding-right: 0.9em; } } @media screen { html.skin-theme-clientpref-night .fmbox-warning { background-color: #300; /* Reddish, same hue/saturation as light */ } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .fmbox-warning { background-color: #300; /* Reddish, same hue/saturation as light */ } } sc16tj71l971yaqzs7zy1ixhohth0tt Módulo:Message box/div/imbox.css 828 8113 72734 2025-10-17T01:01:05Z en>Izno 0 change comment, IDK why 0.4 is important 72734 sanitized-css text/css .imbox { margin: 4px 0; border: 3px solid #36c; /* Default "notice" blue */ background-color: var(--background-color-interactive-subtle, #f8f9fa); box-sizing: border-box; overflow-x: hidden; } /* For imboxes inside imbox-text cells. */ .imbox .mbox-text .imbox { margin: 0 -0.6em; /* 1 - 0.6 = 0.4em left/right. */ } .imbox-speedy { border: 3px solid #b32424; /* Red */ background-color: #fee7e6; /* Pink */ } .imbox-delete { border: 3px solid #b32424; /* Red */ } .imbox-content { border: 3px solid #f28500; /* Orange */ } .imbox-style { border: 3px solid #fc3; /* Yellow */ } .imbox-move { border: 3px solid #9932cc; /* Purple */ } .imbox-protection { border: 3px solid #a2a9b1; /* Gray-gold */ } .imbox-license { border: 3px solid #88a; /* Dark gray */ } .imbox-featured { border: 3px solid #cba135; /* Brown-gold */ } .imbox .mbox-text { padding: 0.35em 1em; flex: 1 1 100%; } .imbox .mbox-image, .imbox .mbox-imageright { padding: 4px 2px; text-align: center; flex: none; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 480px) { .imbox:not(.mbox-with-below), .imbox .mbox-flex { display: flex; align-items: center; } .imbox .mbox-image { /* @noflip */ padding-left: 1em; } .imbox .mbox-imageright { /* @noflip */ padding-right: 1em; } } @media (min-width: 640px) { .imbox { margin: 4px 10%; } } @media screen { html.skin-theme-clientpref-night .imbox-speedy { background-color: #310402; /* Dark red, same hue/saturation as light */ } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .imbox-speedy { background-color: #310402; /* Dark red, same hue/saturation as light */ } } r1r2631ftnawz7ly84z5fljp0f9s90y 72735 72734 2026-06-30T21:11:07Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/div/imbox.css]] 72734 sanitized-css text/css .imbox { margin: 4px 0; border: 3px solid #36c; /* Default "notice" blue */ background-color: var(--background-color-interactive-subtle, #f8f9fa); box-sizing: border-box; overflow-x: hidden; } /* For imboxes inside imbox-text cells. */ .imbox .mbox-text .imbox { margin: 0 -0.6em; /* 1 - 0.6 = 0.4em left/right. */ } .imbox-speedy { border: 3px solid #b32424; /* Red */ background-color: #fee7e6; /* Pink */ } .imbox-delete { border: 3px solid #b32424; /* Red */ } .imbox-content { border: 3px solid #f28500; /* Orange */ } .imbox-style { border: 3px solid #fc3; /* Yellow */ } .imbox-move { border: 3px solid #9932cc; /* Purple */ } .imbox-protection { border: 3px solid #a2a9b1; /* Gray-gold */ } .imbox-license { border: 3px solid #88a; /* Dark gray */ } .imbox-featured { border: 3px solid #cba135; /* Brown-gold */ } .imbox .mbox-text { padding: 0.35em 1em; flex: 1 1 100%; } .imbox .mbox-image, .imbox .mbox-imageright { padding: 4px 2px; text-align: center; flex: none; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 480px) { .imbox:not(.mbox-with-below), .imbox .mbox-flex { display: flex; align-items: center; } .imbox .mbox-image { /* @noflip */ padding-left: 1em; } .imbox .mbox-imageright { /* @noflip */ padding-right: 1em; } } @media (min-width: 640px) { .imbox { margin: 4px 10%; } } @media screen { html.skin-theme-clientpref-night .imbox-speedy { background-color: #310402; /* Dark red, same hue/saturation as light */ } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .imbox-speedy { background-color: #310402; /* Dark red, same hue/saturation as light */ } } r1r2631ftnawz7ly84z5fljp0f9s90y Módulo:Message box/fmbox.css 828 8114 72736 2025-10-17T00:59:48Z en>Izno 0 bump paddings per [[Module talk:Message box#cmbox migration]] 72736 sanitized-css text/css /* {{pp|small=y}} */ .fmbox { clear: both; /* this sheet does not require overflow-x because of this clear */ margin: 0.2em 0; border: 1px solid #a2a9b1; background-color: var(--background-color-interactive-subtle, #f8f9fa); box-sizing: border-box; color: var(--color-base, #202122); } .fmbox-warning { border: 1px solid #bb7070; /* Dark pink */ background-color: #ffdbdb; /* Pink */ } .fmbox-editnotice { background-color: transparent; } .fmbox .mbox-text { padding: 0.35em 1em; flex: 1 1 100%; } .fmbox .mbox-image, .fmbox .mbox-imageright { padding: 4px 2px; text-align: center; flex: none; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 480px) { .fmbox { display: flex; align-items: center; } .fmbox .mbox-image { /* @noflip */ padding-left: 1em; } .fmbox .mbox-imageright { /* @noflip */ padding-right: 1em; } } @media screen { html.skin-theme-clientpref-night .fmbox-warning { background-color: #300; /* Reddish, same hue/saturation as light */ } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .fmbox-warning { background-color: #300; /* Reddish, same hue/saturation as light */ } } ivof69wam0nxtvwqgg5cd5tk4dl4s0k 72737 72736 2026-06-30T21:11:37Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/fmbox.css]] 72736 sanitized-css text/css /* {{pp|small=y}} */ .fmbox { clear: both; /* this sheet does not require overflow-x because of this clear */ margin: 0.2em 0; border: 1px solid #a2a9b1; background-color: var(--background-color-interactive-subtle, #f8f9fa); box-sizing: border-box; color: var(--color-base, #202122); } .fmbox-warning { border: 1px solid #bb7070; /* Dark pink */ background-color: #ffdbdb; /* Pink */ } .fmbox-editnotice { background-color: transparent; } .fmbox .mbox-text { padding: 0.35em 1em; flex: 1 1 100%; } .fmbox .mbox-image, .fmbox .mbox-imageright { padding: 4px 2px; text-align: center; flex: none; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 480px) { .fmbox { display: flex; align-items: center; } .fmbox .mbox-image { /* @noflip */ padding-left: 1em; } .fmbox .mbox-imageright { /* @noflip */ padding-right: 1em; } } @media screen { html.skin-theme-clientpref-night .fmbox-warning { background-color: #300; /* Reddish, same hue/saturation as light */ } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .fmbox-warning { background-color: #300; /* Reddish, same hue/saturation as light */ } } ivof69wam0nxtvwqgg5cd5tk4dl4s0k Módulo:Message box/imbox.css 828 8115 72738 2025-10-19T18:19:47Z en>Izno 0 div imbox 72738 sanitized-css text/css /* {{pp|small=y}} */ .imbox { margin: 4px 0; border: 3px solid #36c; /* Default "notice" blue */ background-color: var(--background-color-interactive-subtle, #f8f9fa); box-sizing: border-box; overflow-x: hidden; } /* For imboxes inside imbox-text cells. */ .imbox .mbox-text .imbox { margin: 0 -0.6em; /* 1 - 0.6 = 0.4em left/right. */ } .imbox-speedy { border: 3px solid #b32424; /* Red */ background-color: #fee7e6; /* Pink */ } .imbox-delete { border: 3px solid #b32424; /* Red */ } .imbox-content { border: 3px solid #f28500; /* Orange */ } .imbox-style { border: 3px solid #fc3; /* Yellow */ } .imbox-move { border: 3px solid #9932cc; /* Purple */ } .imbox-protection { border: 3px solid #a2a9b1; /* Gray-gold */ } .imbox-license { border: 3px solid #88a; /* Dark gray */ } .imbox-featured { border: 3px solid #cba135; /* Brown-gold */ } .imbox .mbox-text { padding: 0.35em 1em; flex: 1 1 100%; } .imbox .mbox-image, .imbox .mbox-imageright { padding: 4px 2px; text-align: center; flex: none; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 480px) { .imbox:not(.mbox-with-below), .imbox .mbox-flex { display: flex; align-items: center; } .imbox .mbox-image { /* @noflip */ padding-left: 1em; } .imbox .mbox-imageright { /* @noflip */ padding-right: 1em; } } @media (min-width: 640px) { .imbox { margin: 4px 10%; } } @media screen { html.skin-theme-clientpref-night .imbox-speedy { background-color: #310402; /* Dark red, same hue/saturation as light */ } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .imbox-speedy { background-color: #310402; /* Dark red, same hue/saturation as light */ } } cacofixghrezzsmd254dqd10a2rghdw 72739 72738 2026-06-30T21:11:46Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/imbox.css]] 72738 sanitized-css text/css /* {{pp|small=y}} */ .imbox { margin: 4px 0; border: 3px solid #36c; /* Default "notice" blue */ background-color: var(--background-color-interactive-subtle, #f8f9fa); box-sizing: border-box; overflow-x: hidden; } /* For imboxes inside imbox-text cells. */ .imbox .mbox-text .imbox { margin: 0 -0.6em; /* 1 - 0.6 = 0.4em left/right. */ } .imbox-speedy { border: 3px solid #b32424; /* Red */ background-color: #fee7e6; /* Pink */ } .imbox-delete { border: 3px solid #b32424; /* Red */ } .imbox-content { border: 3px solid #f28500; /* Orange */ } .imbox-style { border: 3px solid #fc3; /* Yellow */ } .imbox-move { border: 3px solid #9932cc; /* Purple */ } .imbox-protection { border: 3px solid #a2a9b1; /* Gray-gold */ } .imbox-license { border: 3px solid #88a; /* Dark gray */ } .imbox-featured { border: 3px solid #cba135; /* Brown-gold */ } .imbox .mbox-text { padding: 0.35em 1em; flex: 1 1 100%; } .imbox .mbox-image, .imbox .mbox-imageright { padding: 4px 2px; text-align: center; flex: none; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 480px) { .imbox:not(.mbox-with-below), .imbox .mbox-flex { display: flex; align-items: center; } .imbox .mbox-image { /* @noflip */ padding-left: 1em; } .imbox .mbox-imageright { /* @noflip */ padding-right: 1em; } } @media (min-width: 640px) { .imbox { margin: 4px 10%; } } @media screen { html.skin-theme-clientpref-night .imbox-speedy { background-color: #310402; /* Dark red, same hue/saturation as light */ } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .imbox-speedy { background-color: #310402; /* Dark red, same hue/saturation as light */ } } cacofixghrezzsmd254dqd10a2rghdw Módulo:Message box/tmbox.css 828 8116 72740 2025-08-29T06:06:51Z en>Izno 0 fix bug for invalid type CSS 72740 sanitized-css text/css /* {{pp|small=y}} */ .tmbox { margin: 4px 0; border-collapse: collapse; border: 1px solid #c0c090; /* Default "notice" gray-brown */ background-color: #f8eaba; box-sizing: border-box; } /* For the "small=yes" option. */ .tmbox.mbox-small { font-size: 88%; line-height: 1.25em; } .tmbox-speedy { border: 2px solid #b32424; /* Red */ background-color: #fee7e6; /* Pink */ } .tmbox-delete { border: 2px solid #b32424; /* Red */ } .tmbox-content { border: 2px solid #f28500; /* Orange */ } .tmbox-style { border: 2px solid #fc3; /* Yellow */ } .tmbox-move { border: 2px solid #9932cc; /* Purple */ } .tmbox .mbox-text { border: none; /* @noflip */ padding: 0.25em 0.9em; width: 100%; } .tmbox .mbox-image { border: none; /* @noflip */ padding: 2px 0 2px 0.9em; text-align: center; } .tmbox .mbox-imageright { border: none; /* @noflip */ padding: 2px 0.9em 2px 0; text-align: center; } /* An empty narrow cell */ .tmbox .mbox-empty-cell { border: none; padding: 0; width: 1px; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 720px) { .tmbox { margin: 4px 10%; } .tmbox.mbox-small { /* @noflip */ clear: right; /* @noflip */ float: right; /* @noflip */ margin: 4px 0 4px 1em; width: 238px; } } @media screen { html.skin-theme-clientpref-night .tmbox { background-color: #2e2505; /* Dark brown, same hue/saturation as light */ } html.skin-theme-clientpref-night .tmbox-speedy { background-color: #310402; /* Dark red, same hue/saturation as light */ } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .tmbox { background-color: #2e2505; /* Dark brown, same hue/saturation as light */ } html.skin-theme-clientpref-os .tmbox-speedy { background-color: #310402; /* Dark red, same hue/saturation as light */ } } /** T367463 */ body.skin--responsive table.tmbox img { max-width: none !important; } ffh2lypp0mcty5c7j53ntmwywlflceo 72741 72740 2026-06-30T21:12:05Z Robertsky 10424 1 versaun husi [[:en:Module:Message_box/tmbox.css]] 72740 sanitized-css text/css /* {{pp|small=y}} */ .tmbox { margin: 4px 0; border-collapse: collapse; border: 1px solid #c0c090; /* Default "notice" gray-brown */ background-color: #f8eaba; box-sizing: border-box; } /* For the "small=yes" option. */ .tmbox.mbox-small { font-size: 88%; line-height: 1.25em; } .tmbox-speedy { border: 2px solid #b32424; /* Red */ background-color: #fee7e6; /* Pink */ } .tmbox-delete { border: 2px solid #b32424; /* Red */ } .tmbox-content { border: 2px solid #f28500; /* Orange */ } .tmbox-style { border: 2px solid #fc3; /* Yellow */ } .tmbox-move { border: 2px solid #9932cc; /* Purple */ } .tmbox .mbox-text { border: none; /* @noflip */ padding: 0.25em 0.9em; width: 100%; } .tmbox .mbox-image { border: none; /* @noflip */ padding: 2px 0 2px 0.9em; text-align: center; } .tmbox .mbox-imageright { border: none; /* @noflip */ padding: 2px 0.9em 2px 0; text-align: center; } /* An empty narrow cell */ .tmbox .mbox-empty-cell { border: none; padding: 0; width: 1px; } /* keep synced with each other type of message box as this isn't qualified */ .mbox-invalid-type { text-align: center; } @media (min-width: 720px) { .tmbox { margin: 4px 10%; } .tmbox.mbox-small { /* @noflip */ clear: right; /* @noflip */ float: right; /* @noflip */ margin: 4px 0 4px 1em; width: 238px; } } @media screen { html.skin-theme-clientpref-night .tmbox { background-color: #2e2505; /* Dark brown, same hue/saturation as light */ } html.skin-theme-clientpref-night .tmbox-speedy { background-color: #310402; /* Dark red, same hue/saturation as light */ } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .tmbox { background-color: #2e2505; /* Dark brown, same hue/saturation as light */ } html.skin-theme-clientpref-os .tmbox-speedy { background-color: #310402; /* Dark red, same hue/saturation as light */ } } /** T367463 */ body.skin--responsive table.tmbox img { max-width: none !important; } ffh2lypp0mcty5c7j53ntmwywlflceo Módulo:Documentation/doc 828 8117 72743 2026-06-03T15:28:00Z en>Awesome Aasim 0 add infobox lua template manually for now 72743 wikitext text/x-wiki {{Used in system|in [[MediaWiki:Scribunto-doc-page-show]], in [[MediaWiki:Scribunto-doc-page-does-not-exist]]}} {{Module rating|protected}} {{Lua|Module:Documentation/config|Module:Arguments|Module:Message box|Module:Module wikitext|Module:Protection banner}} {{Uses TemplateStyles|Module:Documentation/styles.css}} {{Infobox Lua | title = Documentation | description = Displays a green box containing documentation for [[Help:Template|templates]], [[Wikipedia:Lua|Lua modules]], or other pages. | status = stable | dependencies = * [[Module:Documentation/config]] * [[Module:Arguments]] * [[Module:Message box]] * [[Module:Module wikitext]] * [[Module:Protection banner]] }} This module displays a green box containing documentation for [[Help:Template|templates]], [[Wikipedia:Lua|Lua modules]], or other pages. The {{tl|documentation}} template invokes it. == Normal usage == For most uses, you should use the {{tl|documentation}} template; please see that template's page for its usage instructions and parameters. == Use in other modules == To use this module from another Lua module, first load it with <code>require</code>: <syntaxhighlight lang="lua"> local documentation = require('Module:Documentation').main </syntaxhighlight> Then you can simply call it using a table of arguments. <syntaxhighlight lang="lua"> documentation{content = 'Some documentation', ['link box'] = 'My custom link box'} </syntaxhighlight> Please refer to the [[Template:Documentation/doc|template documentation]] for usage instructions and a list of parameters. == Porting to other wikis == The module has a configuration file at [[Module:Documentation/config]] which is intended to allow easy translation and porting to other wikis. Please see the code comments in the config page for instructions. Also, links to Wikipedia within config strings, i.e. <code><nowiki>[[Wikipedia:Template documentation|documentation]]</nowiki></code> will point to non-existent Wikipedia pages if config is on another wiki. Either modify, remove it, or add the interwiki prefix like so: <code><nowiki>[[w:Wikipedia:Template documentation|documentation]]</nowiki></code>. If you have any questions, or you need a feature which is not currently implemented, please leave a message at <span class="plainlinks">[https://en.wikipedia.org/wiki/Template_talk:Documentation Template talk:Documentation]</span><!-- this link uses external link syntax because it is intended to direct users from third-party wikis to the Wikipedia template talk page; in this situation, an internal link would unhelpfully just point to their local template talk page, and the existence of any given interwiki prefix cannot be assumed --> to get the attention of a developer. The messages that need to be customized to display a documentation template/module at the top of module pages are [[MediaWiki:Scribunto-doc-page-show]] and [[MediaWiki:Scribunto-doc-page-does-not-exist]].<noinclude> [[Category:Module documentation pages]] </noinclude> kjuakkmjvj33xre7qcvf2lpvm6hhh8j 72744 72743 2026-06-30T21:16:24Z Robertsky 10424 1 versaun husi [[:en:Module:Documentation/doc]] 72743 wikitext text/x-wiki {{Used in system|in [[MediaWiki:Scribunto-doc-page-show]], in [[MediaWiki:Scribunto-doc-page-does-not-exist]]}} {{Module rating|protected}} {{Lua|Module:Documentation/config|Module:Arguments|Module:Message box|Module:Module wikitext|Module:Protection banner}} {{Uses TemplateStyles|Module:Documentation/styles.css}} {{Infobox Lua | title = Documentation | description = Displays a green box containing documentation for [[Help:Template|templates]], [[Wikipedia:Lua|Lua modules]], or other pages. | status = stable | dependencies = * [[Module:Documentation/config]] * [[Module:Arguments]] * [[Module:Message box]] * [[Module:Module wikitext]] * [[Module:Protection banner]] }} This module displays a green box containing documentation for [[Help:Template|templates]], [[Wikipedia:Lua|Lua modules]], or other pages. The {{tl|documentation}} template invokes it. == Normal usage == For most uses, you should use the {{tl|documentation}} template; please see that template's page for its usage instructions and parameters. == Use in other modules == To use this module from another Lua module, first load it with <code>require</code>: <syntaxhighlight lang="lua"> local documentation = require('Module:Documentation').main </syntaxhighlight> Then you can simply call it using a table of arguments. <syntaxhighlight lang="lua"> documentation{content = 'Some documentation', ['link box'] = 'My custom link box'} </syntaxhighlight> Please refer to the [[Template:Documentation/doc|template documentation]] for usage instructions and a list of parameters. == Porting to other wikis == The module has a configuration file at [[Module:Documentation/config]] which is intended to allow easy translation and porting to other wikis. Please see the code comments in the config page for instructions. Also, links to Wikipedia within config strings, i.e. <code><nowiki>[[Wikipedia:Template documentation|documentation]]</nowiki></code> will point to non-existent Wikipedia pages if config is on another wiki. Either modify, remove it, or add the interwiki prefix like so: <code><nowiki>[[w:Wikipedia:Template documentation|documentation]]</nowiki></code>. If you have any questions, or you need a feature which is not currently implemented, please leave a message at <span class="plainlinks">[https://en.wikipedia.org/wiki/Template_talk:Documentation Template talk:Documentation]</span><!-- this link uses external link syntax because it is intended to direct users from third-party wikis to the Wikipedia template talk page; in this situation, an internal link would unhelpfully just point to their local template talk page, and the existence of any given interwiki prefix cannot be assumed --> to get the attention of a developer. The messages that need to be customized to display a documentation template/module at the top of module pages are [[MediaWiki:Scribunto-doc-page-show]] and [[MediaWiki:Scribunto-doc-page-does-not-exist]].<noinclude> [[Category:Module documentation pages]] </noinclude> kjuakkmjvj33xre7qcvf2lpvm6hhh8j Template:Delink 10 8118 72749 2024-02-17T04:47:19Z en>Pppery 0 Changed protection settings for "[[Template:Delink]]": Dependency of fully-protected (and on [[WP:CASC]]) [[Template:Fix]] ([Edit=Require administrator access] (indefinite) [Move=Require administrator access] (indefinite)) 72749 wikitext text/x-wiki {{<includeonly>safesubst:</includeonly>#invoke:delink|delink}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude> nxxwkb2lon9wgne4irg9ctbsle6zwiy 72750 72749 2026-06-30T21:16:25Z Robertsky 10424 1 versaun husi [[:en:Template:Delink]] 72749 wikitext text/x-wiki {{<includeonly>safesubst:</includeonly>#invoke:delink|delink}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude> nxxwkb2lon9wgne4irg9ctbsle6zwiy Módulo:Delink 828 8119 72751 2024-02-17T04:47:33Z en>Pppery 0 Changed protection settings for "[[Module:Delink]]": Dependency of fully-protected (and on [[WP:CASC]]) [[Template:Fix]] ([Edit=Require administrator access] (indefinite) [Move=Require administrator access] (indefinite)) 72751 Scribunto text/plain -- This module de-links most wikitext. require("strict") local p = {} local getArgs local function delinkReversePipeTrick(s) if s:match("^%[%[|.*[|\n]") then -- Check for newlines or multiple pipes. return s end return s:match("%[%[|(.*)%]%]") end local function delinkPipeTrick(s) -- We need to deal with colons, brackets, and commas, per [[Help:Pipe trick]]. -- First, remove the text before the first colon, if any. if s:match(":") then s = s:match("%[%[.-:(.*)|%]%]") -- If there are no colons, grab all of the text apart from the square brackets and the pipe. else s = s:match("%[%[(.*)|%]%]") end -- Next up, brackets and commas. if s:match("%(.-%)$") then -- Brackets trump commas. s = s:match("(.-) ?%(.-%)$") elseif s:match(",") then -- If there are no brackets, display only the text before the first comma. s = s:match("(.-),.*$") end return s end -- Return wikilink target |wikilinks=target local function getDelinkedTarget(s) local result = s -- Deal with the reverse pipe trick. if result:match("%[%[|") then return delinkReversePipeTrick(result) end result = mw.uri.decode(result, "PATH") -- decode percent-encoded entities. Leave underscores and plus signs. result = mw.text.decode(result, true) -- decode HTML entities. -- Check for bad titles. To do this we need to find the -- title area of the link, i.e. the part before any pipes. local target_area if result:match("|") then -- Find if we're dealing with a piped link. target_area = result:match("^%[%[(.-)|.*%]%]") else target_area = result:match("^%[%[(.-)%]%]") end -- Check for bad characters. if mw.ustring.match(target_area, "[%[%]<>{}%%%c\n]") and mw.ustring.match(target_area, "[%[%]<>{}%%%c\n]") ~= "?" then return s end return target_area end local function getDelinkedLabel(s) local result = s -- Deal with the reverse pipe trick. if result:match("%[%[|") then return delinkReversePipeTrick(result) end result = mw.uri.decode(result, "PATH") -- decode percent-encoded entities. Leave underscores and plus signs. result = mw.text.decode(result, true) -- decode HTML entities. -- Check for bad titles. To do this we need to find the -- title area of the link, i.e. the part before any pipes. local target_area if result:match("|") then -- Find if we're dealing with a piped link. target_area = result:match("^%[%[(.-)|.*%]%]") else target_area = result:match("^%[%[(.-)%]%]") end -- Check for bad characters. if mw.ustring.match(target_area, "[%[%]<>{}%%%c\n]") and mw.ustring.match(target_area, "[%[%]<>{}%%%c\n]") ~= "?" then return s end -- Check for categories, interwikis, and files. local colon_prefix = result:match("%[%[(.-):.*%]%]") or "" -- Get the text before the first colon. local ns = mw.site.namespaces[colon_prefix] -- see if this is a known namespace if mw.language.isKnownLanguageTag(colon_prefix) or (ns and (ns.canonicalName == "File" or ns.canonicalName == "Category")) then return "" end -- Remove the colon if the link is using the [[Help:Colon trick]]. if result:match("%[%[:") then result = "[[" .. result:match("%[%[:(.*%]%])") end -- Deal with links using the [[Help:Pipe trick]]. if mw.ustring.match(result, "^%[%[[^|]*|%]%]") then return delinkPipeTrick(result) end -- Find the display area of the wikilink if result:match("|") then -- Find if we're dealing with a piped link. result = result:match("^%[%[.-|(.+)%]%]") -- Remove new lines from the display of multiline piped links, -- where the pipe is before the first new line. result = result:gsub("\n", "") else result = result:match("^%[%[(.-)%]%]") end return result end local function delinkURL(s) -- Assume we have already delinked internal wikilinks, and that -- we have been passed some text between two square brackets [foo]. -- If the text contains a line break it is not formatted as a URL, regardless of other content. if s:match("\n") then return s end -- Check if the text has a valid URL prefix and at least one valid URL character. local valid_url_prefixes = {"//", "http://", "https://", "ftp://", "gopher://", "mailto:", "news:", "irc://"} local url_prefix for _ ,v in ipairs(valid_url_prefixes) do if mw.ustring.match(s, '^%[' .. v ..'[^"%s].*%]' ) then url_prefix = v break end end -- Get display text if not url_prefix then return s end s = s:match("^%[" .. url_prefix .. "(.*)%]") -- Grab all of the text after the URL prefix and before the final square bracket. s = s:match('^.-(["<> ].*)') or "" -- Grab all of the text after the first URL separator character ("<> ). s = mw.ustring.match(s, "^%s*(%S.*)$") or "" -- If the separating character was a space, trim it off. local s_decoded = mw.text.decode(s, true) if mw.ustring.match(s_decoded, "%c") then return s end return s_decoded end local function delinkLinkClass(text, pattern, delinkFunction) if type(text) ~= "string" then error("Attempt to de-link non-string input.", 2) end if type(pattern) ~= "string" or mw.ustring.sub(pattern, 1, 1) ~= "^" then error('Invalid pattern detected. Patterns must begin with "^".', 2) end -- Iterate over the text string, and replace any matched text. using the -- delink function. We need to iterate character by character rather -- than just use gsub, otherwise nested links aren't detected properly. local result = "" while text ~= "" do -- Replace text using one iteration of gsub. text = mw.ustring.gsub(text, pattern, delinkFunction, 1) -- Append the left-most character to the result string. result = result .. mw.ustring.sub(text, 1, 1) text = mw.ustring.sub(text, 2, -1) end return result end function p._delink(args) local text = args[1] or "" if args.refs == "yes" then -- Remove any [[Help:Strip markers]] representing ref tags. In most situations -- this is not a good idea - only use it if you know what you are doing! text = mw.ustring.gsub(text, "UNIQ%w*%-ref%-%d*%-QINU", "") end if args.comments ~= "no" then text = text:gsub("<!%-%-.-%-%->", "") -- Remove html comments. end if args.wikilinks ~= "no" and args.wikilinks ~= "target" then -- De-link wikilinks and return the label portion of the wikilink. text = delinkLinkClass(text, "^%[%[.-%]%]", getDelinkedLabel) elseif args.wikilinks == "target" then -- De-link wikilinks and return the target portions of the wikilink. text = delinkLinkClass(text, "^%[%[.-%]%]", getDelinkedTarget) end if args.urls ~= "no" then text = delinkLinkClass(text, "^%[.-%]", delinkURL) -- De-link URLs. end if args.whitespace ~= "no" then -- Replace single new lines with a single space, but leave double new lines -- and new lines only containing spaces or tabs before a second new line. text = mw.ustring.gsub(text, "([^\n \t][ \t]*)\n([ \t]*[^\n \t])", "%1 %2") text = text:gsub("[ \t]+", " ") -- Remove extra tabs and spaces. end return text end function p.delink(frame) if not getArgs then getArgs = require('Module:Arguments').getArgs end return p._delink(getArgs(frame, {wrappers = 'Template:Delink'})) end return p ap0hgbdtouyp0g9x21nujuwhyky0459 72752 72751 2026-06-30T21:16:25Z Robertsky 10424 1 versaun husi [[:en:Module:Delink]] 72751 Scribunto text/plain -- This module de-links most wikitext. require("strict") local p = {} local getArgs local function delinkReversePipeTrick(s) if s:match("^%[%[|.*[|\n]") then -- Check for newlines or multiple pipes. return s end return s:match("%[%[|(.*)%]%]") end local function delinkPipeTrick(s) -- We need to deal with colons, brackets, and commas, per [[Help:Pipe trick]]. -- First, remove the text before the first colon, if any. if s:match(":") then s = s:match("%[%[.-:(.*)|%]%]") -- If there are no colons, grab all of the text apart from the square brackets and the pipe. else s = s:match("%[%[(.*)|%]%]") end -- Next up, brackets and commas. if s:match("%(.-%)$") then -- Brackets trump commas. s = s:match("(.-) ?%(.-%)$") elseif s:match(",") then -- If there are no brackets, display only the text before the first comma. s = s:match("(.-),.*$") end return s end -- Return wikilink target |wikilinks=target local function getDelinkedTarget(s) local result = s -- Deal with the reverse pipe trick. if result:match("%[%[|") then return delinkReversePipeTrick(result) end result = mw.uri.decode(result, "PATH") -- decode percent-encoded entities. Leave underscores and plus signs. result = mw.text.decode(result, true) -- decode HTML entities. -- Check for bad titles. To do this we need to find the -- title area of the link, i.e. the part before any pipes. local target_area if result:match("|") then -- Find if we're dealing with a piped link. target_area = result:match("^%[%[(.-)|.*%]%]") else target_area = result:match("^%[%[(.-)%]%]") end -- Check for bad characters. if mw.ustring.match(target_area, "[%[%]<>{}%%%c\n]") and mw.ustring.match(target_area, "[%[%]<>{}%%%c\n]") ~= "?" then return s end return target_area end local function getDelinkedLabel(s) local result = s -- Deal with the reverse pipe trick. if result:match("%[%[|") then return delinkReversePipeTrick(result) end result = mw.uri.decode(result, "PATH") -- decode percent-encoded entities. Leave underscores and plus signs. result = mw.text.decode(result, true) -- decode HTML entities. -- Check for bad titles. To do this we need to find the -- title area of the link, i.e. the part before any pipes. local target_area if result:match("|") then -- Find if we're dealing with a piped link. target_area = result:match("^%[%[(.-)|.*%]%]") else target_area = result:match("^%[%[(.-)%]%]") end -- Check for bad characters. if mw.ustring.match(target_area, "[%[%]<>{}%%%c\n]") and mw.ustring.match(target_area, "[%[%]<>{}%%%c\n]") ~= "?" then return s end -- Check for categories, interwikis, and files. local colon_prefix = result:match("%[%[(.-):.*%]%]") or "" -- Get the text before the first colon. local ns = mw.site.namespaces[colon_prefix] -- see if this is a known namespace if mw.language.isKnownLanguageTag(colon_prefix) or (ns and (ns.canonicalName == "File" or ns.canonicalName == "Category")) then return "" end -- Remove the colon if the link is using the [[Help:Colon trick]]. if result:match("%[%[:") then result = "[[" .. result:match("%[%[:(.*%]%])") end -- Deal with links using the [[Help:Pipe trick]]. if mw.ustring.match(result, "^%[%[[^|]*|%]%]") then return delinkPipeTrick(result) end -- Find the display area of the wikilink if result:match("|") then -- Find if we're dealing with a piped link. result = result:match("^%[%[.-|(.+)%]%]") -- Remove new lines from the display of multiline piped links, -- where the pipe is before the first new line. result = result:gsub("\n", "") else result = result:match("^%[%[(.-)%]%]") end return result end local function delinkURL(s) -- Assume we have already delinked internal wikilinks, and that -- we have been passed some text between two square brackets [foo]. -- If the text contains a line break it is not formatted as a URL, regardless of other content. if s:match("\n") then return s end -- Check if the text has a valid URL prefix and at least one valid URL character. local valid_url_prefixes = {"//", "http://", "https://", "ftp://", "gopher://", "mailto:", "news:", "irc://"} local url_prefix for _ ,v in ipairs(valid_url_prefixes) do if mw.ustring.match(s, '^%[' .. v ..'[^"%s].*%]' ) then url_prefix = v break end end -- Get display text if not url_prefix then return s end s = s:match("^%[" .. url_prefix .. "(.*)%]") -- Grab all of the text after the URL prefix and before the final square bracket. s = s:match('^.-(["<> ].*)') or "" -- Grab all of the text after the first URL separator character ("<> ). s = mw.ustring.match(s, "^%s*(%S.*)$") or "" -- If the separating character was a space, trim it off. local s_decoded = mw.text.decode(s, true) if mw.ustring.match(s_decoded, "%c") then return s end return s_decoded end local function delinkLinkClass(text, pattern, delinkFunction) if type(text) ~= "string" then error("Attempt to de-link non-string input.", 2) end if type(pattern) ~= "string" or mw.ustring.sub(pattern, 1, 1) ~= "^" then error('Invalid pattern detected. Patterns must begin with "^".', 2) end -- Iterate over the text string, and replace any matched text. using the -- delink function. We need to iterate character by character rather -- than just use gsub, otherwise nested links aren't detected properly. local result = "" while text ~= "" do -- Replace text using one iteration of gsub. text = mw.ustring.gsub(text, pattern, delinkFunction, 1) -- Append the left-most character to the result string. result = result .. mw.ustring.sub(text, 1, 1) text = mw.ustring.sub(text, 2, -1) end return result end function p._delink(args) local text = args[1] or "" if args.refs == "yes" then -- Remove any [[Help:Strip markers]] representing ref tags. In most situations -- this is not a good idea - only use it if you know what you are doing! text = mw.ustring.gsub(text, "UNIQ%w*%-ref%-%d*%-QINU", "") end if args.comments ~= "no" then text = text:gsub("<!%-%-.-%-%->", "") -- Remove html comments. end if args.wikilinks ~= "no" and args.wikilinks ~= "target" then -- De-link wikilinks and return the label portion of the wikilink. text = delinkLinkClass(text, "^%[%[.-%]%]", getDelinkedLabel) elseif args.wikilinks == "target" then -- De-link wikilinks and return the target portions of the wikilink. text = delinkLinkClass(text, "^%[%[.-%]%]", getDelinkedTarget) end if args.urls ~= "no" then text = delinkLinkClass(text, "^%[.-%]", delinkURL) -- De-link URLs. end if args.whitespace ~= "no" then -- Replace single new lines with a single space, but leave double new lines -- and new lines only containing spaces or tabs before a second new line. text = mw.ustring.gsub(text, "([^\n \t][ \t]*)\n([ \t]*[^\n \t])", "%1 %2") text = text:gsub("[ \t]+", " ") -- Remove extra tabs and spaces. end return text end function p.delink(frame) if not getArgs then getArgs = require('Module:Arguments').getArgs end return p._delink(getArgs(frame, {wrappers = 'Template:Delink'})) end return p ap0hgbdtouyp0g9x21nujuwhyky0459 Template:Time ago 10 8120 72753 2019-11-08T05:01:19Z en>Wugapodes 0 noncaps 72753 wikitext text/x-wiki {{#invoke:Time ago|main}}<noinclude> {{documentation}} <!-- Categories go in the /doc subpage and interwikis go in Wikidata. --> </noinclude> mzprrwbd409g2cer41ys035v9oay1od 72754 72753 2026-06-30T21:16:26Z Robertsky 10424 1 versaun husi [[:en:Template:Time_ago]] 72753 wikitext text/x-wiki {{#invoke:Time ago|main}}<noinclude> {{documentation}} <!-- Categories go in the /doc subpage and interwikis go in Wikidata. --> </noinclude> mzprrwbd409g2cer41ys035v9oay1od Módulo:Time ago 828 8121 72755 2021-02-02T18:35:13Z en>GreenC 0 add new feature "|numeric" to print number only 72755 Scribunto text/plain -- Implement [[Template:Time ago]] local numberSpell, yesno -- lazy load function numberSpell(arg) numberSpell = require('Module:NumberSpell')._main return numberSpell(arg) end function yesno(arg) yesno = require('Module:Yesno') return yesno(arg) end local p = {} -- Table to convert entered text values to numeric values. local timeText = { ['seconds'] = 1, ['minutes'] = 60, ['hours'] = 3600, ['days'] = 86400, ['weeks'] = 604800, ['months'] = 2629800, -- 365.25 * 24 * 60 * 60 / 12 ['years'] = 31557600 } -- Table containing tables of possible units to use in output. local timeUnits = { [1] = { 'second', 'seconds', "second's", "seconds'" }, [60] = { 'minute', 'minutes', "minutes'", "minutes'" }, [3600] = { 'hour', 'hours', "hour's", "hours'" }, [86400] = { 'day', 'days', "day's", "days'" }, [604800] = { 'week', 'weeks', "week's", "weeks'", unit = 'w' }, [2629800] = { 'month', 'months', "month's", "months'", unit = 'm' }, [31557600] = { 'year', 'years', "year's", "years'", unit = 'y' } } function p._main( args ) -- Initialize variables local lang = mw.language.getContentLanguage() local auto_magnitude_num local min_magnitude_num local magnitude = args.magnitude local min_magnitude = args.min_magnitude local purge = args.purge -- Add a purge link if something (usually "yes") is entered into the purge parameter if purge then purge = ' <span class="plainlinks">([' .. mw.title.getCurrentTitle():fullUrl('action=purge') .. ' purge])</span>' else purge = '' end -- Check that the entered timestamp is valid. If it isn't, then give an error message. local success, inputTime = pcall( lang.formatDate, lang, 'xnU', args[1] ) if not success then return '<strong class="error">Error: first parameter cannot be parsed as a date or time.</strong>' end -- Store the difference between the current time and the inputted time, as well as its absolute value. local timeDiff = lang:formatDate( 'xnU' ) - inputTime local absTimeDiff = math.abs( timeDiff ) if magnitude then auto_magnitude_num = 0 min_magnitude_num = timeText[magnitude] else -- Calculate the appropriate unit of time if it was not specified as an argument. local autoMagnitudeData = { { factor = 2, amn = 31557600 }, { factor = 2, amn = 2629800 }, { factor = 2, amn = 86400 }, { factor = 2, amn = 3600 }, { factor = 2, amn = 60 } } for _, t in ipairs( autoMagnitudeData ) do if absTimeDiff / t.amn >= t.factor then auto_magnitude_num = t.amn break end end auto_magnitude_num = auto_magnitude_num or 1 if min_magnitude then min_magnitude_num = timeText[min_magnitude] else min_magnitude_num = -1 end end if not min_magnitude_num then -- Default to seconds if an invalid magnitude is entered. min_magnitude_num = 1 end local result_num local magnitude_num = math.max( min_magnitude_num, auto_magnitude_num ) local unit = timeUnits[magnitude_num].unit if unit and absTimeDiff >= 864000 then local Date = require('Module:Date')._Date local input = lang:formatDate('Y-m-d H:i:s', args[1]) -- Date needs a clean date input = Date(input) if input then local id if input.hour == 0 and input.minute == 0 then id = 'currentdate' else id = 'currentdatetime' end result_num = (Date(id) - input):age(unit) end end result_num = result_num or math.floor ( absTimeDiff / magnitude_num ) local punctuation_key, suffix if timeDiff >= 0 then -- Past if result_num == 1 then punctuation_key = 1 else punctuation_key = 2 end if args.ago == '' then suffix = '' else suffix = ' ' .. (args.ago or 'ago') end else -- Future if args.ago == '' then suffix = '' if result_num == 1 then punctuation_key = 1 else punctuation_key = 2 end else suffix = ' time' if result_num == 1 then punctuation_key = 3 else punctuation_key = 4 end end end local result_unit = timeUnits[ magnitude_num ][ punctuation_key ] -- Convert numerals to words if appropriate. local spell_out = args.spellout local spell_out_max = tonumber(args.spelloutmax) local result_num_text if spell_out and ( ( spell_out == 'auto' and 1 <= result_num and result_num <= 9 and result_num <= ( spell_out_max or 9 ) ) or ( yesno( spell_out ) and 1 <= result_num and result_num <= 100 and result_num <= ( spell_out_max or 100 ) ) ) then result_num_text = numberSpell( result_num ) else result_num_text = tostring( result_num ) end -- numeric or string local numeric_out = args.numeric local result = "" if numeric_out then result = tostring( result_num ) else result = result_num_text .. ' ' .. result_unit .. suffix -- Spaces for suffix have been added in earlier. end return result .. purge end function p.main( frame ) local args = require( 'Module:Arguments' ).getArgs( frame, { valueFunc = function( k, v ) if v then v = v:match( '^%s*(.-)%s*$' ) -- Trim whitespace. if k == 'ago' or v ~= '' then return v end end return nil end, wrappers = 'Template:Time ago' }) return p._main( args ) end return p owi7m6sdgrso49bzrq9mha9ire8l3cs 72756 72755 2026-06-30T21:16:26Z Robertsky 10424 1 versaun husi [[:en:Module:Time_ago]] 72755 Scribunto text/plain -- Implement [[Template:Time ago]] local numberSpell, yesno -- lazy load function numberSpell(arg) numberSpell = require('Module:NumberSpell')._main return numberSpell(arg) end function yesno(arg) yesno = require('Module:Yesno') return yesno(arg) end local p = {} -- Table to convert entered text values to numeric values. local timeText = { ['seconds'] = 1, ['minutes'] = 60, ['hours'] = 3600, ['days'] = 86400, ['weeks'] = 604800, ['months'] = 2629800, -- 365.25 * 24 * 60 * 60 / 12 ['years'] = 31557600 } -- Table containing tables of possible units to use in output. local timeUnits = { [1] = { 'second', 'seconds', "second's", "seconds'" }, [60] = { 'minute', 'minutes', "minutes'", "minutes'" }, [3600] = { 'hour', 'hours', "hour's", "hours'" }, [86400] = { 'day', 'days', "day's", "days'" }, [604800] = { 'week', 'weeks', "week's", "weeks'", unit = 'w' }, [2629800] = { 'month', 'months', "month's", "months'", unit = 'm' }, [31557600] = { 'year', 'years', "year's", "years'", unit = 'y' } } function p._main( args ) -- Initialize variables local lang = mw.language.getContentLanguage() local auto_magnitude_num local min_magnitude_num local magnitude = args.magnitude local min_magnitude = args.min_magnitude local purge = args.purge -- Add a purge link if something (usually "yes") is entered into the purge parameter if purge then purge = ' <span class="plainlinks">([' .. mw.title.getCurrentTitle():fullUrl('action=purge') .. ' purge])</span>' else purge = '' end -- Check that the entered timestamp is valid. If it isn't, then give an error message. local success, inputTime = pcall( lang.formatDate, lang, 'xnU', args[1] ) if not success then return '<strong class="error">Error: first parameter cannot be parsed as a date or time.</strong>' end -- Store the difference between the current time and the inputted time, as well as its absolute value. local timeDiff = lang:formatDate( 'xnU' ) - inputTime local absTimeDiff = math.abs( timeDiff ) if magnitude then auto_magnitude_num = 0 min_magnitude_num = timeText[magnitude] else -- Calculate the appropriate unit of time if it was not specified as an argument. local autoMagnitudeData = { { factor = 2, amn = 31557600 }, { factor = 2, amn = 2629800 }, { factor = 2, amn = 86400 }, { factor = 2, amn = 3600 }, { factor = 2, amn = 60 } } for _, t in ipairs( autoMagnitudeData ) do if absTimeDiff / t.amn >= t.factor then auto_magnitude_num = t.amn break end end auto_magnitude_num = auto_magnitude_num or 1 if min_magnitude then min_magnitude_num = timeText[min_magnitude] else min_magnitude_num = -1 end end if not min_magnitude_num then -- Default to seconds if an invalid magnitude is entered. min_magnitude_num = 1 end local result_num local magnitude_num = math.max( min_magnitude_num, auto_magnitude_num ) local unit = timeUnits[magnitude_num].unit if unit and absTimeDiff >= 864000 then local Date = require('Module:Date')._Date local input = lang:formatDate('Y-m-d H:i:s', args[1]) -- Date needs a clean date input = Date(input) if input then local id if input.hour == 0 and input.minute == 0 then id = 'currentdate' else id = 'currentdatetime' end result_num = (Date(id) - input):age(unit) end end result_num = result_num or math.floor ( absTimeDiff / magnitude_num ) local punctuation_key, suffix if timeDiff >= 0 then -- Past if result_num == 1 then punctuation_key = 1 else punctuation_key = 2 end if args.ago == '' then suffix = '' else suffix = ' ' .. (args.ago or 'ago') end else -- Future if args.ago == '' then suffix = '' if result_num == 1 then punctuation_key = 1 else punctuation_key = 2 end else suffix = ' time' if result_num == 1 then punctuation_key = 3 else punctuation_key = 4 end end end local result_unit = timeUnits[ magnitude_num ][ punctuation_key ] -- Convert numerals to words if appropriate. local spell_out = args.spellout local spell_out_max = tonumber(args.spelloutmax) local result_num_text if spell_out and ( ( spell_out == 'auto' and 1 <= result_num and result_num <= 9 and result_num <= ( spell_out_max or 9 ) ) or ( yesno( spell_out ) and 1 <= result_num and result_num <= 100 and result_num <= ( spell_out_max or 100 ) ) ) then result_num_text = numberSpell( result_num ) else result_num_text = tostring( result_num ) end -- numeric or string local numeric_out = args.numeric local result = "" if numeric_out then result = tostring( result_num ) else result = result_num_text .. ' ' .. result_unit .. suffix -- Spaces for suffix have been added in earlier. end return result .. purge end function p.main( frame ) local args = require( 'Module:Arguments' ).getArgs( frame, { valueFunc = function( k, v ) if v then v = v:match( '^%s*(.-)%s*$' ) -- Trim whitespace. if k == 'ago' or v ~= '' then return v end end return nil end, wrappers = 'Template:Time ago' }) return p._main( args ) end return p owi7m6sdgrso49bzrq9mha9ire8l3cs Template:Fix-span 10 8122 72757 2024-10-08T21:27:59Z en>Stjn 0 actually matching colours for night mode 72757 wikitext text/x-wiki {{#if:{{{content|}}}|<span class="{{{span-class|cleanup-needed-content}}}" style="padding-left:0.1em; padding-right:0.1em; color:var(--color-subtle, #54595d); border:1px solid var(--border-color-subtle, #c8ccd1);">{{{content|}}}</span>}}{{#switch:{{{subst|¬}}} |¬={{category handler |template=[[Category:Templates needing substitution checking]] |nocat={{{nocat|<noinclude>true</noinclude>}}} }} |SUBST=[[Category:Pages with incorrectly substituted templates]] }}{{Category handler |main={{Fix/category |cat-date={{{cat-date|}}} |cat={{{cat|}}} |cat-date2={{{cat-date2|}}} |cat2={{{cat2|}}} |cat-date3={{{cat-date3|}}} |cat3={{{cat3|}}} |date={{{date|}}} }} |template={{#if:{{{name|}}}|{{#ifeq:{{{name}}}|{{ROOTPAGENAME}}||{{#if:{{{date|}}}||[[Category:Templates including undated clean-up tags]]}}}}}} |subpage=no }}{{#if:{{{special|}}} |{{{special|}}} |<sup class="noprint Inline-Template {{{class|}}}" style="margin-left:0.1em; white-space:nowrap;">&#91;<i>{{#if:{{{pre-text|}}} |{{{pre-text}}}&#32; }}[[{{{link|Wikipedia:Cleanup}}}|<span title="{{#invoke:decodeEncode|encode|s={{{title|{{{link|Wikipedia:Cleanup}}}}}} {{#if:{{{date|}}}|({{{date}}})}}}}">{{{text|}}}</span>]]{{#if:{{{post-text|}}} |&#32;{{{post-text}}} }}</i>&#93;</sup> }}<noinclude> {{Documentation}} </noinclude> mh6qnbkgwzuiogtkt4972zoj59tzrem 72758 72757 2026-06-30T21:16:26Z Robertsky 10424 1 versaun husi [[:en:Template:Fix-span]] 72757 wikitext text/x-wiki {{#if:{{{content|}}}|<span class="{{{span-class|cleanup-needed-content}}}" style="padding-left:0.1em; padding-right:0.1em; color:var(--color-subtle, #54595d); border:1px solid var(--border-color-subtle, #c8ccd1);">{{{content|}}}</span>}}{{#switch:{{{subst|¬}}} |¬={{category handler |template=[[Category:Templates needing substitution checking]] |nocat={{{nocat|<noinclude>true</noinclude>}}} }} |SUBST=[[Category:Pages with incorrectly substituted templates]] }}{{Category handler |main={{Fix/category |cat-date={{{cat-date|}}} |cat={{{cat|}}} |cat-date2={{{cat-date2|}}} |cat2={{{cat2|}}} |cat-date3={{{cat-date3|}}} |cat3={{{cat3|}}} |date={{{date|}}} }} |template={{#if:{{{name|}}}|{{#ifeq:{{{name}}}|{{ROOTPAGENAME}}||{{#if:{{{date|}}}||[[Category:Templates including undated clean-up tags]]}}}}}} |subpage=no }}{{#if:{{{special|}}} |{{{special|}}} |<sup class="noprint Inline-Template {{{class|}}}" style="margin-left:0.1em; white-space:nowrap;">&#91;<i>{{#if:{{{pre-text|}}} |{{{pre-text}}}&#32; }}[[{{{link|Wikipedia:Cleanup}}}|<span title="{{#invoke:decodeEncode|encode|s={{{title|{{{link|Wikipedia:Cleanup}}}}}} {{#if:{{{date|}}}|({{{date}}})}}}}">{{{text|}}}</span>]]{{#if:{{{post-text|}}} |&#32;{{{post-text}}} }}</i>&#93;</sup> }}<noinclude> {{Documentation}} </noinclude> mh6qnbkgwzuiogtkt4972zoj59tzrem Módulo:DecodeEncode 828 8123 72759 2023-04-17T20:18:54Z en>Lemondoge 0 Fixed error (`a ~= (nil or '')` doesn't work; change to `a and a ~= ''`). 72759 Scribunto text/plain require('strict') local p = {} local function _getBoolean( boolean_str ) -- from: module:String; adapted -- requires an explicit true local boolean_value if type( boolean_str ) == 'string' then boolean_str = boolean_str:lower() if boolean_str == 'true' or boolean_str == 'yes' or boolean_str == '1' then boolean_value = true else boolean_value = false end elseif type( boolean_str ) == 'boolean' then boolean_value = boolean_str else boolean_value = false end return boolean_value end function p.decode( frame ) local s = frame.args['s'] or '' local subset_only = _getBoolean(frame.args['subset_only'] or false) return p._decode( s, subset_only ) end function p._decode( s, subset_only ) -- U+2009 THIN SPACE: workaround for bug: HTML entity &thinsp; is decoded incorrect. Entity &ThinSpace; gets decoded properly s = mw.ustring.gsub( s, '&thinsp;', '&ThinSpace;' ) -- U+03B5 ε GREEK SMALL LETTER EPSILON: workaround for bug (phab:T328840): HTML entity &epsilon; is decoded incorrect for gsub(). Entity &epsi; gets decoded properly s = mw.ustring.gsub( s, '&epsilon;', '&epsi;' ) local ret = mw.text.decode( s, not subset_only ) return ret end function p.encode( frame ) local s = frame.args['s'] or '' local charset = frame.args['charset'] return p._encode( s, charset ) end function p._encode( s, charset ) -- example: charset = '_&©−°\\\"\'\=' -- do escape with backslash not %; local ret if charset and charset ~= '' then ret = mw.text.encode( s, charset ) else -- use default: chartset = '<>&"\' ' (outer quotes = lua required; space = NBSP) ret = mw.text.encode( s ) end return ret end return p i6pnw8l3pyqcqxofzxz6auze5i1q3g8 72760 72759 2026-06-30T21:16:26Z Robertsky 10424 1 versaun husi [[:en:Module:DecodeEncode]] 72759 Scribunto text/plain require('strict') local p = {} local function _getBoolean( boolean_str ) -- from: module:String; adapted -- requires an explicit true local boolean_value if type( boolean_str ) == 'string' then boolean_str = boolean_str:lower() if boolean_str == 'true' or boolean_str == 'yes' or boolean_str == '1' then boolean_value = true else boolean_value = false end elseif type( boolean_str ) == 'boolean' then boolean_value = boolean_str else boolean_value = false end return boolean_value end function p.decode( frame ) local s = frame.args['s'] or '' local subset_only = _getBoolean(frame.args['subset_only'] or false) return p._decode( s, subset_only ) end function p._decode( s, subset_only ) -- U+2009 THIN SPACE: workaround for bug: HTML entity &thinsp; is decoded incorrect. Entity &ThinSpace; gets decoded properly s = mw.ustring.gsub( s, '&thinsp;', '&ThinSpace;' ) -- U+03B5 ε GREEK SMALL LETTER EPSILON: workaround for bug (phab:T328840): HTML entity &epsilon; is decoded incorrect for gsub(). Entity &epsi; gets decoded properly s = mw.ustring.gsub( s, '&epsilon;', '&epsi;' ) local ret = mw.text.decode( s, not subset_only ) return ret end function p.encode( frame ) local s = frame.args['s'] or '' local charset = frame.args['charset'] return p._encode( s, charset ) end function p._encode( s, charset ) -- example: charset = '_&©−°\\\"\'\=' -- do escape with backslash not %; local ret if charset and charset ~= '' then ret = mw.text.encode( s, charset ) else -- use default: chartset = '<>&"\' ' (outer quotes = lua required; space = NBSP) ret = mw.text.encode( s ) end return ret end return p i6pnw8l3pyqcqxofzxz6auze5i1q3g8 Template:Example needed 10 8124 72761 2024-12-02T20:40:49Z en>Tule-hog 0 add optional named 'plural' param 72761 wikitext text/x-wiki {{ safesubst:<noinclude/>#invoke:Unsubst||date=__DATE__ |$B= {{Fix-span |link = {{{link|WP:AUDIENCE}}} |text = example{{#switch:{{{1|{{{plural|}}}}}}|yes|plural|pl|s=s}} needed |title = {{delink|{{{reason|An editor has requested that {{#switch:{{{1|{{{plural|}}}}}}|yes|plural|pl|s=examples|an example}} be provided.}}}}} |date = {{{date|}}} |pre-text = {{{pre-text|}}} |post-text = {{{post-text|}}} |cat = [[Category:All articles needing examples]] |cat-date = Category:Articles needing examples |content = {{{text|}}} }} }}<noinclude> {{documentation}} </noinclude> ccncqiqp9x97y40vjfty03l56uz3br6 72762 72761 2026-06-30T21:16:26Z Robertsky 10424 1 versaun husi [[:en:Template:Example_needed]] 72761 wikitext text/x-wiki {{ safesubst:<noinclude/>#invoke:Unsubst||date=__DATE__ |$B= {{Fix-span |link = {{{link|WP:AUDIENCE}}} |text = example{{#switch:{{{1|{{{plural|}}}}}}|yes|plural|pl|s=s}} needed |title = {{delink|{{{reason|An editor has requested that {{#switch:{{{1|{{{plural|}}}}}}|yes|plural|pl|s=examples|an example}} be provided.}}}}} |date = {{{date|}}} |pre-text = {{{pre-text|}}} |post-text = {{{post-text|}}} |cat = [[Category:All articles needing examples]] |cat-date = Category:Articles needing examples |content = {{{text|}}} }} }}<noinclude> {{documentation}} </noinclude> ccncqiqp9x97y40vjfty03l56uz3br6 Template:Not a sandbox 10 8125 72763 2025-07-11T11:29:40Z en>Newbzy 0 RM unneeded definite article 72763 wikitext text/x-wiki {{Mbox | type = content | image = [[File:Sandbox Not New.svg|50px|alt=|link=]] | text = '''This page is ''not'' a [[Wikipedia:About the sandbox|sandbox]].'''<br><div style="font-size:100%">It should not be used for test editing. To experiment, please use the [[Wikipedia:Sandbox|Wikipedia sandbox]], your [[Special:MyPage/sandbox|user sandbox]], or [[Wikipedia:About the sandbox#List of sandboxes|other sandboxes]]. {{{note|}}}</div> }}{{template other|__EXPECTUNUSEDTEMPLATE__}}<noinclude> {{Documentation}} </noinclude> 3vfefzb8gyx9k2jezik4vxc9jja0rqc 72764 72763 2026-06-30T21:16:26Z Robertsky 10424 1 versaun husi [[:en:Template:Not_a_sandbox]] 72763 wikitext text/x-wiki {{Mbox | type = content | image = [[File:Sandbox Not New.svg|50px|alt=|link=]] | text = '''This page is ''not'' a [[Wikipedia:About the sandbox|sandbox]].'''<br><div style="font-size:100%">It should not be used for test editing. To experiment, please use the [[Wikipedia:Sandbox|Wikipedia sandbox]], your [[Special:MyPage/sandbox|user sandbox]], or [[Wikipedia:About the sandbox#List of sandboxes|other sandboxes]]. {{{note|}}}</div> }}{{template other|__EXPECTUNUSEDTEMPLATE__}}<noinclude> {{Documentation}} </noinclude> 3vfefzb8gyx9k2jezik4vxc9jja0rqc Módulo:Transclusion count/data/D 828 8126 72765 2026-06-28T05:09:30Z en>Ahechtbot 0 [[Wikipedia:BOT|Bot]]: Updated page. 72765 Scribunto text/plain return { ["D&D_to-do"] = 6600, ["DANFS"] = 8100, ["DBCatsURL"] = 2000, ["DCS_Sri_Lanka"] = 2000, ["DDR"] = 2900, ["DEC"] = 11000, ["DECADE"] = 321000, ["DEN"] = 7400, ["DEU"] = 19000, ["DGRBM"] = 2000, ["DMC"] = 54000, ["DMCA"] = 3220000, ["DNB"] = 9600, ["DNB-Portal"] = 2300, ["DNB_portal"] = 3600, ["DNK"] = 8600, ["DNZB"] = 3700, ["DOM"] = 2300, ["DOWs"] = 2700, ["DRV_links"] = 4200, ["DWT"] = 2600, ["DYKC"] = 6700, ["DYKF"] = 2100, ["DYK_blue"] = 3400, ["DYK_checklist"] = 24000, ["DYK_conditions"] = 64000, ["DYK_files"] = 2100, ["DYK_header"] = 57000, ["DYK_nompage_links"] = 101000, ["DYK_talk"] = 110000, ["DYK_talk/date"] = 110000, ["DYK_tools"] = 80000, ["DYK_tools/styles.css"] = 80000, ["DYKfile"] = 13000, ["DZA"] = 3000, ["Dab"] = 21000, ["Dagger"] = 24000, ["Dark_red"] = 3300, ["Darkred"] = 3100, ["Dash"] = 2700, ["Dashboard.wikiedu.org_assignment"] = 35000, ["Dashboard.wikiedu.org_bibliography/bibliography"] = 12000, ["Dashboard.wikiedu.org_bibliography/guide"] = 19000, ["Dashboard.wikiedu.org_bibliography/outline"] = 12000, ["Dashboard.wikiedu.org_course_header"] = 8100, ["Dashboard.wikiedu.org_course_header/edit-note"] = 8100, ["Dashboard.wikiedu.org_draft_template/about_this_sandbox"] = 20000, ["Dashboard.wikiedu.org_evaluate_article/guide"] = 24000, ["Dashboard.wikiedu.org_peer_review/guide"] = 27000, ["Dashboard.wikiedu.org_sandbox"] = 130000, ["Dashboard.wikiedu.org_student_editor"] = 118000, ["Dashboard.wikiedu.org_student_program_sandbox"] = 129000, ["Dashboard.wikiedu.org_talk_course_link"] = 120000, ["Dashboard.wikiedu.org_user_talk"] = 2200, ["Date"] = 55000, ["Date-mf"] = 63000, ["Date_table_sorting"] = 45000, ["Dated_maintenance_category"] = 3310000, ["Dated_maintenance_category_(articles)"] = 3260000, ["Dated_maintenance_category_by_type_(articles)"] = 23000, ["Davis_Cup_player"] = 2600, ["Day+1"] = 6900, ["Day-1"] = 8300, ["Db-meta"] = 2100, ["Dbox"] = 3000, ["Dda"] = 3100, ["Dead_YouTube_link"] = 2300, ["Dead_link"] = 366000, ["Deadlink"] = 2000, ["Deadweight_tonnage"] = 2600, ["Death-date_and_age"] = 6000, ["Death_date"] = 15000, ["Death_date_and_age"] = 527000, ["Death_date_and_given_age"] = 4500, ["Death_date_text"] = 6000, ["Death_year"] = 4500, ["Death_year_and_age"] = 29000, ["Death_year_category_header"] = 2000, ["Decade_link"] = 39000, ["Decimals"] = 3600, ["Declination"] = 11000, ["Decline"] = 2700, ["Declined"] = 3600, ["Decrease"] = 51000, ["Define"] = 4300, ["Deg2DMS"] = 3300, ["Deleted_on_Commons"] = 5300, ["Deletion_review_log_header"] = 6700, ["Deletion_review_log_header/Core"] = 6700, ["Delink"] = 1950000, ["Delink_question_hyphen-minus"] = 440000, ["Delrevxfd"] = 4000, ["Democratic_Party_(US)/meta/shading"] = 19000, ["Description_missing"] = 5700, ["Designation/text"] = 18000, ["Designation_list"] = 7600, ["Details"] = 3500, ["DetailsLink"] = 5400, ["Details_link"] = 6400, ["Detect_singular"] = 253000, ["Deutsche_Bahn_station_codes"] = 2200, ["DfE_performance_tables"] = 4500, ["Dictionary_of_National_Biography"] = 9600, ["Diff"] = 33000, ["Diff2"] = 15000, ["Diffusing_occupation_by_nationality_and_century_category_header"] = 4300, ["Diffusing_occupation_by_nationality_and_century_category_header/core"] = 7400, ["Digits"] = 8500, ["Directories_box"] = 3200, ["Disamb"] = 2200, ["Disambig"] = 63000, ["Disambig-Class"] = 12000, ["Disambiguation"] = 234000, ["Disambiguation/cat"] = 233000, ["Disambiguation_page_short_description"] = 379000, ["Discogs_artist"] = 24000, ["Discogs_master"] = 16000, ["Discogs_release"] = 3700, ["Discussion_bottom"] = 14000, ["Discussion_top"] = 15000, ["Disestablishment_category_in_country"] = 10000, ["Disestablishment_category_in_country/core"] = 10000, ["Disestablishment_category_in_country_by_decade"] = 2600, ["Disestablishment_category_in_country_by_decade/core"] = 2600, ["DisestcatCountry"] = 10000, ["DisestcatCountry/core"] = 10000, ["DisestcatUSstate"] = 5200, ["DisestcatUSstate/core"] = 5200, ["Disputed"] = 2100, ["Distinguish"] = 127000, ["Disused_Rail_Start"] = 4000, ["Disused_rail_start"] = 4300, ["Div_col"] = 492000, ["Div_col/styles.css"] = 494000, ["Div_col_end"] = 358000, ["Divbox"] = 482000, ["Divbox/styles.css"] = 482000, ["Dividing_line"] = 4500, ["Dmbox"] = 507000, ["Dmbox/styles.css"] = 507000, ["Do_not_move_to_Commons"] = 23000, ["Doc"] = 3900, ["Documentation"] = 150000, ["Documentation_subpage"] = 101000, ["Dog_opentask"] = 4100, ["Doi"] = 29000, ["Doing"] = 4100, ["Don't_edit_this_line"] = 150000, ["Don't_edit_this_line_always_display"] = 650000, ["Don't_edit_this_line_extinct"] = 650000, ["Don't_edit_this_line_link_target"] = 650000, ["Don't_edit_this_line_link_text"] = 650000, ["Don't_edit_this_line_parent"] = 650000, ["Don't_edit_this_line_rank"] = 650000, ["Don't_edit_this_line_refs"] = 149000, ["Don't_edit_this_line_same_as"] = 650000, ["Done"] = 123000, ["Doppelganger"] = 2900, ["Double+single"] = 4400, ["Double-dagger"] = 28000, ["Dow_tooltip"] = 2500, ["Dr"] = 3400, ["Dr-logno"] = 3400, ["Dr-make"] = 3400, ["Dr-yr"] = 3400, ["Draft_article"] = 10000, ["Draft_article_check"] = 10000, ["Draft_categories"] = 10000, ["Draft_other"] = 115000, ["Draft_topics"] = 30000, ["Drafts_moved_from_mainspace"] = 9400, ["Draw"] = 4700, ["Draw_key"] = 21000, ["Draw_links"] = 16000, ["Drep"] = 3400, ["DriverDB_driver"] = 2800, ["Drugbankcite"] = 4300, ["Drugbox"] = 6300, ["Drugs.com"] = 3300, ["Dts"] = 44000, ["Dubious"] = 8600, ["Duck"] = 3300, ["Dummytab"] = 6700, ["Duration"] = 44000, ["Dutch_municipality"] = 2700, ["Dyktalk"] = 39000, ["Dynamic_list"] = 14000, ["Module:DYK_checklist"] = 24000, ["Module:DYK_checklist/data"] = 24000, ["Module:DYK_nompage_links"] = 101000, ["Module:Data"] = 110000, ["Module:Date"] = 2090000, ["Module:DateI18n"] = 47000, ["Module:Date_table_sorting"] = 48000, ["Module:Date_time"] = 559000, ["Module:DecodeEncode"] = 147000, ["Module:Delink"] = 4340000, ["Module:Designation"] = 105000, ["Module:Designation/list"] = 105000, ["Module:Designation/lookup"] = 25000, ["Module:Detect_singular"] = 2880000, ["Module:Diff"] = 3200, ["Module:Disambiguation"] = 23000, ["Module:Disambiguation/templates"] = 13200000, ["Module:Distinguish"] = 127000, ["Module:Documentation"] = 204000, ["Module:Documentation/config"] = 204000, ["Module:Documentation/styles.css"] = 204000, ["Module:Domain_handler"] = 14000, ["Module:Draft_topics"] = 30000, ["Module:Dts"] = 3400, ["Module:Duration"] = 252000, } ix8xzx9qyjhepkql17j48qa1h22lgb3 72766 72765 2026-06-30T21:16:27Z Robertsky 10424 1 versaun husi [[:en:Module:Transclusion_count/data/D]] 72765 Scribunto text/plain return { ["D&D_to-do"] = 6600, ["DANFS"] = 8100, ["DBCatsURL"] = 2000, ["DCS_Sri_Lanka"] = 2000, ["DDR"] = 2900, ["DEC"] = 11000, ["DECADE"] = 321000, ["DEN"] = 7400, ["DEU"] = 19000, ["DGRBM"] = 2000, ["DMC"] = 54000, ["DMCA"] = 3220000, ["DNB"] = 9600, ["DNB-Portal"] = 2300, ["DNB_portal"] = 3600, ["DNK"] = 8600, ["DNZB"] = 3700, ["DOM"] = 2300, ["DOWs"] = 2700, ["DRV_links"] = 4200, ["DWT"] = 2600, ["DYKC"] = 6700, ["DYKF"] = 2100, ["DYK_blue"] = 3400, ["DYK_checklist"] = 24000, ["DYK_conditions"] = 64000, ["DYK_files"] = 2100, ["DYK_header"] = 57000, ["DYK_nompage_links"] = 101000, ["DYK_talk"] = 110000, ["DYK_talk/date"] = 110000, ["DYK_tools"] = 80000, ["DYK_tools/styles.css"] = 80000, ["DYKfile"] = 13000, ["DZA"] = 3000, ["Dab"] = 21000, ["Dagger"] = 24000, ["Dark_red"] = 3300, ["Darkred"] = 3100, ["Dash"] = 2700, ["Dashboard.wikiedu.org_assignment"] = 35000, ["Dashboard.wikiedu.org_bibliography/bibliography"] = 12000, ["Dashboard.wikiedu.org_bibliography/guide"] = 19000, ["Dashboard.wikiedu.org_bibliography/outline"] = 12000, ["Dashboard.wikiedu.org_course_header"] = 8100, ["Dashboard.wikiedu.org_course_header/edit-note"] = 8100, ["Dashboard.wikiedu.org_draft_template/about_this_sandbox"] = 20000, ["Dashboard.wikiedu.org_evaluate_article/guide"] = 24000, ["Dashboard.wikiedu.org_peer_review/guide"] = 27000, ["Dashboard.wikiedu.org_sandbox"] = 130000, ["Dashboard.wikiedu.org_student_editor"] = 118000, ["Dashboard.wikiedu.org_student_program_sandbox"] = 129000, ["Dashboard.wikiedu.org_talk_course_link"] = 120000, ["Dashboard.wikiedu.org_user_talk"] = 2200, ["Date"] = 55000, ["Date-mf"] = 63000, ["Date_table_sorting"] = 45000, ["Dated_maintenance_category"] = 3310000, ["Dated_maintenance_category_(articles)"] = 3260000, ["Dated_maintenance_category_by_type_(articles)"] = 23000, ["Davis_Cup_player"] = 2600, ["Day+1"] = 6900, ["Day-1"] = 8300, ["Db-meta"] = 2100, ["Dbox"] = 3000, ["Dda"] = 3100, ["Dead_YouTube_link"] = 2300, ["Dead_link"] = 366000, ["Deadlink"] = 2000, ["Deadweight_tonnage"] = 2600, ["Death-date_and_age"] = 6000, ["Death_date"] = 15000, ["Death_date_and_age"] = 527000, ["Death_date_and_given_age"] = 4500, ["Death_date_text"] = 6000, ["Death_year"] = 4500, ["Death_year_and_age"] = 29000, ["Death_year_category_header"] = 2000, ["Decade_link"] = 39000, ["Decimals"] = 3600, ["Declination"] = 11000, ["Decline"] = 2700, ["Declined"] = 3600, ["Decrease"] = 51000, ["Define"] = 4300, ["Deg2DMS"] = 3300, ["Deleted_on_Commons"] = 5300, ["Deletion_review_log_header"] = 6700, ["Deletion_review_log_header/Core"] = 6700, ["Delink"] = 1950000, ["Delink_question_hyphen-minus"] = 440000, ["Delrevxfd"] = 4000, ["Democratic_Party_(US)/meta/shading"] = 19000, ["Description_missing"] = 5700, ["Designation/text"] = 18000, ["Designation_list"] = 7600, ["Details"] = 3500, ["DetailsLink"] = 5400, ["Details_link"] = 6400, ["Detect_singular"] = 253000, ["Deutsche_Bahn_station_codes"] = 2200, ["DfE_performance_tables"] = 4500, ["Dictionary_of_National_Biography"] = 9600, ["Diff"] = 33000, ["Diff2"] = 15000, ["Diffusing_occupation_by_nationality_and_century_category_header"] = 4300, ["Diffusing_occupation_by_nationality_and_century_category_header/core"] = 7400, ["Digits"] = 8500, ["Directories_box"] = 3200, ["Disamb"] = 2200, ["Disambig"] = 63000, ["Disambig-Class"] = 12000, ["Disambiguation"] = 234000, ["Disambiguation/cat"] = 233000, ["Disambiguation_page_short_description"] = 379000, ["Discogs_artist"] = 24000, ["Discogs_master"] = 16000, ["Discogs_release"] = 3700, ["Discussion_bottom"] = 14000, ["Discussion_top"] = 15000, ["Disestablishment_category_in_country"] = 10000, ["Disestablishment_category_in_country/core"] = 10000, ["Disestablishment_category_in_country_by_decade"] = 2600, ["Disestablishment_category_in_country_by_decade/core"] = 2600, ["DisestcatCountry"] = 10000, ["DisestcatCountry/core"] = 10000, ["DisestcatUSstate"] = 5200, ["DisestcatUSstate/core"] = 5200, ["Disputed"] = 2100, ["Distinguish"] = 127000, ["Disused_Rail_Start"] = 4000, ["Disused_rail_start"] = 4300, ["Div_col"] = 492000, ["Div_col/styles.css"] = 494000, ["Div_col_end"] = 358000, ["Divbox"] = 482000, ["Divbox/styles.css"] = 482000, ["Dividing_line"] = 4500, ["Dmbox"] = 507000, ["Dmbox/styles.css"] = 507000, ["Do_not_move_to_Commons"] = 23000, ["Doc"] = 3900, ["Documentation"] = 150000, ["Documentation_subpage"] = 101000, ["Dog_opentask"] = 4100, ["Doi"] = 29000, ["Doing"] = 4100, ["Don't_edit_this_line"] = 150000, ["Don't_edit_this_line_always_display"] = 650000, ["Don't_edit_this_line_extinct"] = 650000, ["Don't_edit_this_line_link_target"] = 650000, ["Don't_edit_this_line_link_text"] = 650000, ["Don't_edit_this_line_parent"] = 650000, ["Don't_edit_this_line_rank"] = 650000, ["Don't_edit_this_line_refs"] = 149000, ["Don't_edit_this_line_same_as"] = 650000, ["Done"] = 123000, ["Doppelganger"] = 2900, ["Double+single"] = 4400, ["Double-dagger"] = 28000, ["Dow_tooltip"] = 2500, ["Dr"] = 3400, ["Dr-logno"] = 3400, ["Dr-make"] = 3400, ["Dr-yr"] = 3400, ["Draft_article"] = 10000, ["Draft_article_check"] = 10000, ["Draft_categories"] = 10000, ["Draft_other"] = 115000, ["Draft_topics"] = 30000, ["Drafts_moved_from_mainspace"] = 9400, ["Draw"] = 4700, ["Draw_key"] = 21000, ["Draw_links"] = 16000, ["Drep"] = 3400, ["DriverDB_driver"] = 2800, ["Drugbankcite"] = 4300, ["Drugbox"] = 6300, ["Drugs.com"] = 3300, ["Dts"] = 44000, ["Dubious"] = 8600, ["Duck"] = 3300, ["Dummytab"] = 6700, ["Duration"] = 44000, ["Dutch_municipality"] = 2700, ["Dyktalk"] = 39000, ["Dynamic_list"] = 14000, ["Module:DYK_checklist"] = 24000, ["Module:DYK_checklist/data"] = 24000, ["Module:DYK_nompage_links"] = 101000, ["Module:Data"] = 110000, ["Module:Date"] = 2090000, ["Module:DateI18n"] = 47000, ["Module:Date_table_sorting"] = 48000, ["Module:Date_time"] = 559000, ["Module:DecodeEncode"] = 147000, ["Module:Delink"] = 4340000, ["Module:Designation"] = 105000, ["Module:Designation/list"] = 105000, ["Module:Designation/lookup"] = 25000, ["Module:Detect_singular"] = 2880000, ["Module:Diff"] = 3200, ["Module:Disambiguation"] = 23000, ["Module:Disambiguation/templates"] = 13200000, ["Module:Distinguish"] = 127000, ["Module:Documentation"] = 204000, ["Module:Documentation/config"] = 204000, ["Module:Documentation/styles.css"] = 204000, ["Module:Domain_handler"] = 14000, ["Module:Draft_topics"] = 30000, ["Module:Dts"] = 3400, ["Module:Duration"] = 252000, } ix8xzx9qyjhepkql17j48qa1h22lgb3 Template:Example/doc 10 8127 72767 2026-01-19T17:00:19Z en>W.andrea 0 + {{distinguish|Template:Example text}} 72767 wikitext text/x-wiki <!-- The next two lines set one short description for the template and another for the /doc page. Replacing them with a single {{short description}} would use that for both pages. --> <noinclude>{{Short description|Example of a documentation subpage}}</noinclude> <includeonly>{{Short description|Example of a template}}</includeonly> {{distinguish|Template:Example needed|Template:Example text}} {{hatnote|To give an example of how to use a template, use {{tl|demo}}.}} {{Documentation subpage}} <!-- Categories go at the bottom of this page and interwikis go in Wikidata. --> {{Not a sandbox}} {{Uses TemplateStyles}} If this were a real template, the documentation would go here, along with a few examples on how to use it. Some templates keep this documentation on a separate page; see [[Wikipedia:Template documentation]] for details. {{Example needed}} ==TemplateData== {{TemplateData header}} <templatedata> { "description": "Example template that creates a small box saying it is an example.", "params": {} } </templatedata> <includeonly>{{Sandbox other|| <!-- Categories below this line, please; interwikis at Wikidata --> [[Category:Namespace example pages|Template]] [[Category:Template documentation]] }}</includeonly> r14jpzn32iqz710u2rcglr1odnw0oc3 72768 72767 2026-06-30T21:16:27Z Robertsky 10424 1 versaun husi [[:en:Template:Example/doc]] 72767 wikitext text/x-wiki <!-- The next two lines set one short description for the template and another for the /doc page. Replacing them with a single {{short description}} would use that for both pages. --> <noinclude>{{Short description|Example of a documentation subpage}}</noinclude> <includeonly>{{Short description|Example of a template}}</includeonly> {{distinguish|Template:Example needed|Template:Example text}} {{hatnote|To give an example of how to use a template, use {{tl|demo}}.}} {{Documentation subpage}} <!-- Categories go at the bottom of this page and interwikis go in Wikidata. --> {{Not a sandbox}} {{Uses TemplateStyles}} If this were a real template, the documentation would go here, along with a few examples on how to use it. Some templates keep this documentation on a separate page; see [[Wikipedia:Template documentation]] for details. {{Example needed}} ==TemplateData== {{TemplateData header}} <templatedata> { "description": "Example template that creates a small box saying it is an example.", "params": {} } </templatedata> <includeonly>{{Sandbox other|| <!-- Categories below this line, please; interwikis at Wikidata --> [[Category:Namespace example pages|Template]] [[Category:Template documentation]] }}</includeonly> r14jpzn32iqz710u2rcglr1odnw0oc3 Módulo:ScribuntoUnit 828 8128 72769 2026-05-26T18:46:51Z en>Awesome Aasim 0 for infobox lua 72769 Scribunto text/plain ------------------------------------------------------------------------------- -- Unit tests for Scribunto. ------------------------------------------------------------------------------- require('strict') local DebugHelper = {} local ScribuntoUnit = {} ScribuntoUnit.__meta = {} -- The cfg table contains all localisable strings and configuration, to make it -- easier to port this module to another wiki. local cfg = mw.loadData('Module:ScribuntoUnit/config') ------------------------------------------------------------------------------- -- Concatenates keys and values, ideal for displaying a template or parser function argument table. -- @param keySeparator glue between key and value (defaults to " = ") -- @param separator glue between different key-value pairs (defaults to ", ") -- @example concatWithKeys({a = 1, b = 2, c = 3}, ' => ', ', ') => "a => 1, b => 2, c => 3" -- function DebugHelper.concatWithKeys(table, keySeparator, separator) keySeparator = keySeparator or ' = ' separator = separator or ', ' local concatted = '' local i = 1 local first = true local unnamedArguments = true for k, v in pairs(table) do if first then first = false else concatted = concatted .. separator end if k == i and unnamedArguments then i = i + 1 concatted = concatted .. tostring(v) else unnamedArguments = false concatted = concatted .. tostring(k) .. keySeparator .. tostring(v) end end return concatted end ------------------------------------------------------------------------------- -- Compares two tables recursively (non-table values are handled correctly as well). -- @param ignoreMetatable if false, t1.__eq is used for the comparison -- function DebugHelper.deepCompare(t1, t2, ignoreMetatable) local type1 = type(t1) local type2 = type(t2) if type1 ~= type2 then return false end if type1 ~= 'table' then return t1 == t2 end local metatable = getmetatable(t1) if not ignoreMetatable and metatable and metatable.__eq then return t1 == t2 end for k1, v1 in pairs(t1) do local v2 = t2[k1] if v2 == nil or not DebugHelper.deepCompare(v1, v2) then return false end end for k2, v2 in pairs(t2) do if t1[k2] == nil then return false end end return true end ------------------------------------------------------------------------------- -- Raises an error with stack information -- @param details a table with error details -- - should have a 'text' key which is the error message to display -- - a 'trace' key will be added with the stack data -- - and a 'source' key with file/line number -- - a metatable will be added for error handling -- function DebugHelper.raise(details, level) level = (level or 1) + 1 details.trace = debug.traceback('', level) details.source = string.match(details.trace, '^%s*stack traceback:%s*(%S*: )') -- setmetatable(details, { -- __tostring: function() return details.text end -- }) error(details, level) end ------------------------------------------------------------------------------- -- when used in a test, that test gets ignored, and the skipped count increases by one. -- function ScribuntoUnit:markTestSkipped() DebugHelper.raise({ScribuntoUnit = true, skipped = true}, 3) end ------------------------------------------------------------------------------- -- Unconditionally fail a test -- @param message optional description of the test -- function ScribuntoUnit:fail(message) DebugHelper.raise({ScribuntoUnit = true, text = "Test failed", message = message}, 2) end ------------------------------------------------------------------------------- -- Checks that the input is true -- @param message optional description of the test -- @param level optional number to raise error stack level by -- function ScribuntoUnit:assertTrue(actual, message, level) if not actual then DebugHelper.raise({ScribuntoUnit = true, text = string.format("Failed to assert that %s is true", tostring(actual)), message = message}, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks that the input is false -- @param message optional description of the test -- @param level optional number to raise error stack level by -- function ScribuntoUnit:assertFalse(actual, message, level) if actual then DebugHelper.raise({ScribuntoUnit = true, text = string.format("Failed to assert that %s is false", tostring(actual)), message = message}, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks an input string contains the expected string -- @param message optional description of the test -- @param plain search is made with a plain string instead of a ustring pattern -- @param level optional number to raise error stack level by -- function ScribuntoUnit:assertStringContains(pattern, s, plain, message, level) if type(pattern) ~= 'string' then DebugHelper.raise({ ScribuntoUnit = true, text = mw.ustring.format("Pattern type error (expected string, got %s)", type(pattern)), message = message }, 2 + (level or 0)) end if type(s) ~= 'string' then DebugHelper.raise({ ScribuntoUnit = true, text = mw.ustring.format("String type error (expected string, got %s)", type(s)), message = message }, 2 + (level or 0)) end if not mw.ustring.find(s, pattern, nil, plain) then DebugHelper.raise({ ScribuntoUnit = true, text = mw.ustring.format('Failed to find %s "%s" in string "%s"', plain and "plain string" or "pattern", pattern, s), message = message }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks an input string doesn't contain the expected string -- @param message optional description of the test -- @param plain search is made with a plain string instead of a ustring pattern -- @param level optional number to raise error stack level by -- function ScribuntoUnit:assertNotStringContains(pattern, s, plain, message, level) if type(pattern) ~= 'string' then DebugHelper.raise({ ScribuntoUnit = true, text = mw.ustring.format("Pattern type error (expected string, got %s)", type(pattern)), message = message }, 2 + (level or 0)) end if type(s) ~= 'string' then DebugHelper.raise({ ScribuntoUnit = true, text = mw.ustring.format("String type error (expected string, got %s)", type(s)), message = message }, 2 + (level or 0)) end local i, j = mw.ustring.find(s, pattern, nil, plain) if i then local match = mw.ustring.sub(s, i, j) DebugHelper.raise({ ScribuntoUnit = true, text = mw.ustring.format('Found match "%s" for %s "%s"', match, plain and "plain string" or "pattern", pattern), message = message }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks that an input has the expected value. -- @param message optional description of the test -- @example assertEquals(4, add(2,2), "2+2 should be 4") -- @param level optional number to raise error stack level by -- function ScribuntoUnit:assertEquals(expected, actual, message, level) if type(expected) == 'number' and type(actual) == 'number' then self:assertWithinDelta(expected, actual, 1e-8, message, (level or 0) + 1) elseif expected ~= actual then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s equals expected %s", tostring(actual), tostring(expected)), actual = actual, expected = expected, message = message, }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks that an input does not have the expected value. -- @param message optional description of the test -- @example assertNotEquals(5, add(2,2), "2+2 should not be 5") -- @param level optional number to raise error stack level by -- function ScribuntoUnit:assertNotEquals(expected, actual, message, level) if type(expected) == 'number' and type(actual) == 'number' then self:assertNotWithinDelta(expected, actual, 1e-8, message, (level or 0) + 1) elseif expected == actual then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s does not equal expected %s", tostring(actual), tostring(expected)), actual = actual, expected = expected, message = message, }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Validates that both the expected and actual values are numbers -- @param message optional description of the test -- @param level number to raise error stack level by -- local function validateNumbers(expected, actual, message, level) if type(expected) ~= "number" then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Expected value %s is not a number", tostring(expected)), actual = actual, expected = expected, message = message, }, 3 + level) end if type(actual) ~= "number" then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Actual value %s is not a number", tostring(actual)), actual = actual, expected = expected, message = message, }, 3 + level) end end ------------------------------------------------------------------------------- -- Checks that 'actual' is within 'delta' of 'expected'. -- @param message optional description of the test -- @param level optional number to raise error stack level by -- @example assertWithinDelta(1/3, 3/9, 0.000001, "3/9 should be 1/3") function ScribuntoUnit:assertWithinDelta(expected, actual, delta, message, level) validateNumbers(expected, actual, message, level or 0) local diff = expected - actual if diff < 0 then diff = - diff end -- instead of importing math.abs if diff > delta then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %f is within %f of expected %f", actual, delta, expected), actual = actual, expected = expected, message = message, }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks that 'actual' is not within 'delta' of 'expected'. -- @param message optional description of the test -- @param level optional number to raise error stack level by -- @example assertNotWithinDelta(1/3, 2/3, 0.000001, "1/3 should not be 2/3") function ScribuntoUnit:assertNotWithinDelta(expected, actual, delta, message, level) validateNumbers(expected, actual, message, level or 0) local diff = expected - actual if diff < 0 then diff = - diff end -- instead of importing math.abs if diff <= delta then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %f is not within %f of expected %f", actual, delta, expected), actual = actual, expected = expected, message = message, }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks that a table has the expected value (including sub-tables). -- @param message optional description of the test -- @param level optional number to raise error stack level by -- @example assertDeepEquals({{1,3}, {2,4}}, partition(odd, {1,2,3,4})) function ScribuntoUnit:assertDeepEquals(expected, actual, message, level) if not DebugHelper.deepCompare(expected, actual) then if type(expected) == 'table' then expected = mw.dumpObject(expected) end if type(actual) == 'table' then actual = mw.dumpObject(actual) end DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s equals expected %s", tostring(actual), tostring(expected)), actual = actual, expected = expected, message = message, }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks that a wikitext gives the expected result after processing. -- @param message optional description of the test -- @example assertResultEquals("Hello world", "{{concat|Hello|world}}") function ScribuntoUnit:assertResultEquals(expected, text, message) local frame = self.frame local actual = frame:preprocess(text) if expected ~= actual then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s equals expected %s after preprocessing", text, tostring(expected)), actual = actual, actualRaw = text, expected = expected, message = message, }, 2) end end ------------------------------------------------------------------------------- -- Checks that two wikitexts give the same result after processing. -- @param message optional description of the test -- @example assertSameResult("{{concat|Hello|world}}", "{{deleteLastChar|Hello world!}}") function ScribuntoUnit:assertSameResult(text1, text2, message) local frame = self.frame local processed1 = frame:preprocess(text1) local processed2 = frame:preprocess(text2) if processed1 ~= processed2 then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s equals expected %s after preprocessing", processed1, processed2), actual = processed1, actualRaw = text1, expected = processed2, expectedRaw = text2, message = message, }, 2) end end ------------------------------------------------------------------------------- -- Checks that a parser function gives the expected output. -- @param message optional description of the test -- @example assertParserFunctionEquals("Hello world", "msg:concat", {"Hello", " world"}) function ScribuntoUnit:assertParserFunctionEquals(expected, pfname, args, message) local frame = self.frame local actual = frame:callParserFunction{ name = pfname, args = args} if expected ~= actual then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s with args %s equals expected %s after preprocessing", DebugHelper.concatWithKeys(args), pfname, expected), actual = actual, actualRaw = pfname, expected = expected, message = message, }, 2) end end ------------------------------------------------------------------------------- -- Checks that a template gives the expected output. -- @param message optional description of the test -- @example assertTemplateEquals("Hello world", "concat", {"Hello", " world"}) function ScribuntoUnit:assertTemplateEquals(expected, template, args, message) local frame = self.frame local actual = frame:expandTemplate{ title = template, args = args} if expected ~= actual then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s with args %s equals expected %s after preprocessing", DebugHelper.concatWithKeys(args), template, expected), actual = actual, actualRaw = template, expected = expected, message = message, }, 2) end end ------------------------------------------------------------------------------- -- Checks whether a function throws an error -- @param fn the function to test -- @param expectedMessage optional the expected error message -- @param message optional description of the test -- @param varargs optional arguments to be passed to fn function ScribuntoUnit:assertThrows(fn, expectedMessage, message, ...) local succeeded, actualMessage = pcall(fn, ...) if succeeded then DebugHelper.raise({ ScribuntoUnit = true, text = 'Expected exception but none was thrown', message = message, }, 2) end -- For strings, strip the line number added to the error message actualMessage = type(actualMessage) == 'string' and string.match(actualMessage, 'Module:[^:]*:[0-9]*: (.*)') or actualMessage local messagesMatch = DebugHelper.deepCompare(expectedMessage, actualMessage) if expectedMessage and not messagesMatch then DebugHelper.raise({ ScribuntoUnit = true, expected = expectedMessage, actual = actualMessage, text = string.format('Expected exception with message %s, but got message %s', tostring(expectedMessage), tostring(actualMessage) ), message = message }, 2) end end ------------------------------------------------------------------------------- -- Checks whether a function doesn't throw an error -- @param fn the function to test -- @param message optional description of the test -- @param varargs optional arguments to be passed to fn function ScribuntoUnit:assertDoesNotThrow(fn, message, ...) local succeeded, actualMessage = pcall(fn, ...) if succeeded then return end -- For strings, strip the line number added to the error message actualMessage = type(actualMessage) == 'string' and string.match(actualMessage, 'Module:[^:]*:[0-9]*: (.*)') or actualMessage DebugHelper.raise({ ScribuntoUnit = true, actual = actualMessage, text = string.format('Expected no exception, but got exception with message %s', tostring(actualMessage) ), message = message }, 2) end ------------------------------------------------------------------------------- -- Set up metatable ScribuntoUnit.__meta.__index = ScribuntoUnit function ScribuntoUnit.__meta:__newindex(key, value) if type(key) == "string" and key:find('^test') and type(value) == "function" then -- Store test functions in the order they were defined table.insert(self._tests, {name = key, test = value}) else rawset(self, key, value) end end ------------------------------------------------------------------------------- -- Creates a new test suite. -- function ScribuntoUnit.new() local self = {} self._tests = {} setmetatable(self, ScribuntoUnit.__meta) self.run = function(frame) return ScribuntoUnit.run(self, frame) end return self end ------------------------------------------------------------------------------- -- Resets global counters -- function ScribuntoUnit:init(frame) self.frame = frame or mw.getCurrentFrame() self.successCount = 0 self.failureCount = 0 self.skipCount = 0 self.results = {} end ------------------------------------------------------------------------------- -- Runs a single testcase -- @param name test nume -- @param test function containing assertions -- function ScribuntoUnit:runTest(name, test) local success, details = pcall(test, self) if success then self.successCount = self.successCount + 1 table.insert(self.results, {name = name, success = true}) elseif type(details) ~= 'table' or not details.ScribuntoUnit then -- a real error, not a failed assertion self.failureCount = self.failureCount + 1 table.insert(self.results, {name = name, error = true, message = 'Lua error -- ' .. tostring(details)}) elseif details.skipped then self.skipCount = self.skipCount + 1 table.insert(self.results, {name = name, skipped = true}) else self.failureCount = self.failureCount + 1 local message = details.source or "" if details.message then message = message .. details.message .. "\n" end message = message .. details.text table.insert(self.results, {name = name, error = true, message = message, expected = details.expected, actual = details.actual, testname = details.message}) end end ------------------------------------------------------------------------------- -- Runs all tests and displays the results. -- function ScribuntoUnit:runSuite(frame) self:init(frame) for i, testDetails in ipairs(self._tests) do self:runTest(testDetails.name, testDetails.test) end return { successCount = self.successCount, failureCount = self.failureCount, skipCount = self.skipCount, results = self.results, } end ------------------------------------------------------------------------------- -- #invoke entry point for running the tests. -- Can be called without a frame, in which case it will use mw.log for output -- @param displayMode see displayResults() -- function ScribuntoUnit:run(frame) local testData = self:runSuite(frame) if frame and frame.args then return self:displayResults(testData, frame.args.displayMode or 'table') else return self:displayResults(testData, 'log') end end ------------------------------------------------------------------------------- -- Displays test results -- @param displayMode: 'table', 'log' or 'short' -- function ScribuntoUnit:displayResults(testData, displayMode) if displayMode == 'table' then return self:displayResultsAsTable(testData) elseif displayMode == 'log' then return self:displayResultsAsLog(testData) elseif displayMode == 'short' then return self:displayResultsAsShort(testData) elseif displayMode == 'enum' then return self:displayResultsAsEnum(testData) else error('unknown display mode') end end function ScribuntoUnit:displayResultsAsLog(testData) if testData.failureCount > 0 then mw.log('FAILURES!!!') elseif testData.skipCount > 0 then mw.log('Some tests could not be executed without a frame and have been skipped. Invoke this test suite as a template to run all tests.') end mw.log(string.format('Assertions: success: %d, error: %d, skipped: %d', testData.successCount, testData.failureCount, testData.skipCount)) mw.log('-------------------------------------------------------------------------------') for _, result in ipairs(testData.results) do if result.error then mw.log(string.format('%s: %s', result.name, result.message)) end end end function ScribuntoUnit:displayResultsAsShort(testData) local text = string.format(cfg.shortResultsFormat, testData.successCount, testData.failureCount, testData.skipCount) if testData.failureCount > 0 then text = '<span class="error">' .. text .. '</span>' end return text end function ScribuntoUnit:displayResultsAsEnum(testData) if (testData.failureCount > 0) then return 'fail' elseif (testData.skipCount > 0 and testData.successCount == 0) then return 'skipped' else return 'success' end end function ScribuntoUnit:displayResultsAsTable(testData) local successIcon, failIcon = self.frame:preprocess(cfg.successIndicator), self.frame:preprocess(cfg.failureIndicator) local text = '' if testData.failureCount > 0 then local msg = mw.message.newRawMessage(cfg.failureSummary, testData.failureCount):plain() msg = self.frame:preprocess(msg) if cfg.failureCategory then msg = cfg.failureCategory .. msg end text = text .. failIcon .. ' ' .. msg .. '\n' else text = text .. successIcon .. ' ' .. cfg.successSummary .. '\n' end text = text .. '{| class="wikitable scribunto-test-table"\n' text = text .. '!\n! ' .. cfg.nameString .. '\n! ' .. cfg.expectedString .. '\n! ' .. cfg.actualString .. '\n' for _, result in ipairs(testData.results) do text = text .. '|-\n' if result.error then text = text .. '| ' .. failIcon .. '\n| ' if (result.expected and result.actual) then local name = result.name if result.testname then name = name .. ' / ' .. result.testname end text = text .. mw.text.nowiki(name) .. '\n| ' .. mw.text.nowiki(tostring(result.expected)) .. '\n| ' .. mw.text.nowiki(tostring(result.actual)) .. '\n' else text = text .. mw.text.nowiki(result.name) .. '\n| ' .. ' colspan="2" | ' .. mw.text.nowiki(result.message) .. '\n' end else text = text .. '| ' .. successIcon .. '\n| ' .. mw.text.nowiki(result.name) .. '\n|\n|\n' end end text = text .. '|}\n' return text end return ScribuntoUnit 6ndvyy4oz3v3i8fjoxts3ofs01uwk3h 72770 72769 2026-06-30T21:16:27Z Robertsky 10424 1 versaun husi [[:en:Module:ScribuntoUnit]] 72769 Scribunto text/plain ------------------------------------------------------------------------------- -- Unit tests for Scribunto. ------------------------------------------------------------------------------- require('strict') local DebugHelper = {} local ScribuntoUnit = {} ScribuntoUnit.__meta = {} -- The cfg table contains all localisable strings and configuration, to make it -- easier to port this module to another wiki. local cfg = mw.loadData('Module:ScribuntoUnit/config') ------------------------------------------------------------------------------- -- Concatenates keys and values, ideal for displaying a template or parser function argument table. -- @param keySeparator glue between key and value (defaults to " = ") -- @param separator glue between different key-value pairs (defaults to ", ") -- @example concatWithKeys({a = 1, b = 2, c = 3}, ' => ', ', ') => "a => 1, b => 2, c => 3" -- function DebugHelper.concatWithKeys(table, keySeparator, separator) keySeparator = keySeparator or ' = ' separator = separator or ', ' local concatted = '' local i = 1 local first = true local unnamedArguments = true for k, v in pairs(table) do if first then first = false else concatted = concatted .. separator end if k == i and unnamedArguments then i = i + 1 concatted = concatted .. tostring(v) else unnamedArguments = false concatted = concatted .. tostring(k) .. keySeparator .. tostring(v) end end return concatted end ------------------------------------------------------------------------------- -- Compares two tables recursively (non-table values are handled correctly as well). -- @param ignoreMetatable if false, t1.__eq is used for the comparison -- function DebugHelper.deepCompare(t1, t2, ignoreMetatable) local type1 = type(t1) local type2 = type(t2) if type1 ~= type2 then return false end if type1 ~= 'table' then return t1 == t2 end local metatable = getmetatable(t1) if not ignoreMetatable and metatable and metatable.__eq then return t1 == t2 end for k1, v1 in pairs(t1) do local v2 = t2[k1] if v2 == nil or not DebugHelper.deepCompare(v1, v2) then return false end end for k2, v2 in pairs(t2) do if t1[k2] == nil then return false end end return true end ------------------------------------------------------------------------------- -- Raises an error with stack information -- @param details a table with error details -- - should have a 'text' key which is the error message to display -- - a 'trace' key will be added with the stack data -- - and a 'source' key with file/line number -- - a metatable will be added for error handling -- function DebugHelper.raise(details, level) level = (level or 1) + 1 details.trace = debug.traceback('', level) details.source = string.match(details.trace, '^%s*stack traceback:%s*(%S*: )') -- setmetatable(details, { -- __tostring: function() return details.text end -- }) error(details, level) end ------------------------------------------------------------------------------- -- when used in a test, that test gets ignored, and the skipped count increases by one. -- function ScribuntoUnit:markTestSkipped() DebugHelper.raise({ScribuntoUnit = true, skipped = true}, 3) end ------------------------------------------------------------------------------- -- Unconditionally fail a test -- @param message optional description of the test -- function ScribuntoUnit:fail(message) DebugHelper.raise({ScribuntoUnit = true, text = "Test failed", message = message}, 2) end ------------------------------------------------------------------------------- -- Checks that the input is true -- @param message optional description of the test -- @param level optional number to raise error stack level by -- function ScribuntoUnit:assertTrue(actual, message, level) if not actual then DebugHelper.raise({ScribuntoUnit = true, text = string.format("Failed to assert that %s is true", tostring(actual)), message = message}, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks that the input is false -- @param message optional description of the test -- @param level optional number to raise error stack level by -- function ScribuntoUnit:assertFalse(actual, message, level) if actual then DebugHelper.raise({ScribuntoUnit = true, text = string.format("Failed to assert that %s is false", tostring(actual)), message = message}, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks an input string contains the expected string -- @param message optional description of the test -- @param plain search is made with a plain string instead of a ustring pattern -- @param level optional number to raise error stack level by -- function ScribuntoUnit:assertStringContains(pattern, s, plain, message, level) if type(pattern) ~= 'string' then DebugHelper.raise({ ScribuntoUnit = true, text = mw.ustring.format("Pattern type error (expected string, got %s)", type(pattern)), message = message }, 2 + (level or 0)) end if type(s) ~= 'string' then DebugHelper.raise({ ScribuntoUnit = true, text = mw.ustring.format("String type error (expected string, got %s)", type(s)), message = message }, 2 + (level or 0)) end if not mw.ustring.find(s, pattern, nil, plain) then DebugHelper.raise({ ScribuntoUnit = true, text = mw.ustring.format('Failed to find %s "%s" in string "%s"', plain and "plain string" or "pattern", pattern, s), message = message }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks an input string doesn't contain the expected string -- @param message optional description of the test -- @param plain search is made with a plain string instead of a ustring pattern -- @param level optional number to raise error stack level by -- function ScribuntoUnit:assertNotStringContains(pattern, s, plain, message, level) if type(pattern) ~= 'string' then DebugHelper.raise({ ScribuntoUnit = true, text = mw.ustring.format("Pattern type error (expected string, got %s)", type(pattern)), message = message }, 2 + (level or 0)) end if type(s) ~= 'string' then DebugHelper.raise({ ScribuntoUnit = true, text = mw.ustring.format("String type error (expected string, got %s)", type(s)), message = message }, 2 + (level or 0)) end local i, j = mw.ustring.find(s, pattern, nil, plain) if i then local match = mw.ustring.sub(s, i, j) DebugHelper.raise({ ScribuntoUnit = true, text = mw.ustring.format('Found match "%s" for %s "%s"', match, plain and "plain string" or "pattern", pattern), message = message }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks that an input has the expected value. -- @param message optional description of the test -- @example assertEquals(4, add(2,2), "2+2 should be 4") -- @param level optional number to raise error stack level by -- function ScribuntoUnit:assertEquals(expected, actual, message, level) if type(expected) == 'number' and type(actual) == 'number' then self:assertWithinDelta(expected, actual, 1e-8, message, (level or 0) + 1) elseif expected ~= actual then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s equals expected %s", tostring(actual), tostring(expected)), actual = actual, expected = expected, message = message, }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks that an input does not have the expected value. -- @param message optional description of the test -- @example assertNotEquals(5, add(2,2), "2+2 should not be 5") -- @param level optional number to raise error stack level by -- function ScribuntoUnit:assertNotEquals(expected, actual, message, level) if type(expected) == 'number' and type(actual) == 'number' then self:assertNotWithinDelta(expected, actual, 1e-8, message, (level or 0) + 1) elseif expected == actual then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s does not equal expected %s", tostring(actual), tostring(expected)), actual = actual, expected = expected, message = message, }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Validates that both the expected and actual values are numbers -- @param message optional description of the test -- @param level number to raise error stack level by -- local function validateNumbers(expected, actual, message, level) if type(expected) ~= "number" then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Expected value %s is not a number", tostring(expected)), actual = actual, expected = expected, message = message, }, 3 + level) end if type(actual) ~= "number" then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Actual value %s is not a number", tostring(actual)), actual = actual, expected = expected, message = message, }, 3 + level) end end ------------------------------------------------------------------------------- -- Checks that 'actual' is within 'delta' of 'expected'. -- @param message optional description of the test -- @param level optional number to raise error stack level by -- @example assertWithinDelta(1/3, 3/9, 0.000001, "3/9 should be 1/3") function ScribuntoUnit:assertWithinDelta(expected, actual, delta, message, level) validateNumbers(expected, actual, message, level or 0) local diff = expected - actual if diff < 0 then diff = - diff end -- instead of importing math.abs if diff > delta then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %f is within %f of expected %f", actual, delta, expected), actual = actual, expected = expected, message = message, }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks that 'actual' is not within 'delta' of 'expected'. -- @param message optional description of the test -- @param level optional number to raise error stack level by -- @example assertNotWithinDelta(1/3, 2/3, 0.000001, "1/3 should not be 2/3") function ScribuntoUnit:assertNotWithinDelta(expected, actual, delta, message, level) validateNumbers(expected, actual, message, level or 0) local diff = expected - actual if diff < 0 then diff = - diff end -- instead of importing math.abs if diff <= delta then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %f is not within %f of expected %f", actual, delta, expected), actual = actual, expected = expected, message = message, }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks that a table has the expected value (including sub-tables). -- @param message optional description of the test -- @param level optional number to raise error stack level by -- @example assertDeepEquals({{1,3}, {2,4}}, partition(odd, {1,2,3,4})) function ScribuntoUnit:assertDeepEquals(expected, actual, message, level) if not DebugHelper.deepCompare(expected, actual) then if type(expected) == 'table' then expected = mw.dumpObject(expected) end if type(actual) == 'table' then actual = mw.dumpObject(actual) end DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s equals expected %s", tostring(actual), tostring(expected)), actual = actual, expected = expected, message = message, }, 2 + (level or 0)) end end ------------------------------------------------------------------------------- -- Checks that a wikitext gives the expected result after processing. -- @param message optional description of the test -- @example assertResultEquals("Hello world", "{{concat|Hello|world}}") function ScribuntoUnit:assertResultEquals(expected, text, message) local frame = self.frame local actual = frame:preprocess(text) if expected ~= actual then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s equals expected %s after preprocessing", text, tostring(expected)), actual = actual, actualRaw = text, expected = expected, message = message, }, 2) end end ------------------------------------------------------------------------------- -- Checks that two wikitexts give the same result after processing. -- @param message optional description of the test -- @example assertSameResult("{{concat|Hello|world}}", "{{deleteLastChar|Hello world!}}") function ScribuntoUnit:assertSameResult(text1, text2, message) local frame = self.frame local processed1 = frame:preprocess(text1) local processed2 = frame:preprocess(text2) if processed1 ~= processed2 then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s equals expected %s after preprocessing", processed1, processed2), actual = processed1, actualRaw = text1, expected = processed2, expectedRaw = text2, message = message, }, 2) end end ------------------------------------------------------------------------------- -- Checks that a parser function gives the expected output. -- @param message optional description of the test -- @example assertParserFunctionEquals("Hello world", "msg:concat", {"Hello", " world"}) function ScribuntoUnit:assertParserFunctionEquals(expected, pfname, args, message) local frame = self.frame local actual = frame:callParserFunction{ name = pfname, args = args} if expected ~= actual then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s with args %s equals expected %s after preprocessing", DebugHelper.concatWithKeys(args), pfname, expected), actual = actual, actualRaw = pfname, expected = expected, message = message, }, 2) end end ------------------------------------------------------------------------------- -- Checks that a template gives the expected output. -- @param message optional description of the test -- @example assertTemplateEquals("Hello world", "concat", {"Hello", " world"}) function ScribuntoUnit:assertTemplateEquals(expected, template, args, message) local frame = self.frame local actual = frame:expandTemplate{ title = template, args = args} if expected ~= actual then DebugHelper.raise({ ScribuntoUnit = true, text = string.format("Failed to assert that %s with args %s equals expected %s after preprocessing", DebugHelper.concatWithKeys(args), template, expected), actual = actual, actualRaw = template, expected = expected, message = message, }, 2) end end ------------------------------------------------------------------------------- -- Checks whether a function throws an error -- @param fn the function to test -- @param expectedMessage optional the expected error message -- @param message optional description of the test -- @param varargs optional arguments to be passed to fn function ScribuntoUnit:assertThrows(fn, expectedMessage, message, ...) local succeeded, actualMessage = pcall(fn, ...) if succeeded then DebugHelper.raise({ ScribuntoUnit = true, text = 'Expected exception but none was thrown', message = message, }, 2) end -- For strings, strip the line number added to the error message actualMessage = type(actualMessage) == 'string' and string.match(actualMessage, 'Module:[^:]*:[0-9]*: (.*)') or actualMessage local messagesMatch = DebugHelper.deepCompare(expectedMessage, actualMessage) if expectedMessage and not messagesMatch then DebugHelper.raise({ ScribuntoUnit = true, expected = expectedMessage, actual = actualMessage, text = string.format('Expected exception with message %s, but got message %s', tostring(expectedMessage), tostring(actualMessage) ), message = message }, 2) end end ------------------------------------------------------------------------------- -- Checks whether a function doesn't throw an error -- @param fn the function to test -- @param message optional description of the test -- @param varargs optional arguments to be passed to fn function ScribuntoUnit:assertDoesNotThrow(fn, message, ...) local succeeded, actualMessage = pcall(fn, ...) if succeeded then return end -- For strings, strip the line number added to the error message actualMessage = type(actualMessage) == 'string' and string.match(actualMessage, 'Module:[^:]*:[0-9]*: (.*)') or actualMessage DebugHelper.raise({ ScribuntoUnit = true, actual = actualMessage, text = string.format('Expected no exception, but got exception with message %s', tostring(actualMessage) ), message = message }, 2) end ------------------------------------------------------------------------------- -- Set up metatable ScribuntoUnit.__meta.__index = ScribuntoUnit function ScribuntoUnit.__meta:__newindex(key, value) if type(key) == "string" and key:find('^test') and type(value) == "function" then -- Store test functions in the order they were defined table.insert(self._tests, {name = key, test = value}) else rawset(self, key, value) end end ------------------------------------------------------------------------------- -- Creates a new test suite. -- function ScribuntoUnit.new() local self = {} self._tests = {} setmetatable(self, ScribuntoUnit.__meta) self.run = function(frame) return ScribuntoUnit.run(self, frame) end return self end ------------------------------------------------------------------------------- -- Resets global counters -- function ScribuntoUnit:init(frame) self.frame = frame or mw.getCurrentFrame() self.successCount = 0 self.failureCount = 0 self.skipCount = 0 self.results = {} end ------------------------------------------------------------------------------- -- Runs a single testcase -- @param name test nume -- @param test function containing assertions -- function ScribuntoUnit:runTest(name, test) local success, details = pcall(test, self) if success then self.successCount = self.successCount + 1 table.insert(self.results, {name = name, success = true}) elseif type(details) ~= 'table' or not details.ScribuntoUnit then -- a real error, not a failed assertion self.failureCount = self.failureCount + 1 table.insert(self.results, {name = name, error = true, message = 'Lua error -- ' .. tostring(details)}) elseif details.skipped then self.skipCount = self.skipCount + 1 table.insert(self.results, {name = name, skipped = true}) else self.failureCount = self.failureCount + 1 local message = details.source or "" if details.message then message = message .. details.message .. "\n" end message = message .. details.text table.insert(self.results, {name = name, error = true, message = message, expected = details.expected, actual = details.actual, testname = details.message}) end end ------------------------------------------------------------------------------- -- Runs all tests and displays the results. -- function ScribuntoUnit:runSuite(frame) self:init(frame) for i, testDetails in ipairs(self._tests) do self:runTest(testDetails.name, testDetails.test) end return { successCount = self.successCount, failureCount = self.failureCount, skipCount = self.skipCount, results = self.results, } end ------------------------------------------------------------------------------- -- #invoke entry point for running the tests. -- Can be called without a frame, in which case it will use mw.log for output -- @param displayMode see displayResults() -- function ScribuntoUnit:run(frame) local testData = self:runSuite(frame) if frame and frame.args then return self:displayResults(testData, frame.args.displayMode or 'table') else return self:displayResults(testData, 'log') end end ------------------------------------------------------------------------------- -- Displays test results -- @param displayMode: 'table', 'log' or 'short' -- function ScribuntoUnit:displayResults(testData, displayMode) if displayMode == 'table' then return self:displayResultsAsTable(testData) elseif displayMode == 'log' then return self:displayResultsAsLog(testData) elseif displayMode == 'short' then return self:displayResultsAsShort(testData) elseif displayMode == 'enum' then return self:displayResultsAsEnum(testData) else error('unknown display mode') end end function ScribuntoUnit:displayResultsAsLog(testData) if testData.failureCount > 0 then mw.log('FAILURES!!!') elseif testData.skipCount > 0 then mw.log('Some tests could not be executed without a frame and have been skipped. Invoke this test suite as a template to run all tests.') end mw.log(string.format('Assertions: success: %d, error: %d, skipped: %d', testData.successCount, testData.failureCount, testData.skipCount)) mw.log('-------------------------------------------------------------------------------') for _, result in ipairs(testData.results) do if result.error then mw.log(string.format('%s: %s', result.name, result.message)) end end end function ScribuntoUnit:displayResultsAsShort(testData) local text = string.format(cfg.shortResultsFormat, testData.successCount, testData.failureCount, testData.skipCount) if testData.failureCount > 0 then text = '<span class="error">' .. text .. '</span>' end return text end function ScribuntoUnit:displayResultsAsEnum(testData) if (testData.failureCount > 0) then return 'fail' elseif (testData.skipCount > 0 and testData.successCount == 0) then return 'skipped' else return 'success' end end function ScribuntoUnit:displayResultsAsTable(testData) local successIcon, failIcon = self.frame:preprocess(cfg.successIndicator), self.frame:preprocess(cfg.failureIndicator) local text = '' if testData.failureCount > 0 then local msg = mw.message.newRawMessage(cfg.failureSummary, testData.failureCount):plain() msg = self.frame:preprocess(msg) if cfg.failureCategory then msg = cfg.failureCategory .. msg end text = text .. failIcon .. ' ' .. msg .. '\n' else text = text .. successIcon .. ' ' .. cfg.successSummary .. '\n' end text = text .. '{| class="wikitable scribunto-test-table"\n' text = text .. '!\n! ' .. cfg.nameString .. '\n! ' .. cfg.expectedString .. '\n! ' .. cfg.actualString .. '\n' for _, result in ipairs(testData.results) do text = text .. '|-\n' if result.error then text = text .. '| ' .. failIcon .. '\n| ' if (result.expected and result.actual) then local name = result.name if result.testname then name = name .. ' / ' .. result.testname end text = text .. mw.text.nowiki(name) .. '\n| ' .. mw.text.nowiki(tostring(result.expected)) .. '\n| ' .. mw.text.nowiki(tostring(result.actual)) .. '\n' else text = text .. mw.text.nowiki(result.name) .. '\n| ' .. ' colspan="2" | ' .. mw.text.nowiki(result.message) .. '\n' end else text = text .. '| ' .. successIcon .. '\n| ' .. mw.text.nowiki(result.name) .. '\n|\n|\n' end end text = text .. '|}\n' return text end return ScribuntoUnit 6ndvyy4oz3v3i8fjoxts3ofs01uwk3h Módulo:ScribuntoUnit/config 828 8129 72771 2021-12-31T17:39:10Z en>Pppery 0 Rename cat per CfD 72771 Scribunto text/plain -- The cfg table, created by this module, contains all localisable strings and -- configuration, to make it easier to port this module to another wiki. local cfg = {} -- Do not edit this line. -- The successIndicator and failureIndicator are in the first column of the -- wikitable produced as output and indicate whether the test passed. These two -- strings are preprocessed by frame.preprocess. -- successIndicator: if the test passes -- failureIndicator: if the test fails cfg.successIndicator = "{{tick}}" cfg.failureIndicator = "{{cross}}" -- The names of the columns Name, Expected and Actual (the other three columns, -- in this order) cfg.nameString = "Name" cfg.expectedString = "Expected" cfg.actualString = "Actual" -- The string at the top used to indicate all tests passed. cfg.successSummary = "All tests passed." -- The string at the top used to indicate one or more tests failed. $1 is -- replaced by the number of tests that failed. This string is preprocessed by -- frame.preprocess. cfg.failureSummary = "'''$1 {{PLURAL:$1|test|tests}} failed'''." -- Format string for a short display of the tests in displayResultsAsShort. -- This format string is passed directly to string.format. cfg.shortResultsFormat = "success: %d, error: %d, skipped: %d" -- Category added to pages that fail one or more tests. Set to nil to disable -- categorisation of pages that fail one or more tests. cfg.failureCategory = "[[Category:Failed Lua testcases using Module:ScribuntoUnit]]" -- Finally, return the configuration table. return cfg -- Do not edit this line. oocd1sl459mwsdylkxl8dxfudn74htq 72772 72771 2026-06-30T21:16:27Z Robertsky 10424 1 versaun husi [[:en:Module:ScribuntoUnit/config]] 72771 Scribunto text/plain -- The cfg table, created by this module, contains all localisable strings and -- configuration, to make it easier to port this module to another wiki. local cfg = {} -- Do not edit this line. -- The successIndicator and failureIndicator are in the first column of the -- wikitable produced as output and indicate whether the test passed. These two -- strings are preprocessed by frame.preprocess. -- successIndicator: if the test passes -- failureIndicator: if the test fails cfg.successIndicator = "{{tick}}" cfg.failureIndicator = "{{cross}}" -- The names of the columns Name, Expected and Actual (the other three columns, -- in this order) cfg.nameString = "Name" cfg.expectedString = "Expected" cfg.actualString = "Actual" -- The string at the top used to indicate all tests passed. cfg.successSummary = "All tests passed." -- The string at the top used to indicate one or more tests failed. $1 is -- replaced by the number of tests that failed. This string is preprocessed by -- frame.preprocess. cfg.failureSummary = "'''$1 {{PLURAL:$1|test|tests}} failed'''." -- Format string for a short display of the tests in displayResultsAsShort. -- This format string is passed directly to string.format. cfg.shortResultsFormat = "success: %d, error: %d, skipped: %d" -- Category added to pages that fail one or more tests. Set to nil to disable -- categorisation of pages that fail one or more tests. cfg.failureCategory = "[[Category:Failed Lua testcases using Module:ScribuntoUnit]]" -- Finally, return the configuration table. return cfg -- Do not edit this line. oocd1sl459mwsdylkxl8dxfudn74htq Template:Documentation/testcases/test3 10 8130 72773 2024-09-05T16:11:49Z en>WOSlinker 0 add testcases notice 72773 wikitext text/x-wiki <noinclude>{{testcases notice}}</noinclude> test3 k516jyv9g7evj5112on5yfxzhaed9nm 72774 72773 2026-06-30T21:16:27Z Robertsky 10424 1 versaun husi [[:en:Template:Documentation/testcases/test3]] 72773 wikitext text/x-wiki <noinclude>{{testcases notice}}</noinclude> test3 k516jyv9g7evj5112on5yfxzhaed9nm Módulo:Documentation/testcases 828 8131 72775 2026-05-28T18:07:17Z en>Awesome Aasim 0 fix text 72775 Scribunto text/plain -- Test cases page for [[Module:Documentation]]. See talk page to run tests. local doc = require('Module:Documentation') local docConfig = require("Module:Documentation/config") local ScribuntoUnit = require('Module:ScribuntoUnit') local suite = ScribuntoUnit.new() -------------------------------------------------------------------------------- -- Sandbox run -------------------------------------------------------------------------------- function suite.runSandbox(...) doc = require('Module:Documentation/sandbox') docConfig = require("Module:Documentation/config/sandbox") return suite.run(...) end -------------------------------------------------------------------------------------------- -- Test case helper functions -------------------------------------------------------------------------------------------- local function getEnv(page) -- Gets an env table using the specified page. return doc.getEnvironment{page = page} end -------------------------------------------------------------------------------------------- -- Test helper functions -------------------------------------------------------------------------------------------- function suite:testMessage() self:assertEquals('sandbox', doc.message('sandbox-subpage')) self:assertEquals('Subpages of this foobar', doc.message('subpages-link-display', {'foobar'})) self:assertEquals(true, doc.message('display-strange-usage-category', nil, 'boolean')) end function suite:testMakeToolbar() self:assertEquals(nil, doc.makeToolbar()) self:assertEquals('<span class="documentation-toolbar">(Foo)</span>', doc.makeToolbar('Foo')) self:assertEquals('<span class="documentation-toolbar">(Foo &#124; Bar)</span>', doc.makeToolbar('Foo', 'Bar')) end function suite:testMakeWikilink() self:assertEquals('[[Foo]]', doc.makeWikilink('Foo')) self:assertEquals('[[Foo|Bar]]', doc.makeWikilink('Foo', 'Bar')) end function suite:testMakeCategoryLink() self:assertEquals('[[Category:Foo]]', doc.makeCategoryLink('Foo')) self:assertEquals('[[Category:Foo|Bar]]', doc.makeCategoryLink('Foo', 'Bar')) end function suite:testMakeUrlLink() self:assertEquals('[Foo Bar]', doc.makeUrlLink('Foo', 'Bar')) end -------------------------------------------------------------------------------------------- -- Test env table -------------------------------------------------------------------------------------------- function suite:assertEnvFieldEquals(expected, page, field) local env = getEnv(page) self:assertEquals(expected, env[field], nil, 1) end function suite:assertEnvTitleEquals(expected, page, titleField) local env = getEnv(page) local title = env[titleField] self:assertEquals(expected, title.prefixedText, nil, 1) end function suite:testEnvTitle() self:assertEnvTitleEquals('Wikipedia:Sandbox', 'Wikipedia:Sandbox', 'title') self:assertEnvTitleEquals('Template:Example/sandbox', 'Template:Example/sandbox', 'title') end function suite:testEnvBadTitle() local env = doc.getEnvironment{page = 'Bad[]Title'} local title = env.title self:assertEquals(nil, title) end function suite:testEnvTemplateTitle() self:assertEnvTitleEquals('Template:Example', 'Template:Example', 'templateTitle') self:assertEnvTitleEquals('Template:Example', 'Template talk:Example', 'templateTitle') self:assertEnvTitleEquals('Template:Example', 'Template:Example/sandbox', 'templateTitle') self:assertEnvTitleEquals('Template:Example', 'Template talk:Example/sandbox', 'templateTitle') self:assertEnvTitleEquals('Template:Example', 'Template:Example/testcases', 'templateTitle') self:assertEnvTitleEquals('Template:Example/foo', 'Template:Example/foo', 'templateTitle') self:assertEnvTitleEquals('File:Example', 'File talk:Example', 'templateTitle') self:assertEnvTitleEquals('File:Example', 'File talk:Example/sandbox', 'templateTitle') end function suite:testEnvDocTitle() self:assertEnvTitleEquals('Template:Example/doc', 'Template:Example', 'docTitle') self:assertEnvTitleEquals('Template:Example/doc', 'Template talk:Example', 'docTitle') self:assertEnvTitleEquals('Template:Example/doc', 'Template:Example/sandbox', 'docTitle') self:assertEnvTitleEquals('Talk:Example/doc', 'Example', 'docTitle') self:assertEnvTitleEquals('File talk:Example.png/doc', 'File:Example.png', 'docTitle') self:assertEnvTitleEquals('File talk:Example.png/doc', 'File talk:Example.png/sandbox', 'docTitle') end function suite:testEnvSandboxTitle() self:assertEnvTitleEquals('Template:Example/sandbox', 'Template:Example', 'sandboxTitle') self:assertEnvTitleEquals('Template:Example/sandbox', 'Template talk:Example', 'sandboxTitle') self:assertEnvTitleEquals('Template:Example/sandbox', 'Template:Example/sandbox', 'sandboxTitle') self:assertEnvTitleEquals('Talk:Example/sandbox', 'Example', 'sandboxTitle') self:assertEnvTitleEquals('File talk:Example.png/sandbox', 'File:Example.png', 'sandboxTitle') end function suite:testEnvTestcasesTitle() self:assertEnvTitleEquals('Template:Example/testcases', 'Template:Example', 'testcasesTitle') self:assertEnvTitleEquals('Template:Example/testcases', 'Template talk:Example', 'testcasesTitle') self:assertEnvTitleEquals('Template:Example/testcases', 'Template:Example/testcases', 'testcasesTitle') self:assertEnvTitleEquals('Talk:Example/testcases', 'Example', 'testcasesTitle') self:assertEnvTitleEquals('File talk:Example.png/testcases', 'File:Example.png', 'testcasesTitle') end function suite:testEnvProtectionLevels() local pipeEnv = getEnv('Template:?') self:assertEquals('autoconfirmed', pipeEnv.protectionLevels.edit[1]) local sandboxEnv = getEnv('Wikipedia:Sandbox') local sandboxEditLevels = sandboxEnv.protectionLevels.edit if sandboxEditLevels then -- sandboxEditLevels may also be nil if the page is unprotected self:assertEquals(nil, sandboxEditLevels[1]) else self:assertEquals(nil, sandboxEditLevels) end end function suite:testEnvSubjectSpace() self:assertEnvFieldEquals(10, 'Template:Sandbox', 'subjectSpace') self:assertEnvFieldEquals(10, 'Template talk:Sandbox', 'subjectSpace') self:assertEnvFieldEquals(0, 'Foo', 'subjectSpace') self:assertEnvFieldEquals(0, 'Talk:Foo', 'subjectSpace') end function suite:testEnvDocSpace() self:assertEnvFieldEquals(10, 'Template:Sandbox', 'docSpace') self:assertEnvFieldEquals(828, 'Module:Sandbox', 'docSpace') self:assertEnvFieldEquals(1, 'Foo', 'docSpace') self:assertEnvFieldEquals(7, 'File:Example.png', 'docSpace') self:assertEnvFieldEquals(9, 'MediaWiki:Watchlist-details', 'docSpace') self:assertEnvFieldEquals(15, 'Category:Wikipedians', 'docSpace') end function suite:testEnvDocpageBase() self:assertEnvFieldEquals('Template:Example', 'Template:Example', 'docpageBase') self:assertEnvFieldEquals('Template:Example', 'Template:Example/sandbox', 'docpageBase') self:assertEnvFieldEquals('Template:Example', 'Template talk:Example', 'docpageBase') self:assertEnvFieldEquals('File talk:Example.png', 'File:Example.png', 'docpageBase') self:assertEnvFieldEquals('File talk:Example.png', 'File talk:Example.png', 'docpageBase') self:assertEnvFieldEquals('File talk:Example.png', 'File talk:Example.png/sandbox', 'docpageBase') end function suite:testEnvCompareUrl() -- We use "Template:Edit protected" rather than "Template:Example" here as it has a space in the title. local expected = 'https://en.wikipedia.org/w/index.php?title=Special%3AComparePages&page1=Template%3AEdit+protected&page2=Template%3AEdit+protected%2Fsandbox' self:assertEnvFieldEquals(expected, 'Template:Edit protected', 'compareUrl') self:assertEnvFieldEquals(expected, 'Template:Edit protected/sandbox', 'compareUrl') self:assertEnvFieldEquals(nil, 'Template:Non-existent template adsfasdg', 'compareUrl') self:assertEnvFieldEquals(nil, 'Template:Fact', 'compareUrl') -- Exists but doesn't have a sandbox. end -------------------------------------------------------------------------------------------- -- Test sandbox notice -------------------------------------------------------------------------------------------- function suite.getSandboxNoticeTestData(page) local env = getEnv(page) local templatePage = page:match('^(.*)/sandbox$') local image = '[[File:Edit In Sandbox Icon - Color.svg|50px|alt=|link=]]' local templateBlurb = 'This is the [[Wikipedia:Template test cases|template sandbox]] page for [[' .. templatePage .. ']]' local moduleBlurb = 'This is the [[Wikipedia:Template test cases|module sandbox]] page for [[' .. templatePage .. ']]' local otherBlurb = 'This is the sandbox page for [[' .. templatePage .. ']]' local diff = '[https://en.wikipedia.org/w/index.php?title=Special%3AComparePages&page1=' .. mw.uri.encode(templatePage) .. '&page2=' .. mw.uri.encode(page) .. ' diff]' local testcasesBlurb = 'See also the companion subpage for [[' .. templatePage .. '/testcases|test cases]].' local category = '[[Category:Template sandboxes]]' local clear = '<div class="documentation-clear"></div>' return env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category, clear end function suite:testSandboxNoticeNotSandbox() local env = getEnv('Template:Example') local notice = doc.sandboxNotice({}, env) self:assertEquals(nil, notice) end function suite:testSandboxNoticeStaticVals() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category, clear = suite.getSandboxNoticeTestData('Template:Example/sandbox') local notice = doc.sandboxNotice({}, env) -- Escape metacharacters (mainly '-') clear = clear:gsub( '%p', '%%%0' ) self:assertStringContains('^' .. clear, notice, false) self:assertStringContains(image, notice, true) self:assertStringContains(category, notice, true) end function suite:testSandboxNoticeTemplateBlurb() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('Template:Example/sandbox') local notice = doc.sandboxNotice({}, env) self:assertStringContains(templateBlurb, notice, true) end function suite:testSandboxNoticeModuleBlurb() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('Module:Math/sandbox') local notice = doc.sandboxNotice({}, env) self:assertStringContains(moduleBlurb, notice, true) end function suite:testSandboxNoticeOtherBlurb() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('User:Mr. Stradivarius/sandbox') local notice = doc.sandboxNotice({}, env) self:assertStringContains(otherBlurb, notice, true) end function suite:testSandboxNoticeBlurbDiff() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('Template:Example/sandbox') local notice = doc.sandboxNotice({}, env) if mw.title.getCurrentTitle().isTalk then -- This test doesn't work in the debug console due to the use of frame:preprocess({{REVISIONID}}). -- The frame test doesn't seem to be working for now, so adding a namespace hack. self:assertStringContains(diff, notice, true) end end function suite:testSandboxNoticeBlurbDiffNoBasePage() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('Module:User:Mr. Stradivarius/sandbox') local notice = doc.sandboxNotice({}, env) if mw.title.getCurrentTitle().isTalk then -- This test doesn't work in the debug console due to the use of frame:preprocess({{REVISIONID}}). -- The frame test doesn't seem to be working for now, so adding a namespace hack. self:assertNotStringContains(diff, notice, true) end end function suite:testSandboxNoticeTestcases() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('Template:Edit protected/sandbox') local notice = doc.sandboxNotice({}, env) self:assertStringContains(testcasesBlurb, notice, true) end function suite:testSandboxNoticeNoTestcases() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('Template:Example/sandbox') local notice = doc.sandboxNotice({}, env) self:assertNotStringContains(testcasesBlurb, notice, true) end -------------------------------------------------------------------------------------------- -- Test protection template -- -- There's not much we can do with this until {{pp-meta}} gets rewritten in Lua. At the -- moment the protection detection only works for the current page, and the testcases pages -- will be unprotected. -------------------------------------------------------------------------------------------- function suite:testProtectionTemplateUnprotectedTemplate() local env = getEnv('Template:Example') self:assertEquals(nil, doc.protectionTemplate(env)) end function suite:testProtectionTemplateProtectedTemplate() local env = getEnv('Template:Navbox') -- Test whether there is some content. We don't care what the content is, as the protection level -- detected will be for the current page, not the template. self:assertTrue(doc.protectionTemplate(env)) end function suite:testProtectionTemplateUnprotectedModule() local env = getEnv('Module:Example') self:assertEquals(nil, doc.protectionTemplate(env)) end function suite:testProtectionTemplateProtectedModule() local env = getEnv('Module:Yesno') -- Test whether there is some content. We don't care what the content is, as the protection level -- detected will be for the current page, not the template. self:assertTrue(doc.protectionTemplate(env)) end -------------------------------------------------------------------------------------------- -- Test _startBox -------------------------------------------------------------------------------------------- function suite:testStartBoxContentArg() local pattern = '<div class="documentation%-startbox">\n<span class="documentation%-heading" id="documentation%-heading">.-</span></div>' local startBox = doc._startBox({content = 'some documentation'}, getEnv('Template:Example')) self:assertStringContains(pattern, startBox) end function suite:testStartBoxHtml() self:assertStringContains( '<div class="documentation%-startbox">\n<span class="documentation%-heading" id="documentation%-heading">.-</span><span class="mw%-editsection%-like plainlinks">.-</span></div>', doc._startBox({}, getEnv('Template:Example')) ) end -------------------------------------------------------------------------------------------- -- Test makeStartBoxLinksData -------------------------------------------------------------------------------------------- function suite:testMakeStartBoxLinksData() local env = getEnv('Template:Example') local data = doc.makeStartBoxLinksData({}, env) self:assertEquals('Template:Example', data.title.prefixedText) self:assertEquals('Template:Example/doc', data.docTitle.prefixedText) self:assertEquals('view', data.viewLinkDisplay) self:assertEquals('edit', data.editLinkDisplay) self:assertEquals('history', data.historyLinkDisplay) self:assertEquals('purge', data.purgeLinkDisplay) self:assertEquals('create', data.createLinkDisplay) self:assertEquals('override', data.overrideLinkDisplay) end function suite:testMakeStartBoxLinksDataTemplatePreload() local env = getEnv('Template:Example') local data = doc.makeStartBoxLinksData({}, env) self:assertEquals('Template:Documentation/preload', data.preload) end function suite:testMakeStartBoxLinksDataArgsPreload() local env = getEnv('Template:Example') local data = doc.makeStartBoxLinksData({preload = 'My custom preload'}, env) self:assertEquals('My custom preload', data.preload) end -------------------------------------------------------------------------------------------- -- Test renderStartBoxLinks -------------------------------------------------------------------------------------------- function suite.makeExampleStartBoxLinksData(exists) -- Makes a data table to be used with testRenderStartBoxLinksExists and testRenderStartBoxLinksDoesntExist. local data = {} if exists then data.title = mw.title.new('Template:Example') data.docTitle = mw.title.new('Template:Example/doc') else data.title = mw.title.new('Template:NonExistentTemplate') data.docTitle = mw.title.new('Template:NonExistentTemplate/doc') end data.viewLinkDisplay = 'view' data.editLinkDisplay = 'edit' data.historyLinkDisplay = 'history' data.purgeLinkDisplay = 'purge' data.createLinkDisplay = 'create' data.overrideLinkDisplay = 'override' data.preload = 'Template:MyPreload' return data end function suite:testRenderStartBoxLinksExists() local data = suite.makeExampleStartBoxLinksData(true) local expected = '&#91;[[Template:Example/doc|view]]&#93; &#91;[[Special:EditPage/Template:Example/doc|edit]]&#93; &#91;[[Special:PageHistory/Template:Example/doc|history]]&#93; &#91;[[Special:Purge/Template:Example|purge]]&#93;' self:assertEquals(expected, doc.renderStartBoxLinks(data)) end function suite:testRenderStartBoxLinksDoesntExist() local data = suite.makeExampleStartBoxLinksData(false) local expected = '&#91;[https://en.wikipedia.org/w/index.php?title=Template:NonExistentTemplate/doc&action=edit&preload=Template%3AMyPreload create]&#93; &#91;[[Special:Purge/Template:NonExistentTemplate|purge]]&#93;' self:assertEquals(expected, doc.renderStartBoxLinks(data)) end -------------------------------------------------------------------------------------------- -- Test makeStartBoxData -------------------------------------------------------------------------------------------- function suite:testStartBoxDataBlankHeading() local data = doc.makeStartBoxData({heading = ''}, {}) self:assertEquals(nil, data) end function suite:testStartBoxDataHeadingTemplate() local env = getEnv('Template:Example') local data = doc.makeStartBoxData({}, env) local expected = '[[File:Test Template Info-Icon - Version (2).svg|50px|link=|alt=]] Template documentation' self:assertEquals(expected, data.heading) end function suite:testStartBoxDataHeadingModule() local env = getEnv('Module:Example') local data = doc.makeStartBoxData({}, env) local expected = '[[File:Test Template Info-Icon - Version (2).svg|50px|link=|alt=]] Module documentation' self:assertEquals(expected, data.heading) end function suite:testStartBoxDataHeadingFile() local env = getEnv('File:Example.png') local data = doc.makeStartBoxData({}, env) local expected = 'Summary' self:assertEquals(expected, data.heading) end function suite:testStartBoxDataHeadingOther() local env = getEnv('User:Example') local data = doc.makeStartBoxData({}, env) local expected = 'Documentation' self:assertEquals(expected, data.heading) end function suite:testStartBoxDataHeadingStyle() local data = doc.makeStartBoxData({['heading-style'] = 'foo:bar'}, {}) self:assertEquals('foo:bar', data.headingStyleText) end function suite:testStartBoxDataHeadingStyleTemplate() local env = getEnv('Template:Example') local data = doc.makeStartBoxData({}, env) self:assertEquals(nil, data.headingStyleText) end function suite:testStartBoxDataHeadingStyleOther() local env = getEnv('User:Example') local data = doc.makeStartBoxData({}, env) self:assertEquals(nil, data.headingStyleText) end function suite:testStartBoxDataLinks() local env = getEnv('Template:Example') local data = doc.makeStartBoxData({}, env, 'some links') self:assertEquals('some links', data.links) self:assertEquals('mw-editsection-like plainlinks', data.linksClass) end function suite:testStartBoxDataNoLinks() local env = getEnv('Template:Example') local data = doc.makeStartBoxData({}, env) self:assertEquals(nil, data.links) self:assertEquals(nil, data.linksClass) self:assertEquals(nil, data.linksId) end -------------------------------------------------------------------------------------------- -- Test renderStartBox -------------------------------------------------------------------------------------------- function suite:testRenderStartBox() local expected = '<div class="documentation-startbox">\n<span id="documentation-heading"></span></div>' self:assertEquals(expected, doc.renderStartBox{}) end function suite:testRenderStartBoxHeadingStyleText() self:assertStringContains('\n<span id="documentation-heading" style="foo:bar">', doc.renderStartBox{headingStyleText = 'foo:bar'}, true) end function suite:testRenderStartBoxHeading() self:assertStringContains('\n<span id="documentation-heading">Foobar</span>', doc.renderStartBox{heading = 'Foobar'}, true) end function suite:testRenderStartBoxLinks() self:assertStringContains('<span>list of links</span>', doc.renderStartBox{links = 'list of links'}, true) end function suite:testRenderStartBoxLinksClass() self:assertStringContains('<span class="linksclass">list of links</span>', doc.renderStartBox{linksClass = 'linksclass', links = 'list of links'}, true) self:assertNotStringContains('linksclass', doc.renderStartBox{linksClass = 'linksclass'}, true) end function suite:testRenderStartBoxLinksId() self:assertStringContains('<span id="linksid">list of links</span>', doc.renderStartBox{linksId = 'linksid', links = 'list of links'}, true) self:assertNotStringContains('linksid', doc.renderStartBox{linksId = 'linksid'}, true) end -------------------------------------------------------------------------------------------- -- Test _content -------------------------------------------------------------------------------------------- function suite:testContentArg() self:assertEquals('\nsome documentation\n', doc._content({content = 'some documentation'}, {})) end function suite:testContentNoContent() local env = getEnv('Template:This is a non-existent template agauchvaiu') self:assertEquals(mw.text.killMarkers(mw.getCurrentFrame():preprocess('\n' .. (docConfig['no-documentation'] or '')) .. '\n'), mw.text.killMarkers(doc._content({}, env))) end function suite:testContentExists() local env = doc.getEnvironment{'Template:Documentation/testcases/test3'} local docs = mw.getCurrentFrame():preprocess('{{Template:Documentation/testcases/test3}}') local expected = '\n' .. docs .. '\n' self:assertEquals(expected, doc._content({}, env)) end -------------------------------------------------------------------------------------------- -- Test _endBox -------------------------------------------------------------------------------------------- function suite:testEndBoxLinkBoxOff() local env = getEnv() self:assertEquals(nil, doc._endBox({['link box'] = 'off'}, env)) end function suite:testEndBoxNoDocsOtherNs() local env = { subjectSpace = 4, docTitle = { exists = false } } self:assertEquals(nil, doc._endBox({}, env)) end function suite:testEndBoxAlwaysShowNs() self:assertTrue(doc._endBox({}, getEnv('Template:Non-existent template asdfalsdhaw'))) self:assertTrue(doc._endBox({}, getEnv('Module:Non-existent module asdhewbydcyg'))) self:assertTrue(doc._endBox({}, getEnv('User:Non-existent user ahfliwebalisyday'))) end function suite:testEndBoxStyles() local env = getEnv('Template:Example') local endBox = doc._endBox({}, env) self:assertStringContains('class="documentation-metadata plainlinks"', endBox, true) end function suite:testEndBoxLinkBoxArg() local env = getEnv() self:assertStringContains('Custom link box', doc._endBox({['link box'] = 'Custom link box'}, env)) end function suite:testEndBoxExperimentBlurbValidNs() local expected = 'Editors can experiment in this.-<br />' self:assertStringContains(expected, doc._endBox({}, getEnv('Template:Example'))) self:assertStringContains(expected, doc._endBox({}, getEnv('Module:Example'))) self:assertStringContains(expected, doc._endBox({}, getEnv('User:Example'))) end function suite:testEndBoxExperimentBlurbInvalidNs() local expected = 'Editors can experiment in this.-<br />' self:assertNotStringContains(expected, doc._endBox({}, getEnv('Wikipedia:Twinkle'))) -- Wikipedia:Twinkle has an existing /doc subpage end function suite:testEndBoxCategoriesBlurb() local expected = 'Add categories to the %[%[.-|/doc%]%] subpage%.' self:assertStringContains(expected, doc._endBox({}, getEnv('Template:Example'))) self:assertStringContains(expected, doc._endBox({}, getEnv('Module:Example'))) self:assertStringContains(expected, doc._endBox({}, getEnv('User:Example'))) self:assertNotStringContains(expected, doc._endBox({[1] = 'Foo'}, getEnv('Template:Example'))) self:assertNotStringContains(expected, doc._endBox({content = 'Bar'}, getEnv('Template:Example'))) self:assertNotStringContains(expected, doc._endBox({}, getEnv('Wikipedia:Twinkle'))) end -------------------------------------------------------------------------------------------- -- Test makeDocPageBlurb -------------------------------------------------------------------------------------------- function suite:testDocPageBlurbError() self:assertEquals(nil, doc.makeDocPageBlurb({}, {})) end function suite:testDocPageBlurbTemplateDocExists() local env = getEnv('Template:Documentation') local expected = 'The above [[Wikipedia:Template documentation|documentation]] is [[Help:Transclusion|transcluded]] from [[Template:Documentation/doc]]. <span class="documentation-toolbar">([[Special:EditPage/Template:Documentation/doc|edit]] &#124; [[Special:PageHistory/Template:Documentation/doc|history]])</span><br />' self:assertEquals(expected, doc.makeDocPageBlurb({}, env)) end function suite:testDocPageBlurbTemplateDocDoesntExist() local env = getEnv('Template:Non-existent template ajlkfdsa') self:assertEquals(nil, doc.makeDocPageBlurb({}, env)) end function suite:testDocPageBlurbModuleDocExists() local env = getEnv('Module:Example') local expected = 'The above [[Wikipedia:Template documentation|documentation]] is [[Help:Transclusion|transcluded]] from [[Module:Example/doc]]. <span class="documentation-toolbar">([[Special:EditPage/Module:Example/doc|edit]] &#124; [[Special:PageHistory/Module:Example/doc|history]])</span><br />' self:assertEquals(expected, doc.makeDocPageBlurb({}, env)) end function suite:testDocPageBlurbModuleDocDoesntExist() local env = getEnv('Module:Non-existent module ajlkfdsa') local expected = 'You might want to [https://en.wikipedia.org/w/index.php?title=Module:Non-existent_module_ajlkfdsa/doc&action=edit&preload=Template%3ADocumentation%2Fpreload-module-doc create] a documentation page for this [[Wikipedia:Lua|Scribunto module]].<br />' self:assertEquals(expected, doc.makeDocPageBlurb({}, env)) end -------------------------------------------------------------------------------------------- -- Test makeExperimentBlurb -------------------------------------------------------------------------------------------- function suite:testExperimentBlurbTemplate() local env = getEnv('Template:Example') self:assertStringContains("Editors can experiment in this template's .- and .- pages.", doc.makeExperimentBlurb({}, env), false) end function suite:testExperimentBlurbModule() local env = getEnv('Module:Example') self:assertStringContains("Editors can experiment in this module's .- and .- pages.", doc.makeExperimentBlurb({}, env), false) end function suite:testExperimentBlurbSandboxExists() local env = getEnv('Template:Edit protected') local pattern = '[[Template:Edit protected/sandbox|sandbox]] <span class="documentation-toolbar">([[Special:EditPage/Template:Edit protected/sandbox|edit]] &#124; [https://en.wikipedia.org/w/index.php?title=Special%3AComparePages&page1=Template%3AEdit+protected&page2=Template%3AEdit+protected%2Fsandbox diff])</span>' self:assertStringContains(pattern, doc.makeExperimentBlurb({}, env), true) end function suite:testExperimentBlurbSandboxDoesntExist() local env = getEnv('Template:Non-existent template sajdfasd') local pattern = 'sandbox <span class="documentation-toolbar">([https://en.wikipedia.org/w/index.php?title=Template:Non-existent_template_sajdfasd/sandbox&action=edit&preload=Template%3ADocumentation%2Fpreload-sandbox create] &#124; [https://en.wikipedia.org/w/index.php?title=Template:Non-existent_template_sajdfasd/sandbox&preload=Template%3ADocumentation%2Fmirror&action=edit&summary=Create+sandbox+version+of+%5B%5BTemplate%3ANon-existent+template+sajdfasd%5D%5D mirror])</span>' self:assertStringContains(pattern, doc.makeExperimentBlurb({}, env), true) end function suite:testExperimentBlurbTestcasesExist() local env = getEnv('Template:Edit protected') local pattern = '[[Template:Edit protected/testcases|testcases]] <span class="documentation-toolbar">([[Special:EditPage/Template:Edit protected/testcases|edit]])</span>' self:assertStringContains(pattern, doc.makeExperimentBlurb({}, env), true) end function suite:testExperimentBlurbTestcasesDontExist() local env = getEnv('Template:Non-existent template sajdfasd') local pattern = 'testcases <span class="documentation-toolbar">([https://en.wikipedia.org/w/index.php?title=Template:Non-existent_template_sajdfasd/testcases&action=edit&preload=Template%3ADocumentation%2Fpreload-testcases create])</span>' self:assertStringContains(pattern, doc.makeExperimentBlurb({}, env), true) end -------------------------------------------------------------------------------------------- -- Test makeCategoriesBlurb -------------------------------------------------------------------------------------------- function suite:testMakeCategoriesBlurb() local env = getEnv('Template:Example') self:assertEquals('Add categories to the [[Template:Example/doc|/doc]] subpage.', doc.makeCategoriesBlurb({}, env)) end -------------------------------------------------------------------------------------------- -- Test makeSubpagesBlurb -------------------------------------------------------------------------------------------- function suite:testMakeSubpagesBlurbTemplate() local env = getEnv('Template:Example') self:assertEquals('[[Special:PrefixIndex/Template:Example/|Subpages of this template]].', doc.makeSubpagesBlurb({}, env)) end function suite:testMakeSubpagesBlurbModule() local env = getEnv('Module:Example') self:assertEquals('[[Special:PrefixIndex/Module:Example/|Subpages of this module]].', doc.makeSubpagesBlurb({}, env)) end function suite:testMakeSubpagesBlurbOther() local env = getEnv('File:Example.png') self:assertEquals('[[Special:PrefixIndex/File:Example.png/|Subpages of this page]].', doc.makeSubpagesBlurb({}, env)) end -------------------------------------------------------------------------------------------- -- Test addTrackingCategories -------------------------------------------------------------------------------------------- function suite.getStrangeUsageCat() return '[[Category:Wikipedia pages with strange ((documentation)) usage]]' end function suite:testAddTrackingCategoriesTemplatePage() local env = getEnv('Template:Example') self:assertEquals('', doc.addTrackingCategories(env)) end function suite:testAddTrackingCategoriesDocPage() local env = getEnv('Template:Example/doc') self:assertEquals(self.getStrangeUsageCat(), doc.addTrackingCategories(env)) end function suite:testAddTrackingCategoriesTestcasesPage() local env = getEnv('Template:Example/testcases') self:assertEquals(self.getStrangeUsageCat(), doc.addTrackingCategories(env)) end function suite:testAddTrackingCategoriesModuleDoc() local env = getEnv('Module:Math/doc') self:assertEquals(self.getStrangeUsageCat(), doc.addTrackingCategories(env)) end function suite:testAddTrackingCategoriesModuleTestcases() local env = getEnv('Module:Math/testcases') self:assertEquals('', doc.addTrackingCategories(env)) end function suite:testAddTrackingCategoriesInvalidTitle() local env = getEnv('Template:Foo[]Bar') self:assertEquals(nil, doc.addTrackingCategories(env)) end -------------------------------------------------------------------------------------------- -- Whitespace tests -------------------------------------------------------------------------------------------- function suite:testNoTrailingWhitespace() self:assertStringContains('of this template%]%].</div></div>$', doc._main{page = 'Template:Example'}) end return suite 9v8jur740ta5kz5j3ey3q5bzf4wrog0 72776 72775 2026-06-30T21:16:27Z Robertsky 10424 1 versaun husi [[:en:Module:Documentation/testcases]] 72775 Scribunto text/plain -- Test cases page for [[Module:Documentation]]. See talk page to run tests. local doc = require('Module:Documentation') local docConfig = require("Module:Documentation/config") local ScribuntoUnit = require('Module:ScribuntoUnit') local suite = ScribuntoUnit.new() -------------------------------------------------------------------------------- -- Sandbox run -------------------------------------------------------------------------------- function suite.runSandbox(...) doc = require('Module:Documentation/sandbox') docConfig = require("Module:Documentation/config/sandbox") return suite.run(...) end -------------------------------------------------------------------------------------------- -- Test case helper functions -------------------------------------------------------------------------------------------- local function getEnv(page) -- Gets an env table using the specified page. return doc.getEnvironment{page = page} end -------------------------------------------------------------------------------------------- -- Test helper functions -------------------------------------------------------------------------------------------- function suite:testMessage() self:assertEquals('sandbox', doc.message('sandbox-subpage')) self:assertEquals('Subpages of this foobar', doc.message('subpages-link-display', {'foobar'})) self:assertEquals(true, doc.message('display-strange-usage-category', nil, 'boolean')) end function suite:testMakeToolbar() self:assertEquals(nil, doc.makeToolbar()) self:assertEquals('<span class="documentation-toolbar">(Foo)</span>', doc.makeToolbar('Foo')) self:assertEquals('<span class="documentation-toolbar">(Foo &#124; Bar)</span>', doc.makeToolbar('Foo', 'Bar')) end function suite:testMakeWikilink() self:assertEquals('[[Foo]]', doc.makeWikilink('Foo')) self:assertEquals('[[Foo|Bar]]', doc.makeWikilink('Foo', 'Bar')) end function suite:testMakeCategoryLink() self:assertEquals('[[Category:Foo]]', doc.makeCategoryLink('Foo')) self:assertEquals('[[Category:Foo|Bar]]', doc.makeCategoryLink('Foo', 'Bar')) end function suite:testMakeUrlLink() self:assertEquals('[Foo Bar]', doc.makeUrlLink('Foo', 'Bar')) end -------------------------------------------------------------------------------------------- -- Test env table -------------------------------------------------------------------------------------------- function suite:assertEnvFieldEquals(expected, page, field) local env = getEnv(page) self:assertEquals(expected, env[field], nil, 1) end function suite:assertEnvTitleEquals(expected, page, titleField) local env = getEnv(page) local title = env[titleField] self:assertEquals(expected, title.prefixedText, nil, 1) end function suite:testEnvTitle() self:assertEnvTitleEquals('Wikipedia:Sandbox', 'Wikipedia:Sandbox', 'title') self:assertEnvTitleEquals('Template:Example/sandbox', 'Template:Example/sandbox', 'title') end function suite:testEnvBadTitle() local env = doc.getEnvironment{page = 'Bad[]Title'} local title = env.title self:assertEquals(nil, title) end function suite:testEnvTemplateTitle() self:assertEnvTitleEquals('Template:Example', 'Template:Example', 'templateTitle') self:assertEnvTitleEquals('Template:Example', 'Template talk:Example', 'templateTitle') self:assertEnvTitleEquals('Template:Example', 'Template:Example/sandbox', 'templateTitle') self:assertEnvTitleEquals('Template:Example', 'Template talk:Example/sandbox', 'templateTitle') self:assertEnvTitleEquals('Template:Example', 'Template:Example/testcases', 'templateTitle') self:assertEnvTitleEquals('Template:Example/foo', 'Template:Example/foo', 'templateTitle') self:assertEnvTitleEquals('File:Example', 'File talk:Example', 'templateTitle') self:assertEnvTitleEquals('File:Example', 'File talk:Example/sandbox', 'templateTitle') end function suite:testEnvDocTitle() self:assertEnvTitleEquals('Template:Example/doc', 'Template:Example', 'docTitle') self:assertEnvTitleEquals('Template:Example/doc', 'Template talk:Example', 'docTitle') self:assertEnvTitleEquals('Template:Example/doc', 'Template:Example/sandbox', 'docTitle') self:assertEnvTitleEquals('Talk:Example/doc', 'Example', 'docTitle') self:assertEnvTitleEquals('File talk:Example.png/doc', 'File:Example.png', 'docTitle') self:assertEnvTitleEquals('File talk:Example.png/doc', 'File talk:Example.png/sandbox', 'docTitle') end function suite:testEnvSandboxTitle() self:assertEnvTitleEquals('Template:Example/sandbox', 'Template:Example', 'sandboxTitle') self:assertEnvTitleEquals('Template:Example/sandbox', 'Template talk:Example', 'sandboxTitle') self:assertEnvTitleEquals('Template:Example/sandbox', 'Template:Example/sandbox', 'sandboxTitle') self:assertEnvTitleEquals('Talk:Example/sandbox', 'Example', 'sandboxTitle') self:assertEnvTitleEquals('File talk:Example.png/sandbox', 'File:Example.png', 'sandboxTitle') end function suite:testEnvTestcasesTitle() self:assertEnvTitleEquals('Template:Example/testcases', 'Template:Example', 'testcasesTitle') self:assertEnvTitleEquals('Template:Example/testcases', 'Template talk:Example', 'testcasesTitle') self:assertEnvTitleEquals('Template:Example/testcases', 'Template:Example/testcases', 'testcasesTitle') self:assertEnvTitleEquals('Talk:Example/testcases', 'Example', 'testcasesTitle') self:assertEnvTitleEquals('File talk:Example.png/testcases', 'File:Example.png', 'testcasesTitle') end function suite:testEnvProtectionLevels() local pipeEnv = getEnv('Template:?') self:assertEquals('autoconfirmed', pipeEnv.protectionLevels.edit[1]) local sandboxEnv = getEnv('Wikipedia:Sandbox') local sandboxEditLevels = sandboxEnv.protectionLevels.edit if sandboxEditLevels then -- sandboxEditLevels may also be nil if the page is unprotected self:assertEquals(nil, sandboxEditLevels[1]) else self:assertEquals(nil, sandboxEditLevels) end end function suite:testEnvSubjectSpace() self:assertEnvFieldEquals(10, 'Template:Sandbox', 'subjectSpace') self:assertEnvFieldEquals(10, 'Template talk:Sandbox', 'subjectSpace') self:assertEnvFieldEquals(0, 'Foo', 'subjectSpace') self:assertEnvFieldEquals(0, 'Talk:Foo', 'subjectSpace') end function suite:testEnvDocSpace() self:assertEnvFieldEquals(10, 'Template:Sandbox', 'docSpace') self:assertEnvFieldEquals(828, 'Module:Sandbox', 'docSpace') self:assertEnvFieldEquals(1, 'Foo', 'docSpace') self:assertEnvFieldEquals(7, 'File:Example.png', 'docSpace') self:assertEnvFieldEquals(9, 'MediaWiki:Watchlist-details', 'docSpace') self:assertEnvFieldEquals(15, 'Category:Wikipedians', 'docSpace') end function suite:testEnvDocpageBase() self:assertEnvFieldEquals('Template:Example', 'Template:Example', 'docpageBase') self:assertEnvFieldEquals('Template:Example', 'Template:Example/sandbox', 'docpageBase') self:assertEnvFieldEquals('Template:Example', 'Template talk:Example', 'docpageBase') self:assertEnvFieldEquals('File talk:Example.png', 'File:Example.png', 'docpageBase') self:assertEnvFieldEquals('File talk:Example.png', 'File talk:Example.png', 'docpageBase') self:assertEnvFieldEquals('File talk:Example.png', 'File talk:Example.png/sandbox', 'docpageBase') end function suite:testEnvCompareUrl() -- We use "Template:Edit protected" rather than "Template:Example" here as it has a space in the title. local expected = 'https://en.wikipedia.org/w/index.php?title=Special%3AComparePages&page1=Template%3AEdit+protected&page2=Template%3AEdit+protected%2Fsandbox' self:assertEnvFieldEquals(expected, 'Template:Edit protected', 'compareUrl') self:assertEnvFieldEquals(expected, 'Template:Edit protected/sandbox', 'compareUrl') self:assertEnvFieldEquals(nil, 'Template:Non-existent template adsfasdg', 'compareUrl') self:assertEnvFieldEquals(nil, 'Template:Fact', 'compareUrl') -- Exists but doesn't have a sandbox. end -------------------------------------------------------------------------------------------- -- Test sandbox notice -------------------------------------------------------------------------------------------- function suite.getSandboxNoticeTestData(page) local env = getEnv(page) local templatePage = page:match('^(.*)/sandbox$') local image = '[[File:Edit In Sandbox Icon - Color.svg|50px|alt=|link=]]' local templateBlurb = 'This is the [[Wikipedia:Template test cases|template sandbox]] page for [[' .. templatePage .. ']]' local moduleBlurb = 'This is the [[Wikipedia:Template test cases|module sandbox]] page for [[' .. templatePage .. ']]' local otherBlurb = 'This is the sandbox page for [[' .. templatePage .. ']]' local diff = '[https://en.wikipedia.org/w/index.php?title=Special%3AComparePages&page1=' .. mw.uri.encode(templatePage) .. '&page2=' .. mw.uri.encode(page) .. ' diff]' local testcasesBlurb = 'See also the companion subpage for [[' .. templatePage .. '/testcases|test cases]].' local category = '[[Category:Template sandboxes]]' local clear = '<div class="documentation-clear"></div>' return env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category, clear end function suite:testSandboxNoticeNotSandbox() local env = getEnv('Template:Example') local notice = doc.sandboxNotice({}, env) self:assertEquals(nil, notice) end function suite:testSandboxNoticeStaticVals() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category, clear = suite.getSandboxNoticeTestData('Template:Example/sandbox') local notice = doc.sandboxNotice({}, env) -- Escape metacharacters (mainly '-') clear = clear:gsub( '%p', '%%%0' ) self:assertStringContains('^' .. clear, notice, false) self:assertStringContains(image, notice, true) self:assertStringContains(category, notice, true) end function suite:testSandboxNoticeTemplateBlurb() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('Template:Example/sandbox') local notice = doc.sandboxNotice({}, env) self:assertStringContains(templateBlurb, notice, true) end function suite:testSandboxNoticeModuleBlurb() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('Module:Math/sandbox') local notice = doc.sandboxNotice({}, env) self:assertStringContains(moduleBlurb, notice, true) end function suite:testSandboxNoticeOtherBlurb() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('User:Mr. Stradivarius/sandbox') local notice = doc.sandboxNotice({}, env) self:assertStringContains(otherBlurb, notice, true) end function suite:testSandboxNoticeBlurbDiff() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('Template:Example/sandbox') local notice = doc.sandboxNotice({}, env) if mw.title.getCurrentTitle().isTalk then -- This test doesn't work in the debug console due to the use of frame:preprocess({{REVISIONID}}). -- The frame test doesn't seem to be working for now, so adding a namespace hack. self:assertStringContains(diff, notice, true) end end function suite:testSandboxNoticeBlurbDiffNoBasePage() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('Module:User:Mr. Stradivarius/sandbox') local notice = doc.sandboxNotice({}, env) if mw.title.getCurrentTitle().isTalk then -- This test doesn't work in the debug console due to the use of frame:preprocess({{REVISIONID}}). -- The frame test doesn't seem to be working for now, so adding a namespace hack. self:assertNotStringContains(diff, notice, true) end end function suite:testSandboxNoticeTestcases() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('Template:Edit protected/sandbox') local notice = doc.sandboxNotice({}, env) self:assertStringContains(testcasesBlurb, notice, true) end function suite:testSandboxNoticeNoTestcases() local env, image, templateBlurb, moduleBlurb, otherBlurb, diff, testcasesBlurb, category = suite.getSandboxNoticeTestData('Template:Example/sandbox') local notice = doc.sandboxNotice({}, env) self:assertNotStringContains(testcasesBlurb, notice, true) end -------------------------------------------------------------------------------------------- -- Test protection template -- -- There's not much we can do with this until {{pp-meta}} gets rewritten in Lua. At the -- moment the protection detection only works for the current page, and the testcases pages -- will be unprotected. -------------------------------------------------------------------------------------------- function suite:testProtectionTemplateUnprotectedTemplate() local env = getEnv('Template:Example') self:assertEquals(nil, doc.protectionTemplate(env)) end function suite:testProtectionTemplateProtectedTemplate() local env = getEnv('Template:Navbox') -- Test whether there is some content. We don't care what the content is, as the protection level -- detected will be for the current page, not the template. self:assertTrue(doc.protectionTemplate(env)) end function suite:testProtectionTemplateUnprotectedModule() local env = getEnv('Module:Example') self:assertEquals(nil, doc.protectionTemplate(env)) end function suite:testProtectionTemplateProtectedModule() local env = getEnv('Module:Yesno') -- Test whether there is some content. We don't care what the content is, as the protection level -- detected will be for the current page, not the template. self:assertTrue(doc.protectionTemplate(env)) end -------------------------------------------------------------------------------------------- -- Test _startBox -------------------------------------------------------------------------------------------- function suite:testStartBoxContentArg() local pattern = '<div class="documentation%-startbox">\n<span class="documentation%-heading" id="documentation%-heading">.-</span></div>' local startBox = doc._startBox({content = 'some documentation'}, getEnv('Template:Example')) self:assertStringContains(pattern, startBox) end function suite:testStartBoxHtml() self:assertStringContains( '<div class="documentation%-startbox">\n<span class="documentation%-heading" id="documentation%-heading">.-</span><span class="mw%-editsection%-like plainlinks">.-</span></div>', doc._startBox({}, getEnv('Template:Example')) ) end -------------------------------------------------------------------------------------------- -- Test makeStartBoxLinksData -------------------------------------------------------------------------------------------- function suite:testMakeStartBoxLinksData() local env = getEnv('Template:Example') local data = doc.makeStartBoxLinksData({}, env) self:assertEquals('Template:Example', data.title.prefixedText) self:assertEquals('Template:Example/doc', data.docTitle.prefixedText) self:assertEquals('view', data.viewLinkDisplay) self:assertEquals('edit', data.editLinkDisplay) self:assertEquals('history', data.historyLinkDisplay) self:assertEquals('purge', data.purgeLinkDisplay) self:assertEquals('create', data.createLinkDisplay) self:assertEquals('override', data.overrideLinkDisplay) end function suite:testMakeStartBoxLinksDataTemplatePreload() local env = getEnv('Template:Example') local data = doc.makeStartBoxLinksData({}, env) self:assertEquals('Template:Documentation/preload', data.preload) end function suite:testMakeStartBoxLinksDataArgsPreload() local env = getEnv('Template:Example') local data = doc.makeStartBoxLinksData({preload = 'My custom preload'}, env) self:assertEquals('My custom preload', data.preload) end -------------------------------------------------------------------------------------------- -- Test renderStartBoxLinks -------------------------------------------------------------------------------------------- function suite.makeExampleStartBoxLinksData(exists) -- Makes a data table to be used with testRenderStartBoxLinksExists and testRenderStartBoxLinksDoesntExist. local data = {} if exists then data.title = mw.title.new('Template:Example') data.docTitle = mw.title.new('Template:Example/doc') else data.title = mw.title.new('Template:NonExistentTemplate') data.docTitle = mw.title.new('Template:NonExistentTemplate/doc') end data.viewLinkDisplay = 'view' data.editLinkDisplay = 'edit' data.historyLinkDisplay = 'history' data.purgeLinkDisplay = 'purge' data.createLinkDisplay = 'create' data.overrideLinkDisplay = 'override' data.preload = 'Template:MyPreload' return data end function suite:testRenderStartBoxLinksExists() local data = suite.makeExampleStartBoxLinksData(true) local expected = '&#91;[[Template:Example/doc|view]]&#93; &#91;[[Special:EditPage/Template:Example/doc|edit]]&#93; &#91;[[Special:PageHistory/Template:Example/doc|history]]&#93; &#91;[[Special:Purge/Template:Example|purge]]&#93;' self:assertEquals(expected, doc.renderStartBoxLinks(data)) end function suite:testRenderStartBoxLinksDoesntExist() local data = suite.makeExampleStartBoxLinksData(false) local expected = '&#91;[https://en.wikipedia.org/w/index.php?title=Template:NonExistentTemplate/doc&action=edit&preload=Template%3AMyPreload create]&#93; &#91;[[Special:Purge/Template:NonExistentTemplate|purge]]&#93;' self:assertEquals(expected, doc.renderStartBoxLinks(data)) end -------------------------------------------------------------------------------------------- -- Test makeStartBoxData -------------------------------------------------------------------------------------------- function suite:testStartBoxDataBlankHeading() local data = doc.makeStartBoxData({heading = ''}, {}) self:assertEquals(nil, data) end function suite:testStartBoxDataHeadingTemplate() local env = getEnv('Template:Example') local data = doc.makeStartBoxData({}, env) local expected = '[[File:Test Template Info-Icon - Version (2).svg|50px|link=|alt=]] Template documentation' self:assertEquals(expected, data.heading) end function suite:testStartBoxDataHeadingModule() local env = getEnv('Module:Example') local data = doc.makeStartBoxData({}, env) local expected = '[[File:Test Template Info-Icon - Version (2).svg|50px|link=|alt=]] Module documentation' self:assertEquals(expected, data.heading) end function suite:testStartBoxDataHeadingFile() local env = getEnv('File:Example.png') local data = doc.makeStartBoxData({}, env) local expected = 'Summary' self:assertEquals(expected, data.heading) end function suite:testStartBoxDataHeadingOther() local env = getEnv('User:Example') local data = doc.makeStartBoxData({}, env) local expected = 'Documentation' self:assertEquals(expected, data.heading) end function suite:testStartBoxDataHeadingStyle() local data = doc.makeStartBoxData({['heading-style'] = 'foo:bar'}, {}) self:assertEquals('foo:bar', data.headingStyleText) end function suite:testStartBoxDataHeadingStyleTemplate() local env = getEnv('Template:Example') local data = doc.makeStartBoxData({}, env) self:assertEquals(nil, data.headingStyleText) end function suite:testStartBoxDataHeadingStyleOther() local env = getEnv('User:Example') local data = doc.makeStartBoxData({}, env) self:assertEquals(nil, data.headingStyleText) end function suite:testStartBoxDataLinks() local env = getEnv('Template:Example') local data = doc.makeStartBoxData({}, env, 'some links') self:assertEquals('some links', data.links) self:assertEquals('mw-editsection-like plainlinks', data.linksClass) end function suite:testStartBoxDataNoLinks() local env = getEnv('Template:Example') local data = doc.makeStartBoxData({}, env) self:assertEquals(nil, data.links) self:assertEquals(nil, data.linksClass) self:assertEquals(nil, data.linksId) end -------------------------------------------------------------------------------------------- -- Test renderStartBox -------------------------------------------------------------------------------------------- function suite:testRenderStartBox() local expected = '<div class="documentation-startbox">\n<span id="documentation-heading"></span></div>' self:assertEquals(expected, doc.renderStartBox{}) end function suite:testRenderStartBoxHeadingStyleText() self:assertStringContains('\n<span id="documentation-heading" style="foo:bar">', doc.renderStartBox{headingStyleText = 'foo:bar'}, true) end function suite:testRenderStartBoxHeading() self:assertStringContains('\n<span id="documentation-heading">Foobar</span>', doc.renderStartBox{heading = 'Foobar'}, true) end function suite:testRenderStartBoxLinks() self:assertStringContains('<span>list of links</span>', doc.renderStartBox{links = 'list of links'}, true) end function suite:testRenderStartBoxLinksClass() self:assertStringContains('<span class="linksclass">list of links</span>', doc.renderStartBox{linksClass = 'linksclass', links = 'list of links'}, true) self:assertNotStringContains('linksclass', doc.renderStartBox{linksClass = 'linksclass'}, true) end function suite:testRenderStartBoxLinksId() self:assertStringContains('<span id="linksid">list of links</span>', doc.renderStartBox{linksId = 'linksid', links = 'list of links'}, true) self:assertNotStringContains('linksid', doc.renderStartBox{linksId = 'linksid'}, true) end -------------------------------------------------------------------------------------------- -- Test _content -------------------------------------------------------------------------------------------- function suite:testContentArg() self:assertEquals('\nsome documentation\n', doc._content({content = 'some documentation'}, {})) end function suite:testContentNoContent() local env = getEnv('Template:This is a non-existent template agauchvaiu') self:assertEquals(mw.text.killMarkers(mw.getCurrentFrame():preprocess('\n' .. (docConfig['no-documentation'] or '')) .. '\n'), mw.text.killMarkers(doc._content({}, env))) end function suite:testContentExists() local env = doc.getEnvironment{'Template:Documentation/testcases/test3'} local docs = mw.getCurrentFrame():preprocess('{{Template:Documentation/testcases/test3}}') local expected = '\n' .. docs .. '\n' self:assertEquals(expected, doc._content({}, env)) end -------------------------------------------------------------------------------------------- -- Test _endBox -------------------------------------------------------------------------------------------- function suite:testEndBoxLinkBoxOff() local env = getEnv() self:assertEquals(nil, doc._endBox({['link box'] = 'off'}, env)) end function suite:testEndBoxNoDocsOtherNs() local env = { subjectSpace = 4, docTitle = { exists = false } } self:assertEquals(nil, doc._endBox({}, env)) end function suite:testEndBoxAlwaysShowNs() self:assertTrue(doc._endBox({}, getEnv('Template:Non-existent template asdfalsdhaw'))) self:assertTrue(doc._endBox({}, getEnv('Module:Non-existent module asdhewbydcyg'))) self:assertTrue(doc._endBox({}, getEnv('User:Non-existent user ahfliwebalisyday'))) end function suite:testEndBoxStyles() local env = getEnv('Template:Example') local endBox = doc._endBox({}, env) self:assertStringContains('class="documentation-metadata plainlinks"', endBox, true) end function suite:testEndBoxLinkBoxArg() local env = getEnv() self:assertStringContains('Custom link box', doc._endBox({['link box'] = 'Custom link box'}, env)) end function suite:testEndBoxExperimentBlurbValidNs() local expected = 'Editors can experiment in this.-<br />' self:assertStringContains(expected, doc._endBox({}, getEnv('Template:Example'))) self:assertStringContains(expected, doc._endBox({}, getEnv('Module:Example'))) self:assertStringContains(expected, doc._endBox({}, getEnv('User:Example'))) end function suite:testEndBoxExperimentBlurbInvalidNs() local expected = 'Editors can experiment in this.-<br />' self:assertNotStringContains(expected, doc._endBox({}, getEnv('Wikipedia:Twinkle'))) -- Wikipedia:Twinkle has an existing /doc subpage end function suite:testEndBoxCategoriesBlurb() local expected = 'Add categories to the %[%[.-|/doc%]%] subpage%.' self:assertStringContains(expected, doc._endBox({}, getEnv('Template:Example'))) self:assertStringContains(expected, doc._endBox({}, getEnv('Module:Example'))) self:assertStringContains(expected, doc._endBox({}, getEnv('User:Example'))) self:assertNotStringContains(expected, doc._endBox({[1] = 'Foo'}, getEnv('Template:Example'))) self:assertNotStringContains(expected, doc._endBox({content = 'Bar'}, getEnv('Template:Example'))) self:assertNotStringContains(expected, doc._endBox({}, getEnv('Wikipedia:Twinkle'))) end -------------------------------------------------------------------------------------------- -- Test makeDocPageBlurb -------------------------------------------------------------------------------------------- function suite:testDocPageBlurbError() self:assertEquals(nil, doc.makeDocPageBlurb({}, {})) end function suite:testDocPageBlurbTemplateDocExists() local env = getEnv('Template:Documentation') local expected = 'The above [[Wikipedia:Template documentation|documentation]] is [[Help:Transclusion|transcluded]] from [[Template:Documentation/doc]]. <span class="documentation-toolbar">([[Special:EditPage/Template:Documentation/doc|edit]] &#124; [[Special:PageHistory/Template:Documentation/doc|history]])</span><br />' self:assertEquals(expected, doc.makeDocPageBlurb({}, env)) end function suite:testDocPageBlurbTemplateDocDoesntExist() local env = getEnv('Template:Non-existent template ajlkfdsa') self:assertEquals(nil, doc.makeDocPageBlurb({}, env)) end function suite:testDocPageBlurbModuleDocExists() local env = getEnv('Module:Example') local expected = 'The above [[Wikipedia:Template documentation|documentation]] is [[Help:Transclusion|transcluded]] from [[Module:Example/doc]]. <span class="documentation-toolbar">([[Special:EditPage/Module:Example/doc|edit]] &#124; [[Special:PageHistory/Module:Example/doc|history]])</span><br />' self:assertEquals(expected, doc.makeDocPageBlurb({}, env)) end function suite:testDocPageBlurbModuleDocDoesntExist() local env = getEnv('Module:Non-existent module ajlkfdsa') local expected = 'You might want to [https://en.wikipedia.org/w/index.php?title=Module:Non-existent_module_ajlkfdsa/doc&action=edit&preload=Template%3ADocumentation%2Fpreload-module-doc create] a documentation page for this [[Wikipedia:Lua|Scribunto module]].<br />' self:assertEquals(expected, doc.makeDocPageBlurb({}, env)) end -------------------------------------------------------------------------------------------- -- Test makeExperimentBlurb -------------------------------------------------------------------------------------------- function suite:testExperimentBlurbTemplate() local env = getEnv('Template:Example') self:assertStringContains("Editors can experiment in this template's .- and .- pages.", doc.makeExperimentBlurb({}, env), false) end function suite:testExperimentBlurbModule() local env = getEnv('Module:Example') self:assertStringContains("Editors can experiment in this module's .- and .- pages.", doc.makeExperimentBlurb({}, env), false) end function suite:testExperimentBlurbSandboxExists() local env = getEnv('Template:Edit protected') local pattern = '[[Template:Edit protected/sandbox|sandbox]] <span class="documentation-toolbar">([[Special:EditPage/Template:Edit protected/sandbox|edit]] &#124; [https://en.wikipedia.org/w/index.php?title=Special%3AComparePages&page1=Template%3AEdit+protected&page2=Template%3AEdit+protected%2Fsandbox diff])</span>' self:assertStringContains(pattern, doc.makeExperimentBlurb({}, env), true) end function suite:testExperimentBlurbSandboxDoesntExist() local env = getEnv('Template:Non-existent template sajdfasd') local pattern = 'sandbox <span class="documentation-toolbar">([https://en.wikipedia.org/w/index.php?title=Template:Non-existent_template_sajdfasd/sandbox&action=edit&preload=Template%3ADocumentation%2Fpreload-sandbox create] &#124; [https://en.wikipedia.org/w/index.php?title=Template:Non-existent_template_sajdfasd/sandbox&preload=Template%3ADocumentation%2Fmirror&action=edit&summary=Create+sandbox+version+of+%5B%5BTemplate%3ANon-existent+template+sajdfasd%5D%5D mirror])</span>' self:assertStringContains(pattern, doc.makeExperimentBlurb({}, env), true) end function suite:testExperimentBlurbTestcasesExist() local env = getEnv('Template:Edit protected') local pattern = '[[Template:Edit protected/testcases|testcases]] <span class="documentation-toolbar">([[Special:EditPage/Template:Edit protected/testcases|edit]])</span>' self:assertStringContains(pattern, doc.makeExperimentBlurb({}, env), true) end function suite:testExperimentBlurbTestcasesDontExist() local env = getEnv('Template:Non-existent template sajdfasd') local pattern = 'testcases <span class="documentation-toolbar">([https://en.wikipedia.org/w/index.php?title=Template:Non-existent_template_sajdfasd/testcases&action=edit&preload=Template%3ADocumentation%2Fpreload-testcases create])</span>' self:assertStringContains(pattern, doc.makeExperimentBlurb({}, env), true) end -------------------------------------------------------------------------------------------- -- Test makeCategoriesBlurb -------------------------------------------------------------------------------------------- function suite:testMakeCategoriesBlurb() local env = getEnv('Template:Example') self:assertEquals('Add categories to the [[Template:Example/doc|/doc]] subpage.', doc.makeCategoriesBlurb({}, env)) end -------------------------------------------------------------------------------------------- -- Test makeSubpagesBlurb -------------------------------------------------------------------------------------------- function suite:testMakeSubpagesBlurbTemplate() local env = getEnv('Template:Example') self:assertEquals('[[Special:PrefixIndex/Template:Example/|Subpages of this template]].', doc.makeSubpagesBlurb({}, env)) end function suite:testMakeSubpagesBlurbModule() local env = getEnv('Module:Example') self:assertEquals('[[Special:PrefixIndex/Module:Example/|Subpages of this module]].', doc.makeSubpagesBlurb({}, env)) end function suite:testMakeSubpagesBlurbOther() local env = getEnv('File:Example.png') self:assertEquals('[[Special:PrefixIndex/File:Example.png/|Subpages of this page]].', doc.makeSubpagesBlurb({}, env)) end -------------------------------------------------------------------------------------------- -- Test addTrackingCategories -------------------------------------------------------------------------------------------- function suite.getStrangeUsageCat() return '[[Category:Wikipedia pages with strange ((documentation)) usage]]' end function suite:testAddTrackingCategoriesTemplatePage() local env = getEnv('Template:Example') self:assertEquals('', doc.addTrackingCategories(env)) end function suite:testAddTrackingCategoriesDocPage() local env = getEnv('Template:Example/doc') self:assertEquals(self.getStrangeUsageCat(), doc.addTrackingCategories(env)) end function suite:testAddTrackingCategoriesTestcasesPage() local env = getEnv('Template:Example/testcases') self:assertEquals(self.getStrangeUsageCat(), doc.addTrackingCategories(env)) end function suite:testAddTrackingCategoriesModuleDoc() local env = getEnv('Module:Math/doc') self:assertEquals(self.getStrangeUsageCat(), doc.addTrackingCategories(env)) end function suite:testAddTrackingCategoriesModuleTestcases() local env = getEnv('Module:Math/testcases') self:assertEquals('', doc.addTrackingCategories(env)) end function suite:testAddTrackingCategoriesInvalidTitle() local env = getEnv('Template:Foo[]Bar') self:assertEquals(nil, doc.addTrackingCategories(env)) end -------------------------------------------------------------------------------------------- -- Whitespace tests -------------------------------------------------------------------------------------------- function suite:testNoTrailingWhitespace() self:assertStringContains('of this template%]%].</div></div>$', doc._main{page = 'Template:Example'}) end return suite 9v8jur740ta5kz5j3ey3q5bzf4wrog0 Template:Infobox Lua 10 8132 72777 2026-06-03T15:31:02Z en>Awesome Aasim 0 72777 wikitext text/x-wiki {{Infobox | bodyclass = infobox-lua | bodystyle = {{#ifeq: {{{styled|}}} | yes | border: 2px ridge #CAE1FF; width: 30em; padding-bottom: 0px; | <!-- nothing --> }} {{{bodystyle|}}} | title = {{{title|{{PAGENAME}}}}} | above = {{#ifeq: {{{styled|}}} | yes | {{{name|{{SUBPAGENAME}}}}} | <!-- nothing --> }} | titlestyle = {{#ifeq: {{{styled|}}} | yes | font-size: 0.95em; padding: 0px; margin: 0px | <!-- nothing --> }} | abovestyle = {{#ifeq: {{{styled|}}} | yes | background:#83C5DA; padding: 3px 0px | <!-- nothing --> }} | labelstyle = {{#ifeq: {{{styled|}}} | yes | background:#DFEFFF; padding: 0px 7px; vertical-align: middle | <!-- nothing --> }} | datastyle = {{#ifeq: {{{styled|}}} | yes | padding: 5px 5px; | <!-- nothing --> }} | image = {{{image|}}} | caption = {{{caption|}}} | label1 = Description | data1 = {{{description|}}} | label2 = Author(s) | data2 = {{{author|}}} | label3 = Code source | data3 = {{#if:{{{code|}}}|{{#ifeq:{{{code|}}}|{{{title|{{PAGENAME}}}}}||[[Module:{{{code|}}}]]}}}} | label4 = Status | data4 = {{#switch: {{lc:{{{status|}}}}} | pre-alpha | prealpha | pa | experimental = <div style="background-color:orangered;color:white;text-align:center;padding:3px;">Experimental</div> | alpha | a = <div style="background-color:orange;color:white;text-align:center;padding:3px;">Alpha</div> | beta | b = <div style="background-color:yellow;color:black;text-align:center;padding:3px;">Beta</div> | release | r | general | g | stable = <div style="background-color:green;color:white;text-align:center;padding:3px;">Release</div> | broken | br | unstable = <div style="background-color:red;color:white;text-align:center;padding:3px;">Broken</div> | deprecated | d | defunct = <div style="background-color:darkred;color:white;text-align:center;padding:3px;">Deprecated</div> | #default = <div style="background-color:gray;color:white;text-align:center;padding:3px;">Unknown</div> }} | label5 = Testcase Status | data5 = {{#ifexist:Module:{{{source|{{{title|{{PAGENAME}}}}}}}}/testcases|{{#switch:{{#invoke:{{{source|{{{title|{{PAGENAME}}}}}}}}/testcases|run|displayMode=enum}} | fail = <div style="background-color:red;color:white;text-align:center;padding:3px;">[[{{TALKPAGENAME:Module:{{{source|{{{title|{{PAGENAME}}}}}}}}/testcases}}|<span style="background-color:red;color:white;text-align:center;">Errors</span>]]</div> | skipped = <div style="background-color:gray;color:black;text-align:center;padding:3px;">[[{{TALKPAGENAME:Module:{{{source|{{{title|{{PAGENAME}}}}}}}}/testcases}}|<span style="background-color:gray;color:black;text-align:center;">Skipped</span>]]</div> | success = <div style="background-color:green;color:white;text-align:center;padding:3px;">[[{{TALKPAGENAME:Module:{{{source|{{{title|{{PAGENAME}}}}}}}}/testcases}}|<span style="background-color:green;color:white;text-align:center;">Passed</span>]]</div> | #default = <div style="background-color:gray;color:white;text-align:center;padding:3px;">Unknown</div> }}}} | label6 = Version | data6 = {{{version|}}} | label7 = Updated | data7 = {{#time:F j, Y|{{{updated|{{REVISIONTIMESTAMP:Module:{{{source|{{{title|{{PAGENAME}}}}}}}}}}}}}}} ({{time ago|1={{{updated|{{REVISIONTIMESTAMP:Module:{{{source|{{{title|{{PAGENAME}}}}}}}}}}}}}}}) | label8 = Dependencies | data8 = {{{dependencies|}}} | label9 = Skins | data9 = {{{skins|}}} | label10 = Using code by | data10 = {{{using code by|}}} | label11 = License | data11 = {{{license|}}} | label12 = Other attribution | data12 = {{{other attribution|}}} }}<noinclude> {{documentation}} </noinclude> 17w9hv9iwsg0anyttkk7tytxrvovlzt 72778 72777 2026-06-30T21:16:28Z Robertsky 10424 1 versaun husi [[:en:Template:Infobox_Lua]] 72777 wikitext text/x-wiki {{Infobox | bodyclass = infobox-lua | bodystyle = {{#ifeq: {{{styled|}}} | yes | border: 2px ridge #CAE1FF; width: 30em; padding-bottom: 0px; | <!-- nothing --> }} {{{bodystyle|}}} | title = {{{title|{{PAGENAME}}}}} | above = {{#ifeq: {{{styled|}}} | yes | {{{name|{{SUBPAGENAME}}}}} | <!-- nothing --> }} | titlestyle = {{#ifeq: {{{styled|}}} | yes | font-size: 0.95em; padding: 0px; margin: 0px | <!-- nothing --> }} | abovestyle = {{#ifeq: {{{styled|}}} | yes | background:#83C5DA; padding: 3px 0px | <!-- nothing --> }} | labelstyle = {{#ifeq: {{{styled|}}} | yes | background:#DFEFFF; padding: 0px 7px; vertical-align: middle | <!-- nothing --> }} | datastyle = {{#ifeq: {{{styled|}}} | yes | padding: 5px 5px; | <!-- nothing --> }} | image = {{{image|}}} | caption = {{{caption|}}} | label1 = Description | data1 = {{{description|}}} | label2 = Author(s) | data2 = {{{author|}}} | label3 = Code source | data3 = {{#if:{{{code|}}}|{{#ifeq:{{{code|}}}|{{{title|{{PAGENAME}}}}}||[[Module:{{{code|}}}]]}}}} | label4 = Status | data4 = {{#switch: {{lc:{{{status|}}}}} | pre-alpha | prealpha | pa | experimental = <div style="background-color:orangered;color:white;text-align:center;padding:3px;">Experimental</div> | alpha | a = <div style="background-color:orange;color:white;text-align:center;padding:3px;">Alpha</div> | beta | b = <div style="background-color:yellow;color:black;text-align:center;padding:3px;">Beta</div> | release | r | general | g | stable = <div style="background-color:green;color:white;text-align:center;padding:3px;">Release</div> | broken | br | unstable = <div style="background-color:red;color:white;text-align:center;padding:3px;">Broken</div> | deprecated | d | defunct = <div style="background-color:darkred;color:white;text-align:center;padding:3px;">Deprecated</div> | #default = <div style="background-color:gray;color:white;text-align:center;padding:3px;">Unknown</div> }} | label5 = Testcase Status | data5 = {{#ifexist:Module:{{{source|{{{title|{{PAGENAME}}}}}}}}/testcases|{{#switch:{{#invoke:{{{source|{{{title|{{PAGENAME}}}}}}}}/testcases|run|displayMode=enum}} | fail = <div style="background-color:red;color:white;text-align:center;padding:3px;">[[{{TALKPAGENAME:Module:{{{source|{{{title|{{PAGENAME}}}}}}}}/testcases}}|<span style="background-color:red;color:white;text-align:center;">Errors</span>]]</div> | skipped = <div style="background-color:gray;color:black;text-align:center;padding:3px;">[[{{TALKPAGENAME:Module:{{{source|{{{title|{{PAGENAME}}}}}}}}/testcases}}|<span style="background-color:gray;color:black;text-align:center;">Skipped</span>]]</div> | success = <div style="background-color:green;color:white;text-align:center;padding:3px;">[[{{TALKPAGENAME:Module:{{{source|{{{title|{{PAGENAME}}}}}}}}/testcases}}|<span style="background-color:green;color:white;text-align:center;">Passed</span>]]</div> | #default = <div style="background-color:gray;color:white;text-align:center;padding:3px;">Unknown</div> }}}} | label6 = Version | data6 = {{{version|}}} | label7 = Updated | data7 = {{#time:F j, Y|{{{updated|{{REVISIONTIMESTAMP:Module:{{{source|{{{title|{{PAGENAME}}}}}}}}}}}}}}} ({{time ago|1={{{updated|{{REVISIONTIMESTAMP:Module:{{{source|{{{title|{{PAGENAME}}}}}}}}}}}}}}}) | label8 = Dependencies | data8 = {{{dependencies|}}} | label9 = Skins | data9 = {{{skins|}}} | label10 = Using code by | data10 = {{{using code by|}}} | label11 = License | data11 = {{{license|}}} | label12 = Other attribution | data12 = {{{other attribution|}}} }}<noinclude> {{documentation}} </noinclude> 17w9hv9iwsg0anyttkk7tytxrvovlzt MediaWiki:Scribunto-doc-page-show 8 8133 72779 2026-06-30T21:20:18Z Robertsky 10424 Pájina foun: '{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}|{{#ifexist:{{FULLPAGENAME}}/doc|{{FULLPAGENAME}}/doc|{{NAMESPACE}}:{{BASEPAGENAME}}/doc}}}} <span id="code"></span>' 72779 wikitext text/x-wiki {{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}|{{#ifexist:{{FULLPAGENAME}}/doc|{{FULLPAGENAME}}/doc|{{NAMESPACE}}:{{BASEPAGENAME}}/doc}}}} <span id="code"></span> 7fplmorpk9twqzsrrycdt42w0z1q962 MediaWiki:Scribunto-doc-page-does-not-exist 8 8134 72780 2026-06-30T21:20:48Z Robertsky 10424 Pájina foun: '{{#invoke:documentation|nonexistent|_content={{ {{#invoke:documentation|contentTitle}}}}}}' 72780 wikitext text/x-wiki {{#invoke:documentation|nonexistent|_content={{ {{#invoke:documentation|contentTitle}}}}}} k0diz3djp7h5ii35up05t7cttpbb5z9 Template:Infokaixa fatin-koabitasaun 10 8160 72835 2026-06-30T21:31:53Z Robertsky 10424 Pájina foun: '<includeonly>{{Infobox settlement/core | name = {{{naran|{{{name|}}}}}} | official_name = {{{naran_ofisial|{{{official_name|}}}}}} | native_name = {{{naran_lokal|{{{native_name|}}}}}} | native_name_lang = {{{lian_naran_lokal|{{{native_name_lang|}}}}}} | other_name = {{{naran_seluk|{{{other_name|}}}}}} | settlement_type = {{{tipu_fatin|{{{settlement_type|}}}}}} | short_description = {{{deskrisaun_badak|{{{short_description|}}}}}} | translit_lang1 = {{{transliterasaun_lian1|{{...' 72835 wikitext text/x-wiki <includeonly>{{Infobox settlement/core | name = {{{naran|{{{name|}}}}}} | official_name = {{{naran_ofisial|{{{official_name|}}}}}} | native_name = {{{naran_lokal|{{{native_name|}}}}}} | native_name_lang = {{{lian_naran_lokal|{{{native_name_lang|}}}}}} | other_name = {{{naran_seluk|{{{other_name|}}}}}} | settlement_type = {{{tipu_fatin|{{{settlement_type|}}}}}} | short_description = {{{deskrisaun_badak|{{{short_description|}}}}}} | translit_lang1 = {{{transliterasaun_lian1|{{{translit_lang1|}}}}}} | translit_lang1_type = {{{transliterasaun_lian1_tipu|{{{translit_lang1_type|}}}}}} | translit_lang1_info = {{{transliterasaun_lian1_info|{{{translit_lang1_info|}}}}}} | translit_lang1_type1 = {{{transliterasaun_lian1_tipu1|{{{translit_lang1_type1|}}}}}} | translit_lang1_info1 = {{{transliterasaun_lian1_info1|{{{translit_lang1_info1|}}}}}} | translit_lang1_type2 = {{{transliterasaun_lian1_tipu2|{{{translit_lang1_type2|}}}}}} | translit_lang1_info2 = {{{transliterasaun_lian1_info2|{{{translit_lang1_info2|}}}}}} | translit_lang1_type3 = {{{transliterasaun_lian1_tipu3|{{{translit_lang1_type3|}}}}}} | translit_lang1_info3 = {{{transliterasaun_lian1_info3|{{{translit_lang1_info3|}}}}}} | translit_lang1_type4 = {{{transliterasaun_lian1_tipu4|{{{translit_lang1_type4|}}}}}} | translit_lang1_info4 = {{{transliterasaun_lian1_info4|{{{translit_lang1_info4|}}}}}} | translit_lang1_type5 = {{{transliterasaun_lian1_tipu5|{{{translit_lang1_type5|}}}}}} | translit_lang1_info5 = {{{transliterasaun_lian1_info5|{{{translit_lang1_info5|}}}}}} | translit_lang1_type6 = {{{transliterasaun_lian1_tipu6|{{{translit_lang1_type6|}}}}}} | translit_lang1_info6 = {{{transliterasaun_lian1_info6|{{{translit_lang1_info6|}}}}}} | translit_lang2 = {{{transliterasaun_lian2|{{{translit_lang2|}}}}}} | translit_lang2_type = {{{transliterasaun_lian2_tipu|{{{translit_lang2_type|}}}}}} | translit_lang2_info = {{{transliterasaun_lian2_info|{{{translit_lang2_info|}}}}}} | translit_lang2_type1 = {{{transliterasaun_lian2_tipu1|{{{translit_lang2_type1|}}}}}} | translit_lang2_info1 = {{{transliterasaun_lian2_info1|{{{translit_lang2_info1|}}}}}} | translit_lang2_type2 = {{{transliterasaun_lian2_tipu2|{{{translit_lang2_type2|}}}}}} | translit_lang2_info2 = {{{transliterasaun_lian2_info2|{{{translit_lang2_info2|}}}}}} | translit_lang2_type3 = {{{transliterasaun_lian2_tipu3|{{{translit_lang2_type3|}}}}}} | translit_lang2_info3 = {{{transliterasaun_lian2_info3|{{{translit_lang2_info3|}}}}}} | translit_lang2_type4 = {{{transliterasaun_lian2_tipu4|{{{translit_lang2_type4|}}}}}} | translit_lang2_info4 = {{{transliterasaun_lian2_info4|{{{translit_lang2_info4|}}}}}} | translit_lang2_type5 = {{{transliterasaun_lian2_tipu5|{{{translit_lang2_type5|}}}}}} | translit_lang2_info5 = {{{transliterasaun_lian2_info5|{{{translit_lang2_info5|}}}}}} | translit_lang2_type6 = {{{transliterasaun_lian2_tipu6|{{{translit_lang2_type6|}}}}}} | translit_lang2_info6 = {{{transliterasaun_lian2_info6|{{{translit_lang2_info6|}}}}}} | image_skyline = {{{imajen_paisajen|{{{image_skyline|}}}}}} | imagesize = {{{tamanu_imajen|{{{imagesize|}}}}}} | image_alt = {{{alt_imajen|{{{image_alt|}}}}}} | image_caption = {{{legenda_imajen|{{{image_caption|}}}}}} | image_flag = {{{imajen_bandeira|{{{image_flag|}}}}}} | flag_size = {{{tamanu_bandeira|{{{flag_size|}}}}}} | flag_alt = {{{alt_bandeira|{{{flag_alt|}}}}}} | flag_border = {{{borda_bandeira|{{{flag_border|}}}}}} | flag_link = {{{ligasaun_bandeira|{{{flag_link|}}}}}} | image_seal = {{{imajen_selu|{{{image_seal|}}}}}} | seal_size = {{{tamanu_selu|{{{seal_size|}}}}}} | seal_alt = {{{alt_selu|{{{seal_alt|}}}}}} | seal_link = {{{ligasaun_selu|{{{seal_link|}}}}}} | seal_type = {{{tipu_selu|{{{seal_type|}}}}}} | seal_class = {{{klase_selu|{{{seal_class|}}}}}} | image_shield = {{{imajen_brasau|{{{image_shield|}}}}}} | shield_size = {{{tamanu_brasau|{{{shield_size|}}}}}} | shield_alt = {{{alt_brasau|{{{shield_alt|}}}}}} | shield_link = {{{ligasaun_brasau|{{{shield_link|}}}}}} | image_blank_emblem = {{{imajen_emblema|{{{image_blank_emblem|}}}}}} | blank_emblem_type = {{{tipu_emblema|{{{blank_emblem_type|}}}}}} | blank_emblem_size = {{{tamanu_emblema|{{{blank_emblem_size|}}}}}} | blank_emblem_alt = {{{alt_emblema|{{{blank_emblem_alt|}}}}}} | blank_emblem_link = {{{ligasaun_emblema|{{{blank_emblem_link|}}}}}} | etymology = {{{etimolojia|{{{etymology|}}}}}} | nickname = {{{naran_popular|{{{nickname|}}}}}} | nicknames = {{{naran_popular_sira|{{{nicknames|}}}}}} | motto = {{{lema|{{{motto|}}}}}} | mottoes = {{{lema_sira|{{{mottoes|}}}}}} | anthem = {{{hino|{{{anthem|}}}}}} | image_map = {{{imajen_mapa|{{{image_map|}}}}}} | mapsize = {{{tamanu_mapa|{{{mapsize|}}}}}} | map_alt = {{{alt_mapa|{{{map_alt|}}}}}} | map_caption = {{{legenda_mapa|{{{map_caption|}}}}}} | image_map1 = {{{imajen_mapa1|{{{image_map1|}}}}}} | mapsize1 = {{{tamanu_mapa1|{{{mapsize1|}}}}}} | map_alt1 = {{{alt_mapa1|{{{map_alt1|}}}}}} | map_caption1 = {{{legenda_mapa1|{{{map_caption1|}}}}}} | pushpin_map = {{{mapa_lokalizasaun|{{{pushpin_map|}}}}}} | pushpin_mapsize = {{{tamanu_mapa_lokalizasaun|{{{pushpin_mapsize|}}}}}} | pushpin_map_alt = {{{alt_mapa_lokalizasaun|{{{pushpin_map_alt|}}}}}} | pushpin_map_caption = {{{legenda_mapa_lokalizasaun|{{{pushpin_map_caption|}}}}}} | pushpin_map_caption_notsmall = {{{legenda_mapa_lokalizasaun_la_kiik|{{{pushpin_map_caption_notsmall|}}}}}} | pushpin_label = {{{label_mapa_lokalizasaun|{{{pushpin_label|}}}}}} | pushpin_label_position = {{{pozisaun_label_mapa_lokalizasaun|{{{pushpin_label_position|}}}}}} | pushpin_outside = {{{liur_mapa_lokalizasaun|{{{pushpin_outside|}}}}}} | pushpin_relief = {{{relefu_mapa_lokalizasaun|{{{pushpin_relief|}}}}}} | pushpin_image = {{{imajen_mapa_lokalizasaun|{{{pushpin_image|}}}}}} | pushpin_overlay = {{{kamada_mapa_lokalizasaun|{{{pushpin_overlay|}}}}}} | mapframe = {{{mapa_interativu|{{{mapframe|}}}}}} | coordinates = {{{koordenadas|{{{coordinates|}}}}}} | coord = {{{koord|{{{coord|}}}}}} | coor_pinpoint = {{{pontu_koordenadas|{{{coor_pinpoint|}}}}}} | coordinates_footnotes = {{{nota_koordenadas|{{{coordinates_footnotes|}}}}}} | grid_name = {{{naran_grid|{{{grid_name|}}}}}} | grid_position = {{{pozisaun_grid|{{{grid_position|}}}}}} | mapframe-coordinates = {{{mapframe_koordenadas|{{{mapframe-coordinates|}}}}}} | mapframe-coord = {{{mapframe_koord|{{{mapframe-coord|}}}}}} | mapframe-caption = {{{mapframe_legenda|{{{mapframe-caption|}}}}}} | mapframe-custom = {{{mapframe_custom|{{{mapframe-custom|}}}}}} | mapframe-id = {{{mapframe_id|{{{mapframe-id|}}}}}} | id = {{{id|{{{id|}}}}}} | qid = {{{qid|{{{qid|}}}}}} | mapframe-wikidata = {{{mapframe_wikidata|{{{mapframe-wikidata|}}}}}} | mapframe-point = {{{mapframe_pontu|{{{mapframe-point|}}}}}} | mapframe-shape = {{{mapframe_forma|{{{mapframe-shape|}}}}}} | mapframe-line = {{{mapframe_lina|{{{mapframe-line|}}}}}} | mapframe-geomask = {{{mapframe_geomask|{{{mapframe-geomask|}}}}}} | mapframe-switcher = {{{mapframe_switcher|{{{mapframe-switcher|}}}}}} | mapframe-frame-width = {{{mapframe_luan_frame|{{{mapframe-frame-width|}}}}}} | mapframe-width = {{{mapframe_luan|{{{mapframe-width|}}}}}} | mapframe-frame-height = {{{mapframe_aas_frame|{{{mapframe-frame-height|}}}}}} | mapframe-height = {{{mapframe_aas|{{{mapframe-height|}}}}}} | mapframe-shape-fill = {{{mapframe_kor_forma|{{{mapframe-shape-fill|}}}}}} | mapframe-shape-fill-opacity = {{{mapframe_opasidade_kor_forma|{{{mapframe-shape-fill-opacity|}}}}}} | mapframe-stroke-color = {{{mapframe_kor_lina|{{{mapframe-stroke-color|}}}}}} | mapframe-stroke-colour = {{{mapframe_kor_lina_uk|{{{mapframe-stroke-colour|}}}}}} | mapframe-line-stroke-color = {{{mapframe_kor_lina_line|{{{mapframe-line-stroke-color|}}}}}} | mapframe-line-stroke-colour = {{{mapframe_kor_lina_line_uk|{{{mapframe-line-stroke-colour|}}}}}} | mapframe-shape-stroke-color = {{{mapframe_kor_borda_forma|{{{mapframe-shape-stroke-color|}}}}}} | mapframe-shape-stroke-colour = {{{mapframe_kor_borda_forma_uk|{{{mapframe-shape-stroke-colour|}}}}}} | mapframe-stroke-width = {{{mapframe_luan_lina|{{{mapframe-stroke-width|}}}}}} | mapframe-shape-stroke-width = {{{mapframe_luan_borda_forma|{{{mapframe-shape-stroke-width|}}}}}} | mapframe-line-stroke-width = {{{mapframe_luan_lina_line|{{{mapframe-line-stroke-width|}}}}}} | mapframe-marker = {{{mapframe_marker|{{{mapframe-marker|}}}}}} | mapframe-marker-color = {{{mapframe_kor_marker|{{{mapframe-marker-color|}}}}}} | mapframe-marker-colour = {{{mapframe_kor_marker_uk|{{{mapframe-marker-colour|}}}}}} | mapframe-geomask-stroke-color = {{{mapframe_kor_borda_geomask|{{{mapframe-geomask-stroke-color|}}}}}} | mapframe-geomask-stroke-colour = {{{mapframe_kor_borda_geomask_uk|{{{mapframe-geomask-stroke-colour|}}}}}} | mapframe-geomask-stroke-width = {{{mapframe_luan_borda_geomask|{{{mapframe-geomask-stroke-width|}}}}}} | mapframe-geomask-fill = {{{mapframe_kor_geomask|{{{mapframe-geomask-fill|}}}}}} | mapframe-geomask-fill-opacity = {{{mapframe_opasidade_kor_geomask|{{{mapframe-geomask-fill-opacity|}}}}}} | mapframe-zoom = {{{mapframe_zoom|{{{mapframe-zoom|}}}}}} | mapframe-length_km = {{{mapframe_naruk_km|{{{mapframe-length_km|}}}}}} | mapframe-length_mi = {{{mapframe_naruk_mi|{{{mapframe-length_mi|}}}}}} | mapframe-area_km2 = {{{mapframe_area_km2|{{{mapframe-area_km2|}}}}}} | mapframe-area_mi2 = {{{mapframe_area_mi2|{{{mapframe-area_mi2|}}}}}} | mapframe-frame-coordinates = {{{mapframe_frame_koordenadas|{{{mapframe-frame-coordinates|}}}}}} | mapframe-frame-coord = {{{mapframe_frame_koord|{{{mapframe-frame-coord|}}}}}} | mapframe-type = {{{mapframe_tipu|{{{mapframe-type|}}}}}} | mapframe-population = {{{mapframe_populasaun|{{{mapframe-population|}}}}}} | subdivision_type = {{{tipu_subdivizaun|{{{subdivision_type|}}}}}} | subdivision_name = {{{naran_subdivizaun|{{{subdivision_name|}}}}}} | subdivision_type1 = {{{tipu_subdivizaun1|{{{subdivision_type1|}}}}}} | subdivision_name1 = {{{naran_subdivizaun1|{{{subdivision_name1|}}}}}} | subdivision_type2 = {{{tipu_subdivizaun2|{{{subdivision_type2|}}}}}} | subdivision_name2 = {{{naran_subdivizaun2|{{{subdivision_name2|}}}}}} | subdivision_type3 = {{{tipu_subdivizaun3|{{{subdivision_type3|}}}}}} | subdivision_name3 = {{{naran_subdivizaun3|{{{subdivision_name3|}}}}}} | subdivision_type4 = {{{tipu_subdivizaun4|{{{subdivision_type4|}}}}}} | subdivision_name4 = {{{naran_subdivizaun4|{{{subdivision_name4|}}}}}} | subdivision_type5 = {{{tipu_subdivizaun5|{{{subdivision_type5|}}}}}} | subdivision_name5 = {{{naran_subdivizaun5|{{{subdivision_name5|}}}}}} | subdivision_type6 = {{{tipu_subdivizaun6|{{{subdivision_type6|}}}}}} | subdivision_name6 = {{{naran_subdivizaun6|{{{subdivision_name6|}}}}}} | established_title = {{{titulu_estabelesimentu|{{{established_title|}}}}}} | established_date = {{{data_estabelesimentu|{{{established_date|}}}}}} | established_title1 = {{{titulu_estabelesimentu1|{{{established_title1|}}}}}} | established_date1 = {{{data_estabelesimentu1|{{{established_date1|}}}}}} | established_title2 = {{{titulu_estabelesimentu2|{{{established_title2|}}}}}} | established_date2 = {{{data_estabelesimentu2|{{{established_date2|}}}}}} | established_title3 = {{{titulu_estabelesimentu3|{{{established_title3|}}}}}} | established_date3 = {{{data_estabelesimentu3|{{{established_date3|}}}}}} | established_title4 = {{{titulu_estabelesimentu4|{{{established_title4|}}}}}} | established_date4 = {{{data_estabelesimentu4|{{{established_date4|}}}}}} | established_title5 = {{{titulu_estabelesimentu5|{{{established_title5|}}}}}} | established_date5 = {{{data_estabelesimentu5|{{{established_date5|}}}}}} | established_title6 = {{{titulu_estabelesimentu6|{{{established_title6|}}}}}} | established_date6 = {{{data_estabelesimentu6|{{{established_date6|}}}}}} | established_title7 = {{{titulu_estabelesimentu7|{{{established_title7|}}}}}} | established_date7 = {{{data_estabelesimentu7|{{{established_date7|}}}}}} | extinct_title = {{{titulu_extinta|{{{extinct_title|}}}}}} | extinct_date = {{{data_extinta|{{{extinct_date|}}}}}} | founder = {{{fundador|{{{founder|}}}}}} | named_for = {{{naran_husi|{{{named_for|}}}}}} | seat_type = {{{tipu_sede|{{{seat_type|}}}}}} | seat = {{{sede|{{{seat|}}}}}} | seat1_type = {{{tipu_sede1|{{{seat1_type|}}}}}} | seat1 = {{{sede1|{{{seat1|}}}}}} | parts_type = {{{tipu_parte|{{{parts_type|}}}}}} | parts_style = {{{estilu_parte|{{{parts_style|}}}}}} | parts = {{{parte_sira|{{{parts|}}}}}} | p1 = {{{parte1|{{{p1|}}}}}} | p2 = {{{parte2|{{{p2|}}}}}} | p3 = {{{parte3|{{{p3|}}}}}} | p4 = {{{parte4|{{{p4|}}}}}} | p5 = {{{parte5|{{{p5|}}}}}} | p6 = {{{parte6|{{{p6|}}}}}} | p7 = {{{parte7|{{{p7|}}}}}} | p8 = {{{parte8|{{{p8|}}}}}} | p9 = {{{parte9|{{{p9|}}}}}} | p10 = {{{parte10|{{{p10|}}}}}} | p11 = {{{parte11|{{{p11|}}}}}} | p12 = {{{parte12|{{{p12|}}}}}} | p13 = {{{parte13|{{{p13|}}}}}} | p14 = {{{parte14|{{{p14|}}}}}} | p15 = {{{parte15|{{{p15|}}}}}} | p16 = {{{parte16|{{{p16|}}}}}} | p17 = {{{parte17|{{{p17|}}}}}} | p18 = {{{parte18|{{{p18|}}}}}} | p19 = {{{parte19|{{{p19|}}}}}} | p20 = {{{parte20|{{{p20|}}}}}} | p21 = {{{parte21|{{{p21|}}}}}} | p22 = {{{parte22|{{{p22|}}}}}} | p23 = {{{parte23|{{{p23|}}}}}} | p24 = {{{parte24|{{{p24|}}}}}} | p25 = {{{parte25|{{{p25|}}}}}} | p26 = {{{parte26|{{{p26|}}}}}} | p27 = {{{parte27|{{{p27|}}}}}} | p28 = {{{parte28|{{{p28|}}}}}} | p29 = {{{parte29|{{{p29|}}}}}} | p30 = {{{parte30|{{{p30|}}}}}} | p31 = {{{parte31|{{{p31|}}}}}} | p32 = {{{parte32|{{{p32|}}}}}} | p33 = {{{parte33|{{{p33|}}}}}} | p34 = {{{parte34|{{{p34|}}}}}} | p35 = {{{parte35|{{{p35|}}}}}} | p36 = {{{parte36|{{{p36|}}}}}} | p37 = {{{parte37|{{{p37|}}}}}} | p38 = {{{parte38|{{{p38|}}}}}} | p39 = {{{parte39|{{{p39|}}}}}} | p40 = {{{parte40|{{{p40|}}}}}} | p41 = {{{parte41|{{{p41|}}}}}} | p42 = {{{parte42|{{{p42|}}}}}} | p43 = {{{parte43|{{{p43|}}}}}} | p44 = {{{parte44|{{{p44|}}}}}} | p45 = {{{parte45|{{{p45|}}}}}} | p46 = {{{parte46|{{{p46|}}}}}} | p47 = {{{parte47|{{{p47|}}}}}} | p48 = {{{parte48|{{{p48|}}}}}} | p49 = {{{parte49|{{{p49|}}}}}} | p50 = {{{parte50|{{{p50|}}}}}} | government_footnotes = {{{nota_governu|{{{government_footnotes|}}}}}} | government_type = {{{tipu_governu|{{{government_type|}}}}}} | governing_body = {{{orgaun_governu|{{{governing_body|}}}}}} | leader_party = {{{partidu_lider|{{{leader_party|}}}}}} | leader_title = {{{titulu_lider|{{{leader_title|}}}}}} | leader_name = {{{naran_lider|{{{leader_name|}}}}}} | leader_title1 = {{{titulu_lider1|{{{leader_title1|}}}}}} | leader_name1 = {{{naran_lider1|{{{leader_name1|}}}}}} | leader_party1 = {{{partidu_lider1|{{{leader_party1|}}}}}} | leader_title2 = {{{titulu_lider2|{{{leader_title2|}}}}}} | leader_name2 = {{{naran_lider2|{{{leader_name2|}}}}}} | leader_party2 = {{{partidu_lider2|{{{leader_party2|}}}}}} | leader_title3 = {{{titulu_lider3|{{{leader_title3|}}}}}} | leader_name3 = {{{naran_lider3|{{{leader_name3|}}}}}} | leader_party3 = {{{partidu_lider3|{{{leader_party3|}}}}}} | leader_title4 = {{{titulu_lider4|{{{leader_title4|}}}}}} | leader_name4 = {{{naran_lider4|{{{leader_name4|}}}}}} | leader_party4 = {{{partidu_lider4|{{{leader_party4|}}}}}} | total_type = {{{tipu_total|{{{total_type|}}}}}} | unit_pref = {{{unidade_preferida|{{{unit_pref|}}}}}} | area_footnotes = {{{nota_area|{{{area_footnotes|}}}}}} | dunam_link = {{{ligasaun_dunam|{{{dunam_link|}}}}}} | area_total_km2 = {{{area_total_km2|{{{area_total_km2|}}}}}} | area_total_sq_mi = {{{area_total_sq_mi|{{{area_total_sq_mi|}}}}}} | area_total_ha = {{{area_total_ha|{{{area_total_ha|}}}}}} | area_total_acre = {{{area_total_acre|{{{area_total_acre|}}}}}} | area_total_dunam = {{{area_total_dunam|{{{area_total_dunam|}}}}}} | area_land_km2 = {{{area_rai_km2|{{{area_land_km2|}}}}}} | area_land_sq_mi = {{{area_rai_sq_mi|{{{area_land_sq_mi|}}}}}} | area_land_ha = {{{area_rai_ha|{{{area_land_ha|}}}}}} | area_land_acre = {{{area_rai_acre|{{{area_land_acre|}}}}}} | area_land_dunam = {{{area_rai_dunam|{{{area_land_dunam|}}}}}} | area_water_km2 = {{{area_bee_km2|{{{area_water_km2|}}}}}} | area_water_sq_mi = {{{area_bee_sq_mi|{{{area_water_sq_mi|}}}}}} | area_water_ha = {{{area_bee_ha|{{{area_water_ha|}}}}}} | area_water_acre = {{{area_bee_acre|{{{area_water_acre|}}}}}} | area_water_dunam = {{{area_bee_dunam|{{{area_water_dunam|}}}}}} | area_urban_km2 = {{{area_urbana_km2|{{{area_urban_km2|}}}}}} | area_urban_sq_mi = {{{area_urbana_sq_mi|{{{area_urban_sq_mi|}}}}}} | area_urban_ha = {{{area_urbana_ha|{{{area_urban_ha|}}}}}} | area_urban_acre = {{{area_urbana_acre|{{{area_urban_acre|}}}}}} | area_urban_dunam = {{{area_urbana_dunam|{{{area_urban_dunam|}}}}}} | area_rural_km2 = {{{area_rural_km2|{{{area_rural_km2|}}}}}} | area_rural_sq_mi = {{{area_rural_sq_mi|{{{area_rural_sq_mi|}}}}}} | area_rural_ha = {{{area_rural_ha|{{{area_rural_ha|}}}}}} | area_rural_acre = {{{area_rural_acre|{{{area_rural_acre|}}}}}} | area_rural_dunam = {{{area_rural_dunam|{{{area_rural_dunam|}}}}}} | area_metro_km2 = {{{area_metropolitana_km2|{{{area_metro_km2|}}}}}} | area_metro_sq_mi = {{{area_metropolitana_sq_mi|{{{area_metro_sq_mi|}}}}}} | area_metro_ha = {{{area_metropolitana_ha|{{{area_metro_ha|}}}}}} | area_metro_acre = {{{area_metropolitana_acre|{{{area_metro_acre|}}}}}} | area_metro_dunam = {{{area_metropolitana_dunam|{{{area_metro_dunam|}}}}}} | area_water_percent = {{{persentajen_bee|{{{area_water_percent|}}}}}} | area_urban_footnotes = {{{nota_area_urbana|{{{area_urban_footnotes|}}}}}} | area_rural_footnotes = {{{nota_area_rural|{{{area_rural_footnotes|}}}}}} | area_metro_footnotes = {{{nota_area_metropolitana|{{{area_metro_footnotes|}}}}}} | area_rank = {{{rank_area|{{{area_rank|}}}}}} | area_note = {{{nota_area|{{{area_note|}}}}}} | area_blank1_title = {{{titulu_area_seluk1|{{{area_blank1_title|}}}}}} | area_blank1_km2 = {{{area_seluk1_km2|{{{area_blank1_km2|}}}}}} | area_blank1_sq_mi = {{{area_seluk1_sq_mi|{{{area_blank1_sq_mi|}}}}}} | area_blank1_ha = {{{area_seluk1_ha|{{{area_blank1_ha|}}}}}} | area_blank1_acre = {{{area_seluk1_acre|{{{area_blank1_acre|}}}}}} | area_blank1_dunam = {{{area_seluk1_dunam|{{{area_blank1_dunam|}}}}}} | area_blank2_title = {{{titulu_area_seluk2|{{{area_blank2_title|}}}}}} | area_blank2_km2 = {{{area_seluk2_km2|{{{area_blank2_km2|}}}}}} | area_blank2_sq_mi = {{{area_seluk2_sq_mi|{{{area_blank2_sq_mi|}}}}}} | area_blank2_ha = {{{area_seluk2_ha|{{{area_blank2_ha|}}}}}} | area_blank2_acre = {{{area_seluk2_acre|{{{area_blank2_acre|}}}}}} | area_blank2_dunam = {{{area_seluk2_dunam|{{{area_blank2_dunam|}}}}}} | dimensions_footnotes = {{{nota_dimensaun|{{{dimensions_footnotes|}}}}}} | length_km = {{{naruk_km|{{{length_km|}}}}}} | length_mi = {{{naruk_mi|{{{length_mi|}}}}}} | width_km = {{{luan_km|{{{width_km|}}}}}} | width_mi = {{{luan_mi|{{{width_mi|}}}}}} | elevation_footnotes = {{{nota_altitude|{{{elevation_footnotes|}}}}}} | elevation_m = {{{altitude_m|{{{elevation_m|}}}}}} | elevation_ft = {{{altitude_ft|{{{elevation_ft|}}}}}} | elevation_point = {{{pontu_altitude|{{{elevation_point|}}}}}} | elevation_max_footnotes = {{{nota_altitude_max|{{{elevation_max_footnotes|}}}}}} | elevation_max_m = {{{altitude_max_m|{{{elevation_max_m|}}}}}} | elevation_max_ft = {{{altitude_max_ft|{{{elevation_max_ft|}}}}}} | elevation_max_point = {{{pontu_altitude_max|{{{elevation_max_point|}}}}}} | elevation_max_rank = {{{rank_altitude_max|{{{elevation_max_rank|}}}}}} | elevation_min_footnotes = {{{nota_altitude_min|{{{elevation_min_footnotes|}}}}}} | elevation_min_m = {{{altitude_min_m|{{{elevation_min_m|}}}}}} | elevation_min_ft = {{{altitude_min_ft|{{{elevation_min_ft|}}}}}} | elevation_min_point = {{{pontu_altitude_min|{{{elevation_min_point|}}}}}} | elevation_min_rank = {{{rank_altitude_min|{{{elevation_min_rank|}}}}}} | population_footnotes = {{{nota_populasaun|{{{population_footnotes|}}}}}} | population_as_of = {{{data_populasaun|{{{population_as_of|}}}}}} | population_total = {{{populasaun_total|{{{population_total|}}}}}} | pop_est_footnotes = {{{nota_estimasaun_populasaun|{{{pop_est_footnotes|}}}}}} | pop_est_as_of = {{{data_estimasaun_populasaun|{{{pop_est_as_of|}}}}}} | population_est = {{{estimasaun_populasaun|{{{population_est|}}}}}} | population_rank = {{{rank_populasaun|{{{population_rank|}}}}}} | population_density_km2 = {{{densidade_populasaun_km2|{{{population_density_km2|}}}}}} | population_density_sq_mi = {{{densidade_populasaun_sq_mi|{{{population_density_sq_mi|}}}}}} | population_urban_footnotes = {{{nota_populasaun_urbana|{{{population_urban_footnotes|}}}}}} | population_urban = {{{populasaun_urbana|{{{population_urban|}}}}}} | population_density_urban_km2 = {{{densidade_populasaun_urbana_km2|{{{population_density_urban_km2|}}}}}} | population_density_urban_sq_mi = {{{densidade_populasaun_urbana_sq_mi|{{{population_density_urban_sq_mi|}}}}}} | population_rural_footnotes = {{{nota_populasaun_rural|{{{population_rural_footnotes|}}}}}} | population_rural = {{{populasaun_rural|{{{population_rural|}}}}}} | population_density_rural_km2 = {{{densidade_populasaun_rural_km2|{{{population_density_rural_km2|}}}}}} | population_density_rural_sq_mi = {{{densidade_populasaun_rural_sq_mi|{{{population_density_rural_sq_mi|}}}}}} | population_metro_footnotes = {{{nota_populasaun_metropolitana|{{{population_metro_footnotes|}}}}}} | population_metro = {{{populasaun_metropolitana|{{{population_metro|}}}}}} | population_density_metro_km2 = {{{densidade_populasaun_metropolitana_km2|{{{population_density_metro_km2|}}}}}} | population_density_metro_sq_mi = {{{densidade_populasaun_metropolitana_sq_mi|{{{population_density_metro_sq_mi|}}}}}} | population_density_rank = {{{rank_densidade_populasaun|{{{population_density_rank|}}}}}} | population_blank1_title = {{{titulu_populasaun_seluk1|{{{population_blank1_title|}}}}}} | population_blank1 = {{{populasaun_seluk1|{{{population_blank1|}}}}}} | population_density_blank1_km2 = {{{densidade_populasaun_seluk1_km2|{{{population_density_blank1_km2|}}}}}} | population_density_blank1_sq_mi = {{{densidade_populasaun_seluk1_sq_mi|{{{population_density_blank1_sq_mi|}}}}}} | population_blank2_title = {{{titulu_populasaun_seluk2|{{{population_blank2_title|}}}}}} | population_blank2 = {{{populasaun_seluk2|{{{population_blank2|}}}}}} | population_density_blank2_km2 = {{{densidade_populasaun_seluk2_km2|{{{population_density_blank2_km2|}}}}}} | population_density_blank2_sq_mi = {{{densidade_populasaun_seluk2_sq_mi|{{{population_density_blank2_sq_mi|}}}}}} | population_demonym = {{{demonimu_populasaun|{{{population_demonym|}}}}}} | population_demonyms = {{{demonimu_populasaun_sira|{{{population_demonyms|}}}}}} | population_note = {{{nota_populasaun|{{{population_note|}}}}}} | demographics_type1 = {{{tipu_demografia1|{{{demographics_type1|}}}}}} | demographics1_footnotes = {{{nota_demografia1|{{{demographics1_footnotes|}}}}}} | demographics1_title1 = {{{titulu_demografia1_1|{{{demographics1_title1|}}}}}} | demographics1_info1 = {{{info_demografia1_1|{{{demographics1_info1|}}}}}} | demographics1_title2 = {{{titulu_demografia1_2|{{{demographics1_title2|}}}}}} | demographics1_info2 = {{{info_demografia1_2|{{{demographics1_info2|}}}}}} | demographics1_title3 = {{{titulu_demografia1_3|{{{demographics1_title3|}}}}}} | demographics1_info3 = {{{info_demografia1_3|{{{demographics1_info3|}}}}}} | demographics1_title4 = {{{titulu_demografia1_4|{{{demographics1_title4|}}}}}} | demographics1_info4 = {{{info_demografia1_4|{{{demographics1_info4|}}}}}} | demographics1_title5 = {{{titulu_demografia1_5|{{{demographics1_title5|}}}}}} | demographics1_info5 = {{{info_demografia1_5|{{{demographics1_info5|}}}}}} | demographics1_title6 = {{{titulu_demografia1_6|{{{demographics1_title6|}}}}}} | demographics1_info6 = {{{info_demografia1_6|{{{demographics1_info6|}}}}}} | demographics1_title7 = {{{titulu_demografia1_7|{{{demographics1_title7|}}}}}} | demographics1_info7 = {{{info_demografia1_7|{{{demographics1_info7|}}}}}} | demographics_type2 = {{{tipu_demografia2|{{{demographics_type2|}}}}}} | demographics2_footnotes = {{{nota_demografia2|{{{demographics2_footnotes|}}}}}} | demographics2_title1 = {{{titulu_demografia2_1|{{{demographics2_title1|}}}}}} | demographics2_info1 = {{{info_demografia2_1|{{{demographics2_info1|}}}}}} | demographics2_title2 = {{{titulu_demografia2_2|{{{demographics2_title2|}}}}}} | demographics2_info2 = {{{info_demografia2_2|{{{demographics2_info2|}}}}}} | demographics2_title3 = {{{titulu_demografia2_3|{{{demographics2_title3|}}}}}} | demographics2_info3 = {{{info_demografia2_3|{{{demographics2_info3|}}}}}} | demographics2_title4 = {{{titulu_demografia2_4|{{{demographics2_title4|}}}}}} | demographics2_info4 = {{{info_demografia2_4|{{{demographics2_info4|}}}}}} | demographics2_title5 = {{{titulu_demografia2_5|{{{demographics2_title5|}}}}}} | demographics2_info5 = {{{info_demografia2_5|{{{demographics2_info5|}}}}}} | demographics2_title6 = {{{titulu_demografia2_6|{{{demographics2_title6|}}}}}} | demographics2_info6 = {{{info_demografia2_6|{{{demographics2_info6|}}}}}} | demographics2_title7 = {{{titulu_demografia2_7|{{{demographics2_title7|}}}}}} | demographics2_info7 = {{{info_demografia2_7|{{{demographics2_info7|}}}}}} | demographics2_title8 = {{{titulu_demografia2_8|{{{demographics2_title8|}}}}}} | demographics2_info8 = {{{info_demografia2_8|{{{demographics2_info8|}}}}}} | demographics2_title9 = {{{titulu_demografia2_9|{{{demographics2_title9|}}}}}} | demographics2_info9 = {{{info_demografia2_9|{{{demographics2_info9|}}}}}} | demographics2_title10 = {{{titulu_demografia2_10|{{{demographics2_title10|}}}}}} | demographics2_info10 = {{{info_demografia2_10|{{{demographics2_info10|}}}}}} | timezone_link = {{{ligasaun_zona_tempu|{{{timezone_link|}}}}}} | timezone = {{{zona_tempu|{{{timezone|}}}}}} | utc_offset = {{{diferensa_utc|{{{utc_offset|}}}}}} | timezone_DST = {{{zona_tempu_DST|{{{timezone_DST|}}}}}} | utc_offset_DST = {{{diferensa_utc_DST|{{{utc_offset_DST|}}}}}} | timezone1_location = {{{fatin_zona_tempu1|{{{timezone1_location|}}}}}} | timezone1 = {{{zona_tempu1|{{{timezone1|}}}}}} | utc_offset1 = {{{diferensa_utc1|{{{utc_offset1|}}}}}} | timezone1_DST = {{{zona_tempu1_DST|{{{timezone1_DST|}}}}}} | utc_offset1_DST = {{{diferensa_utc1_DST|{{{utc_offset1_DST|}}}}}} | timezone2_location = {{{fatin_zona_tempu2|{{{timezone2_location|}}}}}} | timezone2 = {{{zona_tempu2|{{{timezone2|}}}}}} | utc_offset2 = {{{diferensa_utc2|{{{utc_offset2|}}}}}} | timezone2_DST = {{{zona_tempu2_DST|{{{timezone2_DST|}}}}}} | utc_offset2_DST = {{{diferensa_utc2_DST|{{{utc_offset2_DST|}}}}}} | timezone3_location = {{{fatin_zona_tempu3|{{{timezone3_location|}}}}}} | timezone3 = {{{zona_tempu3|{{{timezone3|}}}}}} | utc_offset3 = {{{diferensa_utc3|{{{utc_offset3|}}}}}} | timezone3_DST = {{{zona_tempu3_DST|{{{timezone3_DST|}}}}}} | utc_offset3_DST = {{{diferensa_utc3_DST|{{{utc_offset3_DST|}}}}}} | timezone4_location = {{{fatin_zona_tempu4|{{{timezone4_location|}}}}}} | timezone4 = {{{zona_tempu4|{{{timezone4|}}}}}} | utc_offset4 = {{{diferensa_utc4|{{{utc_offset4|}}}}}} | timezone4_DST = {{{zona_tempu4_DST|{{{timezone4_DST|}}}}}} | utc_offset4_DST = {{{diferensa_utc4_DST|{{{utc_offset4_DST|}}}}}} | timezone5_location = {{{fatin_zona_tempu5|{{{timezone5_location|}}}}}} | timezone5 = {{{zona_tempu5|{{{timezone5|}}}}}} | utc_offset5 = {{{diferensa_utc5|{{{utc_offset5|}}}}}} | timezone5_DST = {{{zona_tempu5_DST|{{{timezone5_DST|}}}}}} | utc_offset5_DST = {{{diferensa_utc5_DST|{{{utc_offset5_DST|}}}}}} | postal_code_type = {{{tipu_kodigu_postal|{{{postal_code_type|}}}}}} | postal_code = {{{kodigu_postal|{{{postal_code|}}}}}} | postal2_code_type = {{{tipu_kodigu_postal2|{{{postal2_code_type|}}}}}} | postal2_code = {{{kodigu_postal2|{{{postal2_code|}}}}}} | area_code_type = {{{tipu_kodigu_area|{{{area_code_type|}}}}}} | area_code = {{{kodigu_area|{{{area_code|}}}}}} | area_codes = {{{kodigu_area_sira|{{{area_codes|}}}}}} | geocode = {{{geokodigu|{{{geocode|}}}}}} | iso_code = {{{kodigu_iso|{{{iso_code|}}}}}} | registration_plate_type = {{{tipu_plaka_veiklu|{{{registration_plate_type|}}}}}} | registration_plate = {{{plaka_veiklu|{{{registration_plate|}}}}}} | code1_name = {{{naran_kodigu1|{{{code1_name|}}}}}} | code1_info = {{{info_kodigu1|{{{code1_info|}}}}}} | code2_name = {{{naran_kodigu2|{{{code2_name|}}}}}} | code2_info = {{{info_kodigu2|{{{code2_info|}}}}}} | blank_name = {{{naran_kampu|{{{blank_name|}}}}}} | blank_info = {{{info_kampu|{{{blank_info|}}}}}} | blank1_name = {{{naran_kampu1|{{{blank1_name|}}}}}} | blank1_info = {{{info_kampu1|{{{blank1_info|}}}}}} | blank2_name = {{{naran_kampu2|{{{blank2_name|}}}}}} | blank2_info = {{{info_kampu2|{{{blank2_info|}}}}}} | blank_name_sec1 = {{{naran_kampu_sec1|{{{blank_name_sec1|}}}}}} | blank_info_sec1 = {{{info_kampu_sec1|{{{blank_info_sec1|}}}}}} | blank1_name_sec1 = {{{naran_kampu1_sec1|{{{blank1_name_sec1|}}}}}} | blank1_info_sec1 = {{{info_kampu1_sec1|{{{blank1_info_sec1|}}}}}} | blank2_name_sec1 = {{{naran_kampu2_sec1|{{{blank2_name_sec1|}}}}}} | blank2_info_sec1 = {{{info_kampu2_sec1|{{{blank2_info_sec1|}}}}}} | blank3_name_sec1 = {{{naran_kampu3_sec1|{{{blank3_name_sec1|}}}}}} | blank3_info_sec1 = {{{info_kampu3_sec1|{{{blank3_info_sec1|}}}}}} | blank4_name_sec1 = {{{naran_kampu4_sec1|{{{blank4_name_sec1|}}}}}} | blank4_info_sec1 = {{{info_kampu4_sec1|{{{blank4_info_sec1|}}}}}} | blank5_name_sec1 = {{{naran_kampu5_sec1|{{{blank5_name_sec1|}}}}}} | blank5_info_sec1 = {{{info_kampu5_sec1|{{{blank5_info_sec1|}}}}}} | blank6_name_sec1 = {{{naran_kampu6_sec1|{{{blank6_name_sec1|}}}}}} | blank6_info_sec1 = {{{info_kampu6_sec1|{{{blank6_info_sec1|}}}}}} | blank7_name_sec1 = {{{naran_kampu7_sec1|{{{blank7_name_sec1|}}}}}} | blank7_info_sec1 = {{{info_kampu7_sec1|{{{blank7_info_sec1|}}}}}} | blank_name_sec2 = {{{naran_kampu_sec2|{{{blank_name_sec2|}}}}}} | blank_info_sec2 = {{{info_kampu_sec2|{{{blank_info_sec2|}}}}}} | blank1_name_sec2 = {{{naran_kampu1_sec2|{{{blank1_name_sec2|}}}}}} | blank1_info_sec2 = {{{info_kampu1_sec2|{{{blank1_info_sec2|}}}}}} | blank2_name_sec2 = {{{naran_kampu2_sec2|{{{blank2_name_sec2|}}}}}} | blank2_info_sec2 = {{{info_kampu2_sec2|{{{blank2_info_sec2|}}}}}} | blank3_name_sec2 = {{{naran_kampu3_sec2|{{{blank3_name_sec2|}}}}}} | blank3_info_sec2 = {{{info_kampu3_sec2|{{{blank3_info_sec2|}}}}}} | blank4_name_sec2 = {{{naran_kampu4_sec2|{{{blank4_name_sec2|}}}}}} | blank4_info_sec2 = {{{info_kampu4_sec2|{{{blank4_info_sec2|}}}}}} | blank5_name_sec2 = {{{naran_kampu5_sec2|{{{blank5_name_sec2|}}}}}} | blank5_info_sec2 = {{{info_kampu5_sec2|{{{blank5_info_sec2|}}}}}} | blank6_name_sec2 = {{{naran_kampu6_sec2|{{{blank6_name_sec2|}}}}}} | blank6_info_sec2 = {{{info_kampu6_sec2|{{{blank6_info_sec2|}}}}}} | blank7_name_sec2 = {{{naran_kampu7_sec2|{{{blank7_name_sec2|}}}}}} | blank7_info_sec2 = {{{info_kampu7_sec2|{{{blank7_info_sec2|}}}}}} | website = {{{sitiu_web|{{{website|}}}}}} | module = {{{modulu|{{{module|}}}}}} | footnotes = {{{nota_sira|{{{footnotes|}}}}}} | child = {{{labarik|{{{child|}}}}}} | embed = {{{hatama|{{{embed|}}}}}} }}</includeonly><noinclude>{{Documentation}}</noinclude> lqxhq8z2ypiy93fcxzxeq1h9tolu8g4 72837 72835 2026-06-30T21:39:07Z Robertsky 10424 72837 wikitext text/x-wiki <includeonly>{{Infobox fatin-koabitasaun/core | name = {{{naran|{{{name|}}}}}} | official_name = {{{naran_ofisial|{{{official_name|}}}}}} | native_name = {{{naran_lokal|{{{native_name|}}}}}} | native_name_lang = {{{lian_naran_lokal|{{{native_name_lang|}}}}}} | other_name = {{{naran_seluk|{{{other_name|}}}}}} | settlement_type = {{{tipu_fatin|{{{settlement_type|}}}}}} | short_description = {{{deskrisaun_badak|{{{short_description|}}}}}} | translit_lang1 = {{{transliterasaun_lian1|{{{translit_lang1|}}}}}} | translit_lang1_type = {{{transliterasaun_lian1_tipu|{{{translit_lang1_type|}}}}}} | translit_lang1_info = {{{transliterasaun_lian1_info|{{{translit_lang1_info|}}}}}} | translit_lang1_type1 = {{{transliterasaun_lian1_tipu1|{{{translit_lang1_type1|}}}}}} | translit_lang1_info1 = {{{transliterasaun_lian1_info1|{{{translit_lang1_info1|}}}}}} | translit_lang1_type2 = {{{transliterasaun_lian1_tipu2|{{{translit_lang1_type2|}}}}}} | translit_lang1_info2 = {{{transliterasaun_lian1_info2|{{{translit_lang1_info2|}}}}}} | translit_lang1_type3 = {{{transliterasaun_lian1_tipu3|{{{translit_lang1_type3|}}}}}} | translit_lang1_info3 = {{{transliterasaun_lian1_info3|{{{translit_lang1_info3|}}}}}} | translit_lang1_type4 = {{{transliterasaun_lian1_tipu4|{{{translit_lang1_type4|}}}}}} | translit_lang1_info4 = {{{transliterasaun_lian1_info4|{{{translit_lang1_info4|}}}}}} | translit_lang1_type5 = {{{transliterasaun_lian1_tipu5|{{{translit_lang1_type5|}}}}}} | translit_lang1_info5 = {{{transliterasaun_lian1_info5|{{{translit_lang1_info5|}}}}}} | translit_lang1_type6 = {{{transliterasaun_lian1_tipu6|{{{translit_lang1_type6|}}}}}} | translit_lang1_info6 = {{{transliterasaun_lian1_info6|{{{translit_lang1_info6|}}}}}} | translit_lang2 = {{{transliterasaun_lian2|{{{translit_lang2|}}}}}} | translit_lang2_type = {{{transliterasaun_lian2_tipu|{{{translit_lang2_type|}}}}}} | translit_lang2_info = {{{transliterasaun_lian2_info|{{{translit_lang2_info|}}}}}} | translit_lang2_type1 = {{{transliterasaun_lian2_tipu1|{{{translit_lang2_type1|}}}}}} | translit_lang2_info1 = {{{transliterasaun_lian2_info1|{{{translit_lang2_info1|}}}}}} | translit_lang2_type2 = {{{transliterasaun_lian2_tipu2|{{{translit_lang2_type2|}}}}}} | translit_lang2_info2 = {{{transliterasaun_lian2_info2|{{{translit_lang2_info2|}}}}}} | translit_lang2_type3 = {{{transliterasaun_lian2_tipu3|{{{translit_lang2_type3|}}}}}} | translit_lang2_info3 = {{{transliterasaun_lian2_info3|{{{translit_lang2_info3|}}}}}} | translit_lang2_type4 = {{{transliterasaun_lian2_tipu4|{{{translit_lang2_type4|}}}}}} | translit_lang2_info4 = {{{transliterasaun_lian2_info4|{{{translit_lang2_info4|}}}}}} | translit_lang2_type5 = {{{transliterasaun_lian2_tipu5|{{{translit_lang2_type5|}}}}}} | translit_lang2_info5 = {{{transliterasaun_lian2_info5|{{{translit_lang2_info5|}}}}}} | translit_lang2_type6 = {{{transliterasaun_lian2_tipu6|{{{translit_lang2_type6|}}}}}} | translit_lang2_info6 = {{{transliterasaun_lian2_info6|{{{translit_lang2_info6|}}}}}} | image_skyline = {{{imajen_paisajen|{{{image_skyline|}}}}}} | imagesize = {{{tamanu_imajen|{{{imagesize|}}}}}} | image_alt = {{{alt_imajen|{{{image_alt|}}}}}} | image_caption = {{{legenda_imajen|{{{image_caption|}}}}}} | image_flag = {{{imajen_bandeira|{{{image_flag|}}}}}} | flag_size = {{{tamanu_bandeira|{{{flag_size|}}}}}} | flag_alt = {{{alt_bandeira|{{{flag_alt|}}}}}} | flag_border = {{{borda_bandeira|{{{flag_border|}}}}}} | flag_link = {{{ligasaun_bandeira|{{{flag_link|}}}}}} | image_seal = {{{imajen_selu|{{{image_seal|}}}}}} | seal_size = {{{tamanu_selu|{{{seal_size|}}}}}} | seal_alt = {{{alt_selu|{{{seal_alt|}}}}}} | seal_link = {{{ligasaun_selu|{{{seal_link|}}}}}} | seal_type = {{{tipu_selu|{{{seal_type|}}}}}} | seal_class = {{{klase_selu|{{{seal_class|}}}}}} | image_shield = {{{imajen_brasau|{{{image_shield|}}}}}} | shield_size = {{{tamanu_brasau|{{{shield_size|}}}}}} | shield_alt = {{{alt_brasau|{{{shield_alt|}}}}}} | shield_link = {{{ligasaun_brasau|{{{shield_link|}}}}}} | image_blank_emblem = {{{imajen_emblema|{{{image_blank_emblem|}}}}}} | blank_emblem_type = {{{tipu_emblema|{{{blank_emblem_type|}}}}}} | blank_emblem_size = {{{tamanu_emblema|{{{blank_emblem_size|}}}}}} | blank_emblem_alt = {{{alt_emblema|{{{blank_emblem_alt|}}}}}} | blank_emblem_link = {{{ligasaun_emblema|{{{blank_emblem_link|}}}}}} | etymology = {{{etimolojia|{{{etymology|}}}}}} | nickname = {{{naran_popular|{{{nickname|}}}}}} | nicknames = {{{naran_popular_sira|{{{nicknames|}}}}}} | motto = {{{lema|{{{motto|}}}}}} | mottoes = {{{lema_sira|{{{mottoes|}}}}}} | anthem = {{{hino|{{{anthem|}}}}}} | image_map = {{{imajen_mapa|{{{image_map|}}}}}} | mapsize = {{{tamanu_mapa|{{{mapsize|}}}}}} | map_alt = {{{alt_mapa|{{{map_alt|}}}}}} | map_caption = {{{legenda_mapa|{{{map_caption|}}}}}} | image_map1 = {{{imajen_mapa1|{{{image_map1|}}}}}} | mapsize1 = {{{tamanu_mapa1|{{{mapsize1|}}}}}} | map_alt1 = {{{alt_mapa1|{{{map_alt1|}}}}}} | map_caption1 = {{{legenda_mapa1|{{{map_caption1|}}}}}} | pushpin_map = {{{mapa_lokalizasaun|{{{pushpin_map|}}}}}} | pushpin_mapsize = {{{tamanu_mapa_lokalizasaun|{{{pushpin_mapsize|}}}}}} | pushpin_map_alt = {{{alt_mapa_lokalizasaun|{{{pushpin_map_alt|}}}}}} | pushpin_map_caption = {{{legenda_mapa_lokalizasaun|{{{pushpin_map_caption|}}}}}} | pushpin_map_caption_notsmall = {{{legenda_mapa_lokalizasaun_la_kiik|{{{pushpin_map_caption_notsmall|}}}}}} | pushpin_label = {{{label_mapa_lokalizasaun|{{{pushpin_label|}}}}}} | pushpin_label_position = {{{pozisaun_label_mapa_lokalizasaun|{{{pushpin_label_position|}}}}}} | pushpin_outside = {{{liur_mapa_lokalizasaun|{{{pushpin_outside|}}}}}} | pushpin_relief = {{{relefu_mapa_lokalizasaun|{{{pushpin_relief|}}}}}} | pushpin_image = {{{imajen_mapa_lokalizasaun|{{{pushpin_image|}}}}}} | pushpin_overlay = {{{kamada_mapa_lokalizasaun|{{{pushpin_overlay|}}}}}} | mapframe = {{{mapa_interativu|{{{mapframe|}}}}}} | coordinates = {{{koordenadas|{{{coordinates|}}}}}} | coord = {{{koord|{{{coord|}}}}}} | coor_pinpoint = {{{pontu_koordenadas|{{{coor_pinpoint|}}}}}} | coordinates_footnotes = {{{nota_koordenadas|{{{coordinates_footnotes|}}}}}} | grid_name = {{{naran_grid|{{{grid_name|}}}}}} | grid_position = {{{pozisaun_grid|{{{grid_position|}}}}}} | mapframe-coordinates = {{{mapframe_koordenadas|{{{mapframe-coordinates|}}}}}} | mapframe-coord = {{{mapframe_koord|{{{mapframe-coord|}}}}}} | mapframe-caption = {{{mapframe_legenda|{{{mapframe-caption|}}}}}} | mapframe-custom = {{{mapframe_custom|{{{mapframe-custom|}}}}}} | mapframe-id = {{{mapframe_id|{{{mapframe-id|}}}}}} | id = {{{id|{{{id|}}}}}} | qid = {{{qid|{{{qid|}}}}}} | mapframe-wikidata = {{{mapframe_wikidata|{{{mapframe-wikidata|}}}}}} | mapframe-point = {{{mapframe_pontu|{{{mapframe-point|}}}}}} | mapframe-shape = {{{mapframe_forma|{{{mapframe-shape|}}}}}} | mapframe-line = {{{mapframe_lina|{{{mapframe-line|}}}}}} | mapframe-geomask = {{{mapframe_geomask|{{{mapframe-geomask|}}}}}} | mapframe-switcher = {{{mapframe_switcher|{{{mapframe-switcher|}}}}}} | mapframe-frame-width = {{{mapframe_luan_frame|{{{mapframe-frame-width|}}}}}} | mapframe-width = {{{mapframe_luan|{{{mapframe-width|}}}}}} | mapframe-frame-height = {{{mapframe_aas_frame|{{{mapframe-frame-height|}}}}}} | mapframe-height = {{{mapframe_aas|{{{mapframe-height|}}}}}} | mapframe-shape-fill = {{{mapframe_kor_forma|{{{mapframe-shape-fill|}}}}}} | mapframe-shape-fill-opacity = {{{mapframe_opasidade_kor_forma|{{{mapframe-shape-fill-opacity|}}}}}} | mapframe-stroke-color = {{{mapframe_kor_lina|{{{mapframe-stroke-color|}}}}}} | mapframe-stroke-colour = {{{mapframe_kor_lina_uk|{{{mapframe-stroke-colour|}}}}}} | mapframe-line-stroke-color = {{{mapframe_kor_lina_line|{{{mapframe-line-stroke-color|}}}}}} | mapframe-line-stroke-colour = {{{mapframe_kor_lina_line_uk|{{{mapframe-line-stroke-colour|}}}}}} | mapframe-shape-stroke-color = {{{mapframe_kor_borda_forma|{{{mapframe-shape-stroke-color|}}}}}} | mapframe-shape-stroke-colour = {{{mapframe_kor_borda_forma_uk|{{{mapframe-shape-stroke-colour|}}}}}} | mapframe-stroke-width = {{{mapframe_luan_lina|{{{mapframe-stroke-width|}}}}}} | mapframe-shape-stroke-width = {{{mapframe_luan_borda_forma|{{{mapframe-shape-stroke-width|}}}}}} | mapframe-line-stroke-width = {{{mapframe_luan_lina_line|{{{mapframe-line-stroke-width|}}}}}} | mapframe-marker = {{{mapframe_marker|{{{mapframe-marker|}}}}}} | mapframe-marker-color = {{{mapframe_kor_marker|{{{mapframe-marker-color|}}}}}} | mapframe-marker-colour = {{{mapframe_kor_marker_uk|{{{mapframe-marker-colour|}}}}}} | mapframe-geomask-stroke-color = {{{mapframe_kor_borda_geomask|{{{mapframe-geomask-stroke-color|}}}}}} | mapframe-geomask-stroke-colour = {{{mapframe_kor_borda_geomask_uk|{{{mapframe-geomask-stroke-colour|}}}}}} | mapframe-geomask-stroke-width = {{{mapframe_luan_borda_geomask|{{{mapframe-geomask-stroke-width|}}}}}} | mapframe-geomask-fill = {{{mapframe_kor_geomask|{{{mapframe-geomask-fill|}}}}}} | mapframe-geomask-fill-opacity = {{{mapframe_opasidade_kor_geomask|{{{mapframe-geomask-fill-opacity|}}}}}} | mapframe-zoom = {{{mapframe_zoom|{{{mapframe-zoom|}}}}}} | mapframe-length_km = {{{mapframe_naruk_km|{{{mapframe-length_km|}}}}}} | mapframe-length_mi = {{{mapframe_naruk_mi|{{{mapframe-length_mi|}}}}}} | mapframe-area_km2 = {{{mapframe_area_km2|{{{mapframe-area_km2|}}}}}} | mapframe-area_mi2 = {{{mapframe_area_mi2|{{{mapframe-area_mi2|}}}}}} | mapframe-frame-coordinates = {{{mapframe_frame_koordenadas|{{{mapframe-frame-coordinates|}}}}}} | mapframe-frame-coord = {{{mapframe_frame_koord|{{{mapframe-frame-coord|}}}}}} | mapframe-type = {{{mapframe_tipu|{{{mapframe-type|}}}}}} | mapframe-population = {{{mapframe_populasaun|{{{mapframe-population|}}}}}} | subdivision_type = {{{tipu_subdivizaun|{{{subdivision_type|}}}}}} | subdivision_name = {{{naran_subdivizaun|{{{subdivision_name|}}}}}} | subdivision_type1 = {{{tipu_subdivizaun1|{{{subdivision_type1|}}}}}} | subdivision_name1 = {{{naran_subdivizaun1|{{{subdivision_name1|}}}}}} | subdivision_type2 = {{{tipu_subdivizaun2|{{{subdivision_type2|}}}}}} | subdivision_name2 = {{{naran_subdivizaun2|{{{subdivision_name2|}}}}}} | subdivision_type3 = {{{tipu_subdivizaun3|{{{subdivision_type3|}}}}}} | subdivision_name3 = {{{naran_subdivizaun3|{{{subdivision_name3|}}}}}} | subdivision_type4 = {{{tipu_subdivizaun4|{{{subdivision_type4|}}}}}} | subdivision_name4 = {{{naran_subdivizaun4|{{{subdivision_name4|}}}}}} | subdivision_type5 = {{{tipu_subdivizaun5|{{{subdivision_type5|}}}}}} | subdivision_name5 = {{{naran_subdivizaun5|{{{subdivision_name5|}}}}}} | subdivision_type6 = {{{tipu_subdivizaun6|{{{subdivision_type6|}}}}}} | subdivision_name6 = {{{naran_subdivizaun6|{{{subdivision_name6|}}}}}} | established_title = {{{titulu_estabelesimentu|{{{established_title|}}}}}} | established_date = {{{data_estabelesimentu|{{{established_date|}}}}}} | established_title1 = {{{titulu_estabelesimentu1|{{{established_title1|}}}}}} | established_date1 = {{{data_estabelesimentu1|{{{established_date1|}}}}}} | established_title2 = {{{titulu_estabelesimentu2|{{{established_title2|}}}}}} | established_date2 = {{{data_estabelesimentu2|{{{established_date2|}}}}}} | established_title3 = {{{titulu_estabelesimentu3|{{{established_title3|}}}}}} | established_date3 = {{{data_estabelesimentu3|{{{established_date3|}}}}}} | established_title4 = {{{titulu_estabelesimentu4|{{{established_title4|}}}}}} | established_date4 = {{{data_estabelesimentu4|{{{established_date4|}}}}}} | established_title5 = {{{titulu_estabelesimentu5|{{{established_title5|}}}}}} | established_date5 = {{{data_estabelesimentu5|{{{established_date5|}}}}}} | established_title6 = {{{titulu_estabelesimentu6|{{{established_title6|}}}}}} | established_date6 = {{{data_estabelesimentu6|{{{established_date6|}}}}}} | established_title7 = {{{titulu_estabelesimentu7|{{{established_title7|}}}}}} | established_date7 = {{{data_estabelesimentu7|{{{established_date7|}}}}}} | extinct_title = {{{titulu_extinta|{{{extinct_title|}}}}}} | extinct_date = {{{data_extinta|{{{extinct_date|}}}}}} | founder = {{{fundador|{{{founder|}}}}}} | named_for = {{{naran_husi|{{{named_for|}}}}}} | seat_type = {{{tipu_sede|{{{seat_type|}}}}}} | seat = {{{sede|{{{seat|}}}}}} | seat1_type = {{{tipu_sede1|{{{seat1_type|}}}}}} | seat1 = {{{sede1|{{{seat1|}}}}}} | parts_type = {{{tipu_parte|{{{parts_type|}}}}}} | parts_style = {{{estilu_parte|{{{parts_style|}}}}}} | parts = {{{parte_sira|{{{parts|}}}}}} | p1 = {{{parte1|{{{p1|}}}}}} | p2 = {{{parte2|{{{p2|}}}}}} | p3 = {{{parte3|{{{p3|}}}}}} | p4 = {{{parte4|{{{p4|}}}}}} | p5 = {{{parte5|{{{p5|}}}}}} | p6 = {{{parte6|{{{p6|}}}}}} | p7 = {{{parte7|{{{p7|}}}}}} | p8 = {{{parte8|{{{p8|}}}}}} | p9 = {{{parte9|{{{p9|}}}}}} | p10 = {{{parte10|{{{p10|}}}}}} | p11 = {{{parte11|{{{p11|}}}}}} | p12 = {{{parte12|{{{p12|}}}}}} | p13 = {{{parte13|{{{p13|}}}}}} | p14 = {{{parte14|{{{p14|}}}}}} | p15 = {{{parte15|{{{p15|}}}}}} | p16 = {{{parte16|{{{p16|}}}}}} | p17 = {{{parte17|{{{p17|}}}}}} | p18 = {{{parte18|{{{p18|}}}}}} | p19 = {{{parte19|{{{p19|}}}}}} | p20 = {{{parte20|{{{p20|}}}}}} | p21 = {{{parte21|{{{p21|}}}}}} | p22 = {{{parte22|{{{p22|}}}}}} | p23 = {{{parte23|{{{p23|}}}}}} | p24 = {{{parte24|{{{p24|}}}}}} | p25 = {{{parte25|{{{p25|}}}}}} | p26 = {{{parte26|{{{p26|}}}}}} | p27 = {{{parte27|{{{p27|}}}}}} | p28 = {{{parte28|{{{p28|}}}}}} | p29 = {{{parte29|{{{p29|}}}}}} | p30 = {{{parte30|{{{p30|}}}}}} | p31 = {{{parte31|{{{p31|}}}}}} | p32 = {{{parte32|{{{p32|}}}}}} | p33 = {{{parte33|{{{p33|}}}}}} | p34 = {{{parte34|{{{p34|}}}}}} | p35 = {{{parte35|{{{p35|}}}}}} | p36 = {{{parte36|{{{p36|}}}}}} | p37 = {{{parte37|{{{p37|}}}}}} | p38 = {{{parte38|{{{p38|}}}}}} | p39 = {{{parte39|{{{p39|}}}}}} | p40 = {{{parte40|{{{p40|}}}}}} | p41 = {{{parte41|{{{p41|}}}}}} | p42 = {{{parte42|{{{p42|}}}}}} | p43 = {{{parte43|{{{p43|}}}}}} | p44 = {{{parte44|{{{p44|}}}}}} | p45 = {{{parte45|{{{p45|}}}}}} | p46 = {{{parte46|{{{p46|}}}}}} | p47 = {{{parte47|{{{p47|}}}}}} | p48 = {{{parte48|{{{p48|}}}}}} | p49 = {{{parte49|{{{p49|}}}}}} | p50 = {{{parte50|{{{p50|}}}}}} | government_footnotes = {{{nota_governu|{{{government_footnotes|}}}}}} | government_type = {{{tipu_governu|{{{government_type|}}}}}} | governing_body = {{{orgaun_governu|{{{governing_body|}}}}}} | leader_party = {{{partidu_lider|{{{leader_party|}}}}}} | leader_title = {{{titulu_lider|{{{leader_title|}}}}}} | leader_name = {{{naran_lider|{{{leader_name|}}}}}} | leader_title1 = {{{titulu_lider1|{{{leader_title1|}}}}}} | leader_name1 = {{{naran_lider1|{{{leader_name1|}}}}}} | leader_party1 = {{{partidu_lider1|{{{leader_party1|}}}}}} | leader_title2 = {{{titulu_lider2|{{{leader_title2|}}}}}} | leader_name2 = {{{naran_lider2|{{{leader_name2|}}}}}} | leader_party2 = {{{partidu_lider2|{{{leader_party2|}}}}}} | leader_title3 = {{{titulu_lider3|{{{leader_title3|}}}}}} | leader_name3 = {{{naran_lider3|{{{leader_name3|}}}}}} | leader_party3 = {{{partidu_lider3|{{{leader_party3|}}}}}} | leader_title4 = {{{titulu_lider4|{{{leader_title4|}}}}}} | leader_name4 = {{{naran_lider4|{{{leader_name4|}}}}}} | leader_party4 = {{{partidu_lider4|{{{leader_party4|}}}}}} | total_type = {{{tipu_total|{{{total_type|}}}}}} | unit_pref = {{{unidade_preferida|{{{unit_pref|}}}}}} | area_footnotes = {{{nota_area|{{{area_footnotes|}}}}}} | dunam_link = {{{ligasaun_dunam|{{{dunam_link|}}}}}} | area_total_km2 = {{{area_total_km2|{{{area_total_km2|}}}}}} | area_total_sq_mi = {{{area_total_sq_mi|{{{area_total_sq_mi|}}}}}} | area_total_ha = {{{area_total_ha|{{{area_total_ha|}}}}}} | area_total_acre = {{{area_total_acre|{{{area_total_acre|}}}}}} | area_total_dunam = {{{area_total_dunam|{{{area_total_dunam|}}}}}} | area_land_km2 = {{{area_rai_km2|{{{area_land_km2|}}}}}} | area_land_sq_mi = {{{area_rai_sq_mi|{{{area_land_sq_mi|}}}}}} | area_land_ha = {{{area_rai_ha|{{{area_land_ha|}}}}}} | area_land_acre = {{{area_rai_acre|{{{area_land_acre|}}}}}} | area_land_dunam = {{{area_rai_dunam|{{{area_land_dunam|}}}}}} | area_water_km2 = {{{area_bee_km2|{{{area_water_km2|}}}}}} | area_water_sq_mi = {{{area_bee_sq_mi|{{{area_water_sq_mi|}}}}}} | area_water_ha = {{{area_bee_ha|{{{area_water_ha|}}}}}} | area_water_acre = {{{area_bee_acre|{{{area_water_acre|}}}}}} | area_water_dunam = {{{area_bee_dunam|{{{area_water_dunam|}}}}}} | area_urban_km2 = {{{area_urbana_km2|{{{area_urban_km2|}}}}}} | area_urban_sq_mi = {{{area_urbana_sq_mi|{{{area_urban_sq_mi|}}}}}} | area_urban_ha = {{{area_urbana_ha|{{{area_urban_ha|}}}}}} | area_urban_acre = {{{area_urbana_acre|{{{area_urban_acre|}}}}}} | area_urban_dunam = {{{area_urbana_dunam|{{{area_urban_dunam|}}}}}} | area_rural_km2 = {{{area_rural_km2|{{{area_rural_km2|}}}}}} | area_rural_sq_mi = {{{area_rural_sq_mi|{{{area_rural_sq_mi|}}}}}} | area_rural_ha = {{{area_rural_ha|{{{area_rural_ha|}}}}}} | area_rural_acre = {{{area_rural_acre|{{{area_rural_acre|}}}}}} | area_rural_dunam = {{{area_rural_dunam|{{{area_rural_dunam|}}}}}} | area_metro_km2 = {{{area_metropolitana_km2|{{{area_metro_km2|}}}}}} | area_metro_sq_mi = {{{area_metropolitana_sq_mi|{{{area_metro_sq_mi|}}}}}} | area_metro_ha = {{{area_metropolitana_ha|{{{area_metro_ha|}}}}}} | area_metro_acre = {{{area_metropolitana_acre|{{{area_metro_acre|}}}}}} | area_metro_dunam = {{{area_metropolitana_dunam|{{{area_metro_dunam|}}}}}} | area_water_percent = {{{persentajen_bee|{{{area_water_percent|}}}}}} | area_urban_footnotes = {{{nota_area_urbana|{{{area_urban_footnotes|}}}}}} | area_rural_footnotes = {{{nota_area_rural|{{{area_rural_footnotes|}}}}}} | area_metro_footnotes = {{{nota_area_metropolitana|{{{area_metro_footnotes|}}}}}} | area_rank = {{{rank_area|{{{area_rank|}}}}}} | area_note = {{{nota_area|{{{area_note|}}}}}} | area_blank1_title = {{{titulu_area_seluk1|{{{area_blank1_title|}}}}}} | area_blank1_km2 = {{{area_seluk1_km2|{{{area_blank1_km2|}}}}}} | area_blank1_sq_mi = {{{area_seluk1_sq_mi|{{{area_blank1_sq_mi|}}}}}} | area_blank1_ha = {{{area_seluk1_ha|{{{area_blank1_ha|}}}}}} | area_blank1_acre = {{{area_seluk1_acre|{{{area_blank1_acre|}}}}}} | area_blank1_dunam = {{{area_seluk1_dunam|{{{area_blank1_dunam|}}}}}} | area_blank2_title = {{{titulu_area_seluk2|{{{area_blank2_title|}}}}}} | area_blank2_km2 = {{{area_seluk2_km2|{{{area_blank2_km2|}}}}}} | area_blank2_sq_mi = {{{area_seluk2_sq_mi|{{{area_blank2_sq_mi|}}}}}} | area_blank2_ha = {{{area_seluk2_ha|{{{area_blank2_ha|}}}}}} | area_blank2_acre = {{{area_seluk2_acre|{{{area_blank2_acre|}}}}}} | area_blank2_dunam = {{{area_seluk2_dunam|{{{area_blank2_dunam|}}}}}} | dimensions_footnotes = {{{nota_dimensaun|{{{dimensions_footnotes|}}}}}} | length_km = {{{naruk_km|{{{length_km|}}}}}} | length_mi = {{{naruk_mi|{{{length_mi|}}}}}} | width_km = {{{luan_km|{{{width_km|}}}}}} | width_mi = {{{luan_mi|{{{width_mi|}}}}}} | elevation_footnotes = {{{nota_altitude|{{{elevation_footnotes|}}}}}} | elevation_m = {{{altitude_m|{{{elevation_m|}}}}}} | elevation_ft = {{{altitude_ft|{{{elevation_ft|}}}}}} | elevation_point = {{{pontu_altitude|{{{elevation_point|}}}}}} | elevation_max_footnotes = {{{nota_altitude_max|{{{elevation_max_footnotes|}}}}}} | elevation_max_m = {{{altitude_max_m|{{{elevation_max_m|}}}}}} | elevation_max_ft = {{{altitude_max_ft|{{{elevation_max_ft|}}}}}} | elevation_max_point = {{{pontu_altitude_max|{{{elevation_max_point|}}}}}} | elevation_max_rank = {{{rank_altitude_max|{{{elevation_max_rank|}}}}}} | elevation_min_footnotes = {{{nota_altitude_min|{{{elevation_min_footnotes|}}}}}} | elevation_min_m = {{{altitude_min_m|{{{elevation_min_m|}}}}}} | elevation_min_ft = {{{altitude_min_ft|{{{elevation_min_ft|}}}}}} | elevation_min_point = {{{pontu_altitude_min|{{{elevation_min_point|}}}}}} | elevation_min_rank = {{{rank_altitude_min|{{{elevation_min_rank|}}}}}} | population_footnotes = {{{nota_populasaun|{{{population_footnotes|}}}}}} | population_as_of = {{{data_populasaun|{{{population_as_of|}}}}}} | population_total = {{{populasaun_total|{{{population_total|}}}}}} | pop_est_footnotes = {{{nota_estimasaun_populasaun|{{{pop_est_footnotes|}}}}}} | pop_est_as_of = {{{data_estimasaun_populasaun|{{{pop_est_as_of|}}}}}} | population_est = {{{estimasaun_populasaun|{{{population_est|}}}}}} | population_rank = {{{rank_populasaun|{{{population_rank|}}}}}} | population_density_km2 = {{{densidade_populasaun_km2|{{{population_density_km2|}}}}}} | population_density_sq_mi = {{{densidade_populasaun_sq_mi|{{{population_density_sq_mi|}}}}}} | population_urban_footnotes = {{{nota_populasaun_urbana|{{{population_urban_footnotes|}}}}}} | population_urban = {{{populasaun_urbana|{{{population_urban|}}}}}} | population_density_urban_km2 = {{{densidade_populasaun_urbana_km2|{{{population_density_urban_km2|}}}}}} | population_density_urban_sq_mi = {{{densidade_populasaun_urbana_sq_mi|{{{population_density_urban_sq_mi|}}}}}} | population_rural_footnotes = {{{nota_populasaun_rural|{{{population_rural_footnotes|}}}}}} | population_rural = {{{populasaun_rural|{{{population_rural|}}}}}} | population_density_rural_km2 = {{{densidade_populasaun_rural_km2|{{{population_density_rural_km2|}}}}}} | population_density_rural_sq_mi = {{{densidade_populasaun_rural_sq_mi|{{{population_density_rural_sq_mi|}}}}}} | population_metro_footnotes = {{{nota_populasaun_metropolitana|{{{population_metro_footnotes|}}}}}} | population_metro = {{{populasaun_metropolitana|{{{population_metro|}}}}}} | population_density_metro_km2 = {{{densidade_populasaun_metropolitana_km2|{{{population_density_metro_km2|}}}}}} | population_density_metro_sq_mi = {{{densidade_populasaun_metropolitana_sq_mi|{{{population_density_metro_sq_mi|}}}}}} | population_density_rank = {{{rank_densidade_populasaun|{{{population_density_rank|}}}}}} | population_blank1_title = {{{titulu_populasaun_seluk1|{{{population_blank1_title|}}}}}} | population_blank1 = {{{populasaun_seluk1|{{{population_blank1|}}}}}} | population_density_blank1_km2 = {{{densidade_populasaun_seluk1_km2|{{{population_density_blank1_km2|}}}}}} | population_density_blank1_sq_mi = {{{densidade_populasaun_seluk1_sq_mi|{{{population_density_blank1_sq_mi|}}}}}} | population_blank2_title = {{{titulu_populasaun_seluk2|{{{population_blank2_title|}}}}}} | population_blank2 = {{{populasaun_seluk2|{{{population_blank2|}}}}}} | population_density_blank2_km2 = {{{densidade_populasaun_seluk2_km2|{{{population_density_blank2_km2|}}}}}} | population_density_blank2_sq_mi = {{{densidade_populasaun_seluk2_sq_mi|{{{population_density_blank2_sq_mi|}}}}}} | population_demonym = {{{demonimu_populasaun|{{{population_demonym|}}}}}} | population_demonyms = {{{demonimu_populasaun_sira|{{{population_demonyms|}}}}}} | population_note = {{{nota_populasaun|{{{population_note|}}}}}} | demographics_type1 = {{{tipu_demografia1|{{{demographics_type1|}}}}}} | demographics1_footnotes = {{{nota_demografia1|{{{demographics1_footnotes|}}}}}} | demographics1_title1 = {{{titulu_demografia1_1|{{{demographics1_title1|}}}}}} | demographics1_info1 = {{{info_demografia1_1|{{{demographics1_info1|}}}}}} | demographics1_title2 = {{{titulu_demografia1_2|{{{demographics1_title2|}}}}}} | demographics1_info2 = {{{info_demografia1_2|{{{demographics1_info2|}}}}}} | demographics1_title3 = {{{titulu_demografia1_3|{{{demographics1_title3|}}}}}} | demographics1_info3 = {{{info_demografia1_3|{{{demographics1_info3|}}}}}} | demographics1_title4 = {{{titulu_demografia1_4|{{{demographics1_title4|}}}}}} | demographics1_info4 = {{{info_demografia1_4|{{{demographics1_info4|}}}}}} | demographics1_title5 = {{{titulu_demografia1_5|{{{demographics1_title5|}}}}}} | demographics1_info5 = {{{info_demografia1_5|{{{demographics1_info5|}}}}}} | demographics1_title6 = {{{titulu_demografia1_6|{{{demographics1_title6|}}}}}} | demographics1_info6 = {{{info_demografia1_6|{{{demographics1_info6|}}}}}} | demographics1_title7 = {{{titulu_demografia1_7|{{{demographics1_title7|}}}}}} | demographics1_info7 = {{{info_demografia1_7|{{{demographics1_info7|}}}}}} | demographics_type2 = {{{tipu_demografia2|{{{demographics_type2|}}}}}} | demographics2_footnotes = {{{nota_demografia2|{{{demographics2_footnotes|}}}}}} | demographics2_title1 = {{{titulu_demografia2_1|{{{demographics2_title1|}}}}}} | demographics2_info1 = {{{info_demografia2_1|{{{demographics2_info1|}}}}}} | demographics2_title2 = {{{titulu_demografia2_2|{{{demographics2_title2|}}}}}} | demographics2_info2 = {{{info_demografia2_2|{{{demographics2_info2|}}}}}} | demographics2_title3 = {{{titulu_demografia2_3|{{{demographics2_title3|}}}}}} | demographics2_info3 = {{{info_demografia2_3|{{{demographics2_info3|}}}}}} | demographics2_title4 = {{{titulu_demografia2_4|{{{demographics2_title4|}}}}}} | demographics2_info4 = {{{info_demografia2_4|{{{demographics2_info4|}}}}}} | demographics2_title5 = {{{titulu_demografia2_5|{{{demographics2_title5|}}}}}} | demographics2_info5 = {{{info_demografia2_5|{{{demographics2_info5|}}}}}} | demographics2_title6 = {{{titulu_demografia2_6|{{{demographics2_title6|}}}}}} | demographics2_info6 = {{{info_demografia2_6|{{{demographics2_info6|}}}}}} | demographics2_title7 = {{{titulu_demografia2_7|{{{demographics2_title7|}}}}}} | demographics2_info7 = {{{info_demografia2_7|{{{demographics2_info7|}}}}}} | demographics2_title8 = {{{titulu_demografia2_8|{{{demographics2_title8|}}}}}} | demographics2_info8 = {{{info_demografia2_8|{{{demographics2_info8|}}}}}} | demographics2_title9 = {{{titulu_demografia2_9|{{{demographics2_title9|}}}}}} | demographics2_info9 = {{{info_demografia2_9|{{{demographics2_info9|}}}}}} | demographics2_title10 = {{{titulu_demografia2_10|{{{demographics2_title10|}}}}}} | demographics2_info10 = {{{info_demografia2_10|{{{demographics2_info10|}}}}}} | timezone_link = {{{ligasaun_zona_tempu|{{{timezone_link|}}}}}} | timezone = {{{zona_tempu|{{{timezone|}}}}}} | utc_offset = {{{diferensa_utc|{{{utc_offset|}}}}}} | timezone_DST = {{{zona_tempu_DST|{{{timezone_DST|}}}}}} | utc_offset_DST = {{{diferensa_utc_DST|{{{utc_offset_DST|}}}}}} | timezone1_location = {{{fatin_zona_tempu1|{{{timezone1_location|}}}}}} | timezone1 = {{{zona_tempu1|{{{timezone1|}}}}}} | utc_offset1 = {{{diferensa_utc1|{{{utc_offset1|}}}}}} | timezone1_DST = {{{zona_tempu1_DST|{{{timezone1_DST|}}}}}} | utc_offset1_DST = {{{diferensa_utc1_DST|{{{utc_offset1_DST|}}}}}} | timezone2_location = {{{fatin_zona_tempu2|{{{timezone2_location|}}}}}} | timezone2 = {{{zona_tempu2|{{{timezone2|}}}}}} | utc_offset2 = {{{diferensa_utc2|{{{utc_offset2|}}}}}} | timezone2_DST = {{{zona_tempu2_DST|{{{timezone2_DST|}}}}}} | utc_offset2_DST = {{{diferensa_utc2_DST|{{{utc_offset2_DST|}}}}}} | timezone3_location = {{{fatin_zona_tempu3|{{{timezone3_location|}}}}}} | timezone3 = {{{zona_tempu3|{{{timezone3|}}}}}} | utc_offset3 = {{{diferensa_utc3|{{{utc_offset3|}}}}}} | timezone3_DST = {{{zona_tempu3_DST|{{{timezone3_DST|}}}}}} | utc_offset3_DST = {{{diferensa_utc3_DST|{{{utc_offset3_DST|}}}}}} | timezone4_location = {{{fatin_zona_tempu4|{{{timezone4_location|}}}}}} | timezone4 = {{{zona_tempu4|{{{timezone4|}}}}}} | utc_offset4 = {{{diferensa_utc4|{{{utc_offset4|}}}}}} | timezone4_DST = {{{zona_tempu4_DST|{{{timezone4_DST|}}}}}} | utc_offset4_DST = {{{diferensa_utc4_DST|{{{utc_offset4_DST|}}}}}} | timezone5_location = {{{fatin_zona_tempu5|{{{timezone5_location|}}}}}} | timezone5 = {{{zona_tempu5|{{{timezone5|}}}}}} | utc_offset5 = {{{diferensa_utc5|{{{utc_offset5|}}}}}} | timezone5_DST = {{{zona_tempu5_DST|{{{timezone5_DST|}}}}}} | utc_offset5_DST = {{{diferensa_utc5_DST|{{{utc_offset5_DST|}}}}}} | postal_code_type = {{{tipu_kodigu_postal|{{{postal_code_type|}}}}}} | postal_code = {{{kodigu_postal|{{{postal_code|}}}}}} | postal2_code_type = {{{tipu_kodigu_postal2|{{{postal2_code_type|}}}}}} | postal2_code = {{{kodigu_postal2|{{{postal2_code|}}}}}} | area_code_type = {{{tipu_kodigu_area|{{{area_code_type|}}}}}} | area_code = {{{kodigu_area|{{{area_code|}}}}}} | area_codes = {{{kodigu_area_sira|{{{area_codes|}}}}}} | geocode = {{{geokodigu|{{{geocode|}}}}}} | iso_code = {{{kodigu_iso|{{{iso_code|}}}}}} | registration_plate_type = {{{tipu_plaka_veiklu|{{{registration_plate_type|}}}}}} | registration_plate = {{{plaka_veiklu|{{{registration_plate|}}}}}} | code1_name = {{{naran_kodigu1|{{{code1_name|}}}}}} | code1_info = {{{info_kodigu1|{{{code1_info|}}}}}} | code2_name = {{{naran_kodigu2|{{{code2_name|}}}}}} | code2_info = {{{info_kodigu2|{{{code2_info|}}}}}} | blank_name = {{{naran_kampu|{{{blank_name|}}}}}} | blank_info = {{{info_kampu|{{{blank_info|}}}}}} | blank1_name = {{{naran_kampu1|{{{blank1_name|}}}}}} | blank1_info = {{{info_kampu1|{{{blank1_info|}}}}}} | blank2_name = {{{naran_kampu2|{{{blank2_name|}}}}}} | blank2_info = {{{info_kampu2|{{{blank2_info|}}}}}} | blank_name_sec1 = {{{naran_kampu_sec1|{{{blank_name_sec1|}}}}}} | blank_info_sec1 = {{{info_kampu_sec1|{{{blank_info_sec1|}}}}}} | blank1_name_sec1 = {{{naran_kampu1_sec1|{{{blank1_name_sec1|}}}}}} | blank1_info_sec1 = {{{info_kampu1_sec1|{{{blank1_info_sec1|}}}}}} | blank2_name_sec1 = {{{naran_kampu2_sec1|{{{blank2_name_sec1|}}}}}} | blank2_info_sec1 = {{{info_kampu2_sec1|{{{blank2_info_sec1|}}}}}} | blank3_name_sec1 = {{{naran_kampu3_sec1|{{{blank3_name_sec1|}}}}}} | blank3_info_sec1 = {{{info_kampu3_sec1|{{{blank3_info_sec1|}}}}}} | blank4_name_sec1 = {{{naran_kampu4_sec1|{{{blank4_name_sec1|}}}}}} | blank4_info_sec1 = {{{info_kampu4_sec1|{{{blank4_info_sec1|}}}}}} | blank5_name_sec1 = {{{naran_kampu5_sec1|{{{blank5_name_sec1|}}}}}} | blank5_info_sec1 = {{{info_kampu5_sec1|{{{blank5_info_sec1|}}}}}} | blank6_name_sec1 = {{{naran_kampu6_sec1|{{{blank6_name_sec1|}}}}}} | blank6_info_sec1 = {{{info_kampu6_sec1|{{{blank6_info_sec1|}}}}}} | blank7_name_sec1 = {{{naran_kampu7_sec1|{{{blank7_name_sec1|}}}}}} | blank7_info_sec1 = {{{info_kampu7_sec1|{{{blank7_info_sec1|}}}}}} | blank_name_sec2 = {{{naran_kampu_sec2|{{{blank_name_sec2|}}}}}} | blank_info_sec2 = {{{info_kampu_sec2|{{{blank_info_sec2|}}}}}} | blank1_name_sec2 = {{{naran_kampu1_sec2|{{{blank1_name_sec2|}}}}}} | blank1_info_sec2 = {{{info_kampu1_sec2|{{{blank1_info_sec2|}}}}}} | blank2_name_sec2 = {{{naran_kampu2_sec2|{{{blank2_name_sec2|}}}}}} | blank2_info_sec2 = {{{info_kampu2_sec2|{{{blank2_info_sec2|}}}}}} | blank3_name_sec2 = {{{naran_kampu3_sec2|{{{blank3_name_sec2|}}}}}} | blank3_info_sec2 = {{{info_kampu3_sec2|{{{blank3_info_sec2|}}}}}} | blank4_name_sec2 = {{{naran_kampu4_sec2|{{{blank4_name_sec2|}}}}}} | blank4_info_sec2 = {{{info_kampu4_sec2|{{{blank4_info_sec2|}}}}}} | blank5_name_sec2 = {{{naran_kampu5_sec2|{{{blank5_name_sec2|}}}}}} | blank5_info_sec2 = {{{info_kampu5_sec2|{{{blank5_info_sec2|}}}}}} | blank6_name_sec2 = {{{naran_kampu6_sec2|{{{blank6_name_sec2|}}}}}} | blank6_info_sec2 = {{{info_kampu6_sec2|{{{blank6_info_sec2|}}}}}} | blank7_name_sec2 = {{{naran_kampu7_sec2|{{{blank7_name_sec2|}}}}}} | blank7_info_sec2 = {{{info_kampu7_sec2|{{{blank7_info_sec2|}}}}}} | website = {{{sitiu_web|{{{website|}}}}}} | module = {{{modulu|{{{module|}}}}}} | footnotes = {{{nota_sira|{{{footnotes|}}}}}} | child = {{{labarik|{{{child|}}}}}} | embed = {{{hatama|{{{embed|}}}}}} }}</includeonly><noinclude>{{Documentation}}</noinclude> kyqsxk5qewp8i8chjt6asy6srexndc4 72838 72837 2026-06-30T21:41:31Z Robertsky 10424 72838 wikitext text/x-wiki <includeonly>{{Infokaixa fatin-koabitasaun/core | name = {{{naran|{{{name|}}}}}} | official_name = {{{naran_ofisial|{{{official_name|}}}}}} | native_name = {{{naran_lokal|{{{native_name|}}}}}} | native_name_lang = {{{lian_naran_lokal|{{{native_name_lang|}}}}}} | other_name = {{{naran_seluk|{{{other_name|}}}}}} | settlement_type = {{{tipu_fatin|{{{settlement_type|}}}}}} | short_description = {{{deskrisaun_badak|{{{short_description|}}}}}} | translit_lang1 = {{{transliterasaun_lian1|{{{translit_lang1|}}}}}} | translit_lang1_type = {{{transliterasaun_lian1_tipu|{{{translit_lang1_type|}}}}}} | translit_lang1_info = {{{transliterasaun_lian1_info|{{{translit_lang1_info|}}}}}} | translit_lang1_type1 = {{{transliterasaun_lian1_tipu1|{{{translit_lang1_type1|}}}}}} | translit_lang1_info1 = {{{transliterasaun_lian1_info1|{{{translit_lang1_info1|}}}}}} | translit_lang1_type2 = {{{transliterasaun_lian1_tipu2|{{{translit_lang1_type2|}}}}}} | translit_lang1_info2 = {{{transliterasaun_lian1_info2|{{{translit_lang1_info2|}}}}}} | translit_lang1_type3 = {{{transliterasaun_lian1_tipu3|{{{translit_lang1_type3|}}}}}} | translit_lang1_info3 = {{{transliterasaun_lian1_info3|{{{translit_lang1_info3|}}}}}} | translit_lang1_type4 = {{{transliterasaun_lian1_tipu4|{{{translit_lang1_type4|}}}}}} | translit_lang1_info4 = {{{transliterasaun_lian1_info4|{{{translit_lang1_info4|}}}}}} | translit_lang1_type5 = {{{transliterasaun_lian1_tipu5|{{{translit_lang1_type5|}}}}}} | translit_lang1_info5 = {{{transliterasaun_lian1_info5|{{{translit_lang1_info5|}}}}}} | translit_lang1_type6 = {{{transliterasaun_lian1_tipu6|{{{translit_lang1_type6|}}}}}} | translit_lang1_info6 = {{{transliterasaun_lian1_info6|{{{translit_lang1_info6|}}}}}} | translit_lang2 = {{{transliterasaun_lian2|{{{translit_lang2|}}}}}} | translit_lang2_type = {{{transliterasaun_lian2_tipu|{{{translit_lang2_type|}}}}}} | translit_lang2_info = {{{transliterasaun_lian2_info|{{{translit_lang2_info|}}}}}} | translit_lang2_type1 = {{{transliterasaun_lian2_tipu1|{{{translit_lang2_type1|}}}}}} | translit_lang2_info1 = {{{transliterasaun_lian2_info1|{{{translit_lang2_info1|}}}}}} | translit_lang2_type2 = {{{transliterasaun_lian2_tipu2|{{{translit_lang2_type2|}}}}}} | translit_lang2_info2 = {{{transliterasaun_lian2_info2|{{{translit_lang2_info2|}}}}}} | translit_lang2_type3 = {{{transliterasaun_lian2_tipu3|{{{translit_lang2_type3|}}}}}} | translit_lang2_info3 = {{{transliterasaun_lian2_info3|{{{translit_lang2_info3|}}}}}} | translit_lang2_type4 = {{{transliterasaun_lian2_tipu4|{{{translit_lang2_type4|}}}}}} | translit_lang2_info4 = {{{transliterasaun_lian2_info4|{{{translit_lang2_info4|}}}}}} | translit_lang2_type5 = {{{transliterasaun_lian2_tipu5|{{{translit_lang2_type5|}}}}}} | translit_lang2_info5 = {{{transliterasaun_lian2_info5|{{{translit_lang2_info5|}}}}}} | translit_lang2_type6 = {{{transliterasaun_lian2_tipu6|{{{translit_lang2_type6|}}}}}} | translit_lang2_info6 = {{{transliterasaun_lian2_info6|{{{translit_lang2_info6|}}}}}} | image_skyline = {{{imajen_paisajen|{{{image_skyline|}}}}}} | imagesize = {{{tamanu_imajen|{{{imagesize|}}}}}} | image_alt = {{{alt_imajen|{{{image_alt|}}}}}} | image_caption = {{{legenda_imajen|{{{image_caption|}}}}}} | image_flag = {{{imajen_bandeira|{{{image_flag|}}}}}} | flag_size = {{{tamanu_bandeira|{{{flag_size|}}}}}} | flag_alt = {{{alt_bandeira|{{{flag_alt|}}}}}} | flag_border = {{{borda_bandeira|{{{flag_border|}}}}}} | flag_link = {{{ligasaun_bandeira|{{{flag_link|}}}}}} | image_seal = {{{imajen_selu|{{{image_seal|}}}}}} | seal_size = {{{tamanu_selu|{{{seal_size|}}}}}} | seal_alt = {{{alt_selu|{{{seal_alt|}}}}}} | seal_link = {{{ligasaun_selu|{{{seal_link|}}}}}} | seal_type = {{{tipu_selu|{{{seal_type|}}}}}} | seal_class = {{{klase_selu|{{{seal_class|}}}}}} | image_shield = {{{imajen_brasau|{{{image_shield|}}}}}} | shield_size = {{{tamanu_brasau|{{{shield_size|}}}}}} | shield_alt = {{{alt_brasau|{{{shield_alt|}}}}}} | shield_link = {{{ligasaun_brasau|{{{shield_link|}}}}}} | image_blank_emblem = {{{imajen_emblema|{{{image_blank_emblem|}}}}}} | blank_emblem_type = {{{tipu_emblema|{{{blank_emblem_type|}}}}}} | blank_emblem_size = {{{tamanu_emblema|{{{blank_emblem_size|}}}}}} | blank_emblem_alt = {{{alt_emblema|{{{blank_emblem_alt|}}}}}} | blank_emblem_link = {{{ligasaun_emblema|{{{blank_emblem_link|}}}}}} | etymology = {{{etimolojia|{{{etymology|}}}}}} | nickname = {{{naran_popular|{{{nickname|}}}}}} | nicknames = {{{naran_popular_sira|{{{nicknames|}}}}}} | motto = {{{lema|{{{motto|}}}}}} | mottoes = {{{lema_sira|{{{mottoes|}}}}}} | anthem = {{{hino|{{{anthem|}}}}}} | image_map = {{{imajen_mapa|{{{image_map|}}}}}} | mapsize = {{{tamanu_mapa|{{{mapsize|}}}}}} | map_alt = {{{alt_mapa|{{{map_alt|}}}}}} | map_caption = {{{legenda_mapa|{{{map_caption|}}}}}} | image_map1 = {{{imajen_mapa1|{{{image_map1|}}}}}} | mapsize1 = {{{tamanu_mapa1|{{{mapsize1|}}}}}} | map_alt1 = {{{alt_mapa1|{{{map_alt1|}}}}}} | map_caption1 = {{{legenda_mapa1|{{{map_caption1|}}}}}} | pushpin_map = {{{mapa_lokalizasaun|{{{pushpin_map|}}}}}} | pushpin_mapsize = {{{tamanu_mapa_lokalizasaun|{{{pushpin_mapsize|}}}}}} | pushpin_map_alt = {{{alt_mapa_lokalizasaun|{{{pushpin_map_alt|}}}}}} | pushpin_map_caption = {{{legenda_mapa_lokalizasaun|{{{pushpin_map_caption|}}}}}} | pushpin_map_caption_notsmall = {{{legenda_mapa_lokalizasaun_la_kiik|{{{pushpin_map_caption_notsmall|}}}}}} | pushpin_label = {{{label_mapa_lokalizasaun|{{{pushpin_label|}}}}}} | pushpin_label_position = {{{pozisaun_label_mapa_lokalizasaun|{{{pushpin_label_position|}}}}}} | pushpin_outside = {{{liur_mapa_lokalizasaun|{{{pushpin_outside|}}}}}} | pushpin_relief = {{{relefu_mapa_lokalizasaun|{{{pushpin_relief|}}}}}} | pushpin_image = {{{imajen_mapa_lokalizasaun|{{{pushpin_image|}}}}}} | pushpin_overlay = {{{kamada_mapa_lokalizasaun|{{{pushpin_overlay|}}}}}} | mapframe = {{{mapa_interativu|{{{mapframe|}}}}}} | coordinates = {{{koordenadas|{{{coordinates|}}}}}} | coord = {{{koord|{{{coord|}}}}}} | coor_pinpoint = {{{pontu_koordenadas|{{{coor_pinpoint|}}}}}} | coordinates_footnotes = {{{nota_koordenadas|{{{coordinates_footnotes|}}}}}} | grid_name = {{{naran_grid|{{{grid_name|}}}}}} | grid_position = {{{pozisaun_grid|{{{grid_position|}}}}}} | mapframe-coordinates = {{{mapframe_koordenadas|{{{mapframe-coordinates|}}}}}} | mapframe-coord = {{{mapframe_koord|{{{mapframe-coord|}}}}}} | mapframe-caption = {{{mapframe_legenda|{{{mapframe-caption|}}}}}} | mapframe-custom = {{{mapframe_custom|{{{mapframe-custom|}}}}}} | mapframe-id = {{{mapframe_id|{{{mapframe-id|}}}}}} | id = {{{id|{{{id|}}}}}} | qid = {{{qid|{{{qid|}}}}}} | mapframe-wikidata = {{{mapframe_wikidata|{{{mapframe-wikidata|}}}}}} | mapframe-point = {{{mapframe_pontu|{{{mapframe-point|}}}}}} | mapframe-shape = {{{mapframe_forma|{{{mapframe-shape|}}}}}} | mapframe-line = {{{mapframe_lina|{{{mapframe-line|}}}}}} | mapframe-geomask = {{{mapframe_geomask|{{{mapframe-geomask|}}}}}} | mapframe-switcher = {{{mapframe_switcher|{{{mapframe-switcher|}}}}}} | mapframe-frame-width = {{{mapframe_luan_frame|{{{mapframe-frame-width|}}}}}} | mapframe-width = {{{mapframe_luan|{{{mapframe-width|}}}}}} | mapframe-frame-height = {{{mapframe_aas_frame|{{{mapframe-frame-height|}}}}}} | mapframe-height = {{{mapframe_aas|{{{mapframe-height|}}}}}} | mapframe-shape-fill = {{{mapframe_kor_forma|{{{mapframe-shape-fill|}}}}}} | mapframe-shape-fill-opacity = {{{mapframe_opasidade_kor_forma|{{{mapframe-shape-fill-opacity|}}}}}} | mapframe-stroke-color = {{{mapframe_kor_lina|{{{mapframe-stroke-color|}}}}}} | mapframe-stroke-colour = {{{mapframe_kor_lina_uk|{{{mapframe-stroke-colour|}}}}}} | mapframe-line-stroke-color = {{{mapframe_kor_lina_line|{{{mapframe-line-stroke-color|}}}}}} | mapframe-line-stroke-colour = {{{mapframe_kor_lina_line_uk|{{{mapframe-line-stroke-colour|}}}}}} | mapframe-shape-stroke-color = {{{mapframe_kor_borda_forma|{{{mapframe-shape-stroke-color|}}}}}} | mapframe-shape-stroke-colour = {{{mapframe_kor_borda_forma_uk|{{{mapframe-shape-stroke-colour|}}}}}} | mapframe-stroke-width = {{{mapframe_luan_lina|{{{mapframe-stroke-width|}}}}}} | mapframe-shape-stroke-width = {{{mapframe_luan_borda_forma|{{{mapframe-shape-stroke-width|}}}}}} | mapframe-line-stroke-width = {{{mapframe_luan_lina_line|{{{mapframe-line-stroke-width|}}}}}} | mapframe-marker = {{{mapframe_marker|{{{mapframe-marker|}}}}}} | mapframe-marker-color = {{{mapframe_kor_marker|{{{mapframe-marker-color|}}}}}} | mapframe-marker-colour = {{{mapframe_kor_marker_uk|{{{mapframe-marker-colour|}}}}}} | mapframe-geomask-stroke-color = {{{mapframe_kor_borda_geomask|{{{mapframe-geomask-stroke-color|}}}}}} | mapframe-geomask-stroke-colour = {{{mapframe_kor_borda_geomask_uk|{{{mapframe-geomask-stroke-colour|}}}}}} | mapframe-geomask-stroke-width = {{{mapframe_luan_borda_geomask|{{{mapframe-geomask-stroke-width|}}}}}} | mapframe-geomask-fill = {{{mapframe_kor_geomask|{{{mapframe-geomask-fill|}}}}}} | mapframe-geomask-fill-opacity = {{{mapframe_opasidade_kor_geomask|{{{mapframe-geomask-fill-opacity|}}}}}} | mapframe-zoom = {{{mapframe_zoom|{{{mapframe-zoom|}}}}}} | mapframe-length_km = {{{mapframe_naruk_km|{{{mapframe-length_km|}}}}}} | mapframe-length_mi = {{{mapframe_naruk_mi|{{{mapframe-length_mi|}}}}}} | mapframe-area_km2 = {{{mapframe_area_km2|{{{mapframe-area_km2|}}}}}} | mapframe-area_mi2 = {{{mapframe_area_mi2|{{{mapframe-area_mi2|}}}}}} | mapframe-frame-coordinates = {{{mapframe_frame_koordenadas|{{{mapframe-frame-coordinates|}}}}}} | mapframe-frame-coord = {{{mapframe_frame_koord|{{{mapframe-frame-coord|}}}}}} | mapframe-type = {{{mapframe_tipu|{{{mapframe-type|}}}}}} | mapframe-population = {{{mapframe_populasaun|{{{mapframe-population|}}}}}} | subdivision_type = {{{tipu_subdivizaun|{{{subdivision_type|}}}}}} | subdivision_name = {{{naran_subdivizaun|{{{subdivision_name|}}}}}} | subdivision_type1 = {{{tipu_subdivizaun1|{{{subdivision_type1|}}}}}} | subdivision_name1 = {{{naran_subdivizaun1|{{{subdivision_name1|}}}}}} | subdivision_type2 = {{{tipu_subdivizaun2|{{{subdivision_type2|}}}}}} | subdivision_name2 = {{{naran_subdivizaun2|{{{subdivision_name2|}}}}}} | subdivision_type3 = {{{tipu_subdivizaun3|{{{subdivision_type3|}}}}}} | subdivision_name3 = {{{naran_subdivizaun3|{{{subdivision_name3|}}}}}} | subdivision_type4 = {{{tipu_subdivizaun4|{{{subdivision_type4|}}}}}} | subdivision_name4 = {{{naran_subdivizaun4|{{{subdivision_name4|}}}}}} | subdivision_type5 = {{{tipu_subdivizaun5|{{{subdivision_type5|}}}}}} | subdivision_name5 = {{{naran_subdivizaun5|{{{subdivision_name5|}}}}}} | subdivision_type6 = {{{tipu_subdivizaun6|{{{subdivision_type6|}}}}}} | subdivision_name6 = {{{naran_subdivizaun6|{{{subdivision_name6|}}}}}} | established_title = {{{titulu_estabelesimentu|{{{established_title|}}}}}} | established_date = {{{data_estabelesimentu|{{{established_date|}}}}}} | established_title1 = {{{titulu_estabelesimentu1|{{{established_title1|}}}}}} | established_date1 = {{{data_estabelesimentu1|{{{established_date1|}}}}}} | established_title2 = {{{titulu_estabelesimentu2|{{{established_title2|}}}}}} | established_date2 = {{{data_estabelesimentu2|{{{established_date2|}}}}}} | established_title3 = {{{titulu_estabelesimentu3|{{{established_title3|}}}}}} | established_date3 = {{{data_estabelesimentu3|{{{established_date3|}}}}}} | established_title4 = {{{titulu_estabelesimentu4|{{{established_title4|}}}}}} | established_date4 = {{{data_estabelesimentu4|{{{established_date4|}}}}}} | established_title5 = {{{titulu_estabelesimentu5|{{{established_title5|}}}}}} | established_date5 = {{{data_estabelesimentu5|{{{established_date5|}}}}}} | established_title6 = {{{titulu_estabelesimentu6|{{{established_title6|}}}}}} | established_date6 = {{{data_estabelesimentu6|{{{established_date6|}}}}}} | established_title7 = {{{titulu_estabelesimentu7|{{{established_title7|}}}}}} | established_date7 = {{{data_estabelesimentu7|{{{established_date7|}}}}}} | extinct_title = {{{titulu_extinta|{{{extinct_title|}}}}}} | extinct_date = {{{data_extinta|{{{extinct_date|}}}}}} | founder = {{{fundador|{{{founder|}}}}}} | named_for = {{{naran_husi|{{{named_for|}}}}}} | seat_type = {{{tipu_sede|{{{seat_type|}}}}}} | seat = {{{sede|{{{seat|}}}}}} | seat1_type = {{{tipu_sede1|{{{seat1_type|}}}}}} | seat1 = {{{sede1|{{{seat1|}}}}}} | parts_type = {{{tipu_parte|{{{parts_type|}}}}}} | parts_style = {{{estilu_parte|{{{parts_style|}}}}}} | parts = {{{parte_sira|{{{parts|}}}}}} | p1 = {{{parte1|{{{p1|}}}}}} | p2 = {{{parte2|{{{p2|}}}}}} | p3 = {{{parte3|{{{p3|}}}}}} | p4 = {{{parte4|{{{p4|}}}}}} | p5 = {{{parte5|{{{p5|}}}}}} | p6 = {{{parte6|{{{p6|}}}}}} | p7 = {{{parte7|{{{p7|}}}}}} | p8 = {{{parte8|{{{p8|}}}}}} | p9 = {{{parte9|{{{p9|}}}}}} | p10 = {{{parte10|{{{p10|}}}}}} | p11 = {{{parte11|{{{p11|}}}}}} | p12 = {{{parte12|{{{p12|}}}}}} | p13 = {{{parte13|{{{p13|}}}}}} | p14 = {{{parte14|{{{p14|}}}}}} | p15 = {{{parte15|{{{p15|}}}}}} | p16 = {{{parte16|{{{p16|}}}}}} | p17 = {{{parte17|{{{p17|}}}}}} | p18 = {{{parte18|{{{p18|}}}}}} | p19 = {{{parte19|{{{p19|}}}}}} | p20 = {{{parte20|{{{p20|}}}}}} | p21 = {{{parte21|{{{p21|}}}}}} | p22 = {{{parte22|{{{p22|}}}}}} | p23 = {{{parte23|{{{p23|}}}}}} | p24 = {{{parte24|{{{p24|}}}}}} | p25 = {{{parte25|{{{p25|}}}}}} | p26 = {{{parte26|{{{p26|}}}}}} | p27 = {{{parte27|{{{p27|}}}}}} | p28 = {{{parte28|{{{p28|}}}}}} | p29 = {{{parte29|{{{p29|}}}}}} | p30 = {{{parte30|{{{p30|}}}}}} | p31 = {{{parte31|{{{p31|}}}}}} | p32 = {{{parte32|{{{p32|}}}}}} | p33 = {{{parte33|{{{p33|}}}}}} | p34 = {{{parte34|{{{p34|}}}}}} | p35 = {{{parte35|{{{p35|}}}}}} | p36 = {{{parte36|{{{p36|}}}}}} | p37 = {{{parte37|{{{p37|}}}}}} | p38 = {{{parte38|{{{p38|}}}}}} | p39 = {{{parte39|{{{p39|}}}}}} | p40 = {{{parte40|{{{p40|}}}}}} | p41 = {{{parte41|{{{p41|}}}}}} | p42 = {{{parte42|{{{p42|}}}}}} | p43 = {{{parte43|{{{p43|}}}}}} | p44 = {{{parte44|{{{p44|}}}}}} | p45 = {{{parte45|{{{p45|}}}}}} | p46 = {{{parte46|{{{p46|}}}}}} | p47 = {{{parte47|{{{p47|}}}}}} | p48 = {{{parte48|{{{p48|}}}}}} | p49 = {{{parte49|{{{p49|}}}}}} | p50 = {{{parte50|{{{p50|}}}}}} | government_footnotes = {{{nota_governu|{{{government_footnotes|}}}}}} | government_type = {{{tipu_governu|{{{government_type|}}}}}} | governing_body = {{{orgaun_governu|{{{governing_body|}}}}}} | leader_party = {{{partidu_lider|{{{leader_party|}}}}}} | leader_title = {{{titulu_lider|{{{leader_title|}}}}}} | leader_name = {{{naran_lider|{{{leader_name|}}}}}} | leader_title1 = {{{titulu_lider1|{{{leader_title1|}}}}}} | leader_name1 = {{{naran_lider1|{{{leader_name1|}}}}}} | leader_party1 = {{{partidu_lider1|{{{leader_party1|}}}}}} | leader_title2 = {{{titulu_lider2|{{{leader_title2|}}}}}} | leader_name2 = {{{naran_lider2|{{{leader_name2|}}}}}} | leader_party2 = {{{partidu_lider2|{{{leader_party2|}}}}}} | leader_title3 = {{{titulu_lider3|{{{leader_title3|}}}}}} | leader_name3 = {{{naran_lider3|{{{leader_name3|}}}}}} | leader_party3 = {{{partidu_lider3|{{{leader_party3|}}}}}} | leader_title4 = {{{titulu_lider4|{{{leader_title4|}}}}}} | leader_name4 = {{{naran_lider4|{{{leader_name4|}}}}}} | leader_party4 = {{{partidu_lider4|{{{leader_party4|}}}}}} | total_type = {{{tipu_total|{{{total_type|}}}}}} | unit_pref = {{{unidade_preferida|{{{unit_pref|}}}}}} | area_footnotes = {{{nota_area|{{{area_footnotes|}}}}}} | dunam_link = {{{ligasaun_dunam|{{{dunam_link|}}}}}} | area_total_km2 = {{{area_total_km2|{{{area_total_km2|}}}}}} | area_total_sq_mi = {{{area_total_sq_mi|{{{area_total_sq_mi|}}}}}} | area_total_ha = {{{area_total_ha|{{{area_total_ha|}}}}}} | area_total_acre = {{{area_total_acre|{{{area_total_acre|}}}}}} | area_total_dunam = {{{area_total_dunam|{{{area_total_dunam|}}}}}} | area_land_km2 = {{{area_rai_km2|{{{area_land_km2|}}}}}} | area_land_sq_mi = {{{area_rai_sq_mi|{{{area_land_sq_mi|}}}}}} | area_land_ha = {{{area_rai_ha|{{{area_land_ha|}}}}}} | area_land_acre = {{{area_rai_acre|{{{area_land_acre|}}}}}} | area_land_dunam = {{{area_rai_dunam|{{{area_land_dunam|}}}}}} | area_water_km2 = {{{area_bee_km2|{{{area_water_km2|}}}}}} | area_water_sq_mi = {{{area_bee_sq_mi|{{{area_water_sq_mi|}}}}}} | area_water_ha = {{{area_bee_ha|{{{area_water_ha|}}}}}} | area_water_acre = {{{area_bee_acre|{{{area_water_acre|}}}}}} | area_water_dunam = {{{area_bee_dunam|{{{area_water_dunam|}}}}}} | area_urban_km2 = {{{area_urbana_km2|{{{area_urban_km2|}}}}}} | area_urban_sq_mi = {{{area_urbana_sq_mi|{{{area_urban_sq_mi|}}}}}} | area_urban_ha = {{{area_urbana_ha|{{{area_urban_ha|}}}}}} | area_urban_acre = {{{area_urbana_acre|{{{area_urban_acre|}}}}}} | area_urban_dunam = {{{area_urbana_dunam|{{{area_urban_dunam|}}}}}} | area_rural_km2 = {{{area_rural_km2|{{{area_rural_km2|}}}}}} | area_rural_sq_mi = {{{area_rural_sq_mi|{{{area_rural_sq_mi|}}}}}} | area_rural_ha = {{{area_rural_ha|{{{area_rural_ha|}}}}}} | area_rural_acre = {{{area_rural_acre|{{{area_rural_acre|}}}}}} | area_rural_dunam = {{{area_rural_dunam|{{{area_rural_dunam|}}}}}} | area_metro_km2 = {{{area_metropolitana_km2|{{{area_metro_km2|}}}}}} | area_metro_sq_mi = {{{area_metropolitana_sq_mi|{{{area_metro_sq_mi|}}}}}} | area_metro_ha = {{{area_metropolitana_ha|{{{area_metro_ha|}}}}}} | area_metro_acre = {{{area_metropolitana_acre|{{{area_metro_acre|}}}}}} | area_metro_dunam = {{{area_metropolitana_dunam|{{{area_metro_dunam|}}}}}} | area_water_percent = {{{persentajen_bee|{{{area_water_percent|}}}}}} | area_urban_footnotes = {{{nota_area_urbana|{{{area_urban_footnotes|}}}}}} | area_rural_footnotes = {{{nota_area_rural|{{{area_rural_footnotes|}}}}}} | area_metro_footnotes = {{{nota_area_metropolitana|{{{area_metro_footnotes|}}}}}} | area_rank = {{{rank_area|{{{area_rank|}}}}}} | area_note = {{{nota_area|{{{area_note|}}}}}} | area_blank1_title = {{{titulu_area_seluk1|{{{area_blank1_title|}}}}}} | area_blank1_km2 = {{{area_seluk1_km2|{{{area_blank1_km2|}}}}}} | area_blank1_sq_mi = {{{area_seluk1_sq_mi|{{{area_blank1_sq_mi|}}}}}} | area_blank1_ha = {{{area_seluk1_ha|{{{area_blank1_ha|}}}}}} | area_blank1_acre = {{{area_seluk1_acre|{{{area_blank1_acre|}}}}}} | area_blank1_dunam = {{{area_seluk1_dunam|{{{area_blank1_dunam|}}}}}} | area_blank2_title = {{{titulu_area_seluk2|{{{area_blank2_title|}}}}}} | area_blank2_km2 = {{{area_seluk2_km2|{{{area_blank2_km2|}}}}}} | area_blank2_sq_mi = {{{area_seluk2_sq_mi|{{{area_blank2_sq_mi|}}}}}} | area_blank2_ha = {{{area_seluk2_ha|{{{area_blank2_ha|}}}}}} | area_blank2_acre = {{{area_seluk2_acre|{{{area_blank2_acre|}}}}}} | area_blank2_dunam = {{{area_seluk2_dunam|{{{area_blank2_dunam|}}}}}} | dimensions_footnotes = {{{nota_dimensaun|{{{dimensions_footnotes|}}}}}} | length_km = {{{naruk_km|{{{length_km|}}}}}} | length_mi = {{{naruk_mi|{{{length_mi|}}}}}} | width_km = {{{luan_km|{{{width_km|}}}}}} | width_mi = {{{luan_mi|{{{width_mi|}}}}}} | elevation_footnotes = {{{nota_altitude|{{{elevation_footnotes|}}}}}} | elevation_m = {{{altitude_m|{{{elevation_m|}}}}}} | elevation_ft = {{{altitude_ft|{{{elevation_ft|}}}}}} | elevation_point = {{{pontu_altitude|{{{elevation_point|}}}}}} | elevation_max_footnotes = {{{nota_altitude_max|{{{elevation_max_footnotes|}}}}}} | elevation_max_m = {{{altitude_max_m|{{{elevation_max_m|}}}}}} | elevation_max_ft = {{{altitude_max_ft|{{{elevation_max_ft|}}}}}} | elevation_max_point = {{{pontu_altitude_max|{{{elevation_max_point|}}}}}} | elevation_max_rank = {{{rank_altitude_max|{{{elevation_max_rank|}}}}}} | elevation_min_footnotes = {{{nota_altitude_min|{{{elevation_min_footnotes|}}}}}} | elevation_min_m = {{{altitude_min_m|{{{elevation_min_m|}}}}}} | elevation_min_ft = {{{altitude_min_ft|{{{elevation_min_ft|}}}}}} | elevation_min_point = {{{pontu_altitude_min|{{{elevation_min_point|}}}}}} | elevation_min_rank = {{{rank_altitude_min|{{{elevation_min_rank|}}}}}} | population_footnotes = {{{nota_populasaun|{{{population_footnotes|}}}}}} | population_as_of = {{{data_populasaun|{{{population_as_of|}}}}}} | population_total = {{{populasaun_total|{{{population_total|}}}}}} | pop_est_footnotes = {{{nota_estimasaun_populasaun|{{{pop_est_footnotes|}}}}}} | pop_est_as_of = {{{data_estimasaun_populasaun|{{{pop_est_as_of|}}}}}} | population_est = {{{estimasaun_populasaun|{{{population_est|}}}}}} | population_rank = {{{rank_populasaun|{{{population_rank|}}}}}} | population_density_km2 = {{{densidade_populasaun_km2|{{{population_density_km2|}}}}}} | population_density_sq_mi = {{{densidade_populasaun_sq_mi|{{{population_density_sq_mi|}}}}}} | population_urban_footnotes = {{{nota_populasaun_urbana|{{{population_urban_footnotes|}}}}}} | population_urban = {{{populasaun_urbana|{{{population_urban|}}}}}} | population_density_urban_km2 = {{{densidade_populasaun_urbana_km2|{{{population_density_urban_km2|}}}}}} | population_density_urban_sq_mi = {{{densidade_populasaun_urbana_sq_mi|{{{population_density_urban_sq_mi|}}}}}} | population_rural_footnotes = {{{nota_populasaun_rural|{{{population_rural_footnotes|}}}}}} | population_rural = {{{populasaun_rural|{{{population_rural|}}}}}} | population_density_rural_km2 = {{{densidade_populasaun_rural_km2|{{{population_density_rural_km2|}}}}}} | population_density_rural_sq_mi = {{{densidade_populasaun_rural_sq_mi|{{{population_density_rural_sq_mi|}}}}}} | population_metro_footnotes = {{{nota_populasaun_metropolitana|{{{population_metro_footnotes|}}}}}} | population_metro = {{{populasaun_metropolitana|{{{population_metro|}}}}}} | population_density_metro_km2 = {{{densidade_populasaun_metropolitana_km2|{{{population_density_metro_km2|}}}}}} | population_density_metro_sq_mi = {{{densidade_populasaun_metropolitana_sq_mi|{{{population_density_metro_sq_mi|}}}}}} | population_density_rank = {{{rank_densidade_populasaun|{{{population_density_rank|}}}}}} | population_blank1_title = {{{titulu_populasaun_seluk1|{{{population_blank1_title|}}}}}} | population_blank1 = {{{populasaun_seluk1|{{{population_blank1|}}}}}} | population_density_blank1_km2 = {{{densidade_populasaun_seluk1_km2|{{{population_density_blank1_km2|}}}}}} | population_density_blank1_sq_mi = {{{densidade_populasaun_seluk1_sq_mi|{{{population_density_blank1_sq_mi|}}}}}} | population_blank2_title = {{{titulu_populasaun_seluk2|{{{population_blank2_title|}}}}}} | population_blank2 = {{{populasaun_seluk2|{{{population_blank2|}}}}}} | population_density_blank2_km2 = {{{densidade_populasaun_seluk2_km2|{{{population_density_blank2_km2|}}}}}} | population_density_blank2_sq_mi = {{{densidade_populasaun_seluk2_sq_mi|{{{population_density_blank2_sq_mi|}}}}}} | population_demonym = {{{demonimu_populasaun|{{{population_demonym|}}}}}} | population_demonyms = {{{demonimu_populasaun_sira|{{{population_demonyms|}}}}}} | population_note = {{{nota_populasaun|{{{population_note|}}}}}} | demographics_type1 = {{{tipu_demografia1|{{{demographics_type1|}}}}}} | demographics1_footnotes = {{{nota_demografia1|{{{demographics1_footnotes|}}}}}} | demographics1_title1 = {{{titulu_demografia1_1|{{{demographics1_title1|}}}}}} | demographics1_info1 = {{{info_demografia1_1|{{{demographics1_info1|}}}}}} | demographics1_title2 = {{{titulu_demografia1_2|{{{demographics1_title2|}}}}}} | demographics1_info2 = {{{info_demografia1_2|{{{demographics1_info2|}}}}}} | demographics1_title3 = {{{titulu_demografia1_3|{{{demographics1_title3|}}}}}} | demographics1_info3 = {{{info_demografia1_3|{{{demographics1_info3|}}}}}} | demographics1_title4 = {{{titulu_demografia1_4|{{{demographics1_title4|}}}}}} | demographics1_info4 = {{{info_demografia1_4|{{{demographics1_info4|}}}}}} | demographics1_title5 = {{{titulu_demografia1_5|{{{demographics1_title5|}}}}}} | demographics1_info5 = {{{info_demografia1_5|{{{demographics1_info5|}}}}}} | demographics1_title6 = {{{titulu_demografia1_6|{{{demographics1_title6|}}}}}} | demographics1_info6 = {{{info_demografia1_6|{{{demographics1_info6|}}}}}} | demographics1_title7 = {{{titulu_demografia1_7|{{{demographics1_title7|}}}}}} | demographics1_info7 = {{{info_demografia1_7|{{{demographics1_info7|}}}}}} | demographics_type2 = {{{tipu_demografia2|{{{demographics_type2|}}}}}} | demographics2_footnotes = {{{nota_demografia2|{{{demographics2_footnotes|}}}}}} | demographics2_title1 = {{{titulu_demografia2_1|{{{demographics2_title1|}}}}}} | demographics2_info1 = {{{info_demografia2_1|{{{demographics2_info1|}}}}}} | demographics2_title2 = {{{titulu_demografia2_2|{{{demographics2_title2|}}}}}} | demographics2_info2 = {{{info_demografia2_2|{{{demographics2_info2|}}}}}} | demographics2_title3 = {{{titulu_demografia2_3|{{{demographics2_title3|}}}}}} | demographics2_info3 = {{{info_demografia2_3|{{{demographics2_info3|}}}}}} | demographics2_title4 = {{{titulu_demografia2_4|{{{demographics2_title4|}}}}}} | demographics2_info4 = {{{info_demografia2_4|{{{demographics2_info4|}}}}}} | demographics2_title5 = {{{titulu_demografia2_5|{{{demographics2_title5|}}}}}} | demographics2_info5 = {{{info_demografia2_5|{{{demographics2_info5|}}}}}} | demographics2_title6 = {{{titulu_demografia2_6|{{{demographics2_title6|}}}}}} | demographics2_info6 = {{{info_demografia2_6|{{{demographics2_info6|}}}}}} | demographics2_title7 = {{{titulu_demografia2_7|{{{demographics2_title7|}}}}}} | demographics2_info7 = {{{info_demografia2_7|{{{demographics2_info7|}}}}}} | demographics2_title8 = {{{titulu_demografia2_8|{{{demographics2_title8|}}}}}} | demographics2_info8 = {{{info_demografia2_8|{{{demographics2_info8|}}}}}} | demographics2_title9 = {{{titulu_demografia2_9|{{{demographics2_title9|}}}}}} | demographics2_info9 = {{{info_demografia2_9|{{{demographics2_info9|}}}}}} | demographics2_title10 = {{{titulu_demografia2_10|{{{demographics2_title10|}}}}}} | demographics2_info10 = {{{info_demografia2_10|{{{demographics2_info10|}}}}}} | timezone_link = {{{ligasaun_zona_tempu|{{{timezone_link|}}}}}} | timezone = {{{zona_tempu|{{{timezone|}}}}}} | utc_offset = {{{diferensa_utc|{{{utc_offset|}}}}}} | timezone_DST = {{{zona_tempu_DST|{{{timezone_DST|}}}}}} | utc_offset_DST = {{{diferensa_utc_DST|{{{utc_offset_DST|}}}}}} | timezone1_location = {{{fatin_zona_tempu1|{{{timezone1_location|}}}}}} | timezone1 = {{{zona_tempu1|{{{timezone1|}}}}}} | utc_offset1 = {{{diferensa_utc1|{{{utc_offset1|}}}}}} | timezone1_DST = {{{zona_tempu1_DST|{{{timezone1_DST|}}}}}} | utc_offset1_DST = {{{diferensa_utc1_DST|{{{utc_offset1_DST|}}}}}} | timezone2_location = {{{fatin_zona_tempu2|{{{timezone2_location|}}}}}} | timezone2 = {{{zona_tempu2|{{{timezone2|}}}}}} | utc_offset2 = {{{diferensa_utc2|{{{utc_offset2|}}}}}} | timezone2_DST = {{{zona_tempu2_DST|{{{timezone2_DST|}}}}}} | utc_offset2_DST = {{{diferensa_utc2_DST|{{{utc_offset2_DST|}}}}}} | timezone3_location = {{{fatin_zona_tempu3|{{{timezone3_location|}}}}}} | timezone3 = {{{zona_tempu3|{{{timezone3|}}}}}} | utc_offset3 = {{{diferensa_utc3|{{{utc_offset3|}}}}}} | timezone3_DST = {{{zona_tempu3_DST|{{{timezone3_DST|}}}}}} | utc_offset3_DST = {{{diferensa_utc3_DST|{{{utc_offset3_DST|}}}}}} | timezone4_location = {{{fatin_zona_tempu4|{{{timezone4_location|}}}}}} | timezone4 = {{{zona_tempu4|{{{timezone4|}}}}}} | utc_offset4 = {{{diferensa_utc4|{{{utc_offset4|}}}}}} | timezone4_DST = {{{zona_tempu4_DST|{{{timezone4_DST|}}}}}} | utc_offset4_DST = {{{diferensa_utc4_DST|{{{utc_offset4_DST|}}}}}} | timezone5_location = {{{fatin_zona_tempu5|{{{timezone5_location|}}}}}} | timezone5 = {{{zona_tempu5|{{{timezone5|}}}}}} | utc_offset5 = {{{diferensa_utc5|{{{utc_offset5|}}}}}} | timezone5_DST = {{{zona_tempu5_DST|{{{timezone5_DST|}}}}}} | utc_offset5_DST = {{{diferensa_utc5_DST|{{{utc_offset5_DST|}}}}}} | postal_code_type = {{{tipu_kodigu_postal|{{{postal_code_type|}}}}}} | postal_code = {{{kodigu_postal|{{{postal_code|}}}}}} | postal2_code_type = {{{tipu_kodigu_postal2|{{{postal2_code_type|}}}}}} | postal2_code = {{{kodigu_postal2|{{{postal2_code|}}}}}} | area_code_type = {{{tipu_kodigu_area|{{{area_code_type|}}}}}} | area_code = {{{kodigu_area|{{{area_code|}}}}}} | area_codes = {{{kodigu_area_sira|{{{area_codes|}}}}}} | geocode = {{{geokodigu|{{{geocode|}}}}}} | iso_code = {{{kodigu_iso|{{{iso_code|}}}}}} | registration_plate_type = {{{tipu_plaka_veiklu|{{{registration_plate_type|}}}}}} | registration_plate = {{{plaka_veiklu|{{{registration_plate|}}}}}} | code1_name = {{{naran_kodigu1|{{{code1_name|}}}}}} | code1_info = {{{info_kodigu1|{{{code1_info|}}}}}} | code2_name = {{{naran_kodigu2|{{{code2_name|}}}}}} | code2_info = {{{info_kodigu2|{{{code2_info|}}}}}} | blank_name = {{{naran_kampu|{{{blank_name|}}}}}} | blank_info = {{{info_kampu|{{{blank_info|}}}}}} | blank1_name = {{{naran_kampu1|{{{blank1_name|}}}}}} | blank1_info = {{{info_kampu1|{{{blank1_info|}}}}}} | blank2_name = {{{naran_kampu2|{{{blank2_name|}}}}}} | blank2_info = {{{info_kampu2|{{{blank2_info|}}}}}} | blank_name_sec1 = {{{naran_kampu_sec1|{{{blank_name_sec1|}}}}}} | blank_info_sec1 = {{{info_kampu_sec1|{{{blank_info_sec1|}}}}}} | blank1_name_sec1 = {{{naran_kampu1_sec1|{{{blank1_name_sec1|}}}}}} | blank1_info_sec1 = {{{info_kampu1_sec1|{{{blank1_info_sec1|}}}}}} | blank2_name_sec1 = {{{naran_kampu2_sec1|{{{blank2_name_sec1|}}}}}} | blank2_info_sec1 = {{{info_kampu2_sec1|{{{blank2_info_sec1|}}}}}} | blank3_name_sec1 = {{{naran_kampu3_sec1|{{{blank3_name_sec1|}}}}}} | blank3_info_sec1 = {{{info_kampu3_sec1|{{{blank3_info_sec1|}}}}}} | blank4_name_sec1 = {{{naran_kampu4_sec1|{{{blank4_name_sec1|}}}}}} | blank4_info_sec1 = {{{info_kampu4_sec1|{{{blank4_info_sec1|}}}}}} | blank5_name_sec1 = {{{naran_kampu5_sec1|{{{blank5_name_sec1|}}}}}} | blank5_info_sec1 = {{{info_kampu5_sec1|{{{blank5_info_sec1|}}}}}} | blank6_name_sec1 = {{{naran_kampu6_sec1|{{{blank6_name_sec1|}}}}}} | blank6_info_sec1 = {{{info_kampu6_sec1|{{{blank6_info_sec1|}}}}}} | blank7_name_sec1 = {{{naran_kampu7_sec1|{{{blank7_name_sec1|}}}}}} | blank7_info_sec1 = {{{info_kampu7_sec1|{{{blank7_info_sec1|}}}}}} | blank_name_sec2 = {{{naran_kampu_sec2|{{{blank_name_sec2|}}}}}} | blank_info_sec2 = {{{info_kampu_sec2|{{{blank_info_sec2|}}}}}} | blank1_name_sec2 = {{{naran_kampu1_sec2|{{{blank1_name_sec2|}}}}}} | blank1_info_sec2 = {{{info_kampu1_sec2|{{{blank1_info_sec2|}}}}}} | blank2_name_sec2 = {{{naran_kampu2_sec2|{{{blank2_name_sec2|}}}}}} | blank2_info_sec2 = {{{info_kampu2_sec2|{{{blank2_info_sec2|}}}}}} | blank3_name_sec2 = {{{naran_kampu3_sec2|{{{blank3_name_sec2|}}}}}} | blank3_info_sec2 = {{{info_kampu3_sec2|{{{blank3_info_sec2|}}}}}} | blank4_name_sec2 = {{{naran_kampu4_sec2|{{{blank4_name_sec2|}}}}}} | blank4_info_sec2 = {{{info_kampu4_sec2|{{{blank4_info_sec2|}}}}}} | blank5_name_sec2 = {{{naran_kampu5_sec2|{{{blank5_name_sec2|}}}}}} | blank5_info_sec2 = {{{info_kampu5_sec2|{{{blank5_info_sec2|}}}}}} | blank6_name_sec2 = {{{naran_kampu6_sec2|{{{blank6_name_sec2|}}}}}} | blank6_info_sec2 = {{{info_kampu6_sec2|{{{blank6_info_sec2|}}}}}} | blank7_name_sec2 = {{{naran_kampu7_sec2|{{{blank7_name_sec2|}}}}}} | blank7_info_sec2 = {{{info_kampu7_sec2|{{{blank7_info_sec2|}}}}}} | website = {{{sitiu_web|{{{website|}}}}}} | module = {{{modulu|{{{module|}}}}}} | footnotes = {{{nota_sira|{{{footnotes|}}}}}} | child = {{{labarik|{{{child|}}}}}} | embed = {{{hatama|{{{embed|}}}}}} }}</includeonly><noinclude>{{Documentation}}</noinclude> st7w66v2rn8udvvw6x2h4uhk9hs92hl 72839 72838 2026-07-01T02:02:29Z Robertsky 10424 Robertsky moveu [[Template:Infokaixa fatin-koabitasaun]] para o seu redirecionamento [[Template:Infobox settlement]], suprimindo o primeiro: fixing 72838 wikitext text/x-wiki <includeonly>{{Infokaixa fatin-koabitasaun/core | name = {{{naran|{{{name|}}}}}} | official_name = {{{naran_ofisial|{{{official_name|}}}}}} | native_name = {{{naran_lokal|{{{native_name|}}}}}} | native_name_lang = {{{lian_naran_lokal|{{{native_name_lang|}}}}}} | other_name = {{{naran_seluk|{{{other_name|}}}}}} | settlement_type = {{{tipu_fatin|{{{settlement_type|}}}}}} | short_description = {{{deskrisaun_badak|{{{short_description|}}}}}} | translit_lang1 = {{{transliterasaun_lian1|{{{translit_lang1|}}}}}} | translit_lang1_type = {{{transliterasaun_lian1_tipu|{{{translit_lang1_type|}}}}}} | translit_lang1_info = {{{transliterasaun_lian1_info|{{{translit_lang1_info|}}}}}} | translit_lang1_type1 = {{{transliterasaun_lian1_tipu1|{{{translit_lang1_type1|}}}}}} | translit_lang1_info1 = {{{transliterasaun_lian1_info1|{{{translit_lang1_info1|}}}}}} | translit_lang1_type2 = {{{transliterasaun_lian1_tipu2|{{{translit_lang1_type2|}}}}}} | translit_lang1_info2 = {{{transliterasaun_lian1_info2|{{{translit_lang1_info2|}}}}}} | translit_lang1_type3 = {{{transliterasaun_lian1_tipu3|{{{translit_lang1_type3|}}}}}} | translit_lang1_info3 = {{{transliterasaun_lian1_info3|{{{translit_lang1_info3|}}}}}} | translit_lang1_type4 = {{{transliterasaun_lian1_tipu4|{{{translit_lang1_type4|}}}}}} | translit_lang1_info4 = {{{transliterasaun_lian1_info4|{{{translit_lang1_info4|}}}}}} | translit_lang1_type5 = {{{transliterasaun_lian1_tipu5|{{{translit_lang1_type5|}}}}}} | translit_lang1_info5 = {{{transliterasaun_lian1_info5|{{{translit_lang1_info5|}}}}}} | translit_lang1_type6 = {{{transliterasaun_lian1_tipu6|{{{translit_lang1_type6|}}}}}} | translit_lang1_info6 = {{{transliterasaun_lian1_info6|{{{translit_lang1_info6|}}}}}} | translit_lang2 = {{{transliterasaun_lian2|{{{translit_lang2|}}}}}} | translit_lang2_type = {{{transliterasaun_lian2_tipu|{{{translit_lang2_type|}}}}}} | translit_lang2_info = {{{transliterasaun_lian2_info|{{{translit_lang2_info|}}}}}} | translit_lang2_type1 = {{{transliterasaun_lian2_tipu1|{{{translit_lang2_type1|}}}}}} | translit_lang2_info1 = {{{transliterasaun_lian2_info1|{{{translit_lang2_info1|}}}}}} | translit_lang2_type2 = {{{transliterasaun_lian2_tipu2|{{{translit_lang2_type2|}}}}}} | translit_lang2_info2 = {{{transliterasaun_lian2_info2|{{{translit_lang2_info2|}}}}}} | translit_lang2_type3 = {{{transliterasaun_lian2_tipu3|{{{translit_lang2_type3|}}}}}} | translit_lang2_info3 = {{{transliterasaun_lian2_info3|{{{translit_lang2_info3|}}}}}} | translit_lang2_type4 = {{{transliterasaun_lian2_tipu4|{{{translit_lang2_type4|}}}}}} | translit_lang2_info4 = {{{transliterasaun_lian2_info4|{{{translit_lang2_info4|}}}}}} | translit_lang2_type5 = {{{transliterasaun_lian2_tipu5|{{{translit_lang2_type5|}}}}}} | translit_lang2_info5 = {{{transliterasaun_lian2_info5|{{{translit_lang2_info5|}}}}}} | translit_lang2_type6 = {{{transliterasaun_lian2_tipu6|{{{translit_lang2_type6|}}}}}} | translit_lang2_info6 = {{{transliterasaun_lian2_info6|{{{translit_lang2_info6|}}}}}} | image_skyline = {{{imajen_paisajen|{{{image_skyline|}}}}}} | imagesize = {{{tamanu_imajen|{{{imagesize|}}}}}} | image_alt = {{{alt_imajen|{{{image_alt|}}}}}} | image_caption = {{{legenda_imajen|{{{image_caption|}}}}}} | image_flag = {{{imajen_bandeira|{{{image_flag|}}}}}} | flag_size = {{{tamanu_bandeira|{{{flag_size|}}}}}} | flag_alt = {{{alt_bandeira|{{{flag_alt|}}}}}} | flag_border = {{{borda_bandeira|{{{flag_border|}}}}}} | flag_link = {{{ligasaun_bandeira|{{{flag_link|}}}}}} | image_seal = {{{imajen_selu|{{{image_seal|}}}}}} | seal_size = {{{tamanu_selu|{{{seal_size|}}}}}} | seal_alt = {{{alt_selu|{{{seal_alt|}}}}}} | seal_link = {{{ligasaun_selu|{{{seal_link|}}}}}} | seal_type = {{{tipu_selu|{{{seal_type|}}}}}} | seal_class = {{{klase_selu|{{{seal_class|}}}}}} | image_shield = {{{imajen_brasau|{{{image_shield|}}}}}} | shield_size = {{{tamanu_brasau|{{{shield_size|}}}}}} | shield_alt = {{{alt_brasau|{{{shield_alt|}}}}}} | shield_link = {{{ligasaun_brasau|{{{shield_link|}}}}}} | image_blank_emblem = {{{imajen_emblema|{{{image_blank_emblem|}}}}}} | blank_emblem_type = {{{tipu_emblema|{{{blank_emblem_type|}}}}}} | blank_emblem_size = {{{tamanu_emblema|{{{blank_emblem_size|}}}}}} | blank_emblem_alt = {{{alt_emblema|{{{blank_emblem_alt|}}}}}} | blank_emblem_link = {{{ligasaun_emblema|{{{blank_emblem_link|}}}}}} | etymology = {{{etimolojia|{{{etymology|}}}}}} | nickname = {{{naran_popular|{{{nickname|}}}}}} | nicknames = {{{naran_popular_sira|{{{nicknames|}}}}}} | motto = {{{lema|{{{motto|}}}}}} | mottoes = {{{lema_sira|{{{mottoes|}}}}}} | anthem = {{{hino|{{{anthem|}}}}}} | image_map = {{{imajen_mapa|{{{image_map|}}}}}} | mapsize = {{{tamanu_mapa|{{{mapsize|}}}}}} | map_alt = {{{alt_mapa|{{{map_alt|}}}}}} | map_caption = {{{legenda_mapa|{{{map_caption|}}}}}} | image_map1 = {{{imajen_mapa1|{{{image_map1|}}}}}} | mapsize1 = {{{tamanu_mapa1|{{{mapsize1|}}}}}} | map_alt1 = {{{alt_mapa1|{{{map_alt1|}}}}}} | map_caption1 = {{{legenda_mapa1|{{{map_caption1|}}}}}} | pushpin_map = {{{mapa_lokalizasaun|{{{pushpin_map|}}}}}} | pushpin_mapsize = {{{tamanu_mapa_lokalizasaun|{{{pushpin_mapsize|}}}}}} | pushpin_map_alt = {{{alt_mapa_lokalizasaun|{{{pushpin_map_alt|}}}}}} | pushpin_map_caption = {{{legenda_mapa_lokalizasaun|{{{pushpin_map_caption|}}}}}} | pushpin_map_caption_notsmall = {{{legenda_mapa_lokalizasaun_la_kiik|{{{pushpin_map_caption_notsmall|}}}}}} | pushpin_label = {{{label_mapa_lokalizasaun|{{{pushpin_label|}}}}}} | pushpin_label_position = {{{pozisaun_label_mapa_lokalizasaun|{{{pushpin_label_position|}}}}}} | pushpin_outside = {{{liur_mapa_lokalizasaun|{{{pushpin_outside|}}}}}} | pushpin_relief = {{{relefu_mapa_lokalizasaun|{{{pushpin_relief|}}}}}} | pushpin_image = {{{imajen_mapa_lokalizasaun|{{{pushpin_image|}}}}}} | pushpin_overlay = {{{kamada_mapa_lokalizasaun|{{{pushpin_overlay|}}}}}} | mapframe = {{{mapa_interativu|{{{mapframe|}}}}}} | coordinates = {{{koordenadas|{{{coordinates|}}}}}} | coord = {{{koord|{{{coord|}}}}}} | coor_pinpoint = {{{pontu_koordenadas|{{{coor_pinpoint|}}}}}} | coordinates_footnotes = {{{nota_koordenadas|{{{coordinates_footnotes|}}}}}} | grid_name = {{{naran_grid|{{{grid_name|}}}}}} | grid_position = {{{pozisaun_grid|{{{grid_position|}}}}}} | mapframe-coordinates = {{{mapframe_koordenadas|{{{mapframe-coordinates|}}}}}} | mapframe-coord = {{{mapframe_koord|{{{mapframe-coord|}}}}}} | mapframe-caption = {{{mapframe_legenda|{{{mapframe-caption|}}}}}} | mapframe-custom = {{{mapframe_custom|{{{mapframe-custom|}}}}}} | mapframe-id = {{{mapframe_id|{{{mapframe-id|}}}}}} | id = {{{id|{{{id|}}}}}} | qid = {{{qid|{{{qid|}}}}}} | mapframe-wikidata = {{{mapframe_wikidata|{{{mapframe-wikidata|}}}}}} | mapframe-point = {{{mapframe_pontu|{{{mapframe-point|}}}}}} | mapframe-shape = {{{mapframe_forma|{{{mapframe-shape|}}}}}} | mapframe-line = {{{mapframe_lina|{{{mapframe-line|}}}}}} | mapframe-geomask = {{{mapframe_geomask|{{{mapframe-geomask|}}}}}} | mapframe-switcher = {{{mapframe_switcher|{{{mapframe-switcher|}}}}}} | mapframe-frame-width = {{{mapframe_luan_frame|{{{mapframe-frame-width|}}}}}} | mapframe-width = {{{mapframe_luan|{{{mapframe-width|}}}}}} | mapframe-frame-height = {{{mapframe_aas_frame|{{{mapframe-frame-height|}}}}}} | mapframe-height = {{{mapframe_aas|{{{mapframe-height|}}}}}} | mapframe-shape-fill = {{{mapframe_kor_forma|{{{mapframe-shape-fill|}}}}}} | mapframe-shape-fill-opacity = {{{mapframe_opasidade_kor_forma|{{{mapframe-shape-fill-opacity|}}}}}} | mapframe-stroke-color = {{{mapframe_kor_lina|{{{mapframe-stroke-color|}}}}}} | mapframe-stroke-colour = {{{mapframe_kor_lina_uk|{{{mapframe-stroke-colour|}}}}}} | mapframe-line-stroke-color = {{{mapframe_kor_lina_line|{{{mapframe-line-stroke-color|}}}}}} | mapframe-line-stroke-colour = {{{mapframe_kor_lina_line_uk|{{{mapframe-line-stroke-colour|}}}}}} | mapframe-shape-stroke-color = {{{mapframe_kor_borda_forma|{{{mapframe-shape-stroke-color|}}}}}} | mapframe-shape-stroke-colour = {{{mapframe_kor_borda_forma_uk|{{{mapframe-shape-stroke-colour|}}}}}} | mapframe-stroke-width = {{{mapframe_luan_lina|{{{mapframe-stroke-width|}}}}}} | mapframe-shape-stroke-width = {{{mapframe_luan_borda_forma|{{{mapframe-shape-stroke-width|}}}}}} | mapframe-line-stroke-width = {{{mapframe_luan_lina_line|{{{mapframe-line-stroke-width|}}}}}} | mapframe-marker = {{{mapframe_marker|{{{mapframe-marker|}}}}}} | mapframe-marker-color = {{{mapframe_kor_marker|{{{mapframe-marker-color|}}}}}} | mapframe-marker-colour = {{{mapframe_kor_marker_uk|{{{mapframe-marker-colour|}}}}}} | mapframe-geomask-stroke-color = {{{mapframe_kor_borda_geomask|{{{mapframe-geomask-stroke-color|}}}}}} | mapframe-geomask-stroke-colour = {{{mapframe_kor_borda_geomask_uk|{{{mapframe-geomask-stroke-colour|}}}}}} | mapframe-geomask-stroke-width = {{{mapframe_luan_borda_geomask|{{{mapframe-geomask-stroke-width|}}}}}} | mapframe-geomask-fill = {{{mapframe_kor_geomask|{{{mapframe-geomask-fill|}}}}}} | mapframe-geomask-fill-opacity = {{{mapframe_opasidade_kor_geomask|{{{mapframe-geomask-fill-opacity|}}}}}} | mapframe-zoom = {{{mapframe_zoom|{{{mapframe-zoom|}}}}}} | mapframe-length_km = {{{mapframe_naruk_km|{{{mapframe-length_km|}}}}}} | mapframe-length_mi = {{{mapframe_naruk_mi|{{{mapframe-length_mi|}}}}}} | mapframe-area_km2 = {{{mapframe_area_km2|{{{mapframe-area_km2|}}}}}} | mapframe-area_mi2 = {{{mapframe_area_mi2|{{{mapframe-area_mi2|}}}}}} | mapframe-frame-coordinates = {{{mapframe_frame_koordenadas|{{{mapframe-frame-coordinates|}}}}}} | mapframe-frame-coord = {{{mapframe_frame_koord|{{{mapframe-frame-coord|}}}}}} | mapframe-type = {{{mapframe_tipu|{{{mapframe-type|}}}}}} | mapframe-population = {{{mapframe_populasaun|{{{mapframe-population|}}}}}} | subdivision_type = {{{tipu_subdivizaun|{{{subdivision_type|}}}}}} | subdivision_name = {{{naran_subdivizaun|{{{subdivision_name|}}}}}} | subdivision_type1 = {{{tipu_subdivizaun1|{{{subdivision_type1|}}}}}} | subdivision_name1 = {{{naran_subdivizaun1|{{{subdivision_name1|}}}}}} | subdivision_type2 = {{{tipu_subdivizaun2|{{{subdivision_type2|}}}}}} | subdivision_name2 = {{{naran_subdivizaun2|{{{subdivision_name2|}}}}}} | subdivision_type3 = {{{tipu_subdivizaun3|{{{subdivision_type3|}}}}}} | subdivision_name3 = {{{naran_subdivizaun3|{{{subdivision_name3|}}}}}} | subdivision_type4 = {{{tipu_subdivizaun4|{{{subdivision_type4|}}}}}} | subdivision_name4 = {{{naran_subdivizaun4|{{{subdivision_name4|}}}}}} | subdivision_type5 = {{{tipu_subdivizaun5|{{{subdivision_type5|}}}}}} | subdivision_name5 = {{{naran_subdivizaun5|{{{subdivision_name5|}}}}}} | subdivision_type6 = {{{tipu_subdivizaun6|{{{subdivision_type6|}}}}}} | subdivision_name6 = {{{naran_subdivizaun6|{{{subdivision_name6|}}}}}} | established_title = {{{titulu_estabelesimentu|{{{established_title|}}}}}} | established_date = {{{data_estabelesimentu|{{{established_date|}}}}}} | established_title1 = {{{titulu_estabelesimentu1|{{{established_title1|}}}}}} | established_date1 = {{{data_estabelesimentu1|{{{established_date1|}}}}}} | established_title2 = {{{titulu_estabelesimentu2|{{{established_title2|}}}}}} | established_date2 = {{{data_estabelesimentu2|{{{established_date2|}}}}}} | established_title3 = {{{titulu_estabelesimentu3|{{{established_title3|}}}}}} | established_date3 = {{{data_estabelesimentu3|{{{established_date3|}}}}}} | established_title4 = {{{titulu_estabelesimentu4|{{{established_title4|}}}}}} | established_date4 = {{{data_estabelesimentu4|{{{established_date4|}}}}}} | established_title5 = {{{titulu_estabelesimentu5|{{{established_title5|}}}}}} | established_date5 = {{{data_estabelesimentu5|{{{established_date5|}}}}}} | established_title6 = {{{titulu_estabelesimentu6|{{{established_title6|}}}}}} | established_date6 = {{{data_estabelesimentu6|{{{established_date6|}}}}}} | established_title7 = {{{titulu_estabelesimentu7|{{{established_title7|}}}}}} | established_date7 = {{{data_estabelesimentu7|{{{established_date7|}}}}}} | extinct_title = {{{titulu_extinta|{{{extinct_title|}}}}}} | extinct_date = {{{data_extinta|{{{extinct_date|}}}}}} | founder = {{{fundador|{{{founder|}}}}}} | named_for = {{{naran_husi|{{{named_for|}}}}}} | seat_type = {{{tipu_sede|{{{seat_type|}}}}}} | seat = {{{sede|{{{seat|}}}}}} | seat1_type = {{{tipu_sede1|{{{seat1_type|}}}}}} | seat1 = {{{sede1|{{{seat1|}}}}}} | parts_type = {{{tipu_parte|{{{parts_type|}}}}}} | parts_style = {{{estilu_parte|{{{parts_style|}}}}}} | parts = {{{parte_sira|{{{parts|}}}}}} | p1 = {{{parte1|{{{p1|}}}}}} | p2 = {{{parte2|{{{p2|}}}}}} | p3 = {{{parte3|{{{p3|}}}}}} | p4 = {{{parte4|{{{p4|}}}}}} | p5 = {{{parte5|{{{p5|}}}}}} | p6 = {{{parte6|{{{p6|}}}}}} | p7 = {{{parte7|{{{p7|}}}}}} | p8 = {{{parte8|{{{p8|}}}}}} | p9 = {{{parte9|{{{p9|}}}}}} | p10 = {{{parte10|{{{p10|}}}}}} | p11 = {{{parte11|{{{p11|}}}}}} | p12 = {{{parte12|{{{p12|}}}}}} | p13 = {{{parte13|{{{p13|}}}}}} | p14 = {{{parte14|{{{p14|}}}}}} | p15 = {{{parte15|{{{p15|}}}}}} | p16 = {{{parte16|{{{p16|}}}}}} | p17 = {{{parte17|{{{p17|}}}}}} | p18 = {{{parte18|{{{p18|}}}}}} | p19 = {{{parte19|{{{p19|}}}}}} | p20 = {{{parte20|{{{p20|}}}}}} | p21 = {{{parte21|{{{p21|}}}}}} | p22 = {{{parte22|{{{p22|}}}}}} | p23 = {{{parte23|{{{p23|}}}}}} | p24 = {{{parte24|{{{p24|}}}}}} | p25 = {{{parte25|{{{p25|}}}}}} | p26 = {{{parte26|{{{p26|}}}}}} | p27 = {{{parte27|{{{p27|}}}}}} | p28 = {{{parte28|{{{p28|}}}}}} | p29 = {{{parte29|{{{p29|}}}}}} | p30 = {{{parte30|{{{p30|}}}}}} | p31 = {{{parte31|{{{p31|}}}}}} | p32 = {{{parte32|{{{p32|}}}}}} | p33 = {{{parte33|{{{p33|}}}}}} | p34 = {{{parte34|{{{p34|}}}}}} | p35 = {{{parte35|{{{p35|}}}}}} | p36 = {{{parte36|{{{p36|}}}}}} | p37 = {{{parte37|{{{p37|}}}}}} | p38 = {{{parte38|{{{p38|}}}}}} | p39 = {{{parte39|{{{p39|}}}}}} | p40 = {{{parte40|{{{p40|}}}}}} | p41 = {{{parte41|{{{p41|}}}}}} | p42 = {{{parte42|{{{p42|}}}}}} | p43 = {{{parte43|{{{p43|}}}}}} | p44 = {{{parte44|{{{p44|}}}}}} | p45 = {{{parte45|{{{p45|}}}}}} | p46 = {{{parte46|{{{p46|}}}}}} | p47 = {{{parte47|{{{p47|}}}}}} | p48 = {{{parte48|{{{p48|}}}}}} | p49 = {{{parte49|{{{p49|}}}}}} | p50 = {{{parte50|{{{p50|}}}}}} | government_footnotes = {{{nota_governu|{{{government_footnotes|}}}}}} | government_type = {{{tipu_governu|{{{government_type|}}}}}} | governing_body = {{{orgaun_governu|{{{governing_body|}}}}}} | leader_party = {{{partidu_lider|{{{leader_party|}}}}}} | leader_title = {{{titulu_lider|{{{leader_title|}}}}}} | leader_name = {{{naran_lider|{{{leader_name|}}}}}} | leader_title1 = {{{titulu_lider1|{{{leader_title1|}}}}}} | leader_name1 = {{{naran_lider1|{{{leader_name1|}}}}}} | leader_party1 = {{{partidu_lider1|{{{leader_party1|}}}}}} | leader_title2 = {{{titulu_lider2|{{{leader_title2|}}}}}} | leader_name2 = {{{naran_lider2|{{{leader_name2|}}}}}} | leader_party2 = {{{partidu_lider2|{{{leader_party2|}}}}}} | leader_title3 = {{{titulu_lider3|{{{leader_title3|}}}}}} | leader_name3 = {{{naran_lider3|{{{leader_name3|}}}}}} | leader_party3 = {{{partidu_lider3|{{{leader_party3|}}}}}} | leader_title4 = {{{titulu_lider4|{{{leader_title4|}}}}}} | leader_name4 = {{{naran_lider4|{{{leader_name4|}}}}}} | leader_party4 = {{{partidu_lider4|{{{leader_party4|}}}}}} | total_type = {{{tipu_total|{{{total_type|}}}}}} | unit_pref = {{{unidade_preferida|{{{unit_pref|}}}}}} | area_footnotes = {{{nota_area|{{{area_footnotes|}}}}}} | dunam_link = {{{ligasaun_dunam|{{{dunam_link|}}}}}} | area_total_km2 = {{{area_total_km2|{{{area_total_km2|}}}}}} | area_total_sq_mi = {{{area_total_sq_mi|{{{area_total_sq_mi|}}}}}} | area_total_ha = {{{area_total_ha|{{{area_total_ha|}}}}}} | area_total_acre = {{{area_total_acre|{{{area_total_acre|}}}}}} | area_total_dunam = {{{area_total_dunam|{{{area_total_dunam|}}}}}} | area_land_km2 = {{{area_rai_km2|{{{area_land_km2|}}}}}} | area_land_sq_mi = {{{area_rai_sq_mi|{{{area_land_sq_mi|}}}}}} | area_land_ha = {{{area_rai_ha|{{{area_land_ha|}}}}}} | area_land_acre = {{{area_rai_acre|{{{area_land_acre|}}}}}} | area_land_dunam = {{{area_rai_dunam|{{{area_land_dunam|}}}}}} | area_water_km2 = {{{area_bee_km2|{{{area_water_km2|}}}}}} | area_water_sq_mi = {{{area_bee_sq_mi|{{{area_water_sq_mi|}}}}}} | area_water_ha = {{{area_bee_ha|{{{area_water_ha|}}}}}} | area_water_acre = {{{area_bee_acre|{{{area_water_acre|}}}}}} | area_water_dunam = {{{area_bee_dunam|{{{area_water_dunam|}}}}}} | area_urban_km2 = {{{area_urbana_km2|{{{area_urban_km2|}}}}}} | area_urban_sq_mi = {{{area_urbana_sq_mi|{{{area_urban_sq_mi|}}}}}} | area_urban_ha = {{{area_urbana_ha|{{{area_urban_ha|}}}}}} | area_urban_acre = {{{area_urbana_acre|{{{area_urban_acre|}}}}}} | area_urban_dunam = {{{area_urbana_dunam|{{{area_urban_dunam|}}}}}} | area_rural_km2 = {{{area_rural_km2|{{{area_rural_km2|}}}}}} | area_rural_sq_mi = {{{area_rural_sq_mi|{{{area_rural_sq_mi|}}}}}} | area_rural_ha = {{{area_rural_ha|{{{area_rural_ha|}}}}}} | area_rural_acre = {{{area_rural_acre|{{{area_rural_acre|}}}}}} | area_rural_dunam = {{{area_rural_dunam|{{{area_rural_dunam|}}}}}} | area_metro_km2 = {{{area_metropolitana_km2|{{{area_metro_km2|}}}}}} | area_metro_sq_mi = {{{area_metropolitana_sq_mi|{{{area_metro_sq_mi|}}}}}} | area_metro_ha = {{{area_metropolitana_ha|{{{area_metro_ha|}}}}}} | area_metro_acre = {{{area_metropolitana_acre|{{{area_metro_acre|}}}}}} | area_metro_dunam = {{{area_metropolitana_dunam|{{{area_metro_dunam|}}}}}} | area_water_percent = {{{persentajen_bee|{{{area_water_percent|}}}}}} | area_urban_footnotes = {{{nota_area_urbana|{{{area_urban_footnotes|}}}}}} | area_rural_footnotes = {{{nota_area_rural|{{{area_rural_footnotes|}}}}}} | area_metro_footnotes = {{{nota_area_metropolitana|{{{area_metro_footnotes|}}}}}} | area_rank = {{{rank_area|{{{area_rank|}}}}}} | area_note = {{{nota_area|{{{area_note|}}}}}} | area_blank1_title = {{{titulu_area_seluk1|{{{area_blank1_title|}}}}}} | area_blank1_km2 = {{{area_seluk1_km2|{{{area_blank1_km2|}}}}}} | area_blank1_sq_mi = {{{area_seluk1_sq_mi|{{{area_blank1_sq_mi|}}}}}} | area_blank1_ha = {{{area_seluk1_ha|{{{area_blank1_ha|}}}}}} | area_blank1_acre = {{{area_seluk1_acre|{{{area_blank1_acre|}}}}}} | area_blank1_dunam = {{{area_seluk1_dunam|{{{area_blank1_dunam|}}}}}} | area_blank2_title = {{{titulu_area_seluk2|{{{area_blank2_title|}}}}}} | area_blank2_km2 = {{{area_seluk2_km2|{{{area_blank2_km2|}}}}}} | area_blank2_sq_mi = {{{area_seluk2_sq_mi|{{{area_blank2_sq_mi|}}}}}} | area_blank2_ha = {{{area_seluk2_ha|{{{area_blank2_ha|}}}}}} | area_blank2_acre = {{{area_seluk2_acre|{{{area_blank2_acre|}}}}}} | area_blank2_dunam = {{{area_seluk2_dunam|{{{area_blank2_dunam|}}}}}} | dimensions_footnotes = {{{nota_dimensaun|{{{dimensions_footnotes|}}}}}} | length_km = {{{naruk_km|{{{length_km|}}}}}} | length_mi = {{{naruk_mi|{{{length_mi|}}}}}} | width_km = {{{luan_km|{{{width_km|}}}}}} | width_mi = {{{luan_mi|{{{width_mi|}}}}}} | elevation_footnotes = {{{nota_altitude|{{{elevation_footnotes|}}}}}} | elevation_m = {{{altitude_m|{{{elevation_m|}}}}}} | elevation_ft = {{{altitude_ft|{{{elevation_ft|}}}}}} | elevation_point = {{{pontu_altitude|{{{elevation_point|}}}}}} | elevation_max_footnotes = {{{nota_altitude_max|{{{elevation_max_footnotes|}}}}}} | elevation_max_m = {{{altitude_max_m|{{{elevation_max_m|}}}}}} | elevation_max_ft = {{{altitude_max_ft|{{{elevation_max_ft|}}}}}} | elevation_max_point = {{{pontu_altitude_max|{{{elevation_max_point|}}}}}} | elevation_max_rank = {{{rank_altitude_max|{{{elevation_max_rank|}}}}}} | elevation_min_footnotes = {{{nota_altitude_min|{{{elevation_min_footnotes|}}}}}} | elevation_min_m = {{{altitude_min_m|{{{elevation_min_m|}}}}}} | elevation_min_ft = {{{altitude_min_ft|{{{elevation_min_ft|}}}}}} | elevation_min_point = {{{pontu_altitude_min|{{{elevation_min_point|}}}}}} | elevation_min_rank = {{{rank_altitude_min|{{{elevation_min_rank|}}}}}} | population_footnotes = {{{nota_populasaun|{{{population_footnotes|}}}}}} | population_as_of = {{{data_populasaun|{{{population_as_of|}}}}}} | population_total = {{{populasaun_total|{{{population_total|}}}}}} | pop_est_footnotes = {{{nota_estimasaun_populasaun|{{{pop_est_footnotes|}}}}}} | pop_est_as_of = {{{data_estimasaun_populasaun|{{{pop_est_as_of|}}}}}} | population_est = {{{estimasaun_populasaun|{{{population_est|}}}}}} | population_rank = {{{rank_populasaun|{{{population_rank|}}}}}} | population_density_km2 = {{{densidade_populasaun_km2|{{{population_density_km2|}}}}}} | population_density_sq_mi = {{{densidade_populasaun_sq_mi|{{{population_density_sq_mi|}}}}}} | population_urban_footnotes = {{{nota_populasaun_urbana|{{{population_urban_footnotes|}}}}}} | population_urban = {{{populasaun_urbana|{{{population_urban|}}}}}} | population_density_urban_km2 = {{{densidade_populasaun_urbana_km2|{{{population_density_urban_km2|}}}}}} | population_density_urban_sq_mi = {{{densidade_populasaun_urbana_sq_mi|{{{population_density_urban_sq_mi|}}}}}} | population_rural_footnotes = {{{nota_populasaun_rural|{{{population_rural_footnotes|}}}}}} | population_rural = {{{populasaun_rural|{{{population_rural|}}}}}} | population_density_rural_km2 = {{{densidade_populasaun_rural_km2|{{{population_density_rural_km2|}}}}}} | population_density_rural_sq_mi = {{{densidade_populasaun_rural_sq_mi|{{{population_density_rural_sq_mi|}}}}}} | population_metro_footnotes = {{{nota_populasaun_metropolitana|{{{population_metro_footnotes|}}}}}} | population_metro = {{{populasaun_metropolitana|{{{population_metro|}}}}}} | population_density_metro_km2 = {{{densidade_populasaun_metropolitana_km2|{{{population_density_metro_km2|}}}}}} | population_density_metro_sq_mi = {{{densidade_populasaun_metropolitana_sq_mi|{{{population_density_metro_sq_mi|}}}}}} | population_density_rank = {{{rank_densidade_populasaun|{{{population_density_rank|}}}}}} | population_blank1_title = {{{titulu_populasaun_seluk1|{{{population_blank1_title|}}}}}} | population_blank1 = {{{populasaun_seluk1|{{{population_blank1|}}}}}} | population_density_blank1_km2 = {{{densidade_populasaun_seluk1_km2|{{{population_density_blank1_km2|}}}}}} | population_density_blank1_sq_mi = {{{densidade_populasaun_seluk1_sq_mi|{{{population_density_blank1_sq_mi|}}}}}} | population_blank2_title = {{{titulu_populasaun_seluk2|{{{population_blank2_title|}}}}}} | population_blank2 = {{{populasaun_seluk2|{{{population_blank2|}}}}}} | population_density_blank2_km2 = {{{densidade_populasaun_seluk2_km2|{{{population_density_blank2_km2|}}}}}} | population_density_blank2_sq_mi = {{{densidade_populasaun_seluk2_sq_mi|{{{population_density_blank2_sq_mi|}}}}}} | population_demonym = {{{demonimu_populasaun|{{{population_demonym|}}}}}} | population_demonyms = {{{demonimu_populasaun_sira|{{{population_demonyms|}}}}}} | population_note = {{{nota_populasaun|{{{population_note|}}}}}} | demographics_type1 = {{{tipu_demografia1|{{{demographics_type1|}}}}}} | demographics1_footnotes = {{{nota_demografia1|{{{demographics1_footnotes|}}}}}} | demographics1_title1 = {{{titulu_demografia1_1|{{{demographics1_title1|}}}}}} | demographics1_info1 = {{{info_demografia1_1|{{{demographics1_info1|}}}}}} | demographics1_title2 = {{{titulu_demografia1_2|{{{demographics1_title2|}}}}}} | demographics1_info2 = {{{info_demografia1_2|{{{demographics1_info2|}}}}}} | demographics1_title3 = {{{titulu_demografia1_3|{{{demographics1_title3|}}}}}} | demographics1_info3 = {{{info_demografia1_3|{{{demographics1_info3|}}}}}} | demographics1_title4 = {{{titulu_demografia1_4|{{{demographics1_title4|}}}}}} | demographics1_info4 = {{{info_demografia1_4|{{{demographics1_info4|}}}}}} | demographics1_title5 = {{{titulu_demografia1_5|{{{demographics1_title5|}}}}}} | demographics1_info5 = {{{info_demografia1_5|{{{demographics1_info5|}}}}}} | demographics1_title6 = {{{titulu_demografia1_6|{{{demographics1_title6|}}}}}} | demographics1_info6 = {{{info_demografia1_6|{{{demographics1_info6|}}}}}} | demographics1_title7 = {{{titulu_demografia1_7|{{{demographics1_title7|}}}}}} | demographics1_info7 = {{{info_demografia1_7|{{{demographics1_info7|}}}}}} | demographics_type2 = {{{tipu_demografia2|{{{demographics_type2|}}}}}} | demographics2_footnotes = {{{nota_demografia2|{{{demographics2_footnotes|}}}}}} | demographics2_title1 = {{{titulu_demografia2_1|{{{demographics2_title1|}}}}}} | demographics2_info1 = {{{info_demografia2_1|{{{demographics2_info1|}}}}}} | demographics2_title2 = {{{titulu_demografia2_2|{{{demographics2_title2|}}}}}} | demographics2_info2 = {{{info_demografia2_2|{{{demographics2_info2|}}}}}} | demographics2_title3 = {{{titulu_demografia2_3|{{{demographics2_title3|}}}}}} | demographics2_info3 = {{{info_demografia2_3|{{{demographics2_info3|}}}}}} | demographics2_title4 = {{{titulu_demografia2_4|{{{demographics2_title4|}}}}}} | demographics2_info4 = {{{info_demografia2_4|{{{demographics2_info4|}}}}}} | demographics2_title5 = {{{titulu_demografia2_5|{{{demographics2_title5|}}}}}} | demographics2_info5 = {{{info_demografia2_5|{{{demographics2_info5|}}}}}} | demographics2_title6 = {{{titulu_demografia2_6|{{{demographics2_title6|}}}}}} | demographics2_info6 = {{{info_demografia2_6|{{{demographics2_info6|}}}}}} | demographics2_title7 = {{{titulu_demografia2_7|{{{demographics2_title7|}}}}}} | demographics2_info7 = {{{info_demografia2_7|{{{demographics2_info7|}}}}}} | demographics2_title8 = {{{titulu_demografia2_8|{{{demographics2_title8|}}}}}} | demographics2_info8 = {{{info_demografia2_8|{{{demographics2_info8|}}}}}} | demographics2_title9 = {{{titulu_demografia2_9|{{{demographics2_title9|}}}}}} | demographics2_info9 = {{{info_demografia2_9|{{{demographics2_info9|}}}}}} | demographics2_title10 = {{{titulu_demografia2_10|{{{demographics2_title10|}}}}}} | demographics2_info10 = {{{info_demografia2_10|{{{demographics2_info10|}}}}}} | timezone_link = {{{ligasaun_zona_tempu|{{{timezone_link|}}}}}} | timezone = {{{zona_tempu|{{{timezone|}}}}}} | utc_offset = {{{diferensa_utc|{{{utc_offset|}}}}}} | timezone_DST = {{{zona_tempu_DST|{{{timezone_DST|}}}}}} | utc_offset_DST = {{{diferensa_utc_DST|{{{utc_offset_DST|}}}}}} | timezone1_location = {{{fatin_zona_tempu1|{{{timezone1_location|}}}}}} | timezone1 = {{{zona_tempu1|{{{timezone1|}}}}}} | utc_offset1 = {{{diferensa_utc1|{{{utc_offset1|}}}}}} | timezone1_DST = {{{zona_tempu1_DST|{{{timezone1_DST|}}}}}} | utc_offset1_DST = {{{diferensa_utc1_DST|{{{utc_offset1_DST|}}}}}} | timezone2_location = {{{fatin_zona_tempu2|{{{timezone2_location|}}}}}} | timezone2 = {{{zona_tempu2|{{{timezone2|}}}}}} | utc_offset2 = {{{diferensa_utc2|{{{utc_offset2|}}}}}} | timezone2_DST = {{{zona_tempu2_DST|{{{timezone2_DST|}}}}}} | utc_offset2_DST = {{{diferensa_utc2_DST|{{{utc_offset2_DST|}}}}}} | timezone3_location = {{{fatin_zona_tempu3|{{{timezone3_location|}}}}}} | timezone3 = {{{zona_tempu3|{{{timezone3|}}}}}} | utc_offset3 = {{{diferensa_utc3|{{{utc_offset3|}}}}}} | timezone3_DST = {{{zona_tempu3_DST|{{{timezone3_DST|}}}}}} | utc_offset3_DST = {{{diferensa_utc3_DST|{{{utc_offset3_DST|}}}}}} | timezone4_location = {{{fatin_zona_tempu4|{{{timezone4_location|}}}}}} | timezone4 = {{{zona_tempu4|{{{timezone4|}}}}}} | utc_offset4 = {{{diferensa_utc4|{{{utc_offset4|}}}}}} | timezone4_DST = {{{zona_tempu4_DST|{{{timezone4_DST|}}}}}} | utc_offset4_DST = {{{diferensa_utc4_DST|{{{utc_offset4_DST|}}}}}} | timezone5_location = {{{fatin_zona_tempu5|{{{timezone5_location|}}}}}} | timezone5 = {{{zona_tempu5|{{{timezone5|}}}}}} | utc_offset5 = {{{diferensa_utc5|{{{utc_offset5|}}}}}} | timezone5_DST = {{{zona_tempu5_DST|{{{timezone5_DST|}}}}}} | utc_offset5_DST = {{{diferensa_utc5_DST|{{{utc_offset5_DST|}}}}}} | postal_code_type = {{{tipu_kodigu_postal|{{{postal_code_type|}}}}}} | postal_code = {{{kodigu_postal|{{{postal_code|}}}}}} | postal2_code_type = {{{tipu_kodigu_postal2|{{{postal2_code_type|}}}}}} | postal2_code = {{{kodigu_postal2|{{{postal2_code|}}}}}} | area_code_type = {{{tipu_kodigu_area|{{{area_code_type|}}}}}} | area_code = {{{kodigu_area|{{{area_code|}}}}}} | area_codes = {{{kodigu_area_sira|{{{area_codes|}}}}}} | geocode = {{{geokodigu|{{{geocode|}}}}}} | iso_code = {{{kodigu_iso|{{{iso_code|}}}}}} | registration_plate_type = {{{tipu_plaka_veiklu|{{{registration_plate_type|}}}}}} | registration_plate = {{{plaka_veiklu|{{{registration_plate|}}}}}} | code1_name = {{{naran_kodigu1|{{{code1_name|}}}}}} | code1_info = {{{info_kodigu1|{{{code1_info|}}}}}} | code2_name = {{{naran_kodigu2|{{{code2_name|}}}}}} | code2_info = {{{info_kodigu2|{{{code2_info|}}}}}} | blank_name = {{{naran_kampu|{{{blank_name|}}}}}} | blank_info = {{{info_kampu|{{{blank_info|}}}}}} | blank1_name = {{{naran_kampu1|{{{blank1_name|}}}}}} | blank1_info = {{{info_kampu1|{{{blank1_info|}}}}}} | blank2_name = {{{naran_kampu2|{{{blank2_name|}}}}}} | blank2_info = {{{info_kampu2|{{{blank2_info|}}}}}} | blank_name_sec1 = {{{naran_kampu_sec1|{{{blank_name_sec1|}}}}}} | blank_info_sec1 = {{{info_kampu_sec1|{{{blank_info_sec1|}}}}}} | blank1_name_sec1 = {{{naran_kampu1_sec1|{{{blank1_name_sec1|}}}}}} | blank1_info_sec1 = {{{info_kampu1_sec1|{{{blank1_info_sec1|}}}}}} | blank2_name_sec1 = {{{naran_kampu2_sec1|{{{blank2_name_sec1|}}}}}} | blank2_info_sec1 = {{{info_kampu2_sec1|{{{blank2_info_sec1|}}}}}} | blank3_name_sec1 = {{{naran_kampu3_sec1|{{{blank3_name_sec1|}}}}}} | blank3_info_sec1 = {{{info_kampu3_sec1|{{{blank3_info_sec1|}}}}}} | blank4_name_sec1 = {{{naran_kampu4_sec1|{{{blank4_name_sec1|}}}}}} | blank4_info_sec1 = {{{info_kampu4_sec1|{{{blank4_info_sec1|}}}}}} | blank5_name_sec1 = {{{naran_kampu5_sec1|{{{blank5_name_sec1|}}}}}} | blank5_info_sec1 = {{{info_kampu5_sec1|{{{blank5_info_sec1|}}}}}} | blank6_name_sec1 = {{{naran_kampu6_sec1|{{{blank6_name_sec1|}}}}}} | blank6_info_sec1 = {{{info_kampu6_sec1|{{{blank6_info_sec1|}}}}}} | blank7_name_sec1 = {{{naran_kampu7_sec1|{{{blank7_name_sec1|}}}}}} | blank7_info_sec1 = {{{info_kampu7_sec1|{{{blank7_info_sec1|}}}}}} | blank_name_sec2 = {{{naran_kampu_sec2|{{{blank_name_sec2|}}}}}} | blank_info_sec2 = {{{info_kampu_sec2|{{{blank_info_sec2|}}}}}} | blank1_name_sec2 = {{{naran_kampu1_sec2|{{{blank1_name_sec2|}}}}}} | blank1_info_sec2 = {{{info_kampu1_sec2|{{{blank1_info_sec2|}}}}}} | blank2_name_sec2 = {{{naran_kampu2_sec2|{{{blank2_name_sec2|}}}}}} | blank2_info_sec2 = {{{info_kampu2_sec2|{{{blank2_info_sec2|}}}}}} | blank3_name_sec2 = {{{naran_kampu3_sec2|{{{blank3_name_sec2|}}}}}} | blank3_info_sec2 = {{{info_kampu3_sec2|{{{blank3_info_sec2|}}}}}} | blank4_name_sec2 = {{{naran_kampu4_sec2|{{{blank4_name_sec2|}}}}}} | blank4_info_sec2 = {{{info_kampu4_sec2|{{{blank4_info_sec2|}}}}}} | blank5_name_sec2 = {{{naran_kampu5_sec2|{{{blank5_name_sec2|}}}}}} | blank5_info_sec2 = {{{info_kampu5_sec2|{{{blank5_info_sec2|}}}}}} | blank6_name_sec2 = {{{naran_kampu6_sec2|{{{blank6_name_sec2|}}}}}} | blank6_info_sec2 = {{{info_kampu6_sec2|{{{blank6_info_sec2|}}}}}} | blank7_name_sec2 = {{{naran_kampu7_sec2|{{{blank7_name_sec2|}}}}}} | blank7_info_sec2 = {{{info_kampu7_sec2|{{{blank7_info_sec2|}}}}}} | website = {{{sitiu_web|{{{website|}}}}}} | module = {{{modulu|{{{module|}}}}}} | footnotes = {{{nota_sira|{{{footnotes|}}}}}} | child = {{{labarik|{{{child|}}}}}} | embed = {{{hatama|{{{embed|}}}}}} }}</includeonly><noinclude>{{Documentation}}</noinclude> st7w66v2rn8udvvw6x2h4uhk9hs92hl 72867 72839 2026-07-01T02:03:31Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement]] para [[Template:Infokaixa fatin-koabitasaun]]: localising only the main template. 72838 wikitext text/x-wiki <includeonly>{{Infokaixa fatin-koabitasaun/core | name = {{{naran|{{{name|}}}}}} | official_name = {{{naran_ofisial|{{{official_name|}}}}}} | native_name = {{{naran_lokal|{{{native_name|}}}}}} | native_name_lang = {{{lian_naran_lokal|{{{native_name_lang|}}}}}} | other_name = {{{naran_seluk|{{{other_name|}}}}}} | settlement_type = {{{tipu_fatin|{{{settlement_type|}}}}}} | short_description = {{{deskrisaun_badak|{{{short_description|}}}}}} | translit_lang1 = {{{transliterasaun_lian1|{{{translit_lang1|}}}}}} | translit_lang1_type = {{{transliterasaun_lian1_tipu|{{{translit_lang1_type|}}}}}} | translit_lang1_info = {{{transliterasaun_lian1_info|{{{translit_lang1_info|}}}}}} | translit_lang1_type1 = {{{transliterasaun_lian1_tipu1|{{{translit_lang1_type1|}}}}}} | translit_lang1_info1 = {{{transliterasaun_lian1_info1|{{{translit_lang1_info1|}}}}}} | translit_lang1_type2 = {{{transliterasaun_lian1_tipu2|{{{translit_lang1_type2|}}}}}} | translit_lang1_info2 = {{{transliterasaun_lian1_info2|{{{translit_lang1_info2|}}}}}} | translit_lang1_type3 = {{{transliterasaun_lian1_tipu3|{{{translit_lang1_type3|}}}}}} | translit_lang1_info3 = {{{transliterasaun_lian1_info3|{{{translit_lang1_info3|}}}}}} | translit_lang1_type4 = {{{transliterasaun_lian1_tipu4|{{{translit_lang1_type4|}}}}}} | translit_lang1_info4 = {{{transliterasaun_lian1_info4|{{{translit_lang1_info4|}}}}}} | translit_lang1_type5 = {{{transliterasaun_lian1_tipu5|{{{translit_lang1_type5|}}}}}} | translit_lang1_info5 = {{{transliterasaun_lian1_info5|{{{translit_lang1_info5|}}}}}} | translit_lang1_type6 = {{{transliterasaun_lian1_tipu6|{{{translit_lang1_type6|}}}}}} | translit_lang1_info6 = {{{transliterasaun_lian1_info6|{{{translit_lang1_info6|}}}}}} | translit_lang2 = {{{transliterasaun_lian2|{{{translit_lang2|}}}}}} | translit_lang2_type = {{{transliterasaun_lian2_tipu|{{{translit_lang2_type|}}}}}} | translit_lang2_info = {{{transliterasaun_lian2_info|{{{translit_lang2_info|}}}}}} | translit_lang2_type1 = {{{transliterasaun_lian2_tipu1|{{{translit_lang2_type1|}}}}}} | translit_lang2_info1 = {{{transliterasaun_lian2_info1|{{{translit_lang2_info1|}}}}}} | translit_lang2_type2 = {{{transliterasaun_lian2_tipu2|{{{translit_lang2_type2|}}}}}} | translit_lang2_info2 = {{{transliterasaun_lian2_info2|{{{translit_lang2_info2|}}}}}} | translit_lang2_type3 = {{{transliterasaun_lian2_tipu3|{{{translit_lang2_type3|}}}}}} | translit_lang2_info3 = {{{transliterasaun_lian2_info3|{{{translit_lang2_info3|}}}}}} | translit_lang2_type4 = {{{transliterasaun_lian2_tipu4|{{{translit_lang2_type4|}}}}}} | translit_lang2_info4 = {{{transliterasaun_lian2_info4|{{{translit_lang2_info4|}}}}}} | translit_lang2_type5 = {{{transliterasaun_lian2_tipu5|{{{translit_lang2_type5|}}}}}} | translit_lang2_info5 = {{{transliterasaun_lian2_info5|{{{translit_lang2_info5|}}}}}} | translit_lang2_type6 = {{{transliterasaun_lian2_tipu6|{{{translit_lang2_type6|}}}}}} | translit_lang2_info6 = {{{transliterasaun_lian2_info6|{{{translit_lang2_info6|}}}}}} | image_skyline = {{{imajen_paisajen|{{{image_skyline|}}}}}} | imagesize = {{{tamanu_imajen|{{{imagesize|}}}}}} | image_alt = {{{alt_imajen|{{{image_alt|}}}}}} | image_caption = {{{legenda_imajen|{{{image_caption|}}}}}} | image_flag = {{{imajen_bandeira|{{{image_flag|}}}}}} | flag_size = {{{tamanu_bandeira|{{{flag_size|}}}}}} | flag_alt = {{{alt_bandeira|{{{flag_alt|}}}}}} | flag_border = {{{borda_bandeira|{{{flag_border|}}}}}} | flag_link = {{{ligasaun_bandeira|{{{flag_link|}}}}}} | image_seal = {{{imajen_selu|{{{image_seal|}}}}}} | seal_size = {{{tamanu_selu|{{{seal_size|}}}}}} | seal_alt = {{{alt_selu|{{{seal_alt|}}}}}} | seal_link = {{{ligasaun_selu|{{{seal_link|}}}}}} | seal_type = {{{tipu_selu|{{{seal_type|}}}}}} | seal_class = {{{klase_selu|{{{seal_class|}}}}}} | image_shield = {{{imajen_brasau|{{{image_shield|}}}}}} | shield_size = {{{tamanu_brasau|{{{shield_size|}}}}}} | shield_alt = {{{alt_brasau|{{{shield_alt|}}}}}} | shield_link = {{{ligasaun_brasau|{{{shield_link|}}}}}} | image_blank_emblem = {{{imajen_emblema|{{{image_blank_emblem|}}}}}} | blank_emblem_type = {{{tipu_emblema|{{{blank_emblem_type|}}}}}} | blank_emblem_size = {{{tamanu_emblema|{{{blank_emblem_size|}}}}}} | blank_emblem_alt = {{{alt_emblema|{{{blank_emblem_alt|}}}}}} | blank_emblem_link = {{{ligasaun_emblema|{{{blank_emblem_link|}}}}}} | etymology = {{{etimolojia|{{{etymology|}}}}}} | nickname = {{{naran_popular|{{{nickname|}}}}}} | nicknames = {{{naran_popular_sira|{{{nicknames|}}}}}} | motto = {{{lema|{{{motto|}}}}}} | mottoes = {{{lema_sira|{{{mottoes|}}}}}} | anthem = {{{hino|{{{anthem|}}}}}} | image_map = {{{imajen_mapa|{{{image_map|}}}}}} | mapsize = {{{tamanu_mapa|{{{mapsize|}}}}}} | map_alt = {{{alt_mapa|{{{map_alt|}}}}}} | map_caption = {{{legenda_mapa|{{{map_caption|}}}}}} | image_map1 = {{{imajen_mapa1|{{{image_map1|}}}}}} | mapsize1 = {{{tamanu_mapa1|{{{mapsize1|}}}}}} | map_alt1 = {{{alt_mapa1|{{{map_alt1|}}}}}} | map_caption1 = {{{legenda_mapa1|{{{map_caption1|}}}}}} | pushpin_map = {{{mapa_lokalizasaun|{{{pushpin_map|}}}}}} | pushpin_mapsize = {{{tamanu_mapa_lokalizasaun|{{{pushpin_mapsize|}}}}}} | pushpin_map_alt = {{{alt_mapa_lokalizasaun|{{{pushpin_map_alt|}}}}}} | pushpin_map_caption = {{{legenda_mapa_lokalizasaun|{{{pushpin_map_caption|}}}}}} | pushpin_map_caption_notsmall = {{{legenda_mapa_lokalizasaun_la_kiik|{{{pushpin_map_caption_notsmall|}}}}}} | pushpin_label = {{{label_mapa_lokalizasaun|{{{pushpin_label|}}}}}} | pushpin_label_position = {{{pozisaun_label_mapa_lokalizasaun|{{{pushpin_label_position|}}}}}} | pushpin_outside = {{{liur_mapa_lokalizasaun|{{{pushpin_outside|}}}}}} | pushpin_relief = {{{relefu_mapa_lokalizasaun|{{{pushpin_relief|}}}}}} | pushpin_image = {{{imajen_mapa_lokalizasaun|{{{pushpin_image|}}}}}} | pushpin_overlay = {{{kamada_mapa_lokalizasaun|{{{pushpin_overlay|}}}}}} | mapframe = {{{mapa_interativu|{{{mapframe|}}}}}} | coordinates = {{{koordenadas|{{{coordinates|}}}}}} | coord = {{{koord|{{{coord|}}}}}} | coor_pinpoint = {{{pontu_koordenadas|{{{coor_pinpoint|}}}}}} | coordinates_footnotes = {{{nota_koordenadas|{{{coordinates_footnotes|}}}}}} | grid_name = {{{naran_grid|{{{grid_name|}}}}}} | grid_position = {{{pozisaun_grid|{{{grid_position|}}}}}} | mapframe-coordinates = {{{mapframe_koordenadas|{{{mapframe-coordinates|}}}}}} | mapframe-coord = {{{mapframe_koord|{{{mapframe-coord|}}}}}} | mapframe-caption = {{{mapframe_legenda|{{{mapframe-caption|}}}}}} | mapframe-custom = {{{mapframe_custom|{{{mapframe-custom|}}}}}} | mapframe-id = {{{mapframe_id|{{{mapframe-id|}}}}}} | id = {{{id|{{{id|}}}}}} | qid = {{{qid|{{{qid|}}}}}} | mapframe-wikidata = {{{mapframe_wikidata|{{{mapframe-wikidata|}}}}}} | mapframe-point = {{{mapframe_pontu|{{{mapframe-point|}}}}}} | mapframe-shape = {{{mapframe_forma|{{{mapframe-shape|}}}}}} | mapframe-line = {{{mapframe_lina|{{{mapframe-line|}}}}}} | mapframe-geomask = {{{mapframe_geomask|{{{mapframe-geomask|}}}}}} | mapframe-switcher = {{{mapframe_switcher|{{{mapframe-switcher|}}}}}} | mapframe-frame-width = {{{mapframe_luan_frame|{{{mapframe-frame-width|}}}}}} | mapframe-width = {{{mapframe_luan|{{{mapframe-width|}}}}}} | mapframe-frame-height = {{{mapframe_aas_frame|{{{mapframe-frame-height|}}}}}} | mapframe-height = {{{mapframe_aas|{{{mapframe-height|}}}}}} | mapframe-shape-fill = {{{mapframe_kor_forma|{{{mapframe-shape-fill|}}}}}} | mapframe-shape-fill-opacity = {{{mapframe_opasidade_kor_forma|{{{mapframe-shape-fill-opacity|}}}}}} | mapframe-stroke-color = {{{mapframe_kor_lina|{{{mapframe-stroke-color|}}}}}} | mapframe-stroke-colour = {{{mapframe_kor_lina_uk|{{{mapframe-stroke-colour|}}}}}} | mapframe-line-stroke-color = {{{mapframe_kor_lina_line|{{{mapframe-line-stroke-color|}}}}}} | mapframe-line-stroke-colour = {{{mapframe_kor_lina_line_uk|{{{mapframe-line-stroke-colour|}}}}}} | mapframe-shape-stroke-color = {{{mapframe_kor_borda_forma|{{{mapframe-shape-stroke-color|}}}}}} | mapframe-shape-stroke-colour = {{{mapframe_kor_borda_forma_uk|{{{mapframe-shape-stroke-colour|}}}}}} | mapframe-stroke-width = {{{mapframe_luan_lina|{{{mapframe-stroke-width|}}}}}} | mapframe-shape-stroke-width = {{{mapframe_luan_borda_forma|{{{mapframe-shape-stroke-width|}}}}}} | mapframe-line-stroke-width = {{{mapframe_luan_lina_line|{{{mapframe-line-stroke-width|}}}}}} | mapframe-marker = {{{mapframe_marker|{{{mapframe-marker|}}}}}} | mapframe-marker-color = {{{mapframe_kor_marker|{{{mapframe-marker-color|}}}}}} | mapframe-marker-colour = {{{mapframe_kor_marker_uk|{{{mapframe-marker-colour|}}}}}} | mapframe-geomask-stroke-color = {{{mapframe_kor_borda_geomask|{{{mapframe-geomask-stroke-color|}}}}}} | mapframe-geomask-stroke-colour = {{{mapframe_kor_borda_geomask_uk|{{{mapframe-geomask-stroke-colour|}}}}}} | mapframe-geomask-stroke-width = {{{mapframe_luan_borda_geomask|{{{mapframe-geomask-stroke-width|}}}}}} | mapframe-geomask-fill = {{{mapframe_kor_geomask|{{{mapframe-geomask-fill|}}}}}} | mapframe-geomask-fill-opacity = {{{mapframe_opasidade_kor_geomask|{{{mapframe-geomask-fill-opacity|}}}}}} | mapframe-zoom = {{{mapframe_zoom|{{{mapframe-zoom|}}}}}} | mapframe-length_km = {{{mapframe_naruk_km|{{{mapframe-length_km|}}}}}} | mapframe-length_mi = {{{mapframe_naruk_mi|{{{mapframe-length_mi|}}}}}} | mapframe-area_km2 = {{{mapframe_area_km2|{{{mapframe-area_km2|}}}}}} | mapframe-area_mi2 = {{{mapframe_area_mi2|{{{mapframe-area_mi2|}}}}}} | mapframe-frame-coordinates = {{{mapframe_frame_koordenadas|{{{mapframe-frame-coordinates|}}}}}} | mapframe-frame-coord = {{{mapframe_frame_koord|{{{mapframe-frame-coord|}}}}}} | mapframe-type = {{{mapframe_tipu|{{{mapframe-type|}}}}}} | mapframe-population = {{{mapframe_populasaun|{{{mapframe-population|}}}}}} | subdivision_type = {{{tipu_subdivizaun|{{{subdivision_type|}}}}}} | subdivision_name = {{{naran_subdivizaun|{{{subdivision_name|}}}}}} | subdivision_type1 = {{{tipu_subdivizaun1|{{{subdivision_type1|}}}}}} | subdivision_name1 = {{{naran_subdivizaun1|{{{subdivision_name1|}}}}}} | subdivision_type2 = {{{tipu_subdivizaun2|{{{subdivision_type2|}}}}}} | subdivision_name2 = {{{naran_subdivizaun2|{{{subdivision_name2|}}}}}} | subdivision_type3 = {{{tipu_subdivizaun3|{{{subdivision_type3|}}}}}} | subdivision_name3 = {{{naran_subdivizaun3|{{{subdivision_name3|}}}}}} | subdivision_type4 = {{{tipu_subdivizaun4|{{{subdivision_type4|}}}}}} | subdivision_name4 = {{{naran_subdivizaun4|{{{subdivision_name4|}}}}}} | subdivision_type5 = {{{tipu_subdivizaun5|{{{subdivision_type5|}}}}}} | subdivision_name5 = {{{naran_subdivizaun5|{{{subdivision_name5|}}}}}} | subdivision_type6 = {{{tipu_subdivizaun6|{{{subdivision_type6|}}}}}} | subdivision_name6 = {{{naran_subdivizaun6|{{{subdivision_name6|}}}}}} | established_title = {{{titulu_estabelesimentu|{{{established_title|}}}}}} | established_date = {{{data_estabelesimentu|{{{established_date|}}}}}} | established_title1 = {{{titulu_estabelesimentu1|{{{established_title1|}}}}}} | established_date1 = {{{data_estabelesimentu1|{{{established_date1|}}}}}} | established_title2 = {{{titulu_estabelesimentu2|{{{established_title2|}}}}}} | established_date2 = {{{data_estabelesimentu2|{{{established_date2|}}}}}} | established_title3 = {{{titulu_estabelesimentu3|{{{established_title3|}}}}}} | established_date3 = {{{data_estabelesimentu3|{{{established_date3|}}}}}} | established_title4 = {{{titulu_estabelesimentu4|{{{established_title4|}}}}}} | established_date4 = {{{data_estabelesimentu4|{{{established_date4|}}}}}} | established_title5 = {{{titulu_estabelesimentu5|{{{established_title5|}}}}}} | established_date5 = {{{data_estabelesimentu5|{{{established_date5|}}}}}} | established_title6 = {{{titulu_estabelesimentu6|{{{established_title6|}}}}}} | established_date6 = {{{data_estabelesimentu6|{{{established_date6|}}}}}} | established_title7 = {{{titulu_estabelesimentu7|{{{established_title7|}}}}}} | established_date7 = {{{data_estabelesimentu7|{{{established_date7|}}}}}} | extinct_title = {{{titulu_extinta|{{{extinct_title|}}}}}} | extinct_date = {{{data_extinta|{{{extinct_date|}}}}}} | founder = {{{fundador|{{{founder|}}}}}} | named_for = {{{naran_husi|{{{named_for|}}}}}} | seat_type = {{{tipu_sede|{{{seat_type|}}}}}} | seat = {{{sede|{{{seat|}}}}}} | seat1_type = {{{tipu_sede1|{{{seat1_type|}}}}}} | seat1 = {{{sede1|{{{seat1|}}}}}} | parts_type = {{{tipu_parte|{{{parts_type|}}}}}} | parts_style = {{{estilu_parte|{{{parts_style|}}}}}} | parts = {{{parte_sira|{{{parts|}}}}}} | p1 = {{{parte1|{{{p1|}}}}}} | p2 = {{{parte2|{{{p2|}}}}}} | p3 = {{{parte3|{{{p3|}}}}}} | p4 = {{{parte4|{{{p4|}}}}}} | p5 = {{{parte5|{{{p5|}}}}}} | p6 = {{{parte6|{{{p6|}}}}}} | p7 = {{{parte7|{{{p7|}}}}}} | p8 = {{{parte8|{{{p8|}}}}}} | p9 = {{{parte9|{{{p9|}}}}}} | p10 = {{{parte10|{{{p10|}}}}}} | p11 = {{{parte11|{{{p11|}}}}}} | p12 = {{{parte12|{{{p12|}}}}}} | p13 = {{{parte13|{{{p13|}}}}}} | p14 = {{{parte14|{{{p14|}}}}}} | p15 = {{{parte15|{{{p15|}}}}}} | p16 = {{{parte16|{{{p16|}}}}}} | p17 = {{{parte17|{{{p17|}}}}}} | p18 = {{{parte18|{{{p18|}}}}}} | p19 = {{{parte19|{{{p19|}}}}}} | p20 = {{{parte20|{{{p20|}}}}}} | p21 = {{{parte21|{{{p21|}}}}}} | p22 = {{{parte22|{{{p22|}}}}}} | p23 = {{{parte23|{{{p23|}}}}}} | p24 = {{{parte24|{{{p24|}}}}}} | p25 = {{{parte25|{{{p25|}}}}}} | p26 = {{{parte26|{{{p26|}}}}}} | p27 = {{{parte27|{{{p27|}}}}}} | p28 = {{{parte28|{{{p28|}}}}}} | p29 = {{{parte29|{{{p29|}}}}}} | p30 = {{{parte30|{{{p30|}}}}}} | p31 = {{{parte31|{{{p31|}}}}}} | p32 = {{{parte32|{{{p32|}}}}}} | p33 = {{{parte33|{{{p33|}}}}}} | p34 = {{{parte34|{{{p34|}}}}}} | p35 = {{{parte35|{{{p35|}}}}}} | p36 = {{{parte36|{{{p36|}}}}}} | p37 = {{{parte37|{{{p37|}}}}}} | p38 = {{{parte38|{{{p38|}}}}}} | p39 = {{{parte39|{{{p39|}}}}}} | p40 = {{{parte40|{{{p40|}}}}}} | p41 = {{{parte41|{{{p41|}}}}}} | p42 = {{{parte42|{{{p42|}}}}}} | p43 = {{{parte43|{{{p43|}}}}}} | p44 = {{{parte44|{{{p44|}}}}}} | p45 = {{{parte45|{{{p45|}}}}}} | p46 = {{{parte46|{{{p46|}}}}}} | p47 = {{{parte47|{{{p47|}}}}}} | p48 = {{{parte48|{{{p48|}}}}}} | p49 = {{{parte49|{{{p49|}}}}}} | p50 = {{{parte50|{{{p50|}}}}}} | government_footnotes = {{{nota_governu|{{{government_footnotes|}}}}}} | government_type = {{{tipu_governu|{{{government_type|}}}}}} | governing_body = {{{orgaun_governu|{{{governing_body|}}}}}} | leader_party = {{{partidu_lider|{{{leader_party|}}}}}} | leader_title = {{{titulu_lider|{{{leader_title|}}}}}} | leader_name = {{{naran_lider|{{{leader_name|}}}}}} | leader_title1 = {{{titulu_lider1|{{{leader_title1|}}}}}} | leader_name1 = {{{naran_lider1|{{{leader_name1|}}}}}} | leader_party1 = {{{partidu_lider1|{{{leader_party1|}}}}}} | leader_title2 = {{{titulu_lider2|{{{leader_title2|}}}}}} | leader_name2 = {{{naran_lider2|{{{leader_name2|}}}}}} | leader_party2 = {{{partidu_lider2|{{{leader_party2|}}}}}} | leader_title3 = {{{titulu_lider3|{{{leader_title3|}}}}}} | leader_name3 = {{{naran_lider3|{{{leader_name3|}}}}}} | leader_party3 = {{{partidu_lider3|{{{leader_party3|}}}}}} | leader_title4 = {{{titulu_lider4|{{{leader_title4|}}}}}} | leader_name4 = {{{naran_lider4|{{{leader_name4|}}}}}} | leader_party4 = {{{partidu_lider4|{{{leader_party4|}}}}}} | total_type = {{{tipu_total|{{{total_type|}}}}}} | unit_pref = {{{unidade_preferida|{{{unit_pref|}}}}}} | area_footnotes = {{{nota_area|{{{area_footnotes|}}}}}} | dunam_link = {{{ligasaun_dunam|{{{dunam_link|}}}}}} | area_total_km2 = {{{area_total_km2|{{{area_total_km2|}}}}}} | area_total_sq_mi = {{{area_total_sq_mi|{{{area_total_sq_mi|}}}}}} | area_total_ha = {{{area_total_ha|{{{area_total_ha|}}}}}} | area_total_acre = {{{area_total_acre|{{{area_total_acre|}}}}}} | area_total_dunam = {{{area_total_dunam|{{{area_total_dunam|}}}}}} | area_land_km2 = {{{area_rai_km2|{{{area_land_km2|}}}}}} | area_land_sq_mi = {{{area_rai_sq_mi|{{{area_land_sq_mi|}}}}}} | area_land_ha = {{{area_rai_ha|{{{area_land_ha|}}}}}} | area_land_acre = {{{area_rai_acre|{{{area_land_acre|}}}}}} | area_land_dunam = {{{area_rai_dunam|{{{area_land_dunam|}}}}}} | area_water_km2 = {{{area_bee_km2|{{{area_water_km2|}}}}}} | area_water_sq_mi = {{{area_bee_sq_mi|{{{area_water_sq_mi|}}}}}} | area_water_ha = {{{area_bee_ha|{{{area_water_ha|}}}}}} | area_water_acre = {{{area_bee_acre|{{{area_water_acre|}}}}}} | area_water_dunam = {{{area_bee_dunam|{{{area_water_dunam|}}}}}} | area_urban_km2 = {{{area_urbana_km2|{{{area_urban_km2|}}}}}} | area_urban_sq_mi = {{{area_urbana_sq_mi|{{{area_urban_sq_mi|}}}}}} | area_urban_ha = {{{area_urbana_ha|{{{area_urban_ha|}}}}}} | area_urban_acre = {{{area_urbana_acre|{{{area_urban_acre|}}}}}} | area_urban_dunam = {{{area_urbana_dunam|{{{area_urban_dunam|}}}}}} | area_rural_km2 = {{{area_rural_km2|{{{area_rural_km2|}}}}}} | area_rural_sq_mi = {{{area_rural_sq_mi|{{{area_rural_sq_mi|}}}}}} | area_rural_ha = {{{area_rural_ha|{{{area_rural_ha|}}}}}} | area_rural_acre = {{{area_rural_acre|{{{area_rural_acre|}}}}}} | area_rural_dunam = {{{area_rural_dunam|{{{area_rural_dunam|}}}}}} | area_metro_km2 = {{{area_metropolitana_km2|{{{area_metro_km2|}}}}}} | area_metro_sq_mi = {{{area_metropolitana_sq_mi|{{{area_metro_sq_mi|}}}}}} | area_metro_ha = {{{area_metropolitana_ha|{{{area_metro_ha|}}}}}} | area_metro_acre = {{{area_metropolitana_acre|{{{area_metro_acre|}}}}}} | area_metro_dunam = {{{area_metropolitana_dunam|{{{area_metro_dunam|}}}}}} | area_water_percent = {{{persentajen_bee|{{{area_water_percent|}}}}}} | area_urban_footnotes = {{{nota_area_urbana|{{{area_urban_footnotes|}}}}}} | area_rural_footnotes = {{{nota_area_rural|{{{area_rural_footnotes|}}}}}} | area_metro_footnotes = {{{nota_area_metropolitana|{{{area_metro_footnotes|}}}}}} | area_rank = {{{rank_area|{{{area_rank|}}}}}} | area_note = {{{nota_area|{{{area_note|}}}}}} | area_blank1_title = {{{titulu_area_seluk1|{{{area_blank1_title|}}}}}} | area_blank1_km2 = {{{area_seluk1_km2|{{{area_blank1_km2|}}}}}} | area_blank1_sq_mi = {{{area_seluk1_sq_mi|{{{area_blank1_sq_mi|}}}}}} | area_blank1_ha = {{{area_seluk1_ha|{{{area_blank1_ha|}}}}}} | area_blank1_acre = {{{area_seluk1_acre|{{{area_blank1_acre|}}}}}} | area_blank1_dunam = {{{area_seluk1_dunam|{{{area_blank1_dunam|}}}}}} | area_blank2_title = {{{titulu_area_seluk2|{{{area_blank2_title|}}}}}} | area_blank2_km2 = {{{area_seluk2_km2|{{{area_blank2_km2|}}}}}} | area_blank2_sq_mi = {{{area_seluk2_sq_mi|{{{area_blank2_sq_mi|}}}}}} | area_blank2_ha = {{{area_seluk2_ha|{{{area_blank2_ha|}}}}}} | area_blank2_acre = {{{area_seluk2_acre|{{{area_blank2_acre|}}}}}} | area_blank2_dunam = {{{area_seluk2_dunam|{{{area_blank2_dunam|}}}}}} | dimensions_footnotes = {{{nota_dimensaun|{{{dimensions_footnotes|}}}}}} | length_km = {{{naruk_km|{{{length_km|}}}}}} | length_mi = {{{naruk_mi|{{{length_mi|}}}}}} | width_km = {{{luan_km|{{{width_km|}}}}}} | width_mi = {{{luan_mi|{{{width_mi|}}}}}} | elevation_footnotes = {{{nota_altitude|{{{elevation_footnotes|}}}}}} | elevation_m = {{{altitude_m|{{{elevation_m|}}}}}} | elevation_ft = {{{altitude_ft|{{{elevation_ft|}}}}}} | elevation_point = {{{pontu_altitude|{{{elevation_point|}}}}}} | elevation_max_footnotes = {{{nota_altitude_max|{{{elevation_max_footnotes|}}}}}} | elevation_max_m = {{{altitude_max_m|{{{elevation_max_m|}}}}}} | elevation_max_ft = {{{altitude_max_ft|{{{elevation_max_ft|}}}}}} | elevation_max_point = {{{pontu_altitude_max|{{{elevation_max_point|}}}}}} | elevation_max_rank = {{{rank_altitude_max|{{{elevation_max_rank|}}}}}} | elevation_min_footnotes = {{{nota_altitude_min|{{{elevation_min_footnotes|}}}}}} | elevation_min_m = {{{altitude_min_m|{{{elevation_min_m|}}}}}} | elevation_min_ft = {{{altitude_min_ft|{{{elevation_min_ft|}}}}}} | elevation_min_point = {{{pontu_altitude_min|{{{elevation_min_point|}}}}}} | elevation_min_rank = {{{rank_altitude_min|{{{elevation_min_rank|}}}}}} | population_footnotes = {{{nota_populasaun|{{{population_footnotes|}}}}}} | population_as_of = {{{data_populasaun|{{{population_as_of|}}}}}} | population_total = {{{populasaun_total|{{{population_total|}}}}}} | pop_est_footnotes = {{{nota_estimasaun_populasaun|{{{pop_est_footnotes|}}}}}} | pop_est_as_of = {{{data_estimasaun_populasaun|{{{pop_est_as_of|}}}}}} | population_est = {{{estimasaun_populasaun|{{{population_est|}}}}}} | population_rank = {{{rank_populasaun|{{{population_rank|}}}}}} | population_density_km2 = {{{densidade_populasaun_km2|{{{population_density_km2|}}}}}} | population_density_sq_mi = {{{densidade_populasaun_sq_mi|{{{population_density_sq_mi|}}}}}} | population_urban_footnotes = {{{nota_populasaun_urbana|{{{population_urban_footnotes|}}}}}} | population_urban = {{{populasaun_urbana|{{{population_urban|}}}}}} | population_density_urban_km2 = {{{densidade_populasaun_urbana_km2|{{{population_density_urban_km2|}}}}}} | population_density_urban_sq_mi = {{{densidade_populasaun_urbana_sq_mi|{{{population_density_urban_sq_mi|}}}}}} | population_rural_footnotes = {{{nota_populasaun_rural|{{{population_rural_footnotes|}}}}}} | population_rural = {{{populasaun_rural|{{{population_rural|}}}}}} | population_density_rural_km2 = {{{densidade_populasaun_rural_km2|{{{population_density_rural_km2|}}}}}} | population_density_rural_sq_mi = {{{densidade_populasaun_rural_sq_mi|{{{population_density_rural_sq_mi|}}}}}} | population_metro_footnotes = {{{nota_populasaun_metropolitana|{{{population_metro_footnotes|}}}}}} | population_metro = {{{populasaun_metropolitana|{{{population_metro|}}}}}} | population_density_metro_km2 = {{{densidade_populasaun_metropolitana_km2|{{{population_density_metro_km2|}}}}}} | population_density_metro_sq_mi = {{{densidade_populasaun_metropolitana_sq_mi|{{{population_density_metro_sq_mi|}}}}}} | population_density_rank = {{{rank_densidade_populasaun|{{{population_density_rank|}}}}}} | population_blank1_title = {{{titulu_populasaun_seluk1|{{{population_blank1_title|}}}}}} | population_blank1 = {{{populasaun_seluk1|{{{population_blank1|}}}}}} | population_density_blank1_km2 = {{{densidade_populasaun_seluk1_km2|{{{population_density_blank1_km2|}}}}}} | population_density_blank1_sq_mi = {{{densidade_populasaun_seluk1_sq_mi|{{{population_density_blank1_sq_mi|}}}}}} | population_blank2_title = {{{titulu_populasaun_seluk2|{{{population_blank2_title|}}}}}} | population_blank2 = {{{populasaun_seluk2|{{{population_blank2|}}}}}} | population_density_blank2_km2 = {{{densidade_populasaun_seluk2_km2|{{{population_density_blank2_km2|}}}}}} | population_density_blank2_sq_mi = {{{densidade_populasaun_seluk2_sq_mi|{{{population_density_blank2_sq_mi|}}}}}} | population_demonym = {{{demonimu_populasaun|{{{population_demonym|}}}}}} | population_demonyms = {{{demonimu_populasaun_sira|{{{population_demonyms|}}}}}} | population_note = {{{nota_populasaun|{{{population_note|}}}}}} | demographics_type1 = {{{tipu_demografia1|{{{demographics_type1|}}}}}} | demographics1_footnotes = {{{nota_demografia1|{{{demographics1_footnotes|}}}}}} | demographics1_title1 = {{{titulu_demografia1_1|{{{demographics1_title1|}}}}}} | demographics1_info1 = {{{info_demografia1_1|{{{demographics1_info1|}}}}}} | demographics1_title2 = {{{titulu_demografia1_2|{{{demographics1_title2|}}}}}} | demographics1_info2 = {{{info_demografia1_2|{{{demographics1_info2|}}}}}} | demographics1_title3 = {{{titulu_demografia1_3|{{{demographics1_title3|}}}}}} | demographics1_info3 = {{{info_demografia1_3|{{{demographics1_info3|}}}}}} | demographics1_title4 = {{{titulu_demografia1_4|{{{demographics1_title4|}}}}}} | demographics1_info4 = {{{info_demografia1_4|{{{demographics1_info4|}}}}}} | demographics1_title5 = {{{titulu_demografia1_5|{{{demographics1_title5|}}}}}} | demographics1_info5 = {{{info_demografia1_5|{{{demographics1_info5|}}}}}} | demographics1_title6 = {{{titulu_demografia1_6|{{{demographics1_title6|}}}}}} | demographics1_info6 = {{{info_demografia1_6|{{{demographics1_info6|}}}}}} | demographics1_title7 = {{{titulu_demografia1_7|{{{demographics1_title7|}}}}}} | demographics1_info7 = {{{info_demografia1_7|{{{demographics1_info7|}}}}}} | demographics_type2 = {{{tipu_demografia2|{{{demographics_type2|}}}}}} | demographics2_footnotes = {{{nota_demografia2|{{{demographics2_footnotes|}}}}}} | demographics2_title1 = {{{titulu_demografia2_1|{{{demographics2_title1|}}}}}} | demographics2_info1 = {{{info_demografia2_1|{{{demographics2_info1|}}}}}} | demographics2_title2 = {{{titulu_demografia2_2|{{{demographics2_title2|}}}}}} | demographics2_info2 = {{{info_demografia2_2|{{{demographics2_info2|}}}}}} | demographics2_title3 = {{{titulu_demografia2_3|{{{demographics2_title3|}}}}}} | demographics2_info3 = {{{info_demografia2_3|{{{demographics2_info3|}}}}}} | demographics2_title4 = {{{titulu_demografia2_4|{{{demographics2_title4|}}}}}} | demographics2_info4 = {{{info_demografia2_4|{{{demographics2_info4|}}}}}} | demographics2_title5 = {{{titulu_demografia2_5|{{{demographics2_title5|}}}}}} | demographics2_info5 = {{{info_demografia2_5|{{{demographics2_info5|}}}}}} | demographics2_title6 = {{{titulu_demografia2_6|{{{demographics2_title6|}}}}}} | demographics2_info6 = {{{info_demografia2_6|{{{demographics2_info6|}}}}}} | demographics2_title7 = {{{titulu_demografia2_7|{{{demographics2_title7|}}}}}} | demographics2_info7 = {{{info_demografia2_7|{{{demographics2_info7|}}}}}} | demographics2_title8 = {{{titulu_demografia2_8|{{{demographics2_title8|}}}}}} | demographics2_info8 = {{{info_demografia2_8|{{{demographics2_info8|}}}}}} | demographics2_title9 = {{{titulu_demografia2_9|{{{demographics2_title9|}}}}}} | demographics2_info9 = {{{info_demografia2_9|{{{demographics2_info9|}}}}}} | demographics2_title10 = {{{titulu_demografia2_10|{{{demographics2_title10|}}}}}} | demographics2_info10 = {{{info_demografia2_10|{{{demographics2_info10|}}}}}} | timezone_link = {{{ligasaun_zona_tempu|{{{timezone_link|}}}}}} | timezone = {{{zona_tempu|{{{timezone|}}}}}} | utc_offset = {{{diferensa_utc|{{{utc_offset|}}}}}} | timezone_DST = {{{zona_tempu_DST|{{{timezone_DST|}}}}}} | utc_offset_DST = {{{diferensa_utc_DST|{{{utc_offset_DST|}}}}}} | timezone1_location = {{{fatin_zona_tempu1|{{{timezone1_location|}}}}}} | timezone1 = {{{zona_tempu1|{{{timezone1|}}}}}} | utc_offset1 = {{{diferensa_utc1|{{{utc_offset1|}}}}}} | timezone1_DST = {{{zona_tempu1_DST|{{{timezone1_DST|}}}}}} | utc_offset1_DST = {{{diferensa_utc1_DST|{{{utc_offset1_DST|}}}}}} | timezone2_location = {{{fatin_zona_tempu2|{{{timezone2_location|}}}}}} | timezone2 = {{{zona_tempu2|{{{timezone2|}}}}}} | utc_offset2 = {{{diferensa_utc2|{{{utc_offset2|}}}}}} | timezone2_DST = {{{zona_tempu2_DST|{{{timezone2_DST|}}}}}} | utc_offset2_DST = {{{diferensa_utc2_DST|{{{utc_offset2_DST|}}}}}} | timezone3_location = {{{fatin_zona_tempu3|{{{timezone3_location|}}}}}} | timezone3 = {{{zona_tempu3|{{{timezone3|}}}}}} | utc_offset3 = {{{diferensa_utc3|{{{utc_offset3|}}}}}} | timezone3_DST = {{{zona_tempu3_DST|{{{timezone3_DST|}}}}}} | utc_offset3_DST = {{{diferensa_utc3_DST|{{{utc_offset3_DST|}}}}}} | timezone4_location = {{{fatin_zona_tempu4|{{{timezone4_location|}}}}}} | timezone4 = {{{zona_tempu4|{{{timezone4|}}}}}} | utc_offset4 = {{{diferensa_utc4|{{{utc_offset4|}}}}}} | timezone4_DST = {{{zona_tempu4_DST|{{{timezone4_DST|}}}}}} | utc_offset4_DST = {{{diferensa_utc4_DST|{{{utc_offset4_DST|}}}}}} | timezone5_location = {{{fatin_zona_tempu5|{{{timezone5_location|}}}}}} | timezone5 = {{{zona_tempu5|{{{timezone5|}}}}}} | utc_offset5 = {{{diferensa_utc5|{{{utc_offset5|}}}}}} | timezone5_DST = {{{zona_tempu5_DST|{{{timezone5_DST|}}}}}} | utc_offset5_DST = {{{diferensa_utc5_DST|{{{utc_offset5_DST|}}}}}} | postal_code_type = {{{tipu_kodigu_postal|{{{postal_code_type|}}}}}} | postal_code = {{{kodigu_postal|{{{postal_code|}}}}}} | postal2_code_type = {{{tipu_kodigu_postal2|{{{postal2_code_type|}}}}}} | postal2_code = {{{kodigu_postal2|{{{postal2_code|}}}}}} | area_code_type = {{{tipu_kodigu_area|{{{area_code_type|}}}}}} | area_code = {{{kodigu_area|{{{area_code|}}}}}} | area_codes = {{{kodigu_area_sira|{{{area_codes|}}}}}} | geocode = {{{geokodigu|{{{geocode|}}}}}} | iso_code = {{{kodigu_iso|{{{iso_code|}}}}}} | registration_plate_type = {{{tipu_plaka_veiklu|{{{registration_plate_type|}}}}}} | registration_plate = {{{plaka_veiklu|{{{registration_plate|}}}}}} | code1_name = {{{naran_kodigu1|{{{code1_name|}}}}}} | code1_info = {{{info_kodigu1|{{{code1_info|}}}}}} | code2_name = {{{naran_kodigu2|{{{code2_name|}}}}}} | code2_info = {{{info_kodigu2|{{{code2_info|}}}}}} | blank_name = {{{naran_kampu|{{{blank_name|}}}}}} | blank_info = {{{info_kampu|{{{blank_info|}}}}}} | blank1_name = {{{naran_kampu1|{{{blank1_name|}}}}}} | blank1_info = {{{info_kampu1|{{{blank1_info|}}}}}} | blank2_name = {{{naran_kampu2|{{{blank2_name|}}}}}} | blank2_info = {{{info_kampu2|{{{blank2_info|}}}}}} | blank_name_sec1 = {{{naran_kampu_sec1|{{{blank_name_sec1|}}}}}} | blank_info_sec1 = {{{info_kampu_sec1|{{{blank_info_sec1|}}}}}} | blank1_name_sec1 = {{{naran_kampu1_sec1|{{{blank1_name_sec1|}}}}}} | blank1_info_sec1 = {{{info_kampu1_sec1|{{{blank1_info_sec1|}}}}}} | blank2_name_sec1 = {{{naran_kampu2_sec1|{{{blank2_name_sec1|}}}}}} | blank2_info_sec1 = {{{info_kampu2_sec1|{{{blank2_info_sec1|}}}}}} | blank3_name_sec1 = {{{naran_kampu3_sec1|{{{blank3_name_sec1|}}}}}} | blank3_info_sec1 = {{{info_kampu3_sec1|{{{blank3_info_sec1|}}}}}} | blank4_name_sec1 = {{{naran_kampu4_sec1|{{{blank4_name_sec1|}}}}}} | blank4_info_sec1 = {{{info_kampu4_sec1|{{{blank4_info_sec1|}}}}}} | blank5_name_sec1 = {{{naran_kampu5_sec1|{{{blank5_name_sec1|}}}}}} | blank5_info_sec1 = {{{info_kampu5_sec1|{{{blank5_info_sec1|}}}}}} | blank6_name_sec1 = {{{naran_kampu6_sec1|{{{blank6_name_sec1|}}}}}} | blank6_info_sec1 = {{{info_kampu6_sec1|{{{blank6_info_sec1|}}}}}} | blank7_name_sec1 = {{{naran_kampu7_sec1|{{{blank7_name_sec1|}}}}}} | blank7_info_sec1 = {{{info_kampu7_sec1|{{{blank7_info_sec1|}}}}}} | blank_name_sec2 = {{{naran_kampu_sec2|{{{blank_name_sec2|}}}}}} | blank_info_sec2 = {{{info_kampu_sec2|{{{blank_info_sec2|}}}}}} | blank1_name_sec2 = {{{naran_kampu1_sec2|{{{blank1_name_sec2|}}}}}} | blank1_info_sec2 = {{{info_kampu1_sec2|{{{blank1_info_sec2|}}}}}} | blank2_name_sec2 = {{{naran_kampu2_sec2|{{{blank2_name_sec2|}}}}}} | blank2_info_sec2 = {{{info_kampu2_sec2|{{{blank2_info_sec2|}}}}}} | blank3_name_sec2 = {{{naran_kampu3_sec2|{{{blank3_name_sec2|}}}}}} | blank3_info_sec2 = {{{info_kampu3_sec2|{{{blank3_info_sec2|}}}}}} | blank4_name_sec2 = {{{naran_kampu4_sec2|{{{blank4_name_sec2|}}}}}} | blank4_info_sec2 = {{{info_kampu4_sec2|{{{blank4_info_sec2|}}}}}} | blank5_name_sec2 = {{{naran_kampu5_sec2|{{{blank5_name_sec2|}}}}}} | blank5_info_sec2 = {{{info_kampu5_sec2|{{{blank5_info_sec2|}}}}}} | blank6_name_sec2 = {{{naran_kampu6_sec2|{{{blank6_name_sec2|}}}}}} | blank6_info_sec2 = {{{info_kampu6_sec2|{{{blank6_info_sec2|}}}}}} | blank7_name_sec2 = {{{naran_kampu7_sec2|{{{blank7_name_sec2|}}}}}} | blank7_info_sec2 = {{{info_kampu7_sec2|{{{blank7_info_sec2|}}}}}} | website = {{{sitiu_web|{{{website|}}}}}} | module = {{{modulu|{{{module|}}}}}} | footnotes = {{{nota_sira|{{{footnotes|}}}}}} | child = {{{labarik|{{{child|}}}}}} | embed = {{{hatama|{{{embed|}}}}}} }}</includeonly><noinclude>{{Documentation}}</noinclude> st7w66v2rn8udvvw6x2h4uhk9hs92hl 72869 72867 2026-07-01T02:04:41Z Robertsky 10424 fix 72869 wikitext text/x-wiki <includeonly>{{Infobox settlement/core | name = {{{naran|{{{name|}}}}}} | official_name = {{{naran_ofisial|{{{official_name|}}}}}} | native_name = {{{naran_lokal|{{{native_name|}}}}}} | native_name_lang = {{{lian_naran_lokal|{{{native_name_lang|}}}}}} | other_name = {{{naran_seluk|{{{other_name|}}}}}} | settlement_type = {{{tipu_fatin|{{{settlement_type|}}}}}} | short_description = {{{deskrisaun_badak|{{{short_description|}}}}}} | translit_lang1 = {{{transliterasaun_lian1|{{{translit_lang1|}}}}}} | translit_lang1_type = {{{transliterasaun_lian1_tipu|{{{translit_lang1_type|}}}}}} | translit_lang1_info = {{{transliterasaun_lian1_info|{{{translit_lang1_info|}}}}}} | translit_lang1_type1 = {{{transliterasaun_lian1_tipu1|{{{translit_lang1_type1|}}}}}} | translit_lang1_info1 = {{{transliterasaun_lian1_info1|{{{translit_lang1_info1|}}}}}} | translit_lang1_type2 = {{{transliterasaun_lian1_tipu2|{{{translit_lang1_type2|}}}}}} | translit_lang1_info2 = {{{transliterasaun_lian1_info2|{{{translit_lang1_info2|}}}}}} | translit_lang1_type3 = {{{transliterasaun_lian1_tipu3|{{{translit_lang1_type3|}}}}}} | translit_lang1_info3 = {{{transliterasaun_lian1_info3|{{{translit_lang1_info3|}}}}}} | translit_lang1_type4 = {{{transliterasaun_lian1_tipu4|{{{translit_lang1_type4|}}}}}} | translit_lang1_info4 = {{{transliterasaun_lian1_info4|{{{translit_lang1_info4|}}}}}} | translit_lang1_type5 = {{{transliterasaun_lian1_tipu5|{{{translit_lang1_type5|}}}}}} | translit_lang1_info5 = {{{transliterasaun_lian1_info5|{{{translit_lang1_info5|}}}}}} | translit_lang1_type6 = {{{transliterasaun_lian1_tipu6|{{{translit_lang1_type6|}}}}}} | translit_lang1_info6 = {{{transliterasaun_lian1_info6|{{{translit_lang1_info6|}}}}}} | translit_lang2 = {{{transliterasaun_lian2|{{{translit_lang2|}}}}}} | translit_lang2_type = {{{transliterasaun_lian2_tipu|{{{translit_lang2_type|}}}}}} | translit_lang2_info = {{{transliterasaun_lian2_info|{{{translit_lang2_info|}}}}}} | translit_lang2_type1 = {{{transliterasaun_lian2_tipu1|{{{translit_lang2_type1|}}}}}} | translit_lang2_info1 = {{{transliterasaun_lian2_info1|{{{translit_lang2_info1|}}}}}} | translit_lang2_type2 = {{{transliterasaun_lian2_tipu2|{{{translit_lang2_type2|}}}}}} | translit_lang2_info2 = {{{transliterasaun_lian2_info2|{{{translit_lang2_info2|}}}}}} | translit_lang2_type3 = {{{transliterasaun_lian2_tipu3|{{{translit_lang2_type3|}}}}}} | translit_lang2_info3 = {{{transliterasaun_lian2_info3|{{{translit_lang2_info3|}}}}}} | translit_lang2_type4 = {{{transliterasaun_lian2_tipu4|{{{translit_lang2_type4|}}}}}} | translit_lang2_info4 = {{{transliterasaun_lian2_info4|{{{translit_lang2_info4|}}}}}} | translit_lang2_type5 = {{{transliterasaun_lian2_tipu5|{{{translit_lang2_type5|}}}}}} | translit_lang2_info5 = {{{transliterasaun_lian2_info5|{{{translit_lang2_info5|}}}}}} | translit_lang2_type6 = {{{transliterasaun_lian2_tipu6|{{{translit_lang2_type6|}}}}}} | translit_lang2_info6 = {{{transliterasaun_lian2_info6|{{{translit_lang2_info6|}}}}}} | image_skyline = {{{imajen_paisajen|{{{image_skyline|}}}}}} | imagesize = {{{tamanu_imajen|{{{imagesize|}}}}}} | image_alt = {{{alt_imajen|{{{image_alt|}}}}}} | image_caption = {{{legenda_imajen|{{{image_caption|}}}}}} | image_flag = {{{imajen_bandeira|{{{image_flag|}}}}}} | flag_size = {{{tamanu_bandeira|{{{flag_size|}}}}}} | flag_alt = {{{alt_bandeira|{{{flag_alt|}}}}}} | flag_border = {{{borda_bandeira|{{{flag_border|}}}}}} | flag_link = {{{ligasaun_bandeira|{{{flag_link|}}}}}} | image_seal = {{{imajen_selu|{{{image_seal|}}}}}} | seal_size = {{{tamanu_selu|{{{seal_size|}}}}}} | seal_alt = {{{alt_selu|{{{seal_alt|}}}}}} | seal_link = {{{ligasaun_selu|{{{seal_link|}}}}}} | seal_type = {{{tipu_selu|{{{seal_type|}}}}}} | seal_class = {{{klase_selu|{{{seal_class|}}}}}} | image_shield = {{{imajen_brasau|{{{image_shield|}}}}}} | shield_size = {{{tamanu_brasau|{{{shield_size|}}}}}} | shield_alt = {{{alt_brasau|{{{shield_alt|}}}}}} | shield_link = {{{ligasaun_brasau|{{{shield_link|}}}}}} | image_blank_emblem = {{{imajen_emblema|{{{image_blank_emblem|}}}}}} | blank_emblem_type = {{{tipu_emblema|{{{blank_emblem_type|}}}}}} | blank_emblem_size = {{{tamanu_emblema|{{{blank_emblem_size|}}}}}} | blank_emblem_alt = {{{alt_emblema|{{{blank_emblem_alt|}}}}}} | blank_emblem_link = {{{ligasaun_emblema|{{{blank_emblem_link|}}}}}} | etymology = {{{etimolojia|{{{etymology|}}}}}} | nickname = {{{naran_popular|{{{nickname|}}}}}} | nicknames = {{{naran_popular_sira|{{{nicknames|}}}}}} | motto = {{{lema|{{{motto|}}}}}} | mottoes = {{{lema_sira|{{{mottoes|}}}}}} | anthem = {{{hino|{{{anthem|}}}}}} | image_map = {{{imajen_mapa|{{{image_map|}}}}}} | mapsize = {{{tamanu_mapa|{{{mapsize|}}}}}} | map_alt = {{{alt_mapa|{{{map_alt|}}}}}} | map_caption = {{{legenda_mapa|{{{map_caption|}}}}}} | image_map1 = {{{imajen_mapa1|{{{image_map1|}}}}}} | mapsize1 = {{{tamanu_mapa1|{{{mapsize1|}}}}}} | map_alt1 = {{{alt_mapa1|{{{map_alt1|}}}}}} | map_caption1 = {{{legenda_mapa1|{{{map_caption1|}}}}}} | pushpin_map = {{{mapa_lokalizasaun|{{{pushpin_map|}}}}}} | pushpin_mapsize = {{{tamanu_mapa_lokalizasaun|{{{pushpin_mapsize|}}}}}} | pushpin_map_alt = {{{alt_mapa_lokalizasaun|{{{pushpin_map_alt|}}}}}} | pushpin_map_caption = {{{legenda_mapa_lokalizasaun|{{{pushpin_map_caption|}}}}}} | pushpin_map_caption_notsmall = {{{legenda_mapa_lokalizasaun_la_kiik|{{{pushpin_map_caption_notsmall|}}}}}} | pushpin_label = {{{label_mapa_lokalizasaun|{{{pushpin_label|}}}}}} | pushpin_label_position = {{{pozisaun_label_mapa_lokalizasaun|{{{pushpin_label_position|}}}}}} | pushpin_outside = {{{liur_mapa_lokalizasaun|{{{pushpin_outside|}}}}}} | pushpin_relief = {{{relefu_mapa_lokalizasaun|{{{pushpin_relief|}}}}}} | pushpin_image = {{{imajen_mapa_lokalizasaun|{{{pushpin_image|}}}}}} | pushpin_overlay = {{{kamada_mapa_lokalizasaun|{{{pushpin_overlay|}}}}}} | mapframe = {{{mapa_interativu|{{{mapframe|}}}}}} | coordinates = {{{koordenadas|{{{coordinates|}}}}}} | coord = {{{koord|{{{coord|}}}}}} | coor_pinpoint = {{{pontu_koordenadas|{{{coor_pinpoint|}}}}}} | coordinates_footnotes = {{{nota_koordenadas|{{{coordinates_footnotes|}}}}}} | grid_name = {{{naran_grid|{{{grid_name|}}}}}} | grid_position = {{{pozisaun_grid|{{{grid_position|}}}}}} | mapframe-coordinates = {{{mapframe_koordenadas|{{{mapframe-coordinates|}}}}}} | mapframe-coord = {{{mapframe_koord|{{{mapframe-coord|}}}}}} | mapframe-caption = {{{mapframe_legenda|{{{mapframe-caption|}}}}}} | mapframe-custom = {{{mapframe_custom|{{{mapframe-custom|}}}}}} | mapframe-id = {{{mapframe_id|{{{mapframe-id|}}}}}} | id = {{{id|{{{id|}}}}}} | qid = {{{qid|{{{qid|}}}}}} | mapframe-wikidata = {{{mapframe_wikidata|{{{mapframe-wikidata|}}}}}} | mapframe-point = {{{mapframe_pontu|{{{mapframe-point|}}}}}} | mapframe-shape = {{{mapframe_forma|{{{mapframe-shape|}}}}}} | mapframe-line = {{{mapframe_lina|{{{mapframe-line|}}}}}} | mapframe-geomask = {{{mapframe_geomask|{{{mapframe-geomask|}}}}}} | mapframe-switcher = {{{mapframe_switcher|{{{mapframe-switcher|}}}}}} | mapframe-frame-width = {{{mapframe_luan_frame|{{{mapframe-frame-width|}}}}}} | mapframe-width = {{{mapframe_luan|{{{mapframe-width|}}}}}} | mapframe-frame-height = {{{mapframe_aas_frame|{{{mapframe-frame-height|}}}}}} | mapframe-height = {{{mapframe_aas|{{{mapframe-height|}}}}}} | mapframe-shape-fill = {{{mapframe_kor_forma|{{{mapframe-shape-fill|}}}}}} | mapframe-shape-fill-opacity = {{{mapframe_opasidade_kor_forma|{{{mapframe-shape-fill-opacity|}}}}}} | mapframe-stroke-color = {{{mapframe_kor_lina|{{{mapframe-stroke-color|}}}}}} | mapframe-stroke-colour = {{{mapframe_kor_lina_uk|{{{mapframe-stroke-colour|}}}}}} | mapframe-line-stroke-color = {{{mapframe_kor_lina_line|{{{mapframe-line-stroke-color|}}}}}} | mapframe-line-stroke-colour = {{{mapframe_kor_lina_line_uk|{{{mapframe-line-stroke-colour|}}}}}} | mapframe-shape-stroke-color = {{{mapframe_kor_borda_forma|{{{mapframe-shape-stroke-color|}}}}}} | mapframe-shape-stroke-colour = {{{mapframe_kor_borda_forma_uk|{{{mapframe-shape-stroke-colour|}}}}}} | mapframe-stroke-width = {{{mapframe_luan_lina|{{{mapframe-stroke-width|}}}}}} | mapframe-shape-stroke-width = {{{mapframe_luan_borda_forma|{{{mapframe-shape-stroke-width|}}}}}} | mapframe-line-stroke-width = {{{mapframe_luan_lina_line|{{{mapframe-line-stroke-width|}}}}}} | mapframe-marker = {{{mapframe_marker|{{{mapframe-marker|}}}}}} | mapframe-marker-color = {{{mapframe_kor_marker|{{{mapframe-marker-color|}}}}}} | mapframe-marker-colour = {{{mapframe_kor_marker_uk|{{{mapframe-marker-colour|}}}}}} | mapframe-geomask-stroke-color = {{{mapframe_kor_borda_geomask|{{{mapframe-geomask-stroke-color|}}}}}} | mapframe-geomask-stroke-colour = {{{mapframe_kor_borda_geomask_uk|{{{mapframe-geomask-stroke-colour|}}}}}} | mapframe-geomask-stroke-width = {{{mapframe_luan_borda_geomask|{{{mapframe-geomask-stroke-width|}}}}}} | mapframe-geomask-fill = {{{mapframe_kor_geomask|{{{mapframe-geomask-fill|}}}}}} | mapframe-geomask-fill-opacity = {{{mapframe_opasidade_kor_geomask|{{{mapframe-geomask-fill-opacity|}}}}}} | mapframe-zoom = {{{mapframe_zoom|{{{mapframe-zoom|}}}}}} | mapframe-length_km = {{{mapframe_naruk_km|{{{mapframe-length_km|}}}}}} | mapframe-length_mi = {{{mapframe_naruk_mi|{{{mapframe-length_mi|}}}}}} | mapframe-area_km2 = {{{mapframe_area_km2|{{{mapframe-area_km2|}}}}}} | mapframe-area_mi2 = {{{mapframe_area_mi2|{{{mapframe-area_mi2|}}}}}} | mapframe-frame-coordinates = {{{mapframe_frame_koordenadas|{{{mapframe-frame-coordinates|}}}}}} | mapframe-frame-coord = {{{mapframe_frame_koord|{{{mapframe-frame-coord|}}}}}} | mapframe-type = {{{mapframe_tipu|{{{mapframe-type|}}}}}} | mapframe-population = {{{mapframe_populasaun|{{{mapframe-population|}}}}}} | subdivision_type = {{{tipu_subdivizaun|{{{subdivision_type|}}}}}} | subdivision_name = {{{naran_subdivizaun|{{{subdivision_name|}}}}}} | subdivision_type1 = {{{tipu_subdivizaun1|{{{subdivision_type1|}}}}}} | subdivision_name1 = {{{naran_subdivizaun1|{{{subdivision_name1|}}}}}} | subdivision_type2 = {{{tipu_subdivizaun2|{{{subdivision_type2|}}}}}} | subdivision_name2 = {{{naran_subdivizaun2|{{{subdivision_name2|}}}}}} | subdivision_type3 = {{{tipu_subdivizaun3|{{{subdivision_type3|}}}}}} | subdivision_name3 = {{{naran_subdivizaun3|{{{subdivision_name3|}}}}}} | subdivision_type4 = {{{tipu_subdivizaun4|{{{subdivision_type4|}}}}}} | subdivision_name4 = {{{naran_subdivizaun4|{{{subdivision_name4|}}}}}} | subdivision_type5 = {{{tipu_subdivizaun5|{{{subdivision_type5|}}}}}} | subdivision_name5 = {{{naran_subdivizaun5|{{{subdivision_name5|}}}}}} | subdivision_type6 = {{{tipu_subdivizaun6|{{{subdivision_type6|}}}}}} | subdivision_name6 = {{{naran_subdivizaun6|{{{subdivision_name6|}}}}}} | established_title = {{{titulu_estabelesimentu|{{{established_title|}}}}}} | established_date = {{{data_estabelesimentu|{{{established_date|}}}}}} | established_title1 = {{{titulu_estabelesimentu1|{{{established_title1|}}}}}} | established_date1 = {{{data_estabelesimentu1|{{{established_date1|}}}}}} | established_title2 = {{{titulu_estabelesimentu2|{{{established_title2|}}}}}} | established_date2 = {{{data_estabelesimentu2|{{{established_date2|}}}}}} | established_title3 = {{{titulu_estabelesimentu3|{{{established_title3|}}}}}} | established_date3 = {{{data_estabelesimentu3|{{{established_date3|}}}}}} | established_title4 = {{{titulu_estabelesimentu4|{{{established_title4|}}}}}} | established_date4 = {{{data_estabelesimentu4|{{{established_date4|}}}}}} | established_title5 = {{{titulu_estabelesimentu5|{{{established_title5|}}}}}} | established_date5 = {{{data_estabelesimentu5|{{{established_date5|}}}}}} | established_title6 = {{{titulu_estabelesimentu6|{{{established_title6|}}}}}} | established_date6 = {{{data_estabelesimentu6|{{{established_date6|}}}}}} | established_title7 = {{{titulu_estabelesimentu7|{{{established_title7|}}}}}} | established_date7 = {{{data_estabelesimentu7|{{{established_date7|}}}}}} | extinct_title = {{{titulu_extinta|{{{extinct_title|}}}}}} | extinct_date = {{{data_extinta|{{{extinct_date|}}}}}} | founder = {{{fundador|{{{founder|}}}}}} | named_for = {{{naran_husi|{{{named_for|}}}}}} | seat_type = {{{tipu_sede|{{{seat_type|}}}}}} | seat = {{{sede|{{{seat|}}}}}} | seat1_type = {{{tipu_sede1|{{{seat1_type|}}}}}} | seat1 = {{{sede1|{{{seat1|}}}}}} | parts_type = {{{tipu_parte|{{{parts_type|}}}}}} | parts_style = {{{estilu_parte|{{{parts_style|}}}}}} | parts = {{{parte_sira|{{{parts|}}}}}} | p1 = {{{parte1|{{{p1|}}}}}} | p2 = {{{parte2|{{{p2|}}}}}} | p3 = {{{parte3|{{{p3|}}}}}} | p4 = {{{parte4|{{{p4|}}}}}} | p5 = {{{parte5|{{{p5|}}}}}} | p6 = {{{parte6|{{{p6|}}}}}} | p7 = {{{parte7|{{{p7|}}}}}} | p8 = {{{parte8|{{{p8|}}}}}} | p9 = {{{parte9|{{{p9|}}}}}} | p10 = {{{parte10|{{{p10|}}}}}} | p11 = {{{parte11|{{{p11|}}}}}} | p12 = {{{parte12|{{{p12|}}}}}} | p13 = {{{parte13|{{{p13|}}}}}} | p14 = {{{parte14|{{{p14|}}}}}} | p15 = {{{parte15|{{{p15|}}}}}} | p16 = {{{parte16|{{{p16|}}}}}} | p17 = {{{parte17|{{{p17|}}}}}} | p18 = {{{parte18|{{{p18|}}}}}} | p19 = {{{parte19|{{{p19|}}}}}} | p20 = {{{parte20|{{{p20|}}}}}} | p21 = {{{parte21|{{{p21|}}}}}} | p22 = {{{parte22|{{{p22|}}}}}} | p23 = {{{parte23|{{{p23|}}}}}} | p24 = {{{parte24|{{{p24|}}}}}} | p25 = {{{parte25|{{{p25|}}}}}} | p26 = {{{parte26|{{{p26|}}}}}} | p27 = {{{parte27|{{{p27|}}}}}} | p28 = {{{parte28|{{{p28|}}}}}} | p29 = {{{parte29|{{{p29|}}}}}} | p30 = {{{parte30|{{{p30|}}}}}} | p31 = {{{parte31|{{{p31|}}}}}} | p32 = {{{parte32|{{{p32|}}}}}} | p33 = {{{parte33|{{{p33|}}}}}} | p34 = {{{parte34|{{{p34|}}}}}} | p35 = {{{parte35|{{{p35|}}}}}} | p36 = {{{parte36|{{{p36|}}}}}} | p37 = {{{parte37|{{{p37|}}}}}} | p38 = {{{parte38|{{{p38|}}}}}} | p39 = {{{parte39|{{{p39|}}}}}} | p40 = {{{parte40|{{{p40|}}}}}} | p41 = {{{parte41|{{{p41|}}}}}} | p42 = {{{parte42|{{{p42|}}}}}} | p43 = {{{parte43|{{{p43|}}}}}} | p44 = {{{parte44|{{{p44|}}}}}} | p45 = {{{parte45|{{{p45|}}}}}} | p46 = {{{parte46|{{{p46|}}}}}} | p47 = {{{parte47|{{{p47|}}}}}} | p48 = {{{parte48|{{{p48|}}}}}} | p49 = {{{parte49|{{{p49|}}}}}} | p50 = {{{parte50|{{{p50|}}}}}} | government_footnotes = {{{nota_governu|{{{government_footnotes|}}}}}} | government_type = {{{tipu_governu|{{{government_type|}}}}}} | governing_body = {{{orgaun_governu|{{{governing_body|}}}}}} | leader_party = {{{partidu_lider|{{{leader_party|}}}}}} | leader_title = {{{titulu_lider|{{{leader_title|}}}}}} | leader_name = {{{naran_lider|{{{leader_name|}}}}}} | leader_title1 = {{{titulu_lider1|{{{leader_title1|}}}}}} | leader_name1 = {{{naran_lider1|{{{leader_name1|}}}}}} | leader_party1 = {{{partidu_lider1|{{{leader_party1|}}}}}} | leader_title2 = {{{titulu_lider2|{{{leader_title2|}}}}}} | leader_name2 = {{{naran_lider2|{{{leader_name2|}}}}}} | leader_party2 = {{{partidu_lider2|{{{leader_party2|}}}}}} | leader_title3 = {{{titulu_lider3|{{{leader_title3|}}}}}} | leader_name3 = {{{naran_lider3|{{{leader_name3|}}}}}} | leader_party3 = {{{partidu_lider3|{{{leader_party3|}}}}}} | leader_title4 = {{{titulu_lider4|{{{leader_title4|}}}}}} | leader_name4 = {{{naran_lider4|{{{leader_name4|}}}}}} | leader_party4 = {{{partidu_lider4|{{{leader_party4|}}}}}} | total_type = {{{tipu_total|{{{total_type|}}}}}} | unit_pref = {{{unidade_preferida|{{{unit_pref|}}}}}} | area_footnotes = {{{nota_area|{{{area_footnotes|}}}}}} | dunam_link = {{{ligasaun_dunam|{{{dunam_link|}}}}}} | area_total_km2 = {{{area_total_km2|{{{area_total_km2|}}}}}} | area_total_sq_mi = {{{area_total_sq_mi|{{{area_total_sq_mi|}}}}}} | area_total_ha = {{{area_total_ha|{{{area_total_ha|}}}}}} | area_total_acre = {{{area_total_acre|{{{area_total_acre|}}}}}} | area_total_dunam = {{{area_total_dunam|{{{area_total_dunam|}}}}}} | area_land_km2 = {{{area_rai_km2|{{{area_land_km2|}}}}}} | area_land_sq_mi = {{{area_rai_sq_mi|{{{area_land_sq_mi|}}}}}} | area_land_ha = {{{area_rai_ha|{{{area_land_ha|}}}}}} | area_land_acre = {{{area_rai_acre|{{{area_land_acre|}}}}}} | area_land_dunam = {{{area_rai_dunam|{{{area_land_dunam|}}}}}} | area_water_km2 = {{{area_bee_km2|{{{area_water_km2|}}}}}} | area_water_sq_mi = {{{area_bee_sq_mi|{{{area_water_sq_mi|}}}}}} | area_water_ha = {{{area_bee_ha|{{{area_water_ha|}}}}}} | area_water_acre = {{{area_bee_acre|{{{area_water_acre|}}}}}} | area_water_dunam = {{{area_bee_dunam|{{{area_water_dunam|}}}}}} | area_urban_km2 = {{{area_urbana_km2|{{{area_urban_km2|}}}}}} | area_urban_sq_mi = {{{area_urbana_sq_mi|{{{area_urban_sq_mi|}}}}}} | area_urban_ha = {{{area_urbana_ha|{{{area_urban_ha|}}}}}} | area_urban_acre = {{{area_urbana_acre|{{{area_urban_acre|}}}}}} | area_urban_dunam = {{{area_urbana_dunam|{{{area_urban_dunam|}}}}}} | area_rural_km2 = {{{area_rural_km2|{{{area_rural_km2|}}}}}} | area_rural_sq_mi = {{{area_rural_sq_mi|{{{area_rural_sq_mi|}}}}}} | area_rural_ha = {{{area_rural_ha|{{{area_rural_ha|}}}}}} | area_rural_acre = {{{area_rural_acre|{{{area_rural_acre|}}}}}} | area_rural_dunam = {{{area_rural_dunam|{{{area_rural_dunam|}}}}}} | area_metro_km2 = {{{area_metropolitana_km2|{{{area_metro_km2|}}}}}} | area_metro_sq_mi = {{{area_metropolitana_sq_mi|{{{area_metro_sq_mi|}}}}}} | area_metro_ha = {{{area_metropolitana_ha|{{{area_metro_ha|}}}}}} | area_metro_acre = {{{area_metropolitana_acre|{{{area_metro_acre|}}}}}} | area_metro_dunam = {{{area_metropolitana_dunam|{{{area_metro_dunam|}}}}}} | area_water_percent = {{{persentajen_bee|{{{area_water_percent|}}}}}} | area_urban_footnotes = {{{nota_area_urbana|{{{area_urban_footnotes|}}}}}} | area_rural_footnotes = {{{nota_area_rural|{{{area_rural_footnotes|}}}}}} | area_metro_footnotes = {{{nota_area_metropolitana|{{{area_metro_footnotes|}}}}}} | area_rank = {{{rank_area|{{{area_rank|}}}}}} | area_note = {{{nota_area|{{{area_note|}}}}}} | area_blank1_title = {{{titulu_area_seluk1|{{{area_blank1_title|}}}}}} | area_blank1_km2 = {{{area_seluk1_km2|{{{area_blank1_km2|}}}}}} | area_blank1_sq_mi = {{{area_seluk1_sq_mi|{{{area_blank1_sq_mi|}}}}}} | area_blank1_ha = {{{area_seluk1_ha|{{{area_blank1_ha|}}}}}} | area_blank1_acre = {{{area_seluk1_acre|{{{area_blank1_acre|}}}}}} | area_blank1_dunam = {{{area_seluk1_dunam|{{{area_blank1_dunam|}}}}}} | area_blank2_title = {{{titulu_area_seluk2|{{{area_blank2_title|}}}}}} | area_blank2_km2 = {{{area_seluk2_km2|{{{area_blank2_km2|}}}}}} | area_blank2_sq_mi = {{{area_seluk2_sq_mi|{{{area_blank2_sq_mi|}}}}}} | area_blank2_ha = {{{area_seluk2_ha|{{{area_blank2_ha|}}}}}} | area_blank2_acre = {{{area_seluk2_acre|{{{area_blank2_acre|}}}}}} | area_blank2_dunam = {{{area_seluk2_dunam|{{{area_blank2_dunam|}}}}}} | dimensions_footnotes = {{{nota_dimensaun|{{{dimensions_footnotes|}}}}}} | length_km = {{{naruk_km|{{{length_km|}}}}}} | length_mi = {{{naruk_mi|{{{length_mi|}}}}}} | width_km = {{{luan_km|{{{width_km|}}}}}} | width_mi = {{{luan_mi|{{{width_mi|}}}}}} | elevation_footnotes = {{{nota_altitude|{{{elevation_footnotes|}}}}}} | elevation_m = {{{altitude_m|{{{elevation_m|}}}}}} | elevation_ft = {{{altitude_ft|{{{elevation_ft|}}}}}} | elevation_point = {{{pontu_altitude|{{{elevation_point|}}}}}} | elevation_max_footnotes = {{{nota_altitude_max|{{{elevation_max_footnotes|}}}}}} | elevation_max_m = {{{altitude_max_m|{{{elevation_max_m|}}}}}} | elevation_max_ft = {{{altitude_max_ft|{{{elevation_max_ft|}}}}}} | elevation_max_point = {{{pontu_altitude_max|{{{elevation_max_point|}}}}}} | elevation_max_rank = {{{rank_altitude_max|{{{elevation_max_rank|}}}}}} | elevation_min_footnotes = {{{nota_altitude_min|{{{elevation_min_footnotes|}}}}}} | elevation_min_m = {{{altitude_min_m|{{{elevation_min_m|}}}}}} | elevation_min_ft = {{{altitude_min_ft|{{{elevation_min_ft|}}}}}} | elevation_min_point = {{{pontu_altitude_min|{{{elevation_min_point|}}}}}} | elevation_min_rank = {{{rank_altitude_min|{{{elevation_min_rank|}}}}}} | population_footnotes = {{{nota_populasaun|{{{population_footnotes|}}}}}} | population_as_of = {{{data_populasaun|{{{population_as_of|}}}}}} | population_total = {{{populasaun_total|{{{population_total|}}}}}} | pop_est_footnotes = {{{nota_estimasaun_populasaun|{{{pop_est_footnotes|}}}}}} | pop_est_as_of = {{{data_estimasaun_populasaun|{{{pop_est_as_of|}}}}}} | population_est = {{{estimasaun_populasaun|{{{population_est|}}}}}} | population_rank = {{{rank_populasaun|{{{population_rank|}}}}}} | population_density_km2 = {{{densidade_populasaun_km2|{{{population_density_km2|}}}}}} | population_density_sq_mi = {{{densidade_populasaun_sq_mi|{{{population_density_sq_mi|}}}}}} | population_urban_footnotes = {{{nota_populasaun_urbana|{{{population_urban_footnotes|}}}}}} | population_urban = {{{populasaun_urbana|{{{population_urban|}}}}}} | population_density_urban_km2 = {{{densidade_populasaun_urbana_km2|{{{population_density_urban_km2|}}}}}} | population_density_urban_sq_mi = {{{densidade_populasaun_urbana_sq_mi|{{{population_density_urban_sq_mi|}}}}}} | population_rural_footnotes = {{{nota_populasaun_rural|{{{population_rural_footnotes|}}}}}} | population_rural = {{{populasaun_rural|{{{population_rural|}}}}}} | population_density_rural_km2 = {{{densidade_populasaun_rural_km2|{{{population_density_rural_km2|}}}}}} | population_density_rural_sq_mi = {{{densidade_populasaun_rural_sq_mi|{{{population_density_rural_sq_mi|}}}}}} | population_metro_footnotes = {{{nota_populasaun_metropolitana|{{{population_metro_footnotes|}}}}}} | population_metro = {{{populasaun_metropolitana|{{{population_metro|}}}}}} | population_density_metro_km2 = {{{densidade_populasaun_metropolitana_km2|{{{population_density_metro_km2|}}}}}} | population_density_metro_sq_mi = {{{densidade_populasaun_metropolitana_sq_mi|{{{population_density_metro_sq_mi|}}}}}} | population_density_rank = {{{rank_densidade_populasaun|{{{population_density_rank|}}}}}} | population_blank1_title = {{{titulu_populasaun_seluk1|{{{population_blank1_title|}}}}}} | population_blank1 = {{{populasaun_seluk1|{{{population_blank1|}}}}}} | population_density_blank1_km2 = {{{densidade_populasaun_seluk1_km2|{{{population_density_blank1_km2|}}}}}} | population_density_blank1_sq_mi = {{{densidade_populasaun_seluk1_sq_mi|{{{population_density_blank1_sq_mi|}}}}}} | population_blank2_title = {{{titulu_populasaun_seluk2|{{{population_blank2_title|}}}}}} | population_blank2 = {{{populasaun_seluk2|{{{population_blank2|}}}}}} | population_density_blank2_km2 = {{{densidade_populasaun_seluk2_km2|{{{population_density_blank2_km2|}}}}}} | population_density_blank2_sq_mi = {{{densidade_populasaun_seluk2_sq_mi|{{{population_density_blank2_sq_mi|}}}}}} | population_demonym = {{{demonimu_populasaun|{{{population_demonym|}}}}}} | population_demonyms = {{{demonimu_populasaun_sira|{{{population_demonyms|}}}}}} | population_note = {{{nota_populasaun|{{{population_note|}}}}}} | demographics_type1 = {{{tipu_demografia1|{{{demographics_type1|}}}}}} | demographics1_footnotes = {{{nota_demografia1|{{{demographics1_footnotes|}}}}}} | demographics1_title1 = {{{titulu_demografia1_1|{{{demographics1_title1|}}}}}} | demographics1_info1 = {{{info_demografia1_1|{{{demographics1_info1|}}}}}} | demographics1_title2 = {{{titulu_demografia1_2|{{{demographics1_title2|}}}}}} | demographics1_info2 = {{{info_demografia1_2|{{{demographics1_info2|}}}}}} | demographics1_title3 = {{{titulu_demografia1_3|{{{demographics1_title3|}}}}}} | demographics1_info3 = {{{info_demografia1_3|{{{demographics1_info3|}}}}}} | demographics1_title4 = {{{titulu_demografia1_4|{{{demographics1_title4|}}}}}} | demographics1_info4 = {{{info_demografia1_4|{{{demographics1_info4|}}}}}} | demographics1_title5 = {{{titulu_demografia1_5|{{{demographics1_title5|}}}}}} | demographics1_info5 = {{{info_demografia1_5|{{{demographics1_info5|}}}}}} | demographics1_title6 = {{{titulu_demografia1_6|{{{demographics1_title6|}}}}}} | demographics1_info6 = {{{info_demografia1_6|{{{demographics1_info6|}}}}}} | demographics1_title7 = {{{titulu_demografia1_7|{{{demographics1_title7|}}}}}} | demographics1_info7 = {{{info_demografia1_7|{{{demographics1_info7|}}}}}} | demographics_type2 = {{{tipu_demografia2|{{{demographics_type2|}}}}}} | demographics2_footnotes = {{{nota_demografia2|{{{demographics2_footnotes|}}}}}} | demographics2_title1 = {{{titulu_demografia2_1|{{{demographics2_title1|}}}}}} | demographics2_info1 = {{{info_demografia2_1|{{{demographics2_info1|}}}}}} | demographics2_title2 = {{{titulu_demografia2_2|{{{demographics2_title2|}}}}}} | demographics2_info2 = {{{info_demografia2_2|{{{demographics2_info2|}}}}}} | demographics2_title3 = {{{titulu_demografia2_3|{{{demographics2_title3|}}}}}} | demographics2_info3 = {{{info_demografia2_3|{{{demographics2_info3|}}}}}} | demographics2_title4 = {{{titulu_demografia2_4|{{{demographics2_title4|}}}}}} | demographics2_info4 = {{{info_demografia2_4|{{{demographics2_info4|}}}}}} | demographics2_title5 = {{{titulu_demografia2_5|{{{demographics2_title5|}}}}}} | demographics2_info5 = {{{info_demografia2_5|{{{demographics2_info5|}}}}}} | demographics2_title6 = {{{titulu_demografia2_6|{{{demographics2_title6|}}}}}} | demographics2_info6 = {{{info_demografia2_6|{{{demographics2_info6|}}}}}} | demographics2_title7 = {{{titulu_demografia2_7|{{{demographics2_title7|}}}}}} | demographics2_info7 = {{{info_demografia2_7|{{{demographics2_info7|}}}}}} | demographics2_title8 = {{{titulu_demografia2_8|{{{demographics2_title8|}}}}}} | demographics2_info8 = {{{info_demografia2_8|{{{demographics2_info8|}}}}}} | demographics2_title9 = {{{titulu_demografia2_9|{{{demographics2_title9|}}}}}} | demographics2_info9 = {{{info_demografia2_9|{{{demographics2_info9|}}}}}} | demographics2_title10 = {{{titulu_demografia2_10|{{{demographics2_title10|}}}}}} | demographics2_info10 = {{{info_demografia2_10|{{{demographics2_info10|}}}}}} | timezone_link = {{{ligasaun_zona_tempu|{{{timezone_link|}}}}}} | timezone = {{{zona_tempu|{{{timezone|}}}}}} | utc_offset = {{{diferensa_utc|{{{utc_offset|}}}}}} | timezone_DST = {{{zona_tempu_DST|{{{timezone_DST|}}}}}} | utc_offset_DST = {{{diferensa_utc_DST|{{{utc_offset_DST|}}}}}} | timezone1_location = {{{fatin_zona_tempu1|{{{timezone1_location|}}}}}} | timezone1 = {{{zona_tempu1|{{{timezone1|}}}}}} | utc_offset1 = {{{diferensa_utc1|{{{utc_offset1|}}}}}} | timezone1_DST = {{{zona_tempu1_DST|{{{timezone1_DST|}}}}}} | utc_offset1_DST = {{{diferensa_utc1_DST|{{{utc_offset1_DST|}}}}}} | timezone2_location = {{{fatin_zona_tempu2|{{{timezone2_location|}}}}}} | timezone2 = {{{zona_tempu2|{{{timezone2|}}}}}} | utc_offset2 = {{{diferensa_utc2|{{{utc_offset2|}}}}}} | timezone2_DST = {{{zona_tempu2_DST|{{{timezone2_DST|}}}}}} | utc_offset2_DST = {{{diferensa_utc2_DST|{{{utc_offset2_DST|}}}}}} | timezone3_location = {{{fatin_zona_tempu3|{{{timezone3_location|}}}}}} | timezone3 = {{{zona_tempu3|{{{timezone3|}}}}}} | utc_offset3 = {{{diferensa_utc3|{{{utc_offset3|}}}}}} | timezone3_DST = {{{zona_tempu3_DST|{{{timezone3_DST|}}}}}} | utc_offset3_DST = {{{diferensa_utc3_DST|{{{utc_offset3_DST|}}}}}} | timezone4_location = {{{fatin_zona_tempu4|{{{timezone4_location|}}}}}} | timezone4 = {{{zona_tempu4|{{{timezone4|}}}}}} | utc_offset4 = {{{diferensa_utc4|{{{utc_offset4|}}}}}} | timezone4_DST = {{{zona_tempu4_DST|{{{timezone4_DST|}}}}}} | utc_offset4_DST = {{{diferensa_utc4_DST|{{{utc_offset4_DST|}}}}}} | timezone5_location = {{{fatin_zona_tempu5|{{{timezone5_location|}}}}}} | timezone5 = {{{zona_tempu5|{{{timezone5|}}}}}} | utc_offset5 = {{{diferensa_utc5|{{{utc_offset5|}}}}}} | timezone5_DST = {{{zona_tempu5_DST|{{{timezone5_DST|}}}}}} | utc_offset5_DST = {{{diferensa_utc5_DST|{{{utc_offset5_DST|}}}}}} | postal_code_type = {{{tipu_kodigu_postal|{{{postal_code_type|}}}}}} | postal_code = {{{kodigu_postal|{{{postal_code|}}}}}} | postal2_code_type = {{{tipu_kodigu_postal2|{{{postal2_code_type|}}}}}} | postal2_code = {{{kodigu_postal2|{{{postal2_code|}}}}}} | area_code_type = {{{tipu_kodigu_area|{{{area_code_type|}}}}}} | area_code = {{{kodigu_area|{{{area_code|}}}}}} | area_codes = {{{kodigu_area_sira|{{{area_codes|}}}}}} | geocode = {{{geokodigu|{{{geocode|}}}}}} | iso_code = {{{kodigu_iso|{{{iso_code|}}}}}} | registration_plate_type = {{{tipu_plaka_veiklu|{{{registration_plate_type|}}}}}} | registration_plate = {{{plaka_veiklu|{{{registration_plate|}}}}}} | code1_name = {{{naran_kodigu1|{{{code1_name|}}}}}} | code1_info = {{{info_kodigu1|{{{code1_info|}}}}}} | code2_name = {{{naran_kodigu2|{{{code2_name|}}}}}} | code2_info = {{{info_kodigu2|{{{code2_info|}}}}}} | blank_name = {{{naran_kampu|{{{blank_name|}}}}}} | blank_info = {{{info_kampu|{{{blank_info|}}}}}} | blank1_name = {{{naran_kampu1|{{{blank1_name|}}}}}} | blank1_info = {{{info_kampu1|{{{blank1_info|}}}}}} | blank2_name = {{{naran_kampu2|{{{blank2_name|}}}}}} | blank2_info = {{{info_kampu2|{{{blank2_info|}}}}}} | blank_name_sec1 = {{{naran_kampu_sec1|{{{blank_name_sec1|}}}}}} | blank_info_sec1 = {{{info_kampu_sec1|{{{blank_info_sec1|}}}}}} | blank1_name_sec1 = {{{naran_kampu1_sec1|{{{blank1_name_sec1|}}}}}} | blank1_info_sec1 = {{{info_kampu1_sec1|{{{blank1_info_sec1|}}}}}} | blank2_name_sec1 = {{{naran_kampu2_sec1|{{{blank2_name_sec1|}}}}}} | blank2_info_sec1 = {{{info_kampu2_sec1|{{{blank2_info_sec1|}}}}}} | blank3_name_sec1 = {{{naran_kampu3_sec1|{{{blank3_name_sec1|}}}}}} | blank3_info_sec1 = {{{info_kampu3_sec1|{{{blank3_info_sec1|}}}}}} | blank4_name_sec1 = {{{naran_kampu4_sec1|{{{blank4_name_sec1|}}}}}} | blank4_info_sec1 = {{{info_kampu4_sec1|{{{blank4_info_sec1|}}}}}} | blank5_name_sec1 = {{{naran_kampu5_sec1|{{{blank5_name_sec1|}}}}}} | blank5_info_sec1 = {{{info_kampu5_sec1|{{{blank5_info_sec1|}}}}}} | blank6_name_sec1 = {{{naran_kampu6_sec1|{{{blank6_name_sec1|}}}}}} | blank6_info_sec1 = {{{info_kampu6_sec1|{{{blank6_info_sec1|}}}}}} | blank7_name_sec1 = {{{naran_kampu7_sec1|{{{blank7_name_sec1|}}}}}} | blank7_info_sec1 = {{{info_kampu7_sec1|{{{blank7_info_sec1|}}}}}} | blank_name_sec2 = {{{naran_kampu_sec2|{{{blank_name_sec2|}}}}}} | blank_info_sec2 = {{{info_kampu_sec2|{{{blank_info_sec2|}}}}}} | blank1_name_sec2 = {{{naran_kampu1_sec2|{{{blank1_name_sec2|}}}}}} | blank1_info_sec2 = {{{info_kampu1_sec2|{{{blank1_info_sec2|}}}}}} | blank2_name_sec2 = {{{naran_kampu2_sec2|{{{blank2_name_sec2|}}}}}} | blank2_info_sec2 = {{{info_kampu2_sec2|{{{blank2_info_sec2|}}}}}} | blank3_name_sec2 = {{{naran_kampu3_sec2|{{{blank3_name_sec2|}}}}}} | blank3_info_sec2 = {{{info_kampu3_sec2|{{{blank3_info_sec2|}}}}}} | blank4_name_sec2 = {{{naran_kampu4_sec2|{{{blank4_name_sec2|}}}}}} | blank4_info_sec2 = {{{info_kampu4_sec2|{{{blank4_info_sec2|}}}}}} | blank5_name_sec2 = {{{naran_kampu5_sec2|{{{blank5_name_sec2|}}}}}} | blank5_info_sec2 = {{{info_kampu5_sec2|{{{blank5_info_sec2|}}}}}} | blank6_name_sec2 = {{{naran_kampu6_sec2|{{{blank6_name_sec2|}}}}}} | blank6_info_sec2 = {{{info_kampu6_sec2|{{{blank6_info_sec2|}}}}}} | blank7_name_sec2 = {{{naran_kampu7_sec2|{{{blank7_name_sec2|}}}}}} | blank7_info_sec2 = {{{info_kampu7_sec2|{{{blank7_info_sec2|}}}}}} | website = {{{sitiu_web|{{{website|}}}}}} | module = {{{modulu|{{{module|}}}}}} | footnotes = {{{nota_sira|{{{footnotes|}}}}}} | child = {{{labarik|{{{child|}}}}}} | embed = {{{hatama|{{{embed|}}}}}} }}</includeonly><noinclude>{{Documentation}}</noinclude> lqxhq8z2ypiy93fcxzxeq1h9tolu8g4 Template:Infobox settlement 10 8161 72868 2026-07-01T02:03:32Z Robertsky 10424 Robertsky moveu [[Template:Infobox settlement]] para [[Template:Infokaixa fatin-koabitasaun]]: localising only the main template. 72868 wikitext text/x-wiki #REDIRECIONAMENTO [[Template:Infokaixa fatin-koabitasaun]] tcr7n9zvd5m4fmyzwa5jm9exppo0t86 Template:Infokaixa fatin-koabitasaun/doc 10 8162 72871 2026-07-01T02:06:16Z Robertsky 10424 Pájina foun: '{{Documentation subpage}} == Atualizasaun parámetru sira == Agora {{tl|Infobox settlement}} bele uza parámetru ho naran Tetun. Parámetru Inglés kontinua servisu hanesan alias. Se parámetru Tetun no Inglés rua hotu iha valor, valor iha parámetru Tetun mak uza. '''Nota:''' naran parámetru sira uza forma simples la ho aksentu barak atu fasilita hakerek iha wikitext. === Naran no transliterasaun === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |-...' 72871 wikitext text/x-wiki {{Documentation subpage}} == Atualizasaun parámetru sira == Agora {{tl|Infobox settlement}} bele uza parámetru ho naran Tetun. Parámetru Inglés kontinua servisu hanesan alias. Se parámetru Tetun no Inglés rua hotu iha valor, valor iha parámetru Tetun mak uza. '''Nota:''' naran parámetru sira uza forma simples la ho aksentu barak atu fasilita hakerek iha wikitext. === Naran no transliterasaun === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>naran</code> || <code>name</code> |- | <code>naran_ofisial</code> || <code>official_name</code> |- | <code>naran_lokal</code> || <code>native_name</code> |- | <code>lian_naran_lokal</code> || <code>native_name_lang</code> |- | <code>naran_seluk</code> || <code>other_name</code> |- | <code>tipu_fatin</code> || <code>settlement_type</code> |- | <code>deskrisaun_badak</code> || <code>short_description</code> |- | <code>transliterasaun_lian1</code> || <code>translit_lang1</code> |- | <code>transliterasaun_lian1_tipu</code> || <code>translit_lang1_type</code> |- | <code>transliterasaun_lian1_info</code> || <code>translit_lang1_info</code> |- | <code>transliterasaun_lian1_tipu1</code> || <code>translit_lang1_type1</code> |- | <code>transliterasaun_lian1_info1</code> || <code>translit_lang1_info1</code> |- | <code>transliterasaun_lian1_tipu2</code> || <code>translit_lang1_type2</code> |- | <code>transliterasaun_lian1_info2</code> || <code>translit_lang1_info2</code> |- | <code>transliterasaun_lian1_tipu3</code> || <code>translit_lang1_type3</code> |- | <code>transliterasaun_lian1_info3</code> || <code>translit_lang1_info3</code> |- | <code>transliterasaun_lian1_tipu4</code> || <code>translit_lang1_type4</code> |- | <code>transliterasaun_lian1_info4</code> || <code>translit_lang1_info4</code> |- | <code>transliterasaun_lian1_tipu5</code> || <code>translit_lang1_type5</code> |- | <code>transliterasaun_lian1_info5</code> || <code>translit_lang1_info5</code> |- | <code>transliterasaun_lian1_tipu6</code> || <code>translit_lang1_type6</code> |- | <code>transliterasaun_lian1_info6</code> || <code>translit_lang1_info6</code> |- | <code>transliterasaun_lian2</code> || <code>translit_lang2</code> |- | <code>transliterasaun_lian2_tipu</code> || <code>translit_lang2_type</code> |- | <code>transliterasaun_lian2_info</code> || <code>translit_lang2_info</code> |- | <code>transliterasaun_lian2_tipu1</code> || <code>translit_lang2_type1</code> |- | <code>transliterasaun_lian2_info1</code> || <code>translit_lang2_info1</code> |- | <code>transliterasaun_lian2_tipu2</code> || <code>translit_lang2_type2</code> |- | <code>transliterasaun_lian2_info2</code> || <code>translit_lang2_info2</code> |- | <code>transliterasaun_lian2_tipu3</code> || <code>translit_lang2_type3</code> |- | <code>transliterasaun_lian2_info3</code> || <code>translit_lang2_info3</code> |- | <code>transliterasaun_lian2_tipu4</code> || <code>translit_lang2_type4</code> |- | <code>transliterasaun_lian2_info4</code> || <code>translit_lang2_info4</code> |- | <code>transliterasaun_lian2_tipu5</code> || <code>translit_lang2_type5</code> |- | <code>transliterasaun_lian2_info5</code> || <code>translit_lang2_info5</code> |- | <code>transliterasaun_lian2_tipu6</code> || <code>translit_lang2_type6</code> |- | <code>transliterasaun_lian2_info6</code> || <code>translit_lang2_info6</code> |} === Imajen, bandeira, selu, lema === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>imajen_paisajen</code> || <code>image_skyline</code> |- | <code>tamanu_imajen</code> || <code>imagesize</code> |- | <code>alt_imajen</code> || <code>image_alt</code> |- | <code>legenda_imajen</code> || <code>image_caption</code> |- | <code>imajen_bandeira</code> || <code>image_flag</code> |- | <code>tamanu_bandeira</code> || <code>flag_size</code> |- | <code>alt_bandeira</code> || <code>flag_alt</code> |- | <code>borda_bandeira</code> || <code>flag_border</code> |- | <code>ligasaun_bandeira</code> || <code>flag_link</code> |- | <code>imajen_selu</code> || <code>image_seal</code> |- | <code>tamanu_selu</code> || <code>seal_size</code> |- | <code>alt_selu</code> || <code>seal_alt</code> |- | <code>ligasaun_selu</code> || <code>seal_link</code> |- | <code>tipu_selu</code> || <code>seal_type</code> |- | <code>klase_selu</code> || <code>seal_class</code> |- | <code>imajen_brasau</code> || <code>image_shield</code> |- | <code>tamanu_brasau</code> || <code>shield_size</code> |- | <code>alt_brasau</code> || <code>shield_alt</code> |- | <code>ligasaun_brasau</code> || <code>shield_link</code> |- | <code>imajen_emblema</code> || <code>image_blank_emblem</code> |- | <code>tipu_emblema</code> || <code>blank_emblem_type</code> |- | <code>tamanu_emblema</code> || <code>blank_emblem_size</code> |- | <code>alt_emblema</code> || <code>blank_emblem_alt</code> |- | <code>ligasaun_emblema</code> || <code>blank_emblem_link</code> |- | <code>etimolojia</code> || <code>etymology</code> |- | <code>naran_popular</code> || <code>nickname</code> |- | <code>naran_popular_sira</code> || <code>nicknames</code> |- | <code>lema</code> || <code>motto</code> |- | <code>lema_sira</code> || <code>mottoes</code> |- | <code>hino</code> || <code>anthem</code> |- | <code>imajen_mapa</code> || <code>image_map</code> |- | <code>imajen_mapa1</code> || <code>image_map1</code> |} === Mapa no koordenadas === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>tamanu_mapa</code> || <code>mapsize</code> |- | <code>alt_mapa</code> || <code>map_alt</code> |- | <code>legenda_mapa</code> || <code>map_caption</code> |- | <code>tamanu_mapa1</code> || <code>mapsize1</code> |- | <code>alt_mapa1</code> || <code>map_alt1</code> |- | <code>legenda_mapa1</code> || <code>map_caption1</code> |- | <code>mapa_lokalizasaun</code> || <code>pushpin_map</code> |- | <code>tamanu_mapa_lokalizasaun</code> || <code>pushpin_mapsize</code> |- | <code>alt_mapa_lokalizasaun</code> || <code>pushpin_map_alt</code> |- | <code>legenda_mapa_lokalizasaun</code> || <code>pushpin_map_caption</code> |- | <code>legenda_mapa_lokalizasaun_la_kiik</code> || <code>pushpin_map_caption_notsmall</code> |- | <code>label_mapa_lokalizasaun</code> || <code>pushpin_label</code> |- | <code>pozisaun_label_mapa_lokalizasaun</code> || <code>pushpin_label_position</code> |- | <code>liur_mapa_lokalizasaun</code> || <code>pushpin_outside</code> |- | <code>relefu_mapa_lokalizasaun</code> || <code>pushpin_relief</code> |- | <code>imajen_mapa_lokalizasaun</code> || <code>pushpin_image</code> |- | <code>kamada_mapa_lokalizasaun</code> || <code>pushpin_overlay</code> |- | <code>mapa_interativu</code> || <code>mapframe</code> |- | <code>koordenadas</code> || <code>coordinates</code> |- | <code>koord</code> || <code>coord</code> |- | <code>pontu_koordenadas</code> || <code>coor_pinpoint</code> |- | <code>nota_koordenadas</code> || <code>coordinates_footnotes</code> |- | <code>naran_grid</code> || <code>grid_name</code> |- | <code>pozisaun_grid</code> || <code>grid_position</code> |- | <code>mapframe_koordenadas</code> || <code>mapframe-coordinates</code> |- | <code>mapframe_koord</code> || <code>mapframe-coord</code> |- | <code>mapframe_legenda</code> || <code>mapframe-caption</code> |- | <code>mapframe_custom</code> || <code>mapframe-custom</code> |- | <code>mapframe_id</code> || <code>mapframe-id</code> |- | <code>id</code> || <code>id</code> |- | <code>qid</code> || <code>qid</code> |- | <code>mapframe_wikidata</code> || <code>mapframe-wikidata</code> |- | <code>mapframe_pontu</code> || <code>mapframe-point</code> |- | <code>mapframe_forma</code> || <code>mapframe-shape</code> |- | <code>mapframe_lina</code> || <code>mapframe-line</code> |- | <code>mapframe_geomask</code> || <code>mapframe-geomask</code> |- | <code>mapframe_switcher</code> || <code>mapframe-switcher</code> |- | <code>mapframe_luan_frame</code> || <code>mapframe-frame-width</code> |- | <code>mapframe_luan</code> || <code>mapframe-width</code> |- | <code>mapframe_aas_frame</code> || <code>mapframe-frame-height</code> |- | <code>mapframe_aas</code> || <code>mapframe-height</code> |- | <code>mapframe_kor_forma</code> || <code>mapframe-shape-fill</code> |- | <code>mapframe_opasidade_kor_forma</code> || <code>mapframe-shape-fill-opacity</code> |- | <code>mapframe_kor_lina</code> || <code>mapframe-stroke-color</code> |- | <code>mapframe_kor_lina_uk</code> || <code>mapframe-stroke-colour</code> |- | <code>mapframe_kor_lina_line</code> || <code>mapframe-line-stroke-color</code> |- | <code>mapframe_kor_lina_line_uk</code> || <code>mapframe-line-stroke-colour</code> |- | <code>mapframe_kor_borda_forma</code> || <code>mapframe-shape-stroke-color</code> |- | <code>mapframe_kor_borda_forma_uk</code> || <code>mapframe-shape-stroke-colour</code> |- | <code>mapframe_luan_lina</code> || <code>mapframe-stroke-width</code> |- | <code>mapframe_luan_borda_forma</code> || <code>mapframe-shape-stroke-width</code> |- | <code>mapframe_luan_lina_line</code> || <code>mapframe-line-stroke-width</code> |- | <code>mapframe_marker</code> || <code>mapframe-marker</code> |- | <code>mapframe_kor_marker</code> || <code>mapframe-marker-color</code> |- | <code>mapframe_kor_marker_uk</code> || <code>mapframe-marker-colour</code> |- | <code>mapframe_kor_borda_geomask</code> || <code>mapframe-geomask-stroke-color</code> |- | <code>mapframe_kor_borda_geomask_uk</code> || <code>mapframe-geomask-stroke-colour</code> |- | <code>mapframe_luan_borda_geomask</code> || <code>mapframe-geomask-stroke-width</code> |- | <code>mapframe_kor_geomask</code> || <code>mapframe-geomask-fill</code> |- | <code>mapframe_opasidade_kor_geomask</code> || <code>mapframe-geomask-fill-opacity</code> |- | <code>mapframe_zoom</code> || <code>mapframe-zoom</code> |- | <code>mapframe_naruk_km</code> || <code>mapframe-length_km</code> |- | <code>mapframe_naruk_mi</code> || <code>mapframe-length_mi</code> |- | <code>mapframe_area_km2</code> || <code>mapframe-area_km2</code> |- | <code>mapframe_area_mi2</code> || <code>mapframe-area_mi2</code> |- | <code>mapframe_frame_koordenadas</code> || <code>mapframe-frame-coordinates</code> |- | <code>mapframe_frame_koord</code> || <code>mapframe-frame-coord</code> |- | <code>mapframe_tipu</code> || <code>mapframe-type</code> |- | <code>mapframe_populasaun</code> || <code>mapframe-population</code> |} === Fatin, subdivizaun, fundasaun, sede, parte sira === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>tipu_subdivizaun</code> || <code>subdivision_type</code> |- | <code>naran_subdivizaun</code> || <code>subdivision_name</code> |- | <code>tipu_subdivizaun1</code> || <code>subdivision_type1</code> |- | <code>naran_subdivizaun1</code> || <code>subdivision_name1</code> |- | <code>tipu_subdivizaun2</code> || <code>subdivision_type2</code> |- | <code>naran_subdivizaun2</code> || <code>subdivision_name2</code> |- | <code>tipu_subdivizaun3</code> || <code>subdivision_type3</code> |- | <code>naran_subdivizaun3</code> || <code>subdivision_name3</code> |- | <code>tipu_subdivizaun4</code> || <code>subdivision_type4</code> |- | <code>naran_subdivizaun4</code> || <code>subdivision_name4</code> |- | <code>tipu_subdivizaun5</code> || <code>subdivision_type5</code> |- | <code>naran_subdivizaun5</code> || <code>subdivision_name5</code> |- | <code>tipu_subdivizaun6</code> || <code>subdivision_type6</code> |- | <code>naran_subdivizaun6</code> || <code>subdivision_name6</code> |- | <code>titulu_estabelesimentu</code> || <code>established_title</code> |- | <code>data_estabelesimentu</code> || <code>established_date</code> |- | <code>titulu_estabelesimentu1</code> || <code>established_title1</code> |- | <code>data_estabelesimentu1</code> || <code>established_date1</code> |- | <code>titulu_estabelesimentu2</code> || <code>established_title2</code> |- | <code>data_estabelesimentu2</code> || <code>established_date2</code> |- | <code>titulu_estabelesimentu3</code> || <code>established_title3</code> |- | <code>data_estabelesimentu3</code> || <code>established_date3</code> |- | <code>titulu_estabelesimentu4</code> || <code>established_title4</code> |- | <code>data_estabelesimentu4</code> || <code>established_date4</code> |- | <code>titulu_estabelesimentu5</code> || <code>established_title5</code> |- | <code>data_estabelesimentu5</code> || <code>established_date5</code> |- | <code>titulu_estabelesimentu6</code> || <code>established_title6</code> |- | <code>data_estabelesimentu6</code> || <code>established_date6</code> |- | <code>titulu_estabelesimentu7</code> || <code>established_title7</code> |- | <code>data_estabelesimentu7</code> || <code>established_date7</code> |- | <code>titulu_extinta</code> || <code>extinct_title</code> |- | <code>data_extinta</code> || <code>extinct_date</code> |- | <code>fundador</code> || <code>founder</code> |- | <code>naran_husi</code> || <code>named_for</code> |- | <code>tipu_sede</code> || <code>seat_type</code> |- | <code>sede</code> || <code>seat</code> |- | <code>tipu_sede1</code> || <code>seat1_type</code> |- | <code>sede1</code> || <code>seat1</code> |- | <code>tipu_parte</code> || <code>parts_type</code> |- | <code>estilu_parte</code> || <code>parts_style</code> |- | <code>parte_sira</code> || <code>parts</code> |- | <code>parte1</code> || <code>p1</code> |- | <code>parte2</code> || <code>p2</code> |- | <code>parte3</code> || <code>p3</code> |- | <code>parte4</code> || <code>p4</code> |- | <code>parte5</code> || <code>p5</code> |- | <code>parte6</code> || <code>p6</code> |- | <code>parte7</code> || <code>p7</code> |- | <code>parte8</code> || <code>p8</code> |- | <code>parte9</code> || <code>p9</code> |- | <code>parte10</code> || <code>p10</code> |- | <code>parte11</code> || <code>p11</code> |- | <code>parte12</code> || <code>p12</code> |- | <code>parte13</code> || <code>p13</code> |- | <code>parte14</code> || <code>p14</code> |- | <code>parte15</code> || <code>p15</code> |- | <code>parte16</code> || <code>p16</code> |- | <code>parte17</code> || <code>p17</code> |- | <code>parte18</code> || <code>p18</code> |- | <code>parte19</code> || <code>p19</code> |- | <code>parte20</code> || <code>p20</code> |- | <code>parte21</code> || <code>p21</code> |- | <code>parte22</code> || <code>p22</code> |- | <code>parte23</code> || <code>p23</code> |- | <code>parte24</code> || <code>p24</code> |- | <code>parte25</code> || <code>p25</code> |- | <code>parte26</code> || <code>p26</code> |- | <code>parte27</code> || <code>p27</code> |- | <code>parte28</code> || <code>p28</code> |- | <code>parte29</code> || <code>p29</code> |- | <code>parte30</code> || <code>p30</code> |- | <code>parte31</code> || <code>p31</code> |- | <code>parte32</code> || <code>p32</code> |- | <code>parte33</code> || <code>p33</code> |- | <code>parte34</code> || <code>p34</code> |- | <code>parte35</code> || <code>p35</code> |- | <code>parte36</code> || <code>p36</code> |- | <code>parte37</code> || <code>p37</code> |- | <code>parte38</code> || <code>p38</code> |- | <code>parte39</code> || <code>p39</code> |- | <code>parte40</code> || <code>p40</code> |- | <code>parte41</code> || <code>p41</code> |- | <code>parte42</code> || <code>p42</code> |- | <code>parte43</code> || <code>p43</code> |- | <code>parte44</code> || <code>p44</code> |- | <code>parte45</code> || <code>p45</code> |- | <code>parte46</code> || <code>p46</code> |- | <code>parte47</code> || <code>p47</code> |- | <code>parte48</code> || <code>p48</code> |- | <code>parte49</code> || <code>p49</code> |- | <code>parte50</code> || <code>p50</code> |- | <code>nota_populasaun</code> || <code>population_footnotes</code> |- | <code>data_populasaun</code> || <code>population_as_of</code> |- | <code>populasaun_total</code> || <code>population_total</code> |- | <code>nota_estimasaun_populasaun</code> || <code>pop_est_footnotes</code> |- | <code>data_estimasaun_populasaun</code> || <code>pop_est_as_of</code> |- | <code>estimasaun_populasaun</code> || <code>population_est</code> |- | <code>rank_populasaun</code> || <code>population_rank</code> |- | <code>densidade_populasaun_km2</code> || <code>population_density_km2</code> |- | <code>densidade_populasaun_sq_mi</code> || <code>population_density_sq_mi</code> |- | <code>nota_populasaun_urbana</code> || <code>population_urban_footnotes</code> |- | <code>populasaun_urbana</code> || <code>population_urban</code> |- | <code>densidade_populasaun_urbana_km2</code> || <code>population_density_urban_km2</code> |- | <code>densidade_populasaun_urbana_sq_mi</code> || <code>population_density_urban_sq_mi</code> |- | <code>nota_populasaun_rural</code> || <code>population_rural_footnotes</code> |- | <code>populasaun_rural</code> || <code>population_rural</code> |- | <code>densidade_populasaun_rural_km2</code> || <code>population_density_rural_km2</code> |- | <code>densidade_populasaun_rural_sq_mi</code> || <code>population_density_rural_sq_mi</code> |- | <code>nota_populasaun_metropolitana</code> || <code>population_metro_footnotes</code> |- | <code>populasaun_metropolitana</code> || <code>population_metro</code> |- | <code>densidade_populasaun_metropolitana_km2</code> || <code>population_density_metro_km2</code> |- | <code>densidade_populasaun_metropolitana_sq_mi</code> || <code>population_density_metro_sq_mi</code> |- | <code>rank_densidade_populasaun</code> || <code>population_density_rank</code> |- | <code>titulu_populasaun_seluk1</code> || <code>population_blank1_title</code> |- | <code>populasaun_seluk1</code> || <code>population_blank1</code> |- | <code>densidade_populasaun_seluk1_km2</code> || <code>population_density_blank1_km2</code> |- | <code>densidade_populasaun_seluk1_sq_mi</code> || <code>population_density_blank1_sq_mi</code> |- | <code>titulu_populasaun_seluk2</code> || <code>population_blank2_title</code> |- | <code>populasaun_seluk2</code> || <code>population_blank2</code> |- | <code>densidade_populasaun_seluk2_km2</code> || <code>population_density_blank2_km2</code> |- | <code>densidade_populasaun_seluk2_sq_mi</code> || <code>population_density_blank2_sq_mi</code> |- | <code>demonimu_populasaun</code> || <code>population_demonym</code> |- | <code>demonimu_populasaun_sira</code> || <code>population_demonyms</code> |- | <code>nota_populasaun</code> || <code>population_note</code> |- | <code>tipu_kodigu_postal</code> || <code>postal_code_type</code> |- | <code>kodigu_postal</code> || <code>postal_code</code> |- | <code>tipu_kodigu_postal2</code> || <code>postal2_code_type</code> |- | <code>kodigu_postal2</code> || <code>postal2_code</code> |} === Governu no lideransa === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>nota_governu</code> || <code>government_footnotes</code> |- | <code>tipu_governu</code> || <code>government_type</code> |- | <code>orgaun_governu</code> || <code>governing_body</code> |- | <code>partidu_lider</code> || <code>leader_party</code> |- | <code>titulu_lider</code> || <code>leader_title</code> |- | <code>naran_lider</code> || <code>leader_name</code> |- | <code>titulu_lider1</code> || <code>leader_title1</code> |- | <code>naran_lider1</code> || <code>leader_name1</code> |- | <code>partidu_lider1</code> || <code>leader_party1</code> |- | <code>titulu_lider2</code> || <code>leader_title2</code> |- | <code>naran_lider2</code> || <code>leader_name2</code> |- | <code>partidu_lider2</code> || <code>leader_party2</code> |- | <code>titulu_lider3</code> || <code>leader_title3</code> |- | <code>naran_lider3</code> || <code>leader_name3</code> |- | <code>partidu_lider3</code> || <code>leader_party3</code> |- | <code>titulu_lider4</code> || <code>leader_title4</code> |- | <code>naran_lider4</code> || <code>leader_name4</code> |- | <code>partidu_lider4</code> || <code>leader_party4</code> |} === Area, dimensaun no altitude === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>tipu_total</code> || <code>total_type</code> |- | <code>unidade_preferida</code> || <code>unit_pref</code> |- | <code>nota_area</code> || <code>area_footnotes</code> |- | <code>ligasaun_dunam</code> || <code>dunam_link</code> |- | <code>area_total_km2</code> || <code>area_total_km2</code> |- | <code>area_total_sq_mi</code> || <code>area_total_sq_mi</code> |- | <code>area_total_ha</code> || <code>area_total_ha</code> |- | <code>area_total_acre</code> || <code>area_total_acre</code> |- | <code>area_total_dunam</code> || <code>area_total_dunam</code> |- | <code>area_rai_km2</code> || <code>area_land_km2</code> |- | <code>area_rai_sq_mi</code> || <code>area_land_sq_mi</code> |- | <code>area_rai_ha</code> || <code>area_land_ha</code> |- | <code>area_rai_acre</code> || <code>area_land_acre</code> |- | <code>area_rai_dunam</code> || <code>area_land_dunam</code> |- | <code>area_bee_km2</code> || <code>area_water_km2</code> |- | <code>area_bee_sq_mi</code> || <code>area_water_sq_mi</code> |- | <code>area_bee_ha</code> || <code>area_water_ha</code> |- | <code>area_bee_acre</code> || <code>area_water_acre</code> |- | <code>area_bee_dunam</code> || <code>area_water_dunam</code> |- | <code>area_urbana_km2</code> || <code>area_urban_km2</code> |- | <code>area_urbana_sq_mi</code> || <code>area_urban_sq_mi</code> |- | <code>area_urbana_ha</code> || <code>area_urban_ha</code> |- | <code>area_urbana_acre</code> || <code>area_urban_acre</code> |- | <code>area_urbana_dunam</code> || <code>area_urban_dunam</code> |- | <code>area_rural_km2</code> || <code>area_rural_km2</code> |- | <code>area_rural_sq_mi</code> || <code>area_rural_sq_mi</code> |- | <code>area_rural_ha</code> || <code>area_rural_ha</code> |- | <code>area_rural_acre</code> || <code>area_rural_acre</code> |- | <code>area_rural_dunam</code> || <code>area_rural_dunam</code> |- | <code>area_metropolitana_km2</code> || <code>area_metro_km2</code> |- | <code>area_metropolitana_sq_mi</code> || <code>area_metro_sq_mi</code> |- | <code>area_metropolitana_ha</code> || <code>area_metro_ha</code> |- | <code>area_metropolitana_acre</code> || <code>area_metro_acre</code> |- | <code>area_metropolitana_dunam</code> || <code>area_metro_dunam</code> |- | <code>persentajen_bee</code> || <code>area_water_percent</code> |- | <code>nota_area_urbana</code> || <code>area_urban_footnotes</code> |- | <code>nota_area_rural</code> || <code>area_rural_footnotes</code> |- | <code>nota_area_metropolitana</code> || <code>area_metro_footnotes</code> |- | <code>rank_area</code> || <code>area_rank</code> |- | <code>nota_area</code> || <code>area_note</code> |- | <code>titulu_area_seluk1</code> || <code>area_blank1_title</code> |- | <code>area_seluk1_km2</code> || <code>area_blank1_km2</code> |- | <code>area_seluk1_sq_mi</code> || <code>area_blank1_sq_mi</code> |- | <code>area_seluk1_ha</code> || <code>area_blank1_ha</code> |- | <code>area_seluk1_acre</code> || <code>area_blank1_acre</code> |- | <code>area_seluk1_dunam</code> || <code>area_blank1_dunam</code> |- | <code>titulu_area_seluk2</code> || <code>area_blank2_title</code> |- | <code>area_seluk2_km2</code> || <code>area_blank2_km2</code> |- | <code>area_seluk2_sq_mi</code> || <code>area_blank2_sq_mi</code> |- | <code>area_seluk2_ha</code> || <code>area_blank2_ha</code> |- | <code>area_seluk2_acre</code> || <code>area_blank2_acre</code> |- | <code>area_seluk2_dunam</code> || <code>area_blank2_dunam</code> |- | <code>nota_dimensaun</code> || <code>dimensions_footnotes</code> |- | <code>naruk_km</code> || <code>length_km</code> |- | <code>naruk_mi</code> || <code>length_mi</code> |- | <code>luan_km</code> || <code>width_km</code> |- | <code>luan_mi</code> || <code>width_mi</code> |- | <code>nota_altitude</code> || <code>elevation_footnotes</code> |- | <code>altitude_m</code> || <code>elevation_m</code> |- | <code>altitude_ft</code> || <code>elevation_ft</code> |- | <code>pontu_altitude</code> || <code>elevation_point</code> |- | <code>nota_altitude_max</code> || <code>elevation_max_footnotes</code> |- | <code>altitude_max_m</code> || <code>elevation_max_m</code> |- | <code>altitude_max_ft</code> || <code>elevation_max_ft</code> |- | <code>pontu_altitude_max</code> || <code>elevation_max_point</code> |- | <code>rank_altitude_max</code> || <code>elevation_max_rank</code> |- | <code>nota_altitude_min</code> || <code>elevation_min_footnotes</code> |- | <code>altitude_min_m</code> || <code>elevation_min_m</code> |- | <code>altitude_min_ft</code> || <code>elevation_min_ft</code> |- | <code>pontu_altitude_min</code> || <code>elevation_min_point</code> |- | <code>rank_altitude_min</code> || <code>elevation_min_rank</code> |- | <code>tipu_kodigu_area</code> || <code>area_code_type</code> |- | <code>kodigu_area</code> || <code>area_code</code> |- | <code>kodigu_area_sira</code> || <code>area_codes</code> |} === Populasaun no demografia === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>tipu_demografia1</code> || <code>demographics_type1</code> |- | <code>nota_demografia1</code> || <code>demographics1_footnotes</code> |- | <code>titulu_demografia1_1</code> || <code>demographics1_title1</code> |- | <code>info_demografia1_1</code> || <code>demographics1_info1</code> |- | <code>titulu_demografia1_2</code> || <code>demographics1_title2</code> |- | <code>info_demografia1_2</code> || <code>demographics1_info2</code> |- | <code>titulu_demografia1_3</code> || <code>demographics1_title3</code> |- | <code>info_demografia1_3</code> || <code>demographics1_info3</code> |- | <code>titulu_demografia1_4</code> || <code>demographics1_title4</code> |- | <code>info_demografia1_4</code> || <code>demographics1_info4</code> |- | <code>titulu_demografia1_5</code> || <code>demographics1_title5</code> |- | <code>info_demografia1_5</code> || <code>demographics1_info5</code> |- | <code>titulu_demografia1_6</code> || <code>demographics1_title6</code> |- | <code>info_demografia1_6</code> || <code>demographics1_info6</code> |- | <code>titulu_demografia1_7</code> || <code>demographics1_title7</code> |- | <code>info_demografia1_7</code> || <code>demographics1_info7</code> |- | <code>tipu_demografia2</code> || <code>demographics_type2</code> |- | <code>nota_demografia2</code> || <code>demographics2_footnotes</code> |- | <code>titulu_demografia2_1</code> || <code>demographics2_title1</code> |- | <code>info_demografia2_1</code> || <code>demographics2_info1</code> |- | <code>titulu_demografia2_2</code> || <code>demographics2_title2</code> |- | <code>info_demografia2_2</code> || <code>demographics2_info2</code> |- | <code>titulu_demografia2_3</code> || <code>demographics2_title3</code> |- | <code>info_demografia2_3</code> || <code>demographics2_info3</code> |- | <code>titulu_demografia2_4</code> || <code>demographics2_title4</code> |- | <code>info_demografia2_4</code> || <code>demographics2_info4</code> |- | <code>titulu_demografia2_5</code> || <code>demographics2_title5</code> |- | <code>info_demografia2_5</code> || <code>demographics2_info5</code> |- | <code>titulu_demografia2_6</code> || <code>demographics2_title6</code> |- | <code>info_demografia2_6</code> || <code>demographics2_info6</code> |- | <code>titulu_demografia2_7</code> || <code>demographics2_title7</code> |- | <code>info_demografia2_7</code> || <code>demographics2_info7</code> |- | <code>titulu_demografia2_8</code> || <code>demographics2_title8</code> |- | <code>info_demografia2_8</code> || <code>demographics2_info8</code> |- | <code>titulu_demografia2_9</code> || <code>demographics2_title9</code> |- | <code>info_demografia2_9</code> || <code>demographics2_info9</code> |- | <code>titulu_demografia2_10</code> || <code>demographics2_title10</code> |- | <code>info_demografia2_10</code> || <code>demographics2_info10</code> |} === Zona tempu === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>ligasaun_zona_tempu</code> || <code>timezone_link</code> |- | <code>zona_tempu</code> || <code>timezone</code> |- | <code>diferensa_utc</code> || <code>utc_offset</code> |- | <code>zona_tempu_DST</code> || <code>timezone_DST</code> |- | <code>diferensa_utc_DST</code> || <code>utc_offset_DST</code> |- | <code>fatin_zona_tempu1</code> || <code>timezone1_location</code> |- | <code>zona_tempu1</code> || <code>timezone1</code> |- | <code>diferensa_utc1</code> || <code>utc_offset1</code> |- | <code>zona_tempu1_DST</code> || <code>timezone1_DST</code> |- | <code>diferensa_utc1_DST</code> || <code>utc_offset1_DST</code> |- | <code>fatin_zona_tempu2</code> || <code>timezone2_location</code> |- | <code>zona_tempu2</code> || <code>timezone2</code> |- | <code>diferensa_utc2</code> || <code>utc_offset2</code> |- | <code>zona_tempu2_DST</code> || <code>timezone2_DST</code> |- | <code>diferensa_utc2_DST</code> || <code>utc_offset2_DST</code> |- | <code>fatin_zona_tempu3</code> || <code>timezone3_location</code> |- | <code>zona_tempu3</code> || <code>timezone3</code> |- | <code>diferensa_utc3</code> || <code>utc_offset3</code> |- | <code>zona_tempu3_DST</code> || <code>timezone3_DST</code> |- | <code>diferensa_utc3_DST</code> || <code>utc_offset3_DST</code> |- | <code>fatin_zona_tempu4</code> || <code>timezone4_location</code> |- | <code>zona_tempu4</code> || <code>timezone4</code> |- | <code>diferensa_utc4</code> || <code>utc_offset4</code> |- | <code>zona_tempu4_DST</code> || <code>timezone4_DST</code> |- | <code>diferensa_utc4_DST</code> || <code>utc_offset4_DST</code> |- | <code>fatin_zona_tempu5</code> || <code>timezone5_location</code> |- | <code>zona_tempu5</code> || <code>timezone5</code> |- | <code>diferensa_utc5</code> || <code>utc_offset5</code> |- | <code>zona_tempu5_DST</code> || <code>timezone5_DST</code> |- | <code>diferensa_utc5_DST</code> || <code>utc_offset5_DST</code> |} === Kodigu no kampu seluk === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>geokodigu</code> || <code>geocode</code> |- | <code>kodigu_iso</code> || <code>iso_code</code> |- | <code>tipu_plaka_veiklu</code> || <code>registration_plate_type</code> |- | <code>plaka_veiklu</code> || <code>registration_plate</code> |- | <code>naran_kodigu1</code> || <code>code1_name</code> |- | <code>info_kodigu1</code> || <code>code1_info</code> |- | <code>naran_kodigu2</code> || <code>code2_name</code> |- | <code>info_kodigu2</code> || <code>code2_info</code> |- | <code>naran_kampu</code> || <code>blank_name</code> |- | <code>info_kampu</code> || <code>blank_info</code> |- | <code>naran_kampu1</code> || <code>blank1_name</code> |- | <code>info_kampu1</code> || <code>blank1_info</code> |- | <code>naran_kampu2</code> || <code>blank2_name</code> |- | <code>info_kampu2</code> || <code>blank2_info</code> |- | <code>naran_kampu_sec1</code> || <code>blank_name_sec1</code> |- | <code>info_kampu_sec1</code> || <code>blank_info_sec1</code> |- | <code>naran_kampu1_sec1</code> || <code>blank1_name_sec1</code> |- | <code>info_kampu1_sec1</code> || <code>blank1_info_sec1</code> |- | <code>naran_kampu2_sec1</code> || <code>blank2_name_sec1</code> |- | <code>info_kampu2_sec1</code> || <code>blank2_info_sec1</code> |- | <code>naran_kampu3_sec1</code> || <code>blank3_name_sec1</code> |- | <code>info_kampu3_sec1</code> || <code>blank3_info_sec1</code> |- | <code>naran_kampu4_sec1</code> || <code>blank4_name_sec1</code> |- | <code>info_kampu4_sec1</code> || <code>blank4_info_sec1</code> |- | <code>naran_kampu5_sec1</code> || <code>blank5_name_sec1</code> |- | <code>info_kampu5_sec1</code> || <code>blank5_info_sec1</code> |- | <code>naran_kampu6_sec1</code> || <code>blank6_name_sec1</code> |- | <code>info_kampu6_sec1</code> || <code>blank6_info_sec1</code> |- | <code>naran_kampu7_sec1</code> || <code>blank7_name_sec1</code> |- | <code>info_kampu7_sec1</code> || <code>blank7_info_sec1</code> |- | <code>naran_kampu_sec2</code> || <code>blank_name_sec2</code> |- | <code>info_kampu_sec2</code> || <code>blank_info_sec2</code> |- | <code>naran_kampu1_sec2</code> || <code>blank1_name_sec2</code> |- | <code>info_kampu1_sec2</code> || <code>blank1_info_sec2</code> |- | <code>naran_kampu2_sec2</code> || <code>blank2_name_sec2</code> |- | <code>info_kampu2_sec2</code> || <code>blank2_info_sec2</code> |- | <code>naran_kampu3_sec2</code> || <code>blank3_name_sec2</code> |- | <code>info_kampu3_sec2</code> || <code>blank3_info_sec2</code> |- | <code>naran_kampu4_sec2</code> || <code>blank4_name_sec2</code> |- | <code>info_kampu4_sec2</code> || <code>blank4_info_sec2</code> |- | <code>naran_kampu5_sec2</code> || <code>blank5_name_sec2</code> |- | <code>info_kampu5_sec2</code> || <code>blank5_info_sec2</code> |- | <code>naran_kampu6_sec2</code> || <code>blank6_name_sec2</code> |- | <code>info_kampu6_sec2</code> || <code>blank6_info_sec2</code> |- | <code>naran_kampu7_sec2</code> || <code>blank7_name_sec2</code> |- | <code>info_kampu7_sec2</code> || <code>blank7_info_sec2</code> |} === Website, modulu no nota === {| class="wikitable sortable" ! Parámetru Tetun !! Alias Inglés |- | <code>sitiu_web</code> || <code>website</code> |- | <code>modulu</code> || <code>module</code> |- | <code>nota_sira</code> || <code>footnotes</code> |- | <code>labarik</code> || <code>child</code> |- | <code>hatama</code> || <code>embed</code> |} nxhvagje3d2w5x2qj4k3rwzwe4gvmre Template:TL wikidata 10 8163 72872 2025-02-21T22:44:06Z en>Fayenatic london 0 Timor-Leste, following article move 72872 wikitext text/x-wiki <includeonly>{{safesubst:#switch:{{safesubst:lc:{{{1|}}}}} | nickname1 = {{safesubst:#if:{{safesubst:#property:P1449}}|{{safesubst:replace|{{safesubst:#property:P1449}}|,|{{safesubst:#invoke:String|rep|<br />|{{safesubst:#if:{{{lflf|}}}|{{{lflf|}}}|1}}}}}}}} | motto = {{safesubst:#property:P1451}} | image_skyline = {{safesubst:#invoke:Wikidata|claim|P18}} | image_caption = {{safesubst:#invoke:Wikidata |getImageLegend|FETCH_WIKIDATA}} | image_flag = {{safesubst:#property:P41}} | image_seal = {{safesubst:#property:P158}} | image_shield = {{safesubst:#property:P94}} | image_map = {{safesubst:#property:P242}} | image_map1 = {{#property:P242}} | map_caption = {{safesubst:#if:{{safesubst:#property:P131}}|Map of {{safesubst:#invoke:string|replace|{{safesubst:#property:P131}}|%s+%([^%(]-%)$||plain=false}} with {{safesubst:#invoke:string|replace|{{safesubst:PAGENAME}}|, .*||plain=false}} highlighted}} | image_map1 = {{safesubst:#property:P1621}} | official_name = {{safesubst:#property:P1448}} | iso_region | iso_code | coordinates_region = {{safesubst:#property:P300}} | coord | coordinates = {{safesubst:#if:{{safesubst:#property:P625}}|{{coord|region:TL{{safesubst:#ifeq:{{safesubst:lc:{{safesubst:#property:P31}}}}|districts of Timor-Leste|_type:adm1st}}{{safesubst:#if:{{{dim|}}}|_dim:{{{dim}}}}}|format=dms|display=it}} }} | country = {{safesubst:#invoke:Wikidata|getValue|P17|FETCH_WIKIDATA}} | municipality = {{ifnotempty| {{wikidata|property|preferred|P131}} | {{wikidata|property|preferred|linked|P131}} | {{safesubst:#invoke:Wikidata|getValue|P131|FETCH_WIKIDATA}} }} | seat = {{safesubst:#if:{{safesubst:#property:P36}}|{{safesubst:#invoke:Wikidata|getValue|P36|FETCH_WIKIDATA}}}} | capital_of = {{safesubst:#if:{{safesubst:#property:P1376}}|{{safesubst:#invoke:Wikidata|getValue|P1376|FETCH_WIKIDATA}}}} | established_date | founded = {{safesubst:#if:{{safesubst:#property:P571}}|{{safesubst:replace|{{safesubst:#property:P571}}|,|{{safesubst:#invoke:String|rep|<br />|{{safesubst:#if:{{{lflf|}}}|{{{lflf|}}}|1}}}}}}}} | founder = {{safesubst:#property:P112}} | elevation_m = {{safesubst:convert|input=P2044|3=m|disp=number}} | elevation_ft = {{safesubst:convert|input=P2044|3=ft|disp=number}} | elevation_footnotes = {{#if:{{#invoke:wd|reference|raw|P2044}}|<ref>{{safesubst:#invoke:wd|reference|raw|P2044}}</ref>|}} | population_as_of = {{safesubst:#if:{{safesubst:#invoke:Wikidata|claim|P1082|qualifier=P585}} | {{safesubst:#time:Y|{{safesubst:#invoke:Wikidata|claim|P1082|qualifier=P585}}}} | ? }} {{safesubst:lc:{{safesubst:#invoke:Wikidata|claim|P1082|qualifier=P459|FETCH_WIKIDATA}}}} | population_point_in_time = {{safesubst:#if:{{safesubst:#invoke:Wikidata|claim|P1082|qualifier=P585}} | {{safesubst:#time:Y|{{safesubst:#invoke:Wikidata|claim|P1082|qualifier=P585}}}} | ? }} | population_total = {{safesubst:#invoke:string|replace|{{safesubst:#invoke:string|replace|{{safesubst:#if:{{{2|}}} |{{safesubst:#invoke:Wikidata|getValueFromID|{{{2}}}|P1082|FETCH_WIKIDATA}} |{{safesubst:#invoke:Wikidata|getValue|P1082|FETCH_WIKIDATA}} }}|([%d]), .*|%1|plain=false}}|±0|}} {{safesubst:#ifeq:{{safesubst:#invoke:string|replace|{{safesubst:#invoke:Wikidata|getValue|P1082|FETCH_WIKIDATA}}|([%d]), .*|%1|plain=false}}|{{safesubst:#invoke:Wikidata|getValue|P1082|FETCH_WIKIDATA}}|| {{safesubst:TL wikidata/deprecated parameter}}}} | population_female = {{safesubst:#invoke:string|replace|{{safesubst:#invoke:string|replace|{{safesubst:#if:{{{2|}}} |{{safesubst:#invoke:Wikidata|getValueFromID|{{{2}}}|P1539|FETCH_WIKIDATA}} |{{safesubst:#invoke:Wikidata|getValue|P1539|FETCH_WIKIDATA}} }}|([%d]), .*|%1|plain=false}}|±0|}} {{safesubst:#ifeq:{{safesubst:#invoke:string|replace|{{safesubst:#invoke:Wikidata|getValue|P1539|FETCH_WIKIDATA}}|([%d]), .*|%1|plain=false}}|{{safesubst:#invoke:Wikidata|getValue|P1539|FETCH_WIKIDATA}}|| {{safesubst:TL wikidata/deprecated parameter}}}} | population_male = {{safesubst:#invoke:string|replace|{{safesubst:#invoke:string|replace|{{safesubst:#if:{{{2|}}} |{{safesubst:#invoke:Wikidata|getValueFromID|{{{2}}}|P1540|FETCH_WIKIDATA}} |{{safesubst:#invoke:Wikidata|getValue|P1540|FETCH_WIKIDATA}} }}|([%d]), .*|%1|plain=false}}|±0|}} {{safesubst:#ifeq:{{safesubst:#invoke:string|replace|{{safesubst:#invoke:Wikidata|getValue|P1540|FETCH_WIKIDATA}}|([%d]), .*|%1|plain=false}}|{{safesubst:#invoke:Wikidata|getValue|P1540|FETCH_WIKIDATA}}|| {{safesubst:TL wikidata/deprecated parameter}}}} | language = {{safesubst:#if:{{safesubst:#property:P2936}}|{{safesubst:replace|{{safesubst:#property:P2936}}|,|<br />}}}} | area = {{safesubst:#invoke:String|replace|{{safesubst:#invoke:String|replace|{{safesubst:#if:{{{2|}}} |{{safesubst:#invoke:Wikidata|getValueFromID|{{{2}}}|P2046|FETCH_WIKIDATA}} |{{safesubst:#invoke:Wikidata|getValue|P2046|FETCH_WIKIDATA}} }}| %D+||plain=false}}|±[%d%.][%d%.]*||plain=false}} | population_demonym | demonym = {{safesubst:#if:{{safesubst:#property:P1549}}|{{safesubst:replace|{{safesubst:#property:P1549}}|,|<br />}}}} | postal_code = {{safesubst:#property:P281}} | located_on | located_in = {{safesubst:#if:{{safesubst:#property:P706}}|{{safesubst:#invoke:Wikidata|getValue|P706|FETCH_WIKIDATA}}}} | area_code = {{safesubst:#if:{{safesubst:#property:P473}}|{{#if:{{#property:P474}}|{{#property:P474}}|+63}}&thinsp;(0)}}{{safesubst:replace|{{safesubst:#property:P473}}|, |<br />{{safesubst:#if:{{safesubst:#property:P473}}|{{#if:{{#property:P474}}|{{#property:P474}}|+63}}}}&thinsp;(0)}} | number_of_divisions = {{safesubst:#if:{{safesubst:#property:P4253}}|{{safesubst:#property:P4253}}}} | short name = {{safesubst:#property:P1813}} | timezone = [[Time in Timor-Leste|TLT]] | utc_offset = +09:00 | demographics_type1 = {{#if:{{#invoke:Wikidata|claim|P1538|qualifier=P585}} | Households ({{#time:Y|{{#invoke:Wikidata|claim|P1538|qualifier=P585}}}} | ? }} {{lc:{{#invoke:Wikidata|claim|P1538|qualifier=P459|FETCH_WIKIDATA}})}} | demographics1_title1 = Total | demographics1_info1 = {{#invoke:string|replace|{{#invoke:string|replace|{{#if:{{{2|}}} |{{#invoke:Wikidata|getValueFromID|{{{2}}}|P1538|FETCH_WIKIDATA}} |{{#invoke:Wikidata|getValue|P1538|FETCH_WIKIDATA}} }}|([%d]), .*|%1|plain=false}}|±0|}} {{#ifeq:{{#invoke:string|replace|{{#invoke:Wikidata|getValue|P1538|FETCH_WIKIDATA}}|([%d]), .*|%1|plain=false}}|{{#invoke:Wikidata|getValue|P1538|FETCH_WIKIDATA}}|| {{TL wikidata/deprecated parameter}}}} | website = {{safesubst:#if:{{safesubst:#property:P856}}|{{safesubst:URL|1={{safesubst:#property:P856}}}}}} | facebook = @{{safesubst:#property:P2013}} | twitter = @{{safesubst:#property:P2002}} | instagram = @{{safesubst:#property:P2003}} | youtube = @{{safesubst:#property:P2397}} | commons = {{#if:{{#property:P373}} | {{#property:P373}} | {{TL wikidata/check wikidata commons link}} }} | name = {{safesubst:#invoke:string|replace|{{safesubst:PAGENAME}}|, .*||plain=false}} | osm = {{safesubst:#property:P402}} | climate_title = [[Köppen climate classification|Climate type]] | climate_type = {{safesubst:ucfirst:{{safesubst:#invoke:WikidataIB |getPreferredValue |P2564|fetchwikidata=ALL|onlysourced=no|noicon=true}} }} | operator = {{safesubst:ucfirst:{{safesubst:#invoke:WikidataIB |getPreferredValue |P137|fetchwikidata=ALL|onlysourced=no|noicon=true}} }} | has_part = {{safesubst:#if:{{safesubst:#property:P527}}|{{safesubst:#invoke:sorted plain list|ascd|propertyID=P527}}}} | #default = {{safesubst:TL wikidata/deprecated parameter}} <span class="error">[[Template:TL wikidata]] called with unsupported input "{{{1}}}"</span> }}</includeonly><noinclude> {{documentation}}</noinclude> syrv1b90qnr88wu3bzae1oebd28lfkv 72873 72872 2026-07-01T04:54:01Z Robertsky 10424 1 versaun husi [[:en:Template:TL_wikidata]] 72872 wikitext text/x-wiki <includeonly>{{safesubst:#switch:{{safesubst:lc:{{{1|}}}}} | nickname1 = {{safesubst:#if:{{safesubst:#property:P1449}}|{{safesubst:replace|{{safesubst:#property:P1449}}|,|{{safesubst:#invoke:String|rep|<br />|{{safesubst:#if:{{{lflf|}}}|{{{lflf|}}}|1}}}}}}}} | motto = {{safesubst:#property:P1451}} | image_skyline = {{safesubst:#invoke:Wikidata|claim|P18}} | image_caption = {{safesubst:#invoke:Wikidata |getImageLegend|FETCH_WIKIDATA}} | image_flag = {{safesubst:#property:P41}} | image_seal = {{safesubst:#property:P158}} | image_shield = {{safesubst:#property:P94}} | image_map = {{safesubst:#property:P242}} | image_map1 = {{#property:P242}} | map_caption = {{safesubst:#if:{{safesubst:#property:P131}}|Map of {{safesubst:#invoke:string|replace|{{safesubst:#property:P131}}|%s+%([^%(]-%)$||plain=false}} with {{safesubst:#invoke:string|replace|{{safesubst:PAGENAME}}|, .*||plain=false}} highlighted}} | image_map1 = {{safesubst:#property:P1621}} | official_name = {{safesubst:#property:P1448}} | iso_region | iso_code | coordinates_region = {{safesubst:#property:P300}} | coord | coordinates = {{safesubst:#if:{{safesubst:#property:P625}}|{{coord|region:TL{{safesubst:#ifeq:{{safesubst:lc:{{safesubst:#property:P31}}}}|districts of Timor-Leste|_type:adm1st}}{{safesubst:#if:{{{dim|}}}|_dim:{{{dim}}}}}|format=dms|display=it}} }} | country = {{safesubst:#invoke:Wikidata|getValue|P17|FETCH_WIKIDATA}} | municipality = {{ifnotempty| {{wikidata|property|preferred|P131}} | {{wikidata|property|preferred|linked|P131}} | {{safesubst:#invoke:Wikidata|getValue|P131|FETCH_WIKIDATA}} }} | seat = {{safesubst:#if:{{safesubst:#property:P36}}|{{safesubst:#invoke:Wikidata|getValue|P36|FETCH_WIKIDATA}}}} | capital_of = {{safesubst:#if:{{safesubst:#property:P1376}}|{{safesubst:#invoke:Wikidata|getValue|P1376|FETCH_WIKIDATA}}}} | established_date | founded = {{safesubst:#if:{{safesubst:#property:P571}}|{{safesubst:replace|{{safesubst:#property:P571}}|,|{{safesubst:#invoke:String|rep|<br />|{{safesubst:#if:{{{lflf|}}}|{{{lflf|}}}|1}}}}}}}} | founder = {{safesubst:#property:P112}} | elevation_m = {{safesubst:convert|input=P2044|3=m|disp=number}} | elevation_ft = {{safesubst:convert|input=P2044|3=ft|disp=number}} | elevation_footnotes = {{#if:{{#invoke:wd|reference|raw|P2044}}|<ref>{{safesubst:#invoke:wd|reference|raw|P2044}}</ref>|}} | population_as_of = {{safesubst:#if:{{safesubst:#invoke:Wikidata|claim|P1082|qualifier=P585}} | {{safesubst:#time:Y|{{safesubst:#invoke:Wikidata|claim|P1082|qualifier=P585}}}} | ? }} {{safesubst:lc:{{safesubst:#invoke:Wikidata|claim|P1082|qualifier=P459|FETCH_WIKIDATA}}}} | population_point_in_time = {{safesubst:#if:{{safesubst:#invoke:Wikidata|claim|P1082|qualifier=P585}} | {{safesubst:#time:Y|{{safesubst:#invoke:Wikidata|claim|P1082|qualifier=P585}}}} | ? }} | population_total = {{safesubst:#invoke:string|replace|{{safesubst:#invoke:string|replace|{{safesubst:#if:{{{2|}}} |{{safesubst:#invoke:Wikidata|getValueFromID|{{{2}}}|P1082|FETCH_WIKIDATA}} |{{safesubst:#invoke:Wikidata|getValue|P1082|FETCH_WIKIDATA}} }}|([%d]), .*|%1|plain=false}}|±0|}} {{safesubst:#ifeq:{{safesubst:#invoke:string|replace|{{safesubst:#invoke:Wikidata|getValue|P1082|FETCH_WIKIDATA}}|([%d]), .*|%1|plain=false}}|{{safesubst:#invoke:Wikidata|getValue|P1082|FETCH_WIKIDATA}}|| {{safesubst:TL wikidata/deprecated parameter}}}} | population_female = {{safesubst:#invoke:string|replace|{{safesubst:#invoke:string|replace|{{safesubst:#if:{{{2|}}} |{{safesubst:#invoke:Wikidata|getValueFromID|{{{2}}}|P1539|FETCH_WIKIDATA}} |{{safesubst:#invoke:Wikidata|getValue|P1539|FETCH_WIKIDATA}} }}|([%d]), .*|%1|plain=false}}|±0|}} {{safesubst:#ifeq:{{safesubst:#invoke:string|replace|{{safesubst:#invoke:Wikidata|getValue|P1539|FETCH_WIKIDATA}}|([%d]), .*|%1|plain=false}}|{{safesubst:#invoke:Wikidata|getValue|P1539|FETCH_WIKIDATA}}|| {{safesubst:TL wikidata/deprecated parameter}}}} | population_male = {{safesubst:#invoke:string|replace|{{safesubst:#invoke:string|replace|{{safesubst:#if:{{{2|}}} |{{safesubst:#invoke:Wikidata|getValueFromID|{{{2}}}|P1540|FETCH_WIKIDATA}} |{{safesubst:#invoke:Wikidata|getValue|P1540|FETCH_WIKIDATA}} }}|([%d]), .*|%1|plain=false}}|±0|}} {{safesubst:#ifeq:{{safesubst:#invoke:string|replace|{{safesubst:#invoke:Wikidata|getValue|P1540|FETCH_WIKIDATA}}|([%d]), .*|%1|plain=false}}|{{safesubst:#invoke:Wikidata|getValue|P1540|FETCH_WIKIDATA}}|| {{safesubst:TL wikidata/deprecated parameter}}}} | language = {{safesubst:#if:{{safesubst:#property:P2936}}|{{safesubst:replace|{{safesubst:#property:P2936}}|,|<br />}}}} | area = {{safesubst:#invoke:String|replace|{{safesubst:#invoke:String|replace|{{safesubst:#if:{{{2|}}} |{{safesubst:#invoke:Wikidata|getValueFromID|{{{2}}}|P2046|FETCH_WIKIDATA}} |{{safesubst:#invoke:Wikidata|getValue|P2046|FETCH_WIKIDATA}} }}| %D+||plain=false}}|±[%d%.][%d%.]*||plain=false}} | population_demonym | demonym = {{safesubst:#if:{{safesubst:#property:P1549}}|{{safesubst:replace|{{safesubst:#property:P1549}}|,|<br />}}}} | postal_code = {{safesubst:#property:P281}} | located_on | located_in = {{safesubst:#if:{{safesubst:#property:P706}}|{{safesubst:#invoke:Wikidata|getValue|P706|FETCH_WIKIDATA}}}} | area_code = {{safesubst:#if:{{safesubst:#property:P473}}|{{#if:{{#property:P474}}|{{#property:P474}}|+63}}&thinsp;(0)}}{{safesubst:replace|{{safesubst:#property:P473}}|, |<br />{{safesubst:#if:{{safesubst:#property:P473}}|{{#if:{{#property:P474}}|{{#property:P474}}|+63}}}}&thinsp;(0)}} | number_of_divisions = {{safesubst:#if:{{safesubst:#property:P4253}}|{{safesubst:#property:P4253}}}} | short name = {{safesubst:#property:P1813}} | timezone = [[Time in Timor-Leste|TLT]] | utc_offset = +09:00 | demographics_type1 = {{#if:{{#invoke:Wikidata|claim|P1538|qualifier=P585}} | Households ({{#time:Y|{{#invoke:Wikidata|claim|P1538|qualifier=P585}}}} | ? }} {{lc:{{#invoke:Wikidata|claim|P1538|qualifier=P459|FETCH_WIKIDATA}})}} | demographics1_title1 = Total | demographics1_info1 = {{#invoke:string|replace|{{#invoke:string|replace|{{#if:{{{2|}}} |{{#invoke:Wikidata|getValueFromID|{{{2}}}|P1538|FETCH_WIKIDATA}} |{{#invoke:Wikidata|getValue|P1538|FETCH_WIKIDATA}} }}|([%d]), .*|%1|plain=false}}|±0|}} {{#ifeq:{{#invoke:string|replace|{{#invoke:Wikidata|getValue|P1538|FETCH_WIKIDATA}}|([%d]), .*|%1|plain=false}}|{{#invoke:Wikidata|getValue|P1538|FETCH_WIKIDATA}}|| {{TL wikidata/deprecated parameter}}}} | website = {{safesubst:#if:{{safesubst:#property:P856}}|{{safesubst:URL|1={{safesubst:#property:P856}}}}}} | facebook = @{{safesubst:#property:P2013}} | twitter = @{{safesubst:#property:P2002}} | instagram = @{{safesubst:#property:P2003}} | youtube = @{{safesubst:#property:P2397}} | commons = {{#if:{{#property:P373}} | {{#property:P373}} | {{TL wikidata/check wikidata commons link}} }} | name = {{safesubst:#invoke:string|replace|{{safesubst:PAGENAME}}|, .*||plain=false}} | osm = {{safesubst:#property:P402}} | climate_title = [[Köppen climate classification|Climate type]] | climate_type = {{safesubst:ucfirst:{{safesubst:#invoke:WikidataIB |getPreferredValue |P2564|fetchwikidata=ALL|onlysourced=no|noicon=true}} }} | operator = {{safesubst:ucfirst:{{safesubst:#invoke:WikidataIB |getPreferredValue |P137|fetchwikidata=ALL|onlysourced=no|noicon=true}} }} | has_part = {{safesubst:#if:{{safesubst:#property:P527}}|{{safesubst:#invoke:sorted plain list|ascd|propertyID=P527}}}} | #default = {{safesubst:TL wikidata/deprecated parameter}} <span class="error">[[Template:TL wikidata]] called with unsupported input "{{{1}}}"</span> }}</includeonly><noinclude> {{documentation}}</noinclude> syrv1b90qnr88wu3bzae1oebd28lfkv Template:TL wikidata/doc 10 8164 72874 2024-12-26T18:57:54Z en>Andrybak 0 category wrapping in <noinclude></noinclude> per [[WP:CAT#T|template categorization guidelines]] 72874 wikitext text/x-wiki This template is used to retrieve wikidata for use in {{tl|infobox settlement}} templates transcluded in articles about populated places in [[East Timor]]. Currently, this template is used within the article, but may be moved to {{tl|infobox settlement}} in the future. Keeping the "infobox parameter" / "wikidata property" relationships within a single template ensures some level of consistency, allows for tracking of uses, and allows for changes to the relationships without changing every single article. {{Uses Wikidata|position=left|P41|P94|P242|P17|P131|P1082|P585|P459|P1538|P856|P373}} == Tracking == * [[Special:WhatLinksHere/Template:TL wikidata/check wikidata commons link]] * [[Special:WhatLinksHere/Template:TL wikidata/deprecated parameter]] == See also == * {{tl|Official URL}} * {{tl|MX wikidata}} * {{tl|PH wikidata}} <includeonly>{{Sandbox other|| [[Category:Timor-Leste templates]] }}</includeonly> 7s37b6l8faufq1n3evlp8f1iltirrkj 72875 72874 2026-07-01T04:54:02Z Robertsky 10424 1 versaun husi [[:en:Template:TL_wikidata/doc]] 72874 wikitext text/x-wiki This template is used to retrieve wikidata for use in {{tl|infobox settlement}} templates transcluded in articles about populated places in [[East Timor]]. Currently, this template is used within the article, but may be moved to {{tl|infobox settlement}} in the future. Keeping the "infobox parameter" / "wikidata property" relationships within a single template ensures some level of consistency, allows for tracking of uses, and allows for changes to the relationships without changing every single article. {{Uses Wikidata|position=left|P41|P94|P242|P17|P131|P1082|P585|P459|P1538|P856|P373}} == Tracking == * [[Special:WhatLinksHere/Template:TL wikidata/check wikidata commons link]] * [[Special:WhatLinksHere/Template:TL wikidata/deprecated parameter]] == See also == * {{tl|Official URL}} * {{tl|MX wikidata}} * {{tl|PH wikidata}} <includeonly>{{Sandbox other|| [[Category:Timor-Leste templates]] }}</includeonly> 7s37b6l8faufq1n3evlp8f1iltirrkj Template:Legend inline 10 8165 72876 2026-02-12T12:36:04Z en>Phuzion 0 Add "skin-invert" class per [[Template_talk:Legend#Protected_edit_request_on_11_February_2026|request]] 72876 wikitext text/x-wiki <includeonly><!-- --><templatestyles src="Legend/styles.css" /><!-- --><span class="legend nowrap"><!-- --><span class="legend-color {{#if:{{{invert|}}}|skin-invert|mw-no-invert}}" style="forced-color-adjust: none; <!-- -->{{#if:{{{border|}}}|border: {{{border}}};|{{#if:{{{outline|}}}|border: 1px solid {{{outline}}};}}}}<!-- -->{{#if:{{{1|}}}|{{greater color contrast ratio|{{{1}}}|white|black|css=y}}}}<!-- -->{{#if:{{{textcolor|}}}|color:{{{textcolor}}};}}<!-- -->{{#if:{{{size|}}}|font-size:{{{size}}};}}"><!-- -->{{#if:{{{text|}}}{{{alt|}}} | <span class="legend-text" style="{{#if:{{{alt|}}}|color:{{{1|}}};}}font-family: monospace, monospace;">{{If empty|{{{alt|}}}|{{Encodefirst|{{{text|}}}}}|&nbsp;}}</span>|&nbsp;}}<!-- --></span><!-- -->&nbsp;{{{2|}}}<!-- --></span><!-- --></includeonly><noinclude> {{Documentation}} </noinclude> csalj7i0ddeq4hznfww3a22mth217ss 72877 72876 2026-07-01T04:54:41Z Robertsky 10424 1 versaun husi [[:en:Template:Legend_inline]] 72876 wikitext text/x-wiki <includeonly><!-- --><templatestyles src="Legend/styles.css" /><!-- --><span class="legend nowrap"><!-- --><span class="legend-color {{#if:{{{invert|}}}|skin-invert|mw-no-invert}}" style="forced-color-adjust: none; <!-- -->{{#if:{{{border|}}}|border: {{{border}}};|{{#if:{{{outline|}}}|border: 1px solid {{{outline}}};}}}}<!-- -->{{#if:{{{1|}}}|{{greater color contrast ratio|{{{1}}}|white|black|css=y}}}}<!-- -->{{#if:{{{textcolor|}}}|color:{{{textcolor}}};}}<!-- -->{{#if:{{{size|}}}|font-size:{{{size}}};}}"><!-- -->{{#if:{{{text|}}}{{{alt|}}} | <span class="legend-text" style="{{#if:{{{alt|}}}|color:{{{1|}}};}}font-family: monospace, monospace;">{{If empty|{{{alt|}}}|{{Encodefirst|{{{text|}}}}}|&nbsp;}}</span>|&nbsp;}}<!-- --></span><!-- -->&nbsp;{{{2|}}}<!-- --></span><!-- --></includeonly><noinclude> {{Documentation}} </noinclude> csalj7i0ddeq4hznfww3a22mth217ss Módulo:Transclusion count/data/L 828 8166 72878 2026-06-28T05:10:50Z en>Ahechtbot 0 [[Wikipedia:BOT|Bot]]: Updated page. 72878 Scribunto text/plain return { ["LASTYEAR"] = 836000, ["LAT"] = 4100, ["LCAuth"] = 3300, ["LCCN"] = 2300, ["LKA"] = 2100, ["LTU"] = 4900, ["LUX"] = 2400, ["LVA"] = 4700, ["La"] = 514000, ["LaPreferente"] = 2200, ["Label"] = 42000, ["Lafc"] = 6900, ["Lang"] = 449000, ["Lang-ka"] = 5800, ["Lang-sr-Cyrl"] = 13000, ["Lang-sr-cyr"] = 3600, ["Lang-sr-cyrl"] = 2400, ["Lang-zh"] = 84000, ["Lang2iso"] = 4500, ["Lang_unset_italics"] = 2200, ["Langnf"] = 2600, ["Langr"] = 2100, ["Language_with_name"] = 7700, ["Language_with_name/for"] = 3200, ["Languages"] = 2700, ["Langx"] = 666000, ["Large"] = 217000, ["Large_category_TOC"] = 11000, ["Large_category_TOC/tracking"] = 11000, ["Last_edited_by"] = 65000, ["Last_word"] = 41000, ["LaunchesByYear_footer"] = 3600, ["LaunchesByYear_header"] = 3600, ["Lc"] = 9900, ["Lead_too_short"] = 11000, ["League_icon"] = 3600, ["Leagueicon"] = 3500, ["Leave_feedback/link"] = 86000, ["Left"] = 10000, ["Leftlegend"] = 2000, ["Legend"] = 35000, ["Legend/styles.css"] = 151000, ["Legend0"] = 13000, ["Legend2"] = 22000, ["Legend_inline"] = 28000, ["LepIndex"] = 12000, ["Letter-NumberCombDisambig"] = 3500, ["Letter–number_combination_disambiguation"] = 4900, ["Lgtext"] = 3900, ["Libera.Chat"] = 11000, ["Library_link_about"] = 4000, ["Library_of_Congress_Control_Number"] = 2400, ["Library_resources_box"] = 4200, ["Librivox_author"] = 7300, ["Librivox_book"] = 4000, ["LicenseTagFairUseQualifier"] = 11000, ["License_migration"] = 45000, ["License_migration_complete"] = 19000, ["License_migration_not_eligible"] = 6700, ["License_migration_redundant"] = 19000, ["Lichengloss"] = 3100, ["Like"] = 2600, ["Likely"] = 5300, ["Line_link"] = 15000, ["Linear-gradient_text"] = 9200, ["Linescore_Amfootball"] = 2400, ["LinkCatIfExists2"] = 16000, ["LinkStatusLocal"] = 45000, ["LinkSummary"] = 249000, ["LinkSummaryLive"] = 9700, ["Link_if_exists"] = 311000, ["Link_note"] = 75000, ["Link_summary"] = 263000, ["Link_target"] = 34000, ["Linkcolor"] = 2600, ["Linkless_exists"] = 26000, ["Linksearch"] = 2400, ["Linksummarylive"] = 5600, ["Linktext"] = 15000, ["List-Class"] = 17000, ["Listen"] = 16000, ["Listen_live"] = 4500, ["Listenlive"] = 3600, ["Lists_of_people_editnotice"] = 2600, ["Lit"] = 16000, ["Literal_translation"] = 26000, ["Lnl"] = 11000, ["LoMP"] = 4800, ["Location_map"] = 744000, ["Location_map+"] = 31000, ["Location_map_data_documentation"] = 6800, ["Location_map_many"] = 4900, ["Location_map~"] = 30000, ["Location_mark"] = 2700, ["Location_mark+"] = 2700, ["Location_mark~"] = 2700, ["Log"] = 3700, ["Logo_fur"] = 64000, ["Logo_requested"] = 6400, ["London_Gazette"] = 36000, ["Long_plot"] = 4000, ["Longitem"] = 1790000, ["Longlink"] = 5400, ["Look_from"] = 11000, ["Lookfrom"] = 5600, ["Loop"] = 102000, ["Loss"] = 4100, ["Low-Class"] = 15000, ["Low-importance"] = 16000, ["Lower"] = 8400, ["Lowercase"] = 4600, ["Lowercase_title"] = 18000, ["Lowercasetitle"] = 2500, ["Lpsn"] = 2100, ["Lt"] = 2500, ["Lua"] = 12000, ["Lua_escape"] = 5700, ["Module:LCCN"] = 2400, ["Module:Labelled_list_hatnote"] = 630000, ["Module:Lang"] = 1710000, ["Module:Lang-zh"] = 85000, ["Module:Lang/ISO_639_synonyms"] = 1710000, ["Module:Lang/configuration"] = 1710000, ["Module:Lang/data"] = 1710000, ["Module:Lang/data/iana_languages"] = 1710000, ["Module:Lang/data/iana_regions"] = 1710000, ["Module:Lang/data/iana_scripts"] = 1710000, ["Module:Lang/data/iana_suppressed_scripts"] = 1710000, ["Module:Lang/data/iana_variants"] = 1710000, ["Module:Lang/data/is_latn_data"] = 1710000, ["Module:Lang/documentor_tool"] = 4100, ["Module:Lang/langx"] = 685000, ["Module:Lang/tag_from_name"] = 7400, ["Module:Language_with_name/for"] = 3200, ["Module:Large_category_TOC"] = 12000, ["Module:Large_category_TOC/styles.css"] = 12000, ["Module:Latin"] = 9000, ["Module:Librivox_book"] = 4000, ["Module:Lighthouse_tracking"] = 2600, ["Module:Link_if_exists"] = 320000, ["Module:Link_summary"] = 263000, ["Module:List"] = 2600000, ["Module:Listen"] = 16000, ["Module:Listen/styles.css"] = 16000, ["Module:Location_map"] = 785000, ["Module:Location_map/data/Antarctica"] = 2700, ["Module:Location_map/data/Arkansas"] = 3400, ["Module:Location_map/data/Australia"] = 3400, ["Module:Location_map/data/Australia_New_South_Wales"] = 3700, ["Module:Location_map/data/Australia_Queensland"] = 6000, ["Module:Location_map/data/Australia_South_Australia"] = 2200, ["Module:Location_map/data/Austria"] = 3500, ["Module:Location_map/data/Azerbaijan"] = 4900, ["Module:Location_map/data/Bangladesh"] = 2100, ["Module:Location_map/data/Belgium"] = 2000, ["Module:Location_map/data/Bosnia_and_Herzegovina"] = 5500, ["Module:Location_map/data/Brazil"] = 5300, ["Module:Location_map/data/Bulgaria"] = 3400, ["Module:Location_map/data/California"] = 6200, ["Module:Location_map/data/Canada"] = 4900, ["Module:Location_map/data/Canada_Alberta"] = 2200, ["Module:Location_map/data/Canada_British_Columbia"] = 3500, ["Module:Location_map/data/Canada_Ontario"] = 2000, ["Module:Location_map/data/China"] = 3900, ["Module:Location_map/data/Croatia"] = 4100, ["Module:Location_map/data/Czech_Republic"] = 6900, ["Module:Location_map/data/Estonia"] = 3100, ["Module:Location_map/data/Europe"] = 4400, ["Module:Location_map/data/Florida"] = 2700, ["Module:Location_map/data/France"] = 41000, ["Module:Location_map/data/France_Auvergne-Rhône-Alpes"] = 4400, ["Module:Location_map/data/France_Bourgogne-Franche-Comté"] = 4000, ["Module:Location_map/data/France_Grand_Est"] = 5300, ["Module:Location_map/data/France_Hauts-de-France"] = 3900, ["Module:Location_map/data/France_Normandy"] = 3400, ["Module:Location_map/data/France_Nouvelle-Aquitaine"] = 4800, ["Module:Location_map/data/France_Occitanie"] = 4800, ["Module:Location_map/data/Germany"] = 17000, ["Module:Location_map/data/Germany_Bavaria"] = 2900, ["Module:Location_map/data/Germany_Rhineland-Palatinate"] = 2600, ["Module:Location_map/data/Greece"] = 5000, ["Module:Location_map/data/Hungary"] = 2900, ["Module:Location_map/data/Illinois"] = 3700, ["Module:Location_map/data/India"] = 23000, ["Module:Location_map/data/India3"] = 2900, ["Module:Location_map/data/India_Andhra_Pradesh"] = 2700, ["Module:Location_map/data/India_Karnataka"] = 2200, ["Module:Location_map/data/India_Kerala"] = 2900, ["Module:Location_map/data/India_Maharashtra"] = 2800, ["Module:Location_map/data/India_Punjab"] = 2300, ["Module:Location_map/data/India_Tamil_Nadu"] = 3300, ["Module:Location_map/data/India_Uttar_Pradesh"] = 3600, ["Module:Location_map/data/India_West_Bengal"] = 3000, ["Module:Location_map/data/Indiana"] = 3200, ["Module:Location_map/data/Iowa"] = 3000, ["Module:Location_map/data/Iran"] = 50000, ["Module:Location_map/data/Ireland"] = 3900, ["Module:Location_map/data/Italy"] = 12000, ["Module:Location_map/data/Japan"] = 15000, ["Module:Location_map/data/Maine"] = 2100, ["Module:Location_map/data/Maryland"] = 2100, ["Module:Location_map/data/Massachusetts"] = 4700, ["Module:Location_map/data/Mexico"] = 3700, ["Module:Location_map/data/Michigan"] = 3900, ["Module:Location_map/data/Minnesota"] = 4700, ["Module:Location_map/data/Nepal"] = 4700, ["Module:Location_map/data/Netherlands"] = 3100, ["Module:Location_map/data/New_York"] = 8100, ["Module:Location_map/data/North_Carolina"] = 3600, ["Module:Location_map/data/Norway"] = 2500, ["Module:Location_map/data/Ohio"] = 2700, ["Module:Location_map/data/Pakistan"] = 3000, ["Module:Location_map/data/Pennsylvania"] = 6100, ["Module:Location_map/data/Peru"] = 2900, ["Module:Location_map/data/Philippines"] = 3900, ["Module:Location_map/data/Poland"] = 54000, ["Module:Location_map/data/Queensland"] = 2500, ["Module:Location_map/data/Romania"] = 6000, ["Module:Location_map/data/Russia"] = 29000, ["Module:Location_map/data/Russia_Bashkortostan"] = 4500, ["Module:Location_map/data/Russia_Vladimir_Oblast"] = 2200, ["Module:Location_map/data/Russia_Vologda_Oblast"] = 4800, ["Module:Location_map/data/Serbia"] = 4400, ["Module:Location_map/data/Slovakia"] = 3300, ["Module:Location_map/data/Slovenia"] = 6800, ["Module:Location_map/data/South_Africa"] = 3300, ["Module:Location_map/data/Spain"] = 8500, ["Module:Location_map/data/Sweden"] = 2900, ["Module:Location_map/data/Switzerland"] = 6200, ["Module:Location_map/data/Syria"] = 2500, ["Module:Location_map/data/Texas"] = 3900, ["Module:Location_map/data/Turkey"] = 19000, ["Module:Location_map/data/USA"] = 115000, ["Module:Location_map/data/USA_Alabama"] = 2200, ["Module:Location_map/data/USA_Alaska"] = 2400, ["Module:Location_map/data/USA_Arizona"] = 2100, ["Module:Location_map/data/USA_Arkansas"] = 3500, ["Module:Location_map/data/USA_California"] = 8100, ["Module:Location_map/data/USA_Colorado"] = 2500, ["Module:Location_map/data/USA_Florida"] = 3400, ["Module:Location_map/data/USA_Georgia"] = 2100, ["Module:Location_map/data/USA_Illinois"] = 3900, ["Module:Location_map/data/USA_Indiana"] = 3400, ["Module:Location_map/data/USA_Iowa"] = 3200, ["Module:Location_map/data/USA_Kentucky"] = 3200, ["Module:Location_map/data/USA_Maine"] = 2300, ["Module:Location_map/data/USA_Maryland"] = 2600, ["Module:Location_map/data/USA_Massachusetts"] = 5100, ["Module:Location_map/data/USA_Michigan"] = 4300, ["Module:Location_map/data/USA_Minnesota"] = 5000, ["Module:Location_map/data/USA_Missouri"] = 2200, ["Module:Location_map/data/USA_New_Jersey"] = 3000, ["Module:Location_map/data/USA_New_York"] = 9000, ["Module:Location_map/data/USA_North_Carolina"] = 4500, ["Module:Location_map/data/USA_Ohio"] = 3000, ["Module:Location_map/data/USA_Oregon"] = 2600, ["Module:Location_map/data/USA_Pennsylvania"] = 7300, ["Module:Location_map/data/USA_Tennessee"] = 2200, ["Module:Location_map/data/USA_Texas"] = 4400, ["Module:Location_map/data/USA_Virginia"] = 5100, ["Module:Location_map/data/USA_Washington"] = 3200, ["Module:Location_map/data/USA_West_Virginia"] = 4400, ["Module:Location_map/data/USA_Wisconsin"] = 3000, ["Module:Location_map/data/Ukraine"] = 4000, ["Module:Location_map/data/United_States"] = 2800, ["Module:Location_map/data/Virginia"] = 4000, ["Module:Location_map/data/Washington"] = 2400, ["Module:Location_map/data/West_Virginia"] = 4100, ["Module:Location_map/data/Wisconsin"] = 2600, ["Module:Location_map/data/doc"] = 6700, ["Module:Location_map/info"] = 6800, ["Module:Location_map/multi"] = 36000, ["Module:Location_map/styles.css"] = 779000, ["Module:London_Gazette_util"] = 36000, ["Module:Lua_banner"] = 12000, } 2qokvue0f59on35ynooo1fbgwsedcav 72879 72878 2026-07-01T04:54:42Z Robertsky 10424 1 versaun husi [[:en:Module:Transclusion_count/data/L]] 72878 Scribunto text/plain return { ["LASTYEAR"] = 836000, ["LAT"] = 4100, ["LCAuth"] = 3300, ["LCCN"] = 2300, ["LKA"] = 2100, ["LTU"] = 4900, ["LUX"] = 2400, ["LVA"] = 4700, ["La"] = 514000, ["LaPreferente"] = 2200, ["Label"] = 42000, ["Lafc"] = 6900, ["Lang"] = 449000, ["Lang-ka"] = 5800, ["Lang-sr-Cyrl"] = 13000, ["Lang-sr-cyr"] = 3600, ["Lang-sr-cyrl"] = 2400, ["Lang-zh"] = 84000, ["Lang2iso"] = 4500, ["Lang_unset_italics"] = 2200, ["Langnf"] = 2600, ["Langr"] = 2100, ["Language_with_name"] = 7700, ["Language_with_name/for"] = 3200, ["Languages"] = 2700, ["Langx"] = 666000, ["Large"] = 217000, ["Large_category_TOC"] = 11000, ["Large_category_TOC/tracking"] = 11000, ["Last_edited_by"] = 65000, ["Last_word"] = 41000, ["LaunchesByYear_footer"] = 3600, ["LaunchesByYear_header"] = 3600, ["Lc"] = 9900, ["Lead_too_short"] = 11000, ["League_icon"] = 3600, ["Leagueicon"] = 3500, ["Leave_feedback/link"] = 86000, ["Left"] = 10000, ["Leftlegend"] = 2000, ["Legend"] = 35000, ["Legend/styles.css"] = 151000, ["Legend0"] = 13000, ["Legend2"] = 22000, ["Legend_inline"] = 28000, ["LepIndex"] = 12000, ["Letter-NumberCombDisambig"] = 3500, ["Letter–number_combination_disambiguation"] = 4900, ["Lgtext"] = 3900, ["Libera.Chat"] = 11000, ["Library_link_about"] = 4000, ["Library_of_Congress_Control_Number"] = 2400, ["Library_resources_box"] = 4200, ["Librivox_author"] = 7300, ["Librivox_book"] = 4000, ["LicenseTagFairUseQualifier"] = 11000, ["License_migration"] = 45000, ["License_migration_complete"] = 19000, ["License_migration_not_eligible"] = 6700, ["License_migration_redundant"] = 19000, ["Lichengloss"] = 3100, ["Like"] = 2600, ["Likely"] = 5300, ["Line_link"] = 15000, ["Linear-gradient_text"] = 9200, ["Linescore_Amfootball"] = 2400, ["LinkCatIfExists2"] = 16000, ["LinkStatusLocal"] = 45000, ["LinkSummary"] = 249000, ["LinkSummaryLive"] = 9700, ["Link_if_exists"] = 311000, ["Link_note"] = 75000, ["Link_summary"] = 263000, ["Link_target"] = 34000, ["Linkcolor"] = 2600, ["Linkless_exists"] = 26000, ["Linksearch"] = 2400, ["Linksummarylive"] = 5600, ["Linktext"] = 15000, ["List-Class"] = 17000, ["Listen"] = 16000, ["Listen_live"] = 4500, ["Listenlive"] = 3600, ["Lists_of_people_editnotice"] = 2600, ["Lit"] = 16000, ["Literal_translation"] = 26000, ["Lnl"] = 11000, ["LoMP"] = 4800, ["Location_map"] = 744000, ["Location_map+"] = 31000, ["Location_map_data_documentation"] = 6800, ["Location_map_many"] = 4900, ["Location_map~"] = 30000, ["Location_mark"] = 2700, ["Location_mark+"] = 2700, ["Location_mark~"] = 2700, ["Log"] = 3700, ["Logo_fur"] = 64000, ["Logo_requested"] = 6400, ["London_Gazette"] = 36000, ["Long_plot"] = 4000, ["Longitem"] = 1790000, ["Longlink"] = 5400, ["Look_from"] = 11000, ["Lookfrom"] = 5600, ["Loop"] = 102000, ["Loss"] = 4100, ["Low-Class"] = 15000, ["Low-importance"] = 16000, ["Lower"] = 8400, ["Lowercase"] = 4600, ["Lowercase_title"] = 18000, ["Lowercasetitle"] = 2500, ["Lpsn"] = 2100, ["Lt"] = 2500, ["Lua"] = 12000, ["Lua_escape"] = 5700, ["Module:LCCN"] = 2400, ["Module:Labelled_list_hatnote"] = 630000, ["Module:Lang"] = 1710000, ["Module:Lang-zh"] = 85000, ["Module:Lang/ISO_639_synonyms"] = 1710000, ["Module:Lang/configuration"] = 1710000, ["Module:Lang/data"] = 1710000, ["Module:Lang/data/iana_languages"] = 1710000, ["Module:Lang/data/iana_regions"] = 1710000, ["Module:Lang/data/iana_scripts"] = 1710000, ["Module:Lang/data/iana_suppressed_scripts"] = 1710000, ["Module:Lang/data/iana_variants"] = 1710000, ["Module:Lang/data/is_latn_data"] = 1710000, ["Module:Lang/documentor_tool"] = 4100, ["Module:Lang/langx"] = 685000, ["Module:Lang/tag_from_name"] = 7400, ["Module:Language_with_name/for"] = 3200, ["Module:Large_category_TOC"] = 12000, ["Module:Large_category_TOC/styles.css"] = 12000, ["Module:Latin"] = 9000, ["Module:Librivox_book"] = 4000, ["Module:Lighthouse_tracking"] = 2600, ["Module:Link_if_exists"] = 320000, ["Module:Link_summary"] = 263000, ["Module:List"] = 2600000, ["Module:Listen"] = 16000, ["Module:Listen/styles.css"] = 16000, ["Module:Location_map"] = 785000, ["Module:Location_map/data/Antarctica"] = 2700, ["Module:Location_map/data/Arkansas"] = 3400, ["Module:Location_map/data/Australia"] = 3400, ["Module:Location_map/data/Australia_New_South_Wales"] = 3700, ["Module:Location_map/data/Australia_Queensland"] = 6000, ["Module:Location_map/data/Australia_South_Australia"] = 2200, ["Module:Location_map/data/Austria"] = 3500, ["Module:Location_map/data/Azerbaijan"] = 4900, ["Module:Location_map/data/Bangladesh"] = 2100, ["Module:Location_map/data/Belgium"] = 2000, ["Module:Location_map/data/Bosnia_and_Herzegovina"] = 5500, ["Module:Location_map/data/Brazil"] = 5300, ["Module:Location_map/data/Bulgaria"] = 3400, ["Module:Location_map/data/California"] = 6200, ["Module:Location_map/data/Canada"] = 4900, ["Module:Location_map/data/Canada_Alberta"] = 2200, ["Module:Location_map/data/Canada_British_Columbia"] = 3500, ["Module:Location_map/data/Canada_Ontario"] = 2000, ["Module:Location_map/data/China"] = 3900, ["Module:Location_map/data/Croatia"] = 4100, ["Module:Location_map/data/Czech_Republic"] = 6900, ["Module:Location_map/data/Estonia"] = 3100, ["Module:Location_map/data/Europe"] = 4400, ["Module:Location_map/data/Florida"] = 2700, ["Module:Location_map/data/France"] = 41000, ["Module:Location_map/data/France_Auvergne-Rhône-Alpes"] = 4400, ["Module:Location_map/data/France_Bourgogne-Franche-Comté"] = 4000, ["Module:Location_map/data/France_Grand_Est"] = 5300, ["Module:Location_map/data/France_Hauts-de-France"] = 3900, ["Module:Location_map/data/France_Normandy"] = 3400, ["Module:Location_map/data/France_Nouvelle-Aquitaine"] = 4800, ["Module:Location_map/data/France_Occitanie"] = 4800, ["Module:Location_map/data/Germany"] = 17000, ["Module:Location_map/data/Germany_Bavaria"] = 2900, ["Module:Location_map/data/Germany_Rhineland-Palatinate"] = 2600, ["Module:Location_map/data/Greece"] = 5000, ["Module:Location_map/data/Hungary"] = 2900, ["Module:Location_map/data/Illinois"] = 3700, ["Module:Location_map/data/India"] = 23000, ["Module:Location_map/data/India3"] = 2900, ["Module:Location_map/data/India_Andhra_Pradesh"] = 2700, ["Module:Location_map/data/India_Karnataka"] = 2200, ["Module:Location_map/data/India_Kerala"] = 2900, ["Module:Location_map/data/India_Maharashtra"] = 2800, ["Module:Location_map/data/India_Punjab"] = 2300, ["Module:Location_map/data/India_Tamil_Nadu"] = 3300, ["Module:Location_map/data/India_Uttar_Pradesh"] = 3600, ["Module:Location_map/data/India_West_Bengal"] = 3000, ["Module:Location_map/data/Indiana"] = 3200, ["Module:Location_map/data/Iowa"] = 3000, ["Module:Location_map/data/Iran"] = 50000, ["Module:Location_map/data/Ireland"] = 3900, ["Module:Location_map/data/Italy"] = 12000, ["Module:Location_map/data/Japan"] = 15000, ["Module:Location_map/data/Maine"] = 2100, ["Module:Location_map/data/Maryland"] = 2100, ["Module:Location_map/data/Massachusetts"] = 4700, ["Module:Location_map/data/Mexico"] = 3700, ["Module:Location_map/data/Michigan"] = 3900, ["Module:Location_map/data/Minnesota"] = 4700, ["Module:Location_map/data/Nepal"] = 4700, ["Module:Location_map/data/Netherlands"] = 3100, ["Module:Location_map/data/New_York"] = 8100, ["Module:Location_map/data/North_Carolina"] = 3600, ["Module:Location_map/data/Norway"] = 2500, ["Module:Location_map/data/Ohio"] = 2700, ["Module:Location_map/data/Pakistan"] = 3000, ["Module:Location_map/data/Pennsylvania"] = 6100, ["Module:Location_map/data/Peru"] = 2900, ["Module:Location_map/data/Philippines"] = 3900, ["Module:Location_map/data/Poland"] = 54000, ["Module:Location_map/data/Queensland"] = 2500, ["Module:Location_map/data/Romania"] = 6000, ["Module:Location_map/data/Russia"] = 29000, ["Module:Location_map/data/Russia_Bashkortostan"] = 4500, ["Module:Location_map/data/Russia_Vladimir_Oblast"] = 2200, ["Module:Location_map/data/Russia_Vologda_Oblast"] = 4800, ["Module:Location_map/data/Serbia"] = 4400, ["Module:Location_map/data/Slovakia"] = 3300, ["Module:Location_map/data/Slovenia"] = 6800, ["Module:Location_map/data/South_Africa"] = 3300, ["Module:Location_map/data/Spain"] = 8500, ["Module:Location_map/data/Sweden"] = 2900, ["Module:Location_map/data/Switzerland"] = 6200, ["Module:Location_map/data/Syria"] = 2500, ["Module:Location_map/data/Texas"] = 3900, ["Module:Location_map/data/Turkey"] = 19000, ["Module:Location_map/data/USA"] = 115000, ["Module:Location_map/data/USA_Alabama"] = 2200, ["Module:Location_map/data/USA_Alaska"] = 2400, ["Module:Location_map/data/USA_Arizona"] = 2100, ["Module:Location_map/data/USA_Arkansas"] = 3500, ["Module:Location_map/data/USA_California"] = 8100, ["Module:Location_map/data/USA_Colorado"] = 2500, ["Module:Location_map/data/USA_Florida"] = 3400, ["Module:Location_map/data/USA_Georgia"] = 2100, ["Module:Location_map/data/USA_Illinois"] = 3900, ["Module:Location_map/data/USA_Indiana"] = 3400, ["Module:Location_map/data/USA_Iowa"] = 3200, ["Module:Location_map/data/USA_Kentucky"] = 3200, ["Module:Location_map/data/USA_Maine"] = 2300, ["Module:Location_map/data/USA_Maryland"] = 2600, ["Module:Location_map/data/USA_Massachusetts"] = 5100, ["Module:Location_map/data/USA_Michigan"] = 4300, ["Module:Location_map/data/USA_Minnesota"] = 5000, ["Module:Location_map/data/USA_Missouri"] = 2200, ["Module:Location_map/data/USA_New_Jersey"] = 3000, ["Module:Location_map/data/USA_New_York"] = 9000, ["Module:Location_map/data/USA_North_Carolina"] = 4500, ["Module:Location_map/data/USA_Ohio"] = 3000, ["Module:Location_map/data/USA_Oregon"] = 2600, ["Module:Location_map/data/USA_Pennsylvania"] = 7300, ["Module:Location_map/data/USA_Tennessee"] = 2200, ["Module:Location_map/data/USA_Texas"] = 4400, ["Module:Location_map/data/USA_Virginia"] = 5100, ["Module:Location_map/data/USA_Washington"] = 3200, ["Module:Location_map/data/USA_West_Virginia"] = 4400, ["Module:Location_map/data/USA_Wisconsin"] = 3000, ["Module:Location_map/data/Ukraine"] = 4000, ["Module:Location_map/data/United_States"] = 2800, ["Module:Location_map/data/Virginia"] = 4000, ["Module:Location_map/data/Washington"] = 2400, ["Module:Location_map/data/West_Virginia"] = 4100, ["Module:Location_map/data/Wisconsin"] = 2600, ["Module:Location_map/data/doc"] = 6700, ["Module:Location_map/info"] = 6800, ["Module:Location_map/multi"] = 36000, ["Module:Location_map/styles.css"] = 779000, ["Module:London_Gazette_util"] = 36000, ["Module:Lua_banner"] = 12000, } 2qokvue0f59on35ynooo1fbgwsedcav Template:Template shortcut 10 8167 72880 2021-02-16T17:54:32Z en>Nardog 0 TfM closed as convert 72880 wikitext text/x-wiki <includeonly>{{#invoke:Shortcut|main|template=yes}}</includeonly><noinclude>{{Documentation}}</noinclude> me4jjte8wllgxkf22h7gbzu0e2tux3i 72881 72880 2026-07-01T04:54:42Z Robertsky 10424 1 versaun husi [[:en:Template:Template_shortcut]] 72880 wikitext text/x-wiki <includeonly>{{#invoke:Shortcut|main|template=yes}}</includeonly><noinclude>{{Documentation}}</noinclude> me4jjte8wllgxkf22h7gbzu0e2tux3i Template:Legend inline/doc 10 8168 72882 2025-01-19T18:15:28Z en>GhostInTheMachine 0 legend2 alias is common 72882 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} {{Uses TemplateStyles|Template:Legend/styles.css}} {{Template shortcut|Legend2}} ==Description== *'''Shows a legend with a coloured box.''' *This template differs from [[:Template:Legend]] only in that it uses ''display:inline'' to prevent line breaks after each legend. ==Usage== See [[:Template:Legend/doc]] for usage. === Example 1 === <pre>That is a {{legend inline|#bfb|size=80%}} green box.</pre> That is a {{legend inline|#bfb|size=80%|green box}}. === Example 2 === <pre>That is a {{legend inline|#bfb|text=green}} box.</pre> That is a {{legend inline|#bfb|text=green}} box. === Example 3 === <pre> That is a {{legend inline |#bfb |box |border = 1px solid red |textcolor = #00e |size = 150% |text = _green_}}. </pre> That is a {{legend inline |#bfb |box |border = 1px solid red |textcolor = #00e |size = 150% |text = &nbsp;green&nbsp;}}. ==See also== * For the original version of this template using ''display:block'', see {{tl|Legend}} * For legend rows representing lines, see {{tl|legend-line}} <includeonly>{{Sandbox other|| [[Category:Legend templates]] }}</includeonly> sksw642z62ou89q8djubd5czios4mw4 72883 72882 2026-07-01T04:54:42Z Robertsky 10424 1 versaun husi [[:en:Template:Legend_inline/doc]] 72882 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} {{Uses TemplateStyles|Template:Legend/styles.css}} {{Template shortcut|Legend2}} ==Description== *'''Shows a legend with a coloured box.''' *This template differs from [[:Template:Legend]] only in that it uses ''display:inline'' to prevent line breaks after each legend. ==Usage== See [[:Template:Legend/doc]] for usage. === Example 1 === <pre>That is a {{legend inline|#bfb|size=80%}} green box.</pre> That is a {{legend inline|#bfb|size=80%|green box}}. === Example 2 === <pre>That is a {{legend inline|#bfb|text=green}} box.</pre> That is a {{legend inline|#bfb|text=green}} box. === Example 3 === <pre> That is a {{legend inline |#bfb |box |border = 1px solid red |textcolor = #00e |size = 150% |text = _green_}}. </pre> That is a {{legend inline |#bfb |box |border = 1px solid red |textcolor = #00e |size = 150% |text = &nbsp;green&nbsp;}}. ==See also== * For the original version of this template using ''display:block'', see {{tl|Legend}} * For legend rows representing lines, see {{tl|legend-line}} <includeonly>{{Sandbox other|| [[Category:Legend templates]] }}</includeonly> sksw642z62ou89q8djubd5czios4mw4 Template:Native name list 10 8169 72884 2025-08-17T16:48:33Z en>W.andrea 0 /* top */ +example (noincluded) 72884 wikitext text/x-wiki {{#invoke:native name|native_name_list<noinclude>|tag1=fr|name1=Exemple|tag2=es|name2=Ejemplo</noinclude>}}<noinclude>{{documentation}}</noinclude> h638ug843iqfihzt5o245ofykgc26ll 72885 72884 2026-07-01T04:55:42Z Robertsky 10424 1 versaun husi [[:en:Template:Native_name_list]] 72884 wikitext text/x-wiki {{#invoke:native name|native_name_list<noinclude>|tag1=fr|name1=Exemple|tag2=es|name2=Ejemplo</noinclude>}}<noinclude>{{documentation}}</noinclude> h638ug843iqfihzt5o245ofykgc26ll Template:Smaller 10 8170 72886 2022-01-18T10:48:21Z en>Primefac 0 merge complete 72886 wikitext text/x-wiki #REDIRECT [[Template:Small]] {{r from merge}} 3z51arixnhrihpfrsykunpq1dagbnx1 72887 72886 2026-07-01T04:55:43Z Robertsky 10424 1 versaun husi [[:en:Template:Smaller]] 72886 wikitext text/x-wiki #REDIRECT [[Template:Small]] {{r from merge}} 3z51arixnhrihpfrsykunpq1dagbnx1 Módulo:Native name 828 8171 72888 2024-10-10T17:06:54Z en>Trappist the monk 0 72888 Scribunto text/plain require('strict'); local getArgs = require ('Module:Arguments').getArgs; local lang_module = require ('Module:Lang'); local yes_no = require('Module:Yesno') local defined_values = { italic = {['no']='no', ['off']='no'}, -- values accepted by |italic= and |italics=; {{lang}} expects 'no' so 'off' must be translated paren = {['no']=true, ['off']=true, ['omit']=true}, -- values accepted by |paren= } local messages_t = { tag_required = 'an IETF language tag as parameter {{{1}}} is required', -- for {{native name}} name_required = 'a name as parameter {{{2}}} is required', tag_required_idx = 'an IETF language tag in |tag%s= is required', -- for {{native name}} when called from {{native name list}} name_required_idx = 'a name in |name%s= is required', empty_list = 'list is empty', -- for {{native name list}} positional = 'positional parameters not supported', br_list = '&lt;br /> lists not allowed', -- for {{native name checker}} list_markup = 'list markup expected for multiple names', malformed_param = 'parameter value is malformed', } local help_links_t = { ['native name'] = '[[Template:Native name|help]]', ['native name checker'] = '[[Template:Native name checker|help]]', ['native name list'] = '[[Template:Native name list|help]]', } local error_cats_t = { ['native name'] = '[[Category:Native name template errors]]', ['native name checker'] = '[[Category:Native name checker template errors]]', ['native name list'] = '[[Category:Native name list template errors]]', } --[[--------------------------< E R R O R _ M S G >------------------------------------------------------------ returns a formatted error message ]] local function error_msg (msg, template, index) local cat = ((0 == mw.title.getCurrentTitle().namespace) and error_cats_t[template]) or ''; if index then local message = string.format (msg, index); return string.format ('<span style="color:#d33">Error {{%s}}: %s (%s)</span>%s', template, message, help_links_t[template], cat) end return string.format ('<span style="color:#d33">Error {{%s}}: %s (%s)</span>%s', template, msg, help_links_t[template], cat) end --[=[-------------------------< _ N A T I V E _ N A M E >------------------------------------------------------ implements {{native name}}; entry point from a module <args_t> is a table of parameter name/value pairs. Parameters that are supported are: args_t[1] - IETF language tag (required) args_t[2] - the native name (required) args_t.italic - accepts string values 'no' or 'off'; {{lang}} expects 'no' so 'off' must be translated args_t.italics - alias of |italic= args_t.paren - accepts 'omit', 'off', or 'no' args_t.icon - alias of paren args_t.parensize - args_t.fontsize - deprecated alias of |parensize= args_t.nolink - any value inhibits wikilinking of language name args_t.suppress_empty_list_error - when set to 'yes', suppresses an 'empty' error message; mostly for use within another template this function calls these functions in Module:lang: _is_ietf_tag _lang _name_from_tag TODO: add support for romanization and transliteration? add support for postfix so that 'mis' can render something like this: {{native|name|mis|Chotilapacquen|parent=omit|postfix=&#32;([[Coahuiltecan languages|Coahuiltecan]])}} Chotilapacquen (Coahuiltecan) ]=] local function _native_name (args_t) local template = (args_t.template and args_t.template) or 'native name'; -- for error messaging; use 'native name list' when called from native_name_list(), etc if not (args_t[1] or args_t[2]) and yes_no (args_t.suppress_empty_list_error) then return ''; -- if empty list error is suppressed, return empty string elseif not args_t[1] then return error_msg ((args_t.index and messages_t.tag_required_idx) or messages_t.tag_required, template, args_t.index) elseif not args_t[2] then return error_msg ((args_t.index and messages_t.name_required_idx) or messages_t.name_required, template, args_t.index) end args_t.italic = args_t.italics or args_t.italic; -- plural form first in {{native name}} but singular form for {{lang}} args_t.italic = defined_values.italic[args_t.italic] or nil; -- translate assigned value args_t.italics = nil; -- so unset as unneeded args_t.paren = args_t.paren or args_t.icon; args_t.icon = nil; -- unset as unneeded args_t.parensize = args_t.parensize or args_t.fontsize or '100%'; args_t.fontsize = nil; -- unset as unneeded if not lang_module._is_ietf_tag (args_t[1]) then args_t[1] = lang_module._tag_from_name ({args_t[1]}); if args_t[1]:find ('Error') then return error_msg ((args_t.index and messages_t.tag_required_idx) or messages_t.tag_required, template, args_t.index) end end local out_t = {}; table.insert (out_t, lang_module._lang ({args_t[1], args_t[2], ['italic']=args_t.italic, ['template']=template})); if not defined_values.paren[args_t.paren] then table.insert (out_t, '&nbsp;'); table.insert (out_t, table.concat ({ '<span class="languageicon" style="font-size:', args_t.parensize, '; font-weight:normal">'})); if args_t.nolink then table.insert (out_t, table.concat ({'(', lang_module._name_from_tag ({args_t[1], ['template']=template}), ')'})); else if lang_module._is_ietf_tag (args_t[1]) then table.insert (out_t, table.concat ({'(', lang_module._name_from_tag ({args_t[1], ['link'] ='yes', ['template']=template}), ')'})); else table.insert (out_t, '(language?)'); -- TODO: any reason to keep this? end end table.insert (out_t, '</span>'); end return table.concat (out_t); end --[[--------------------------< N A T I V E _ N A M E >-------------------------------------------------------- implements {{native name}}; entry point from the template {{#invoke:native name|native_name|<tag>|<name>|italic=|paren=|parensize=|nolink=}} ]] local function native_name (frame) return _native_name (getArgs (frame)); end --[[--------------------------> _ N A T I V E _ N A M E _ L I S T >-------------------------------------------- implements {{native name}}; entry point from a module <args_t> is a table of parameter name/value pairs. Supports enumerated forms of the {{native name}} parameters: args_t.tagn - IETF language tag (|tag1= required) args_t.namen - the native name (|name1= required) args_t.italicn - accepts string values 'no' or 'off' args_t.italicsn - alias of |italicn= args_t.parenn - accepts 'omit', 'off', or 'no' args_t.iconn - alias of paren args_t.parensizen - args_t.fontsizen - deprecated alias of |parensizen= args_t.nolinkn - any value inhibits wikilinking of language name also supports: args_t.postfixn - wikitext to be appended to list item n (references other appropriate text) args_t.suppress_empty_list_error - when set to 'yes', suppresses an 'empty list' error message; mostly for use within another template ]] local function _native_name_list (args_t) if args_t[1] then return error_msg (messages_t.positional, 'native name list') end local unsorted_enumerators_t = {} -- unsorted k/v table of tagn and namen enumerators where k is the enumerator and v is always true for param, _ in pairs (args_t) do -- loop through all parameters local enumerator = mw.ustring.match (param, "^tag(%d+)$") -- is this a |tagn= parameter? extract enumerator if present if enumerator then -- if there is an enumerator unsorted_enumerators_t[tonumber(enumerator)] = true -- add enumerator to the table else local name_match = mw.ustring.match (param, "^name(%d+)$") -- is this a |tagn= parameter? extract enumerator if present if name_match then -- if there is an enumerator unsorted_enumerators_t[tonumber (name_match)] = true -- add enumerator to the table end end end local enumerators_t = {} -- will hold a sorted sequence of enumerators for n, _ in pairs (unsorted_enumerators_t) do -- loop through the k/v table of enumerators table.insert (enumerators_t, n) -- add the enumerator to the sequence end table.sort (enumerators_t) -- and ascending sort local list_t = {}; -- list of formatted native names goes here for _, n in ipairs (enumerators_t) do -- loop through the sorted enumerators table.insert (list_t, table.concat ({ _native_name ({ -- go render the native name args_t['tag'..n], args_t['name'..n], ['italic'] = args_t['italic'..n], ['italics'] = args_t['italics'..n], ['paren'] = args_t['paren'..n], ['icon'] = args_t['icon'..n], ['parensize'] = args_t['parensize'..n], ['fontsize'] = args_t['fontsize'..n], ['nolink'] = args_t['nolink'..n], ['template'] = 'native name list', -- for error messaging ['index'] = n, -- for error messaging }), args_t['postfix'..n] or '', })); end if 0 == #list_t then return (yes_no (args_t.suppress_empty_list_error) and '') or -- return empty string when error suppressed error_msg (messages_t.empty_list, 'native name list'); -- otherwise error elseif 1 == #list_t then return list_t[1]; -- return the very short list; TODO: add error? else return require ('Module:List').unbulleted (list_t); -- use unbulleted list from module end end --[[--------------------------< N A T I V E _ N A M E _ L I S T >---------------------------------------------- implements {{native name list}}; entry point from the template {{#invoke:native name list|native_name_list|tag1=<tag>|name1=<name>|italic1=|paren1=|parensize1=|nolink1=}} ]] local function native_name_list (frame) return _native_name_list (getArgs (frame)); end --[[--------------------------< _ N A T I V E _ N A M E _ C H E C K E R >-------------------------------------- entry point from a module implements {{native name checker}} for use inside infoboxen: |dataxx = {{native name checker|{{{native_name|}}}}} inspects rendered content of {{{native_name}}}: expects: at least one lang="<valid IETF tag>" html attribute; tag must begin with 2 or three letters followed by a hyphen or double quote character: lang="zh-Hant" or lang="nav" or lang="oj" emits error message when 2 or more lang="<valid IETF tag>" html attribute but list markup <li> tag not found emits error message if any form of '<br />' tag is found per MOS:NOBREAK returns: nothing when |native_name= is omitted or empty assigned value when no error error message on error ]] local function _native_name_checker (args_t) local value = args_t[1]; if not value then -- if |native_name= is omitted or empty return; -- return nothing end local _, count = value:gsub ('lang="%a%a%a?[%-"]%a*', '%1'); if 0 == count then return table.concat ({value, error_msg (messages_t.malformed_param, 'native name checker')}, ' '); -- no {{lang}} or {{native_name}} template end if 1 < count then if not value:find ('<div class="plainlist *" *>') or not value:find ('</div>$') then -- must be wrapped in 'plainlist' div return table.concat ({value, error_msg (messages_t.list_markup, 'native name checker')}, ' '); end end if value:find ('< */? *[Bb][Rr] */? *>') then -- look for something that vaguely resembles a <br /> tag return table.concat ({value, error_msg (messages_t.br_list, 'native name checker')}, ' '); end return value; -- no failed tests, return the value as is end --[[--------------------------< N A T I V E _ N A M E _ C H E C K E R >-------------------------------------- entry point from a module implements {{native name checker}} ]] local function native_name_checker (frame) return _native_name_checker (getArgs (frame)); end --[[--------------------------< E X P O R T S >---------------------------------------------------------------- ]] return { native_name = native_name, -- template interface native_name_list = native_name_list, native_name_checker = native_name_checker, _native_name = _native_name, -- other module interface _native_name_list = _native_name_list, _native_name_checker = _native_name_checker, } j0tmvjm5o3ypbjncduux70wkkuc8sc2 72889 72888 2026-07-01T04:55:43Z Robertsky 10424 1 versaun husi [[:en:Module:Native_name]] 72888 Scribunto text/plain require('strict'); local getArgs = require ('Module:Arguments').getArgs; local lang_module = require ('Module:Lang'); local yes_no = require('Module:Yesno') local defined_values = { italic = {['no']='no', ['off']='no'}, -- values accepted by |italic= and |italics=; {{lang}} expects 'no' so 'off' must be translated paren = {['no']=true, ['off']=true, ['omit']=true}, -- values accepted by |paren= } local messages_t = { tag_required = 'an IETF language tag as parameter {{{1}}} is required', -- for {{native name}} name_required = 'a name as parameter {{{2}}} is required', tag_required_idx = 'an IETF language tag in |tag%s= is required', -- for {{native name}} when called from {{native name list}} name_required_idx = 'a name in |name%s= is required', empty_list = 'list is empty', -- for {{native name list}} positional = 'positional parameters not supported', br_list = '&lt;br /> lists not allowed', -- for {{native name checker}} list_markup = 'list markup expected for multiple names', malformed_param = 'parameter value is malformed', } local help_links_t = { ['native name'] = '[[Template:Native name|help]]', ['native name checker'] = '[[Template:Native name checker|help]]', ['native name list'] = '[[Template:Native name list|help]]', } local error_cats_t = { ['native name'] = '[[Category:Native name template errors]]', ['native name checker'] = '[[Category:Native name checker template errors]]', ['native name list'] = '[[Category:Native name list template errors]]', } --[[--------------------------< E R R O R _ M S G >------------------------------------------------------------ returns a formatted error message ]] local function error_msg (msg, template, index) local cat = ((0 == mw.title.getCurrentTitle().namespace) and error_cats_t[template]) or ''; if index then local message = string.format (msg, index); return string.format ('<span style="color:#d33">Error {{%s}}: %s (%s)</span>%s', template, message, help_links_t[template], cat) end return string.format ('<span style="color:#d33">Error {{%s}}: %s (%s)</span>%s', template, msg, help_links_t[template], cat) end --[=[-------------------------< _ N A T I V E _ N A M E >------------------------------------------------------ implements {{native name}}; entry point from a module <args_t> is a table of parameter name/value pairs. Parameters that are supported are: args_t[1] - IETF language tag (required) args_t[2] - the native name (required) args_t.italic - accepts string values 'no' or 'off'; {{lang}} expects 'no' so 'off' must be translated args_t.italics - alias of |italic= args_t.paren - accepts 'omit', 'off', or 'no' args_t.icon - alias of paren args_t.parensize - args_t.fontsize - deprecated alias of |parensize= args_t.nolink - any value inhibits wikilinking of language name args_t.suppress_empty_list_error - when set to 'yes', suppresses an 'empty' error message; mostly for use within another template this function calls these functions in Module:lang: _is_ietf_tag _lang _name_from_tag TODO: add support for romanization and transliteration? add support for postfix so that 'mis' can render something like this: {{native|name|mis|Chotilapacquen|parent=omit|postfix=&#32;([[Coahuiltecan languages|Coahuiltecan]])}} Chotilapacquen (Coahuiltecan) ]=] local function _native_name (args_t) local template = (args_t.template and args_t.template) or 'native name'; -- for error messaging; use 'native name list' when called from native_name_list(), etc if not (args_t[1] or args_t[2]) and yes_no (args_t.suppress_empty_list_error) then return ''; -- if empty list error is suppressed, return empty string elseif not args_t[1] then return error_msg ((args_t.index and messages_t.tag_required_idx) or messages_t.tag_required, template, args_t.index) elseif not args_t[2] then return error_msg ((args_t.index and messages_t.name_required_idx) or messages_t.name_required, template, args_t.index) end args_t.italic = args_t.italics or args_t.italic; -- plural form first in {{native name}} but singular form for {{lang}} args_t.italic = defined_values.italic[args_t.italic] or nil; -- translate assigned value args_t.italics = nil; -- so unset as unneeded args_t.paren = args_t.paren or args_t.icon; args_t.icon = nil; -- unset as unneeded args_t.parensize = args_t.parensize or args_t.fontsize or '100%'; args_t.fontsize = nil; -- unset as unneeded if not lang_module._is_ietf_tag (args_t[1]) then args_t[1] = lang_module._tag_from_name ({args_t[1]}); if args_t[1]:find ('Error') then return error_msg ((args_t.index and messages_t.tag_required_idx) or messages_t.tag_required, template, args_t.index) end end local out_t = {}; table.insert (out_t, lang_module._lang ({args_t[1], args_t[2], ['italic']=args_t.italic, ['template']=template})); if not defined_values.paren[args_t.paren] then table.insert (out_t, '&nbsp;'); table.insert (out_t, table.concat ({ '<span class="languageicon" style="font-size:', args_t.parensize, '; font-weight:normal">'})); if args_t.nolink then table.insert (out_t, table.concat ({'(', lang_module._name_from_tag ({args_t[1], ['template']=template}), ')'})); else if lang_module._is_ietf_tag (args_t[1]) then table.insert (out_t, table.concat ({'(', lang_module._name_from_tag ({args_t[1], ['link'] ='yes', ['template']=template}), ')'})); else table.insert (out_t, '(language?)'); -- TODO: any reason to keep this? end end table.insert (out_t, '</span>'); end return table.concat (out_t); end --[[--------------------------< N A T I V E _ N A M E >-------------------------------------------------------- implements {{native name}}; entry point from the template {{#invoke:native name|native_name|<tag>|<name>|italic=|paren=|parensize=|nolink=}} ]] local function native_name (frame) return _native_name (getArgs (frame)); end --[[--------------------------> _ N A T I V E _ N A M E _ L I S T >-------------------------------------------- implements {{native name}}; entry point from a module <args_t> is a table of parameter name/value pairs. Supports enumerated forms of the {{native name}} parameters: args_t.tagn - IETF language tag (|tag1= required) args_t.namen - the native name (|name1= required) args_t.italicn - accepts string values 'no' or 'off' args_t.italicsn - alias of |italicn= args_t.parenn - accepts 'omit', 'off', or 'no' args_t.iconn - alias of paren args_t.parensizen - args_t.fontsizen - deprecated alias of |parensizen= args_t.nolinkn - any value inhibits wikilinking of language name also supports: args_t.postfixn - wikitext to be appended to list item n (references other appropriate text) args_t.suppress_empty_list_error - when set to 'yes', suppresses an 'empty list' error message; mostly for use within another template ]] local function _native_name_list (args_t) if args_t[1] then return error_msg (messages_t.positional, 'native name list') end local unsorted_enumerators_t = {} -- unsorted k/v table of tagn and namen enumerators where k is the enumerator and v is always true for param, _ in pairs (args_t) do -- loop through all parameters local enumerator = mw.ustring.match (param, "^tag(%d+)$") -- is this a |tagn= parameter? extract enumerator if present if enumerator then -- if there is an enumerator unsorted_enumerators_t[tonumber(enumerator)] = true -- add enumerator to the table else local name_match = mw.ustring.match (param, "^name(%d+)$") -- is this a |tagn= parameter? extract enumerator if present if name_match then -- if there is an enumerator unsorted_enumerators_t[tonumber (name_match)] = true -- add enumerator to the table end end end local enumerators_t = {} -- will hold a sorted sequence of enumerators for n, _ in pairs (unsorted_enumerators_t) do -- loop through the k/v table of enumerators table.insert (enumerators_t, n) -- add the enumerator to the sequence end table.sort (enumerators_t) -- and ascending sort local list_t = {}; -- list of formatted native names goes here for _, n in ipairs (enumerators_t) do -- loop through the sorted enumerators table.insert (list_t, table.concat ({ _native_name ({ -- go render the native name args_t['tag'..n], args_t['name'..n], ['italic'] = args_t['italic'..n], ['italics'] = args_t['italics'..n], ['paren'] = args_t['paren'..n], ['icon'] = args_t['icon'..n], ['parensize'] = args_t['parensize'..n], ['fontsize'] = args_t['fontsize'..n], ['nolink'] = args_t['nolink'..n], ['template'] = 'native name list', -- for error messaging ['index'] = n, -- for error messaging }), args_t['postfix'..n] or '', })); end if 0 == #list_t then return (yes_no (args_t.suppress_empty_list_error) and '') or -- return empty string when error suppressed error_msg (messages_t.empty_list, 'native name list'); -- otherwise error elseif 1 == #list_t then return list_t[1]; -- return the very short list; TODO: add error? else return require ('Module:List').unbulleted (list_t); -- use unbulleted list from module end end --[[--------------------------< N A T I V E _ N A M E _ L I S T >---------------------------------------------- implements {{native name list}}; entry point from the template {{#invoke:native name list|native_name_list|tag1=<tag>|name1=<name>|italic1=|paren1=|parensize1=|nolink1=}} ]] local function native_name_list (frame) return _native_name_list (getArgs (frame)); end --[[--------------------------< _ N A T I V E _ N A M E _ C H E C K E R >-------------------------------------- entry point from a module implements {{native name checker}} for use inside infoboxen: |dataxx = {{native name checker|{{{native_name|}}}}} inspects rendered content of {{{native_name}}}: expects: at least one lang="<valid IETF tag>" html attribute; tag must begin with 2 or three letters followed by a hyphen or double quote character: lang="zh-Hant" or lang="nav" or lang="oj" emits error message when 2 or more lang="<valid IETF tag>" html attribute but list markup <li> tag not found emits error message if any form of '<br />' tag is found per MOS:NOBREAK returns: nothing when |native_name= is omitted or empty assigned value when no error error message on error ]] local function _native_name_checker (args_t) local value = args_t[1]; if not value then -- if |native_name= is omitted or empty return; -- return nothing end local _, count = value:gsub ('lang="%a%a%a?[%-"]%a*', '%1'); if 0 == count then return table.concat ({value, error_msg (messages_t.malformed_param, 'native name checker')}, ' '); -- no {{lang}} or {{native_name}} template end if 1 < count then if not value:find ('<div class="plainlist *" *>') or not value:find ('</div>$') then -- must be wrapped in 'plainlist' div return table.concat ({value, error_msg (messages_t.list_markup, 'native name checker')}, ' '); end end if value:find ('< */? *[Bb][Rr] */? *>') then -- look for something that vaguely resembles a <br /> tag return table.concat ({value, error_msg (messages_t.br_list, 'native name checker')}, ' '); end return value; -- no failed tests, return the value as is end --[[--------------------------< N A T I V E _ N A M E _ C H E C K E R >-------------------------------------- entry point from a module implements {{native name checker}} ]] local function native_name_checker (frame) return _native_name_checker (getArgs (frame)); end --[[--------------------------< E X P O R T S >---------------------------------------------------------------- ]] return { native_name = native_name, -- template interface native_name_list = native_name_list, native_name_checker = native_name_checker, _native_name = _native_name, -- other module interface _native_name_list = _native_name_list, _native_name_checker = _native_name_checker, } j0tmvjm5o3ypbjncduux70wkkuc8sc2 Template:Nay 10 8172 72890 2025-09-19T01:16:59Z en>Paine Ellsworth 0 per edit request on talk page - include size parameter 72890 wikitext text/x-wiki [[File:Red x.svg|{{{2|13px}}}|alt=Red X|link=]]{{#if:{{{1|}}}|&nbsp;'''{{{1|}}}'''}}<span style="display: none;">N</span><noinclude> {{documentation}} </noinclude> qirfi5ylsg6w0zbh3mb6imlhj5x26dv 72891 72890 2026-07-01T04:55:43Z Robertsky 10424 1 versaun husi [[:en:Template:Nay]] 72890 wikitext text/x-wiki [[File:Red x.svg|{{{2|13px}}}|alt=Red X|link=]]{{#if:{{{1|}}}|&nbsp;'''{{{1|}}}'''}}<span style="display: none;">N</span><noinclude> {{documentation}} </noinclude> qirfi5ylsg6w0zbh3mb6imlhj5x26dv Template:Template data header 10 8173 72892 2021-10-05T19:29:24Z en>MusikBot II 0 Protected "[[Template:Template data header]]": [[Wikipedia:High-risk templates|High-risk template or module]]: 331 transclusions ([[User:MusikBot II/TemplateProtector|more info]]) ([Edit=Require autoconfirmed or confirmed access] (indefinite)) 72892 wikitext text/x-wiki #REDIRECT [[Template:TemplateData header]] 4f5j00d4fbzl99id7id41c4xn7tyk03 72893 72892 2026-07-01T04:55:43Z Robertsky 10424 1 versaun husi [[:en:Template:Template_data_header]] 72892 wikitext text/x-wiki #REDIRECT [[Template:TemplateData header]] 4f5j00d4fbzl99id7id41c4xn7tyk03 Template:Native name list/doc 10 8174 72894 2026-04-07T12:56:10Z en>W.andrea 0 /* top */ +link 72894 wikitext text/x-wiki {{Documentation subpage}} {{Lua|Module:Native name}} This template creates a correctly formatted list of native names. Typical uses would be the {{para|native name}} parameter common to many [[WP:infoboxes|infoboxes]]. == Usage == Like {{tlx|native name}}, but this template takes only enumerated parameter names. {{para|tag''n''}} and {{para|name''n''}} are required, in pairs. Do not skip suffix numbers ({{para|1=<nowiki>tag1=.. |tag3=..</nowiki>}} {{nay}}). These parameters are: <syntaxhighlight lang="wikitext"> {{native name list |tag1 = |name1 = |italics1 = |paren1 = |parensize1= |nolink1 = |postfix1 = |tag2 = |name2 = |italics2 = |paren2 = |parensize2= |nolink2 = |postfix2 = }} </syntaxhighlight> {| class="wikitable sortable" ! scope="col" | Parameter name ! scope="col" | Description and examples ! scope="col" | Required |- ! scope="row" | {{para|tag{{var|n}}}} | The [[IETF language tag]] code for the native language. French, for instance, is "fr"; Spanish is "es"; Arabic is "ar"; etc. | yes |- ! scope="row" | {{para|name{{var|n}}}} | The native name, in the native language (with accents, etc.). | yes |- ! scope="row" | {{para|italics{{var|n}}}}<br/>{{smaller|(or {{para|italic{{var|n}}}})}} | Set to "off" or "no" to disable displaying the native name in italics. Example: {{para|italics{{var|n}}|off}} | no |- ! scope="row" | {{para|paren{{var|n}}}}<br/>{{smaller|(or {{para|icon{{var|n}}}})}} | Set to "omit", "off" or "no" to suppress the appearance of the native language's name in a parenthesis after the native name. Example: {{para|paren{{var|n}}|omit}} | no |- ! scope="row" | {{para|parensize{{var|n}}}}<br/>{{smaller|(or {{para|fontsize{{var|n}}}})}} | Use to specify a font-size for the parenthesis. Per [[MOS:FONTSIZE]], do not make this text smaller in infoboxes, since the text is already at 88% of normal. Example: {{para|parensize{{var|n}}|90%}} | no |- ! scope="row" | {{para|nolink{{var|n}}}} | Set to anything (e.g. "on") to suppress the appearance of the native language's name as a link. | no |- ! scope="row" | {{para|postfix{{var|n}}}} | adds additional wikitext to list-item{{var|n}}; typical use might be references or for wikilinked 'language' name for those languages that do not have an IETF language tag; see examples | no |} == Examples == {| class="wikitable" ! scope="col" | Code ! scope="col" | Result |- | width="33%"|<syntaxhighlight lang="wikitext">{{native name list |tag1=de |name1=Etsch |italics1=no |tag2=it |name2=Adige |tag3=vec |name3=Àdexe |parensize3=90% |tag4=rm |name4=Adisch |paren4=omit |tag5=lld |name5=Adesc |nolink5=yes}}</syntaxhighlight> |{{native name list |tag1=de|name1=Etsch|italics1=no |tag2=it|name2=Adige |tag3=vec|name3=Àdexe|parensize3=90% |tag4=rm|name4=Adisch|paren4=omit |tag5=lld|name5=Adesc|nolink5=yes}} |- !colspan="2"|html |- |colspan="2"|{{code|lang=html|{{native name list |tag1=de|name1=Etsch|italics1=no |tag2=it|name2=Adige |tag3=vec|name3=Àdexe|parensize3=90% |tag4=rm|name4=Adisch|paren4=omit |tag5=lld|name5=Adesc|nolink5=yes}}}} |- |<syntaxhighlight lang="wikitext">{{native name list |tag1=es|name1=Senda del Moro |tag2=mis|name2=Cuesta de Mr. Bourne |paren2=omit|postfix2=&nbsp;([[Llanito]])}}</syntaxhighlight> |{{native name list |tag1=es|name1=Senda del Moro |tag2=mis|name2=Cuesta de Mr. Bourne |paren2=omit|postfix2=&nbsp;([[Llanito]])}} |} ==Tracking category== {{Category link with count|Native name list template errors}} ==Template data== {{template data header}} <templatedata> { "params": { "tag1": { "label": "language", "description": "language code", "example": "el, de", "type": "string", "required": true }, "name1": { "label": "name", "description": "Name in foreign language", "example": "ευρώ, herzlich willkommen", "type": "string", "required": true }, "italic1": { "aliases": [ "italics1" ], "label": "italics", "description": "\"off\" will prevent italicising the name", "type": "boolean", "default": "on" }, "paren1": { "label": "language name", "description": "Language name in parenthesis", "type": "boolean", "default": "on" }, "parensize1": { "label": "language fontsize", "description": "font-size of the language (parenthesised)", "example": "90%", "type": "number" }, "tag2": { "label": "language", "description": "language code", "type": "string" }, "name2": { "label": "name", "description": "Name in foreign language", "type": "string" }, "italic2": { "aliases": [ "italics2" ], "label": "italics", "type": "boolean", "default": "on" }, "paren2": { "label": "language name", "type": "boolean", "default": "on" }, "parensize2": { "label": "language fontsize", "type": "number" } }, "description": "As {{native name}}, but with multiple name-language options" } </templatedata> ==See also== * [[IETF language tag]] list <includeonly>{{Sandbox other|| <!-- Categories below this line --> [[Category:Wikipedia formatting templates]] [[Category:Name templates]] [[Category:Language templates]] }}</includeonly> hudwg2f1u0putg3v1e3udko6238blsk 72895 72894 2026-07-01T04:55:43Z Robertsky 10424 1 versaun husi [[:en:Template:Native_name_list/doc]] 72894 wikitext text/x-wiki {{Documentation subpage}} {{Lua|Module:Native name}} This template creates a correctly formatted list of native names. Typical uses would be the {{para|native name}} parameter common to many [[WP:infoboxes|infoboxes]]. == Usage == Like {{tlx|native name}}, but this template takes only enumerated parameter names. {{para|tag''n''}} and {{para|name''n''}} are required, in pairs. Do not skip suffix numbers ({{para|1=<nowiki>tag1=.. |tag3=..</nowiki>}} {{nay}}). These parameters are: <syntaxhighlight lang="wikitext"> {{native name list |tag1 = |name1 = |italics1 = |paren1 = |parensize1= |nolink1 = |postfix1 = |tag2 = |name2 = |italics2 = |paren2 = |parensize2= |nolink2 = |postfix2 = }} </syntaxhighlight> {| class="wikitable sortable" ! scope="col" | Parameter name ! scope="col" | Description and examples ! scope="col" | Required |- ! scope="row" | {{para|tag{{var|n}}}} | The [[IETF language tag]] code for the native language. French, for instance, is "fr"; Spanish is "es"; Arabic is "ar"; etc. | yes |- ! scope="row" | {{para|name{{var|n}}}} | The native name, in the native language (with accents, etc.). | yes |- ! scope="row" | {{para|italics{{var|n}}}}<br/>{{smaller|(or {{para|italic{{var|n}}}})}} | Set to "off" or "no" to disable displaying the native name in italics. Example: {{para|italics{{var|n}}|off}} | no |- ! scope="row" | {{para|paren{{var|n}}}}<br/>{{smaller|(or {{para|icon{{var|n}}}})}} | Set to "omit", "off" or "no" to suppress the appearance of the native language's name in a parenthesis after the native name. Example: {{para|paren{{var|n}}|omit}} | no |- ! scope="row" | {{para|parensize{{var|n}}}}<br/>{{smaller|(or {{para|fontsize{{var|n}}}})}} | Use to specify a font-size for the parenthesis. Per [[MOS:FONTSIZE]], do not make this text smaller in infoboxes, since the text is already at 88% of normal. Example: {{para|parensize{{var|n}}|90%}} | no |- ! scope="row" | {{para|nolink{{var|n}}}} | Set to anything (e.g. "on") to suppress the appearance of the native language's name as a link. | no |- ! scope="row" | {{para|postfix{{var|n}}}} | adds additional wikitext to list-item{{var|n}}; typical use might be references or for wikilinked 'language' name for those languages that do not have an IETF language tag; see examples | no |} == Examples == {| class="wikitable" ! scope="col" | Code ! scope="col" | Result |- | width="33%"|<syntaxhighlight lang="wikitext">{{native name list |tag1=de |name1=Etsch |italics1=no |tag2=it |name2=Adige |tag3=vec |name3=Àdexe |parensize3=90% |tag4=rm |name4=Adisch |paren4=omit |tag5=lld |name5=Adesc |nolink5=yes}}</syntaxhighlight> |{{native name list |tag1=de|name1=Etsch|italics1=no |tag2=it|name2=Adige |tag3=vec|name3=Àdexe|parensize3=90% |tag4=rm|name4=Adisch|paren4=omit |tag5=lld|name5=Adesc|nolink5=yes}} |- !colspan="2"|html |- |colspan="2"|{{code|lang=html|{{native name list |tag1=de|name1=Etsch|italics1=no |tag2=it|name2=Adige |tag3=vec|name3=Àdexe|parensize3=90% |tag4=rm|name4=Adisch|paren4=omit |tag5=lld|name5=Adesc|nolink5=yes}}}} |- |<syntaxhighlight lang="wikitext">{{native name list |tag1=es|name1=Senda del Moro |tag2=mis|name2=Cuesta de Mr. Bourne |paren2=omit|postfix2=&nbsp;([[Llanito]])}}</syntaxhighlight> |{{native name list |tag1=es|name1=Senda del Moro |tag2=mis|name2=Cuesta de Mr. Bourne |paren2=omit|postfix2=&nbsp;([[Llanito]])}} |} ==Tracking category== {{Category link with count|Native name list template errors}} ==Template data== {{template data header}} <templatedata> { "params": { "tag1": { "label": "language", "description": "language code", "example": "el, de", "type": "string", "required": true }, "name1": { "label": "name", "description": "Name in foreign language", "example": "ευρώ, herzlich willkommen", "type": "string", "required": true }, "italic1": { "aliases": [ "italics1" ], "label": "italics", "description": "\"off\" will prevent italicising the name", "type": "boolean", "default": "on" }, "paren1": { "label": "language name", "description": "Language name in parenthesis", "type": "boolean", "default": "on" }, "parensize1": { "label": "language fontsize", "description": "font-size of the language (parenthesised)", "example": "90%", "type": "number" }, "tag2": { "label": "language", "description": "language code", "type": "string" }, "name2": { "label": "name", "description": "Name in foreign language", "type": "string" }, "italic2": { "aliases": [ "italics2" ], "label": "italics", "type": "boolean", "default": "on" }, "paren2": { "label": "language name", "type": "boolean", "default": "on" }, "parensize2": { "label": "language fontsize", "type": "number" } }, "description": "As {{native name}}, but with multiple name-language options" } </templatedata> ==See also== * [[IETF language tag]] list <includeonly>{{Sandbox other|| <!-- Categories below this line --> [[Category:Wikipedia formatting templates]] [[Category:Name templates]] [[Category:Language templates]] }}</includeonly> hudwg2f1u0putg3v1e3udko6238blsk Diskusaun Template:Native name list 11 8175 72896 2022-11-07T07:51:08Z en>DePiep 0 [[WP:AES|←]]Redirected page to [[Template talk:Native name]] 72896 wikitext text/x-wiki #REDIRECT [[Template talk:Native name]] ku9s04t9l64d41479wiw0ii7l29jvmw 72897 72896 2026-07-01T04:55:43Z Robertsky 10424 1 versaun husi [[:en:Template_talk:Native_name_list]] 72896 wikitext text/x-wiki #REDIRECT [[Template talk:Native name]] ku9s04t9l64d41479wiw0ii7l29jvmw Template:Flag 10 8176 72898 2014-12-18T05:55:14Z en>Plastikspork 0 Closing 72898 wikitext text/x-wiki {{country data {{{1|}}}|flag/core|name={{{name|{{{1|}}}}}}|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude>{{documentation}}</noinclude> ofumtldgk38cy4vntgy93o2oniuxo2q 72899 72898 2026-07-01T05:32:15Z Robertsky 10424 1 versaun husi [[:en:Template:Flag]] 72898 wikitext text/x-wiki {{country data {{{1|}}}|flag/core|name={{{name|{{{1|}}}}}}|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude>{{documentation}}</noinclude> ofumtldgk38cy4vntgy93o2oniuxo2q Template:Country data United States 10 8177 72900 2025-08-03T14:32:10Z en>CommonsDelinker 0 Replacing Flag_of_the_United_States_(1863-1865).svg with [[File:Flag_of_the_United_States_(1863–1865).svg]] (by [[commons:User:CommonsDelinker|CommonsDelinker]] because: [[:c:COM:FR|File renamed]]: [[:c:COM:FR#FR6|Criterion 6]]). 72900 wikitext text/x-wiki {{safesubst<noinclude />: {{{1<noinclude>|country showdata</noinclude>}}} | alias = United States | flag alias = Flag of the United States.svg | flag alias-1776 = Flag of the United States (1776–1777).svg | flag alias-1777 = Flag of the United States (1777–1795).svg | flag alias-1777-Ross = Betsy Ross flag.svg | flag alias-1795 = Flag of the United States (1795-1818).svg | flag alias-1795FM = Flag of the United States (1795–1818).svg | flag alias-1818 = Flag of the United States (1818-1819).svg | flag alias-1819 = Flag of the United States (1819-1820).svg | flag alias-1820 = Flag of the United States (1820-1822).svg | flag alias-1822 = Flag of the United States (1822–1836).svg | flag alias-1836 = Flag of the United States (1836-1837).svg | flag alias-1837 = Flag of the United States (1837-1845).svg | flag alias-1845 = Flag of the United States (1845-1846).svg | flag alias-1846 = Flag of the United States (1846-1847).svg | flag alias-1847 = Flag of the United States (1847-1848).svg | flag alias-1848 = Flag of the United States (1848-1851).svg | flag alias-1851 = Flag of the United States (1851-1858).svg | flag alias-1858 = Flag of the United States (1858-1859).svg | flag alias-1859 = Flag of the United States (1859-1861).svg | flag alias-1861 = Flag of the United States (1861-1863).svg | flag alias-1863 = Flag of the United States (1863–1865).svg | flag alias-1865 = Flag of the United States (1865-1867).svg | flag alias-1867 = Flag of the United States (1867-1877).svg | flag alias-1877 = Flag of the United States (1877-1890).svg | flag alias-1890 = Flag of the United States (1890-1891).svg | flag alias-1891 = Flag of the United States (1891-1896).svg | flag alias-1896 = Flag of the United States (1896-1908).svg | flag alias-1908 = Flag of the United States (1908-1912).svg | flag alias-1912 = Flag of the United States (1912-1959).svg | flag alias-1959 = Flag of the United States (1959–1960).svg | flag alias-1960 = Flag of the United States (Web Colors).svg | flag alias-pantone = Flag of the United States (Pantone).svg | flag alias-yacht = United States yacht flag.svg | flag alias-air force = Flag of the United States Air Force.svg | flag alias-coast guard-1799 = Ensign of the United States Revenue-Marine (1799).png | flag alias-coast guard-1815 = Ensign of the United States Revenue-Marine (1815).png | flag alias-coast guard-1836 = Ensign of the United States Revenue-Marine (1836).png | flag alias-coast guard-1841 = Ensign of the United States Revenue-Marine (1841).png | flag alias-coast guard-1867 = Ensign of the United States Revenue-Marine (1867).png | flag alias-coast guard-1868 = Ensign of the United States Revenue-Marine (1868).png | flag alias-coast guard-1915 = Ensign of the United States Coast Guard (1915-1953).png | flag alias-coast guard-1953 = Ensign of the United States Coast Guard.svg | flag alias-coast guard = Flag of the United States Coast Guard.svg | link alias-coast guard = {{#switch:{{{variant|}}}|coast guard|coast guard-1915=United States Coast Guard|coast guard-1894=United States Revenue Cutter Service|coast guard-1799|coast guard-1815|coast guard-1836|coast guard-1841|coast guard-1867|coast guard-1868=United States Revenue-Marine|United States Coast Guard}} | flag alias-army = Flag of the United States Army.svg | link alias-naval = {{#switch:{{{variant|}}}|navy|coast guard-1915=United States Coast Guard|United States Coast Guard|United States Navy}} | flag alias-navy-1864 = Flag of the United States Navy (1864-1959).svg | flag alias-navy = Flag of the United States Navy (official).svg | link alias-navy = United States Navy | link alias-marines = {{#switch:{{{variant|}}}|marines|marines-1914=United States Marine Corps|United States Marine Corps}} | flag alias-marines-1914 = Flag of the United States Marine Corps (1914-1939).png | flag alias-marines = Flag of the United States Marine Corps.svg | link alias-merchant marine = United States Merchant Marine | flag alias-merchant marine = Flag of the United States Merchant Marine Higher Resolution.jpg | flag alias-space force = Flag of the United States Space Force.svg | link alias-military = United States Armed Forces | link alias-football = United States {{#ifeq:{{{mw|}}}|Olympic|men's|{{{mw|men's}}}}} national {{{age|{{#ifeq:{{{mw|}}}|Olympic|under-23}}}}} soccer team | link alias-Australian rules football = United States {{{mw|men's}}} national Australian rules football team | flag alias-23px = Flag of the United States (23px).png | {{#ifeq:{{{altlink}}}|A national rugby union team|link alias-rugby union|empty}} = USA Selects | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1776 | var2 = 1777 | var3 = 1777-Ross | var4 = 1795 | var5 = 1795FM | var6 = 1818 | var7 = 1819 | var8 = 1820 | var9 = 1822 | var10 = 1836 | var11 = 1837 | var12 = 1845 | var13 = 1846 | var14 = 1847 | var15 = 1848 | var16 = 1851 | var17 = 1858 | var18 = 1859 | var19 = 1861 | var20 = 1863 | var21 = 1865 | var22 = 1867 | var23 = 1877 | var24 = 1890 | var25 = 1891 | var26 = 1896 | var27 = 1908 | var28 = 1912 | var29 = 1959 | var30 = 1960 | var31 = pantone | var32 = 23px | var33 = yacht | var34 = coast guard-1915 | var35 = coast guard-1953 | var36 = marines-1914 | redir1 = USA | redir2 = US | redir3 = United States of America | redir4 = U.S. </noinclude> }} tkfdccj3zt4wkgcpmgwfct1mj6ttudg 72901 72900 2026-07-01T05:32:15Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_United_States]] 72900 wikitext text/x-wiki {{safesubst<noinclude />: {{{1<noinclude>|country showdata</noinclude>}}} | alias = United States | flag alias = Flag of the United States.svg | flag alias-1776 = Flag of the United States (1776–1777).svg | flag alias-1777 = Flag of the United States (1777–1795).svg | flag alias-1777-Ross = Betsy Ross flag.svg | flag alias-1795 = Flag of the United States (1795-1818).svg | flag alias-1795FM = Flag of the United States (1795–1818).svg | flag alias-1818 = Flag of the United States (1818-1819).svg | flag alias-1819 = Flag of the United States (1819-1820).svg | flag alias-1820 = Flag of the United States (1820-1822).svg | flag alias-1822 = Flag of the United States (1822–1836).svg | flag alias-1836 = Flag of the United States (1836-1837).svg | flag alias-1837 = Flag of the United States (1837-1845).svg | flag alias-1845 = Flag of the United States (1845-1846).svg | flag alias-1846 = Flag of the United States (1846-1847).svg | flag alias-1847 = Flag of the United States (1847-1848).svg | flag alias-1848 = Flag of the United States (1848-1851).svg | flag alias-1851 = Flag of the United States (1851-1858).svg | flag alias-1858 = Flag of the United States (1858-1859).svg | flag alias-1859 = Flag of the United States (1859-1861).svg | flag alias-1861 = Flag of the United States (1861-1863).svg | flag alias-1863 = Flag of the United States (1863–1865).svg | flag alias-1865 = Flag of the United States (1865-1867).svg | flag alias-1867 = Flag of the United States (1867-1877).svg | flag alias-1877 = Flag of the United States (1877-1890).svg | flag alias-1890 = Flag of the United States (1890-1891).svg | flag alias-1891 = Flag of the United States (1891-1896).svg | flag alias-1896 = Flag of the United States (1896-1908).svg | flag alias-1908 = Flag of the United States (1908-1912).svg | flag alias-1912 = Flag of the United States (1912-1959).svg | flag alias-1959 = Flag of the United States (1959–1960).svg | flag alias-1960 = Flag of the United States (Web Colors).svg | flag alias-pantone = Flag of the United States (Pantone).svg | flag alias-yacht = United States yacht flag.svg | flag alias-air force = Flag of the United States Air Force.svg | flag alias-coast guard-1799 = Ensign of the United States Revenue-Marine (1799).png | flag alias-coast guard-1815 = Ensign of the United States Revenue-Marine (1815).png | flag alias-coast guard-1836 = Ensign of the United States Revenue-Marine (1836).png | flag alias-coast guard-1841 = Ensign of the United States Revenue-Marine (1841).png | flag alias-coast guard-1867 = Ensign of the United States Revenue-Marine (1867).png | flag alias-coast guard-1868 = Ensign of the United States Revenue-Marine (1868).png | flag alias-coast guard-1915 = Ensign of the United States Coast Guard (1915-1953).png | flag alias-coast guard-1953 = Ensign of the United States Coast Guard.svg | flag alias-coast guard = Flag of the United States Coast Guard.svg | link alias-coast guard = {{#switch:{{{variant|}}}|coast guard|coast guard-1915=United States Coast Guard|coast guard-1894=United States Revenue Cutter Service|coast guard-1799|coast guard-1815|coast guard-1836|coast guard-1841|coast guard-1867|coast guard-1868=United States Revenue-Marine|United States Coast Guard}} | flag alias-army = Flag of the United States Army.svg | link alias-naval = {{#switch:{{{variant|}}}|navy|coast guard-1915=United States Coast Guard|United States Coast Guard|United States Navy}} | flag alias-navy-1864 = Flag of the United States Navy (1864-1959).svg | flag alias-navy = Flag of the United States Navy (official).svg | link alias-navy = United States Navy | link alias-marines = {{#switch:{{{variant|}}}|marines|marines-1914=United States Marine Corps|United States Marine Corps}} | flag alias-marines-1914 = Flag of the United States Marine Corps (1914-1939).png | flag alias-marines = Flag of the United States Marine Corps.svg | link alias-merchant marine = United States Merchant Marine | flag alias-merchant marine = Flag of the United States Merchant Marine Higher Resolution.jpg | flag alias-space force = Flag of the United States Space Force.svg | link alias-military = United States Armed Forces | link alias-football = United States {{#ifeq:{{{mw|}}}|Olympic|men's|{{{mw|men's}}}}} national {{{age|{{#ifeq:{{{mw|}}}|Olympic|under-23}}}}} soccer team | link alias-Australian rules football = United States {{{mw|men's}}} national Australian rules football team | flag alias-23px = Flag of the United States (23px).png | {{#ifeq:{{{altlink}}}|A national rugby union team|link alias-rugby union|empty}} = USA Selects | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1776 | var2 = 1777 | var3 = 1777-Ross | var4 = 1795 | var5 = 1795FM | var6 = 1818 | var7 = 1819 | var8 = 1820 | var9 = 1822 | var10 = 1836 | var11 = 1837 | var12 = 1845 | var13 = 1846 | var14 = 1847 | var15 = 1848 | var16 = 1851 | var17 = 1858 | var18 = 1859 | var19 = 1861 | var20 = 1863 | var21 = 1865 | var22 = 1867 | var23 = 1877 | var24 = 1890 | var25 = 1891 | var26 = 1896 | var27 = 1908 | var28 = 1912 | var29 = 1959 | var30 = 1960 | var31 = pantone | var32 = 23px | var33 = yacht | var34 = coast guard-1915 | var35 = coast guard-1953 | var36 = marines-1914 | redir1 = USA | redir2 = US | redir3 = United States of America | redir4 = U.S. </noinclude> }} tkfdccj3zt4wkgcpmgwfct1mj6ttudg Template:Flag/core 10 8178 72902 2025-06-28T20:37:41Z en>Primefac 0 Undid revision [[Special:Diff/1297784916|1297784916]] by [[Special:Contributions/Primefac|Primefac]] ([[User talk:Primefac|talk]]) issue seems to have been sorted 72902 wikitext text/x-wiki <span class="flagicon nowrap">[[File:{{{flag alias-{{{variant}}}|{{#if:{{{flag alias|}}}|{{{flag alias}}}|Flag placeholder.svg}}}}}|{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]] {{#switch:{{{flag alias}}}|Flag of Switzerland.svg|Flag of the Vatican City.svg|Flag of Switzerland (Pantone).svg|Flag of Vatican City State - 2023 version.svg=&nbsp;}}{{#ifeq:{{{alias}}}|Nepal|&nbsp;&nbsp;}}</span>[[{{{alias}}}|{{{name}}}]]<noinclude>{{documentation}}</noinclude> jahq0mqk6wniga6gt2vj4ia83ye5lr8 72903 72902 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Flag/core]] 72902 wikitext text/x-wiki <span class="flagicon nowrap">[[File:{{{flag alias-{{{variant}}}|{{#if:{{{flag alias|}}}|{{{flag alias}}}|Flag placeholder.svg}}}}}|{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]] {{#switch:{{{flag alias}}}|Flag of Switzerland.svg|Flag of the Vatican City.svg|Flag of Switzerland (Pantone).svg|Flag of Vatican City State - 2023 version.svg=&nbsp;}}{{#ifeq:{{{alias}}}|Nepal|&nbsp;&nbsp;}}</span>[[{{{alias}}}|{{{name}}}]]<noinclude>{{documentation}}</noinclude> jahq0mqk6wniga6gt2vj4ia83ye5lr8 Template:Country data GER 10 8179 72904 2017-04-07T20:08:10Z en>Jo-Jo Eumerus 0 Changed protection level for "[[Template:Country data GER]]": Matching redirect target ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)) 72904 wikitext text/x-wiki #REDIRECT [[Template:Country data Germany]] [[category:country data redirects|GER]] a820y6a2aid4jhknyefbxtyk667n7zv 72905 72904 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_GER]] 72904 wikitext text/x-wiki #REDIRECT [[Template:Country data Germany]] [[category:country data redirects|GER]] a820y6a2aid4jhknyefbxtyk667n7zv Template:Country data Germany 10 8180 72906 2023-10-28T20:07:06Z en>Paine Ellsworth 0 per edit request on talk page - include military armed forces link alias 72906 wikitext text/x-wiki {{safesubst<noinclude />: {{{1<noinclude>|country showdata</noinclude>}}} | alias = Germany | flag alias = Flag of Germany.svg | flag alias-1866 = Flag of the German Empire.svg | link alias-1866 = German Empire | flag alias-empire = Flag of the German Empire.svg | link alias-empire = German Empire | flag alias-1919 = Flag of Germany (3-2 aspect ratio).svg | link alias-1919 = Weimar Republic | flag alias-Weimar = Flag of Germany (3-2 aspect ratio).svg | link alias-Weimar = Weimar Republic | flag alias-1933 = Flag of Germany (1933-1935).svg | flag alias-1935 = Flag of Germany (1935–1945).svg | link alias-1935 = Nazi Germany | flag alias-Nazi = Flag of Germany (1935–1945).svg | link alias-Nazi = Nazi Germany | flag alias-1946 = Merchant flag of Germany (1946–1949).svg | border-1946 = | flag alias-1949 = Flag of Germany.svg | flag alias-EUA = German Olympic flag (1959-1968).svg | flag alias-gold = Flag of West Germany; Flag of Germany (1990–1996).svg | flag alias-state = Flag of Germany (state).svg | link alias-military = Bundeswehr | flag alias-naval = Naval Ensign of Germany.svg | border-naval = | link alias-naval = German Navy | flag alias-coast guard=German Federal Coast Guard racing stripe.svg | border-coast guard= | link alias-coast guard=German Federal Coast Guard | flag alias-army = Colour of Germany.svg | flag alias-air force =Flag of Germany (state).svg | link alias-air force = German Air Force | link alias-army = German Army | flag alias-navy = Naval Ensign of Germany.svg | link alias-navy = German Navy | border-navy = | border-army= | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1866 | var2 = empire | var3 = 1919 | var4 = Weimar | var5 = 1933 | var6 = 1935 | var7 = Nazi | var8 = 1946 | var9 = 1949 | var10 = EUA | var11 = gold | var12 = state | redir1 = DEU | redir2 = GER | related1 = German Empire | related2 = Weimar Republic | related3 = Nazi Germany | related4 = Allied-occupied Germany | related5 = East Germany | related6 = West Germany </noinclude> }} l602sumauyibdkn1lwq1jed1jyxh6lc 72907 72906 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_Germany]] 72906 wikitext text/x-wiki {{safesubst<noinclude />: {{{1<noinclude>|country showdata</noinclude>}}} | alias = Germany | flag alias = Flag of Germany.svg | flag alias-1866 = Flag of the German Empire.svg | link alias-1866 = German Empire | flag alias-empire = Flag of the German Empire.svg | link alias-empire = German Empire | flag alias-1919 = Flag of Germany (3-2 aspect ratio).svg | link alias-1919 = Weimar Republic | flag alias-Weimar = Flag of Germany (3-2 aspect ratio).svg | link alias-Weimar = Weimar Republic | flag alias-1933 = Flag of Germany (1933-1935).svg | flag alias-1935 = Flag of Germany (1935–1945).svg | link alias-1935 = Nazi Germany | flag alias-Nazi = Flag of Germany (1935–1945).svg | link alias-Nazi = Nazi Germany | flag alias-1946 = Merchant flag of Germany (1946–1949).svg | border-1946 = | flag alias-1949 = Flag of Germany.svg | flag alias-EUA = German Olympic flag (1959-1968).svg | flag alias-gold = Flag of West Germany; Flag of Germany (1990–1996).svg | flag alias-state = Flag of Germany (state).svg | link alias-military = Bundeswehr | flag alias-naval = Naval Ensign of Germany.svg | border-naval = | link alias-naval = German Navy | flag alias-coast guard=German Federal Coast Guard racing stripe.svg | border-coast guard= | link alias-coast guard=German Federal Coast Guard | flag alias-army = Colour of Germany.svg | flag alias-air force =Flag of Germany (state).svg | link alias-air force = German Air Force | link alias-army = German Army | flag alias-navy = Naval Ensign of Germany.svg | link alias-navy = German Navy | border-navy = | border-army= | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1866 | var2 = empire | var3 = 1919 | var4 = Weimar | var5 = 1933 | var6 = 1935 | var7 = Nazi | var8 = 1946 | var9 = 1949 | var10 = EUA | var11 = gold | var12 = state | redir1 = DEU | redir2 = GER | related1 = German Empire | related2 = Weimar Republic | related3 = Nazi Germany | related4 = Allied-occupied Germany | related5 = East Germany | related6 = West Germany </noinclude> }} l602sumauyibdkn1lwq1jed1jyxh6lc Template:Country data Switzerland 10 8181 72908 2024-12-30T11:38:57Z en>Maiō T. 0 I've adjusted the "sizebig flag alias" parameter to 25 pixels. See [[Template talk:Country data Switzerland#Increasing the "sizebig" parameter to 25 pixels|this talk]] for more explanation. 72908 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = Switzerland | flag alias = Flag of Switzerland (Pantone).svg | flag alias-civil = Civil Ensign of Switzerland (Pantone).svg | link alias-army = Swiss Army | link alias-air force = Swiss Air Force | size = {{{size|}}} | size flag alias = 23x16px | sizebig flag alias = 25px | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = civil | redir1 = CHE | redir2 = SUI | redir3 = CH | related1 = Helvetic Republic | related2 = Old Swiss Confederacy </noinclude> }} c1kjkn0w2hjtj0c4w3eush9awbn2wj6 72909 72908 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_Switzerland]] 72908 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = Switzerland | flag alias = Flag of Switzerland (Pantone).svg | flag alias-civil = Civil Ensign of Switzerland (Pantone).svg | link alias-army = Swiss Army | link alias-air force = Swiss Air Force | size = {{{size|}}} | size flag alias = 23x16px | sizebig flag alias = 25px | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = civil | redir1 = CHE | redir2 = SUI | redir3 = CH | related1 = Helvetic Republic | related2 = Old Swiss Confederacy </noinclude> }} c1kjkn0w2hjtj0c4w3eush9awbn2wj6 Template:Country data US 10 8182 72910 2017-04-07T20:08:15Z en>Jo-Jo Eumerus 0 Changed protection level for "[[Template:Country data US]]": Matching redirect target ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)) 72910 wikitext text/x-wiki #REDIRECT [[Template:Country data United States]] [[category:country data redirects|US]] 6jyfnurr6oehrh0wzdwp1b075rnl8ly 72911 72910 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_US]] 72910 wikitext text/x-wiki #REDIRECT [[Template:Country data United States]] [[category:country data redirects|US]] 6jyfnurr6oehrh0wzdwp1b075rnl8ly Template:Country data USA 10 8183 72912 2022-07-18T16:58:00Z en>Paine Ellsworth 0 add [[WP:RCAT|rcat template]] 72912 wikitext text/x-wiki #REDIRECT [[Template:Country data United States]] {{Rcat shell| {{R from template shortcut}} }} [[Category:Country data redirects|USA]] 9019vcjebl1xbyjua7j73uiz36fgb2r 72913 72912 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_USA]] 72912 wikitext text/x-wiki #REDIRECT [[Template:Country data United States]] {{Rcat shell| {{R from template shortcut}} }} [[Category:Country data redirects|USA]] 9019vcjebl1xbyjua7j73uiz36fgb2r Template:Coat of arms 10 8184 72914 2026-04-18T04:18:48Z en>Santiago Claudio 0 +Laos, Thailand, Vietnam per edit request 72914 wikitext text/x-wiki [[File:<!--- --->{{#switch: {{{1}}} <!--- TABLE of CONTENTS: 1. PRESENT-DAY SOVEREIGN COUNTRIES and NON-SOVEREIGN ENTITIES 2. HISTORICAL SOVEREIGN ENTITIES 3. CITIES 4. SUB-NATIONAL REGIONS 4.alb Albania: 4.alb.1 Albanian Counties [Qarqe] 4.aut Austria: 4.aut.1 Austrian States [Länder] 4.bel Belgium: 4.bel.1 Belgian Regions 4.bel.2 Belgian Provinces 4.cze Czech Republic: 4.cze.1 Czech Regions [Kraje] 4.esp Spain: 4.esp.1 Spanish Autonomous Communities and Cities [Comunidades y Ciudades Autónomas] 4.est Estonia: 4.est.1 Estonian Counties [Maakonnad] 4.est.2 Estonian Municipalities 4.fin Finland: 4.fin.1 Finnish Regions [Maakunta] 4.fra.France: 4.fra.1 ruh Regions [Régions] 4.ger Germany: 4.ger.1 German States [Länder] 4.ina Indonesia: 4.ina.1 Indonesian Provinces [Provinsi] 4.ind India: 4.ind.1 Indian States and Union Territories 4.irl Ireland: 4.irl.1 Irish Counties 4.ita Italy: 4.ita.1 Italian Regions [Regioni] 4.ita.2 Italian Provinces [Province] 4.lux Luxembourg: 4.lux.1 Luxembourgish Cantons [Kantounen] 4.mkd Macedonia: 4.mkd.1 Macedonian Statistical Regions [Statistichi Regioni] 4.ned Netherlands: 4.ned.1 Dutch Provinces [Provincies] 4.nor Norway: 4.nor.1 Norwegian Counties [Fylker] 4.pol Poland: 4.pol.1 Polish Voivodeships [Województwo] 4.rou Romania: 4.rou.1 Romanian Counties [Județe] 4.rsa South Africa: 4.rsa.1 South African Provinces 4.sui Switzerland: 4.sui.1 Swiss Cantons 4.svk Slovakia: 4.svk.1 Slovak Regions [Kraje] 4.swe Sweden: 4.swe.1 Swedish Counties [Län] 4.ukr Ukraine: 4.ukr.1 Ukrainian Oblasts [Oblasti] 4.usa United States: 4.usa.1 United States of America States 5. HISTORICAL SUB-NATIONAL REGIONS 5.cze Czech Lands 5.fr French Republic 5.hre Holy Roman Empire 5.kof Kingdom of France 5.kon Kingdom of Norway 5.kop Kingdom of Prussia 5.kos Kingdom of Sweden 5.sfry Socialist Federal Republic of Yugoslavia 6. MILITARY and POLICE UNITS 7. RELIGIOUS ENTITIES 8. EDUCATIONAL ENTITIES 9. CORPORATE and ECONOMIC ENTITIES 10. ETHNIC and TRIBAL GROUPS 11. DEFAULT ---> <!--- 1. PRESENT-DAY SOVEREIGN COUNTRIES and NON-SOVEREIGN ENTITIES: ---> | England=Royal Arms of England.svg | Alderney=Coat of Arms of Alderney.svg | Abkhazia=Coat of arms of Abkhazia.svg | Albania=Coat of arms of Albania.svg | Andorra=Arms of Andorra.svg | Anguilla=Coat of arms of Anguilla.svg | Antigua and Barbuda = Insigne Antiquae et Barbudae.svg | Argentina=Insigne Argentinum.svg | Armenia=Arms of Armenia.svg | Aruba = Insigne Arubae.svg | Australia=Shield of arms of Australia.svg | Austria=Austria coat of arms official.svg | Azerbaijan=Emblem of Azerbaijan.svg | Bahamas = Insigne Bahamarum.svg | Bahrain = Arms of Bahrain.png | Bailiwick of Guernsey = Coat of arms of Guernsey.svg | Barbados = Insigne Barbatae.svg | Belarus = Coat of arms of Belarus (2020–present).svg | Belgium=Royal Arms of Belgium.svg | Belize = Insigne Belizae.svg | Benin = Insigne Benini.svg | Bermuda = Insigne Bermudae.svg | Bolivia=Insigne Bolivicus.svg | Bonaire = Insigne Insulae Boni Aëris.svg | Bosnia and Herzegovina=Coat of arms of Bosnia and Herzegovina.svg | Botswana = Insigne Botswanae.svg | Brazil=Insigne Brasilicum.svg | British Indian Ocean Territory = Shield of the British Indian Ocean Territory.svg | British Virgin Islands = Insigne Insularum Virginis Britannicae.svg | Bulgaria=Coat of arms of Bulgaria (version by constitution).svg | Burkina Faso=Coat of arms of Burkina Faso.svg | Burundi = Insigne Burundiae.svg | Cambodia=Arms of Cambodia.svg | Cameroon = Insigne Cammaruniae.svg | Canada=Arms of Canada.svg | Cayman Islands = Insigne Insularum Caimanenses.svg | Central African Republic = Insigne rei publicae Africae Mediae.svg | Chad = Insigne Tzadiae.svg | Chile=Chilean Air Force roundel.svg | Christmas Island=Coat of Arms of Christmas Island.svg | Cocos (Keeling) Islands = Insigne Insularum Cocos seu Keeling.svg | Colombia=Insigne Columbum.svg | Cook Islands = Insigne Insularum de Cook.svg | Costa Rica=Insigne Costaricum.svg | Cote d'Ivoire = Insigne Litoris Eburnei.svg | Côte d'Ivoire = Insigne Litoris Eburnei.svg | Croatia=Coat of arms of Croatia.svg | Cuba=Insigne Cubicum.svg | Curaçao=Blason an Curaçao.svg | Cyprus=Arms of Cyprus.svg | Czech Republic=Small coat of arms of the Czech Republic.svg | Czechia=Small coat of arms of the Czech Republic.svg | Democratic Republic of Congo = Coat_of_arms_of_the_Democratic_Republic_of_the_Congo.svg | Democratic Republic of the Congo = Coat of arms of the Democratic Republic of the Congo.svg | Denmark=National Coat of arms of Denmark no crown.svg | Djibouti = Insigne Gibuti.svg | Dominica = Insigne Dominicae.svg | Dominican Republic=Insigne Dominicum.svg | East Timor=Shield Coat of arms of East Timor.png | Ecuador=Insigne Aequatorium.svg | Egypt=Insigne Aegyptium.svg | El Salvador=Insigne Salvatoriae.svg | Eritrea = Insigne Erythraeae.svg | Equatorial Guinea = Insigne Guineae Aequinoctialis.svg | Estonia=Small coat of arms of Estonia.svg | eSwatini = Insigne Swaziae.svg | Eswatini = Insigne Swaziae.svg | Ethiopia = Emblem of Ethiopia.svg | European Union=Coat of arms of Europe.svg | Falkland Islands = Insigne Falklandiae.svg | Faroe Islands=Coat of arms of the Faroe Islands.svg | Fiji=Arms of Fiji.svg | Finland=Coat of Arms of Finland Alternative style.svg | France=Arms of the French Republic.svg | French Guiana=BlasonGuyane.svg | French Polynesia=Coat of arms of French Polynesia.svg | French Southern and Antarctic Lands=Armoiries Terres australes et antarctiques françaises.svg | Gabon = Insigne Gabonis.svg | Gambia = Insigne Gambiae.svg | Georgia (country)=Arms of Georgia.svg | Georgia=Arms of Georgia.svg | Germany=Coat of arms of Germany.svg | Ghana = Insigne Ganae.svg | Gibraltar=Arms of Gibraltar (Variant).svg | Greece=Lesser coat of arms of Greece.svg | Greenland=Coat of arms of Greenland.svg | Grenada = Insigne Granatae.png | Guadeloupe=BlasonGuadeloupe.svg | Guam=Coat of arms of Guam.svg | Guernsey=Coat of arms of Guernsey.svg | Guinea = Insigne rei publicae Guineae.svg | Guinea-Bissau = Emblem of Guinea-Bissau.svg | Guyana = Insigne Guianae.svg | Honduras=Insigne Honduriae.svg | Hungary=Arms of Hungary.svg | Iceland=Arms of Iceland.svg | India=Emblem of India.svg | Indonesia=Pancasila Perisai.svg | Iraq=Arms of Iraq.svg | Ireland=Arms of the Republic of Ireland.svg | Isle of Man=Coat of arms of Isle of Man.svg | Israel=Emblem of Israel.svg | Italy=Emblem of Italy.svg | Ivory Coast = Insigne Litoris Eburnei.svg | Jamaica = Insigne Iamaicae.svg | Japan = Imperial Seal of Japan.svg | Jersey=Jersey coa.svg | Jordan=Arms of Jordan.svg | Kazakhstan=Emblem of Kazakhstan latin.svg | Kenya = Insigne Keniae.svg | Kingdom of the Netherlands=Royal Arms of the Netherlands.svg | Kiribati=Insigne Kiribatum.svg | Kosovo=Coat of arms of Kosovo.svg | Kuwait = Insigne Cuvaiti.svg | Laos=Emblem of Laos.png | Latvia=Latvijas Republikas mazais ģerbonis.svg | Lebanon=Coat of arms of Lebanon.svg | Lesotho = Insigne Lesothi.svg | Liberia=Insigne Liberiae.svg | Liechtenstein=Lesser arms of Liechtenstein.svg | Lithuania=Coat of arms of Lithuania.svg | Luxembourg=EU Member States' CoA Series- Luxembourg.svg | Madeira=Insigne Insularum Materiae.svg | Malawi = Insigne Malaviae.svg | Malaysia=Coat of arms of Malaysia.svg | Mali = Coat_of_arms_of_Mali.svg | Malta=Arms of Malta.svg | Martinique=BlasonMartinique.svg | Mauritius = Insigne Mauritiae.svg | Mayotte = BlasonMayotte.svg | Mexico=Coat of arms of Mexico.svg | Moldova=Arms of Moldova.svg | Monaco=Blason pays Monaco.svg | Montenegro=Arms of Montenegro.svg | Montserrat=Coat of arms of Montserrat.svg | Morocco=Insigne Maroci.svg | Myanmar=Insigne Birmaniae.svg | Nagorno-Karabakh=Arms of Nagorno-Karabakh.svg | Namibia=Insigne Namibiae.svg | NATO=Coat of arms of the Chairman of the NATO Military Committee.svg | Nauru=Insigne Naurunum.svg | Netherlands=Royal Arms of the Netherlands.svg | New Zealand=Arms of New Zealand.svg | Nicaragua=Insigne Nicaraguae.svg | Niger = Insigne Nigritanum.svg | Nigeria = Insigne Nigeriae.svg | Norfolk Island = Insigne Insulae Norfolciae.svg | North Atlantic Treaty Organisation=Coat of arms of the Chairman of the NATO Military Committee.svg | North Macedonia=Coat of arms of North Macedonia.svg | Northern Cyprus=Arms of the Turkish Republic of Northern Cyprus.svg | Northern Ireland=NI shield.svg | Norway=Blason Norvège.svg | Pakistan=Arms of Pakistan.svg | Palestine=Insigne Palaestinae.svg | Panama=Insigne Panamae.svg | People's Republic of China=National Emblem of the People's Republic of China.svg | Peru=Insigne Peruviae.svg | Philippines=Arms of the Philippines.svg | Pitcairn Islands = Insigne Insularum Pitcairn.svg | Poland=Herb Polski.svg | Portugal=Shield of the Kingdom of Portugal (1481-1910).png | Puerto Rico = Insigne Portus divitis.svg | Republic of Macedonia=Coat of arms of North Macedonia.svg | Republic of the Congo = Insigne rei publicae Congensis.svg | Réunion=BlasonRéunion.svg | Romania=Coat of arms of Romania.svg | Russia=Coat of Arms of the Russian Federation.svg | Rwanda=Coat of arms of Rwanda.svg | Saba = Insigne Sabae.svg | Saba (island) = Insigne Sabae.svg | Saint Barthélemy=BlasonSaintBarthelemy.svg | Saint Kitts and Nevis=Insigne Sancti Christophori et Nivium.svg | Saint Lucia = Insigne Sanctae Luciae.svg | Collectivity of Saint Martin = Insigne Insulae Sancti Martini (Francia).svg | Saint Pierre and Miquelon=BlasonSaintPierreetMiquelon.svg | Saint Vincent and the Grenadines = Insigne Sancti Vincenti et Granatinae.svg | Saint-Denis, Seine-Saint-Denis=Blason_de_Saint-Denis.svg | Samoa = Insigne Samoae.svg | San Marino=Insigne Sancti Marini.svg | São Tomé and Príncipe = Insigne Insularum Sancti Thomae et Principis.png | Scotland=Royal Arms of the Kingdom of Scotland.svg | Senegal = Insigne Senegaliae.svg | Serbia=Coat of arms of Serbia small.svg | Seychelles = Insigne Insularum Seisellensium.svg | Sierra Leone = Insigne Montis Leonini.svg | Singapore=Blason Singapour.svg | Sint Eustatius = Insigne Insulae Eustathii.svg | Sint Maarten = Insigne Insulae Sancti Martini (Nederlandia).svg | Slovakia=Coat of arms of Slovakia.svg | Slovenia=Coat of arms of Slovenia.svg | Solomon Islands = Insigne Insularum Salomonis.svg | Somalia = Insigne Somaliae.svg <!--| South Africa=Insigne Africae australis.svg--> | South Georgia and the South Sandwich Islands = Insigne Georgiae Australis et Insularum Sandvich Australium.svg | South Ossetia=Coat of arms of South Ossetia.svg | South Sudan=Blason imaginaire de Guiron le Courtois.svg | Spain=Arms of Spain.svg | Sudan = Insigne Sudaniae.svg | Suriname = Insigne Surinamiae.svg | Swaziland = Insigne Swaziae.svg | Sweden=Shield of arms of Sweden.svg | Switzerland=Coat of Arms of Switzerland (Pantone).svg | Syria=Escutcheon of the Coat of arms of Syria true vector.svg | Tanzania = Insigne Tanzaniae.svg | Thailand=Emblem of Thailand.svg | The Gambia=Insigne Gambiae.svg | Timor-Leste=Shield Coat of arms of East Timor.png | Togo=Coat of arms of Togo.svg | Tonga=Insigne Tongae.svg | Transnistria=Coat of arms of Transnistria.svg | Trinidad and Tobago = Insigne Trinitatis et Tobaci.svg | Tunisia = Insigne Tunesiae.svg | Turks and Caicos Islands=Coat of arms of the Turks and Caicos Islands.svg | Tuvalu=Insigne Tuvalum.svg | Uganda = Insigne Ugandae.svg | Ukraine=Lesser Coat of Arms of Ukraine.svg | United Arab Emirates=Arms of the United Arab Emirates.svg | United Kingdom=Arms of the United Kingdom.svg | United States=Coat of arms of the United States.svg | Uruguay=Insigne Uraquariae.svg | Uzbekistan = Emblem of Uzbekistan.svg | Vatican City=Coat of arms of Vatican City State - 2023 version.svg | Venezuela=Insigne Venetiolae.svg | Vietnam=Emblem of Vietnam.svg | Wallis and Futuna=Coat of arms of Wallis and Futuna.svg | Yemen = Insigne Iemeniae.svg | Zambia = Insigne Zambiae.svg | Zimbabwe = Insigne Zimbabuae.svg <!--- 2. HISTORICAL SOVEREIGN ENTITIES: ---> | Armenian Kingdom of Cilicia=Armoiries Héthoumides.svg | Armenian Principality of Cilicia=Armoiries Héthoumides.svg | Austria-Hungary=Wappen Österreich-Ungarn 1916 (Klein).png | Brandenburg-Prussia=POL Prusy książęce COA.svg | Brunswick-Lüneburg=Coat of Arms of Brunswick-Lüneburg.svg | Byzantium = Palaiologos-Dynasty-Eagle.svg | Byzantine = Palaiologos-Dynasty-Eagle.svg | Byzantine Empire = Palaiologos-Dynasty-Eagle.svg | County of Apulia=Blason sicile famille Hauteville.svg | Cilicia=Armoiries Héthoumides.svg | Czechoslovak Socialist Republic=Coat of arms of Czechoslovakia (1961-1989).svg | Duchy of Apulia=Blason sicile famille Hauteville.svg | Duchy of Brunswick-Lüneburg=Coat of Arms of Brunswick-Lüneburg.svg | Duchy of Carinthia = Kaernten shield CoA.svg | Duchy of Carniola = Carniola Arms.svg | Duchy of Normandy=Blason duche fr Normandie.svg | Duchy of Prussia=POL Prusy książęce COA.svg | Duchy of Saxe-Lauenburg = COA family de Sachsen-Lauenburg.svg | Duchy of Styria = Wappen Gemeinde Steyr.svg | Dutch Republic=Arms of the united provinces.svg | East Germany=Coat of arms of East Germany.svg | Electorate of Bavaria=Bayern-1.PNG | Electorate of Cologne=COA_Kurkoeln.svg | Electorate of Saxony=Blason Jean-Georges IV de Saxe.svg | Electoral Palatinate=Arms of the Palatinate (Bavaria-Palatinate).svg | Burgundian Netherlands=Arms of the Duke of Burgundy (1364-1404).svg | Duchy of Brabant=Royal Arms of Belgium.svg | France Ancient=Arms of the Kings of France (France Ancien).svg | France Modern=Arms of France (France Moderne).svg | First French Empire=Arms of the French Empire.svg | Second French Empire=Arms of the French Empire.svg | French Empire=Arms of the French Empire.svg | Austrian Netherlands=Coat of arms of the Austrian Netherlands.svg | French First Republic=Coat of arms of the French First Republic.svg | Free City of Lübeck=Wappen Lübeck (Alt).svg | German Empire=Wappen Deutsches Reich - Reichsadler 1889.svg | Holy Roman Empire=Generic Arms of the Holy Roman Emperor (after 1433).svg | Hungarian People's Republic=Coat of arms of Hungary (1957-1990).svg | Kingdom of Bohemia=Blason Boheme.svg | Kingdom of Cilicia=Armoiries Héthoumides.svg | Kingdom of England = Royal Arms of England (1198-1340).svg | Wales =Arms of Wales.svg | Kingdom of France=Insigne modernum Francum.svg | Kingdom of Galicia–Volhynia=Alex K Halych-Volhynia.svg | Kingdom of Greece=Coat of arms of Greece (1924–1935).svg | Kingdom of Hanover = Royal Arms of the Kingdom of Hanover.svg | Kingdom of Hungary=EU Member States' CoA Series- Hungary.svg | Kingdom of Italy=Blason duche fr Savoie.svg | Kingdom of Scotland=Royal Arms of the Kingdom of Scotland.svg | Kingdom of Spain=Lesser Royal Arms of the Spanish Monarch (c.1504-1700).svg | Kingdom of Serbia=Royal Coat of arms of Serbia (1882–1918).svg | Kingdom of Württemberg = Blason Royaume de Wurtemberg.svg | Margraviate of Meissen = Wappen Landkreis Meissen.svg | Moldavia=Coat of arms of Moldavia.svg | Nassau=Wapen Nassauw.svg | Nazi Germany=Reichsadler der Deutsches Reich (1933–1945).svg | Papal States = CoA Pontifical States 02.svg | People's Republic of Bulgaria=Coat of arms of Bulgaria (1971-1990).svg | Polish-Lithuanian Commonwealth=COA polish king Jagellon.svg | Polish People's Republic = Coat of arms of Poland (1955-1980).svg | Principality of Brunswick-Wolfenbüttel=Wappen Brunswick-Wolfenbüttel.svg | Principality of Cilicia=Armoiries Héthoumides.svg | Prussia=Wappen Preußen.png | Revolutionary Serbia=FLAG_Topola.gif | Royal Prussia = COA_of_Prussia_(1466-1772)_Lob.svg | Russian Empire=Gerb rossii2.svg | Savoy=Blason duche fr Savoie.svg | Saxe-Lauenburg = COA family de Sachsen-Lauenburg.svg | Second Bulgarian Empire=Coat of arms of the Second Bulgarian Empire.svg | Silesia=Wappen Schlesiens.png | Socialist Republic of Romania=Coat of arms of the Socialist Republic of Romania.svg | South Baden=Coat of arms of Baden.svg | Soviet Union=State Emblem of the Soviet Union.svg | Swabia=Arms of Swabia.svg | Tzar Samuil=Tzar Samuil of Bulgaria coat of arms.jpg | United Kingdom (1801-1816)=Royal Arms of United Kingdom (1801-1816).svg | USSR=State Emblem of the Soviet Union.svg | Wallachia=Stema TR.png | West Germany=Coat of arms of Germany.svg | Württemberg-Hohenzollern=Wappen Wuerttemberg-Hohenzollern.svg | Württemberg-Baden=Wappen Wuerttemberg-Baden.svg | Yugoslavia=Lesser Coat of Arms of the Kingdom of Yugoslavia.png <!--- 3. CITIES: ---> | Aachen=Stadtwappen der kreisfreien Stadt Aachen.svg | Ajaccio=Blason ville fr Ajaccio.svg | Alfaz del Pi=Escudo de Alfàs del Pi (1965).svg | Algiers=Blason-alger.gif | Alicante=Arms of Alicante City.svg | Almaty=Coat of arms of Almaty.svg | Alsdorf=DEU Alsdorf COA.svg | Amiens=Blason fr ville Amiens.svg | Amsterdam=Insigne Amstelodamensis.svg | Anderlecht=Anderlecht.jpg | Angers=Blason d'Angers.svg | Ankara=Insigne Ancyrae.png | Ansbach=Wappen_von_Ansbach.svg | Antwerp=AntwerpenSchild.gif | Apeldoorn=Wapenapeldoorn.JPG | Aračinovo=Coat of arms of Aračinovo Municipality.svg | Arequipa=Arms of Arequipa.svg | Arkhangelsk=Coat of Arms of Arkhangelsk.svg | Asmara=Arms of Asmara.svg | Asunción=Escudo de Asunción (Paraguay).svg | Athens=Insigne Athenarum.svg | Auderghem=Auderghem.jpg | Augsburg=DEU Augsburg COA 1811.svg | Avignon=Blason ville fr Avignon (Vaucluse).svg | Baesweiler=DEU Baesweiler COA.svg | Baku=WP baku siegel.png | Banská Bystrica=Coat of Arms of Banská Bystrica.svg | Barcelona=Arms of Barcelona.svg | Bari=Bari-Stemma.png | Basel=Wappen Basel-Stadt matt.svg | Bassano del Grappa=Coat of arms of Bassano del Grappa.svg | Bassum=DEU Bassum COA.svg | Beirut=Arms of Beirut.svg | Belgrade=Insigne Belogradi.svg | Benidorm=Escut de Benidorm.svg | Berchem-Sainte-Agathe=Blason Berchem-Sainte-Agathe.svg | Bergen=Bergen komm.png | Bergisch Gladbach=DEU_Bergisch_Gladbach_COA.svg | Berlin=Country_symbol_of_Berlin_color.svg | Bern=Wappen Bern matt.svg | Berovo=Coat of arms of Berovo Municipality.svg | Besançon=Blason ville fr Besançon (Doubs).svg | Bielefeld=DEU Bielefeld COA.svg | Bilbao=Arms of Bilbao.svg | Birmingham=Arms of Birmingham.svg | Bochum=Stadtwappen der kreisfreien Stadt Bochum.svg | Bogotá=Bogota (escudo).svg | Bonn=Wappen-stadt-bonn.svg | Bordeaux=Arms of the city of Bordeaux (Gironde).svg | Bottrop=DEU_Bottrop_COA.svg | Bradford=Coat of arms of Bradford City Council.png | Brasília=Brasão do Distrito Federal (Brasil).svg | Bratislava=Coat of Arms of Bratislava.svg | Braunschweig=DEU Braunschweig COA.svg | Breda=Breda Wappen klein.PNG | Bremen (state)=Bremen Wappen(Mittel).svg | Bremen=Bremen Wappen.svg | Bremerhaven=Wappen Bremerhaven.svg | Bristol=Bristol arms cropped.jpg | Brno=Brno (znak).svg | Brussels=Coat of Arms of Brussels.svg | Bucharest=Arms of Bucharest.svg | Budapest=Insigne Budapestini.svg | Buenos Aires=Escudo de la Ciudad de Buenos Aires.png | Burgas=Coat of arms of Burgas.svg | Bydgoszcz=POL Bydgoszcz COA.svg | Caen=Blason ville fr Caen (Calvados)2.svg | Čair=Coat of arms of Čair Municipality.svg | Cali=Escudo de Santiago de Cali.svg | Cape Town=Capetown coa.jpg | Caracas=Caracas escudo.svg | Cardiff=Cardiffcoatofarms.JPG | Cesenatico=Cesenatico stemma.png | Češinovo-Obleševo=Coat of arms of Češinovo-Obleševo Municipality.svg | Châlons-en-Champagne=Blason Chalons-en-Champagne.svg | Charleroi=Héraldique Ville BE Charleroi.svg | Chemnitz=Coat of arms of Chemnitz.svg | Chicago=Coat of arms of Chicago.svg | City of Brussels=Coat of Arms of Brussels.svg | City of London=Insigne Loninii.svg<!-- This coat of arms is only for the [[City of London]], not [[London]] more generally. --> | Luxembourg City= | Ciudad Juárez=Arms of Ciudad Juárez.svg | Clermont-Ferrand=Blason ville fr ClermontFerrand (PuyDome).svg | Cluj-Napoca=ROU CJ Cluj-Napoca CoA.png | Cologne=Wappen Koeln.svg | Copenhagen=Coat of arms of Copenhagen.svg | Córdoba=COA Córdoba, Spain.svg | Cottbus=Wappen Cottbus.png | County of Provence=Armoiries Provence.svg | Coventry=Coat of arms of Coventry City Council.png | Coyoacán=Escudo Villa de Coyoacan.svg | Čučer Sandevo=Čučer Sandevo grb so boi.JPG | Cusco=Arms of Cusco.svg | Darmstadt=Kleines Stadtwappen Darmstadt.svg | Delčevo=Coat of arms of Delčevo Municipality.svg | Deuil-la-Barre=Blason ville fr Deuil-la-Barre(Val-d'Oise).svg | Dijon=Blason Dijon-(LdH).svg | Dojran=Coat of arms of Dojran Municipality.svg | Dolneni=Coat of arms of Dolneni Municipality.svg | Dortmund=Coat of arms of Dortmund.svg | Drammen=Drammen komm.svg | Dresden=Dresden Stadtwappen.svg | Dublin=Insigne Eblanae.svg | Duisburg=Stadtwappen der Stadt Duisburg.svg | Düsseldorf=Wappen der Landeshauptstadt Duesseldorf.svg | East Berlin=Coat of arms of Berlin (1935).svg | Edinburgh=Arms of Edinburgh.png | Erfurt=Wappen Erfurt.svg | Erlangen=Erlangen.jpg | Esch-sur-Alzette=Coat of arms esch alzette luxbrg.png | Eschweiler=DEU Eschweiler COA.svg | Essen=DEU Essen COA.svg | Etterbeek=Coat of arms of Etterbeek.svg | Evere=Evere-Blason-1828.png | Fellbach=Wappen Fellbach.svg | Florence=FlorenceCoA.svg | Forest=Armoiries Forest.png | Frankfurt=Insigne Francofurti.svg | Frankfurt am Main=Insigne Francofurti.svg | Freiburg im Breisgau=Wappen Freiburg im Breisgau.svg | Fresnay-sur-Sarthe=Blason Fresnay sur Sarthe.svg | Fürth=Wappen Fürth.svg | Ganshoren=Ganshorenwapen.gif | Gdańsk=Gdansk COA.svg | Gdynia=POL Gdynia COA.svg | Gelsenkirchen=DEU Gelsenkirchen COA.svg | Geneva=Wappen Genf matt.svg | Genoa=Insigne Mediolani.svg | Ghent=Blason ville be Gand (Flandre-Orientale).svg | Glasgow=Glasgow Coat of Arms.png | Gostivar=Coat of arms of Gostivar Municipality.svg | Gothenburg=Göteborg vapen.svg | Göttingen=Stadtwappen Goettingen.PNG | Grodno=Coat of arms of Hrodna.svg <!-- | Groningen=Escudo de Groniga 1581.svg --> | Guadalajara=Arms of Guadalajara.svg | Guatemala City=Escudo de Armas Ciudad de Guatemala.jpg | Hagen=Stadtwappen der Stadt Hagen.svg | Halle (Saale)=Coat of arms of Halle (Saale).svg | Hamburg=Coat of arms of Hamburg.svg | Hamm=Wappen Hamm.svg | Hanover=Coat of arms of Hannover.svg | Havana=Arms of the City of Havana Cuba.png | Heidelberg=Wappen Heidelberg.svg | Heilbronn=Wappen Heilbronn.svg | Helsinki=Helsinki.vaakuna.svg | Heraklion=Seal of Heraklion.svg | Herceg Novi=Grb HN.svg | Herne, Germany=Herne Coat of Arms.svg | Herzogenrath=DEU Herzogenrath COA.svg | Hildesheim=Wappen Hildesheim.svg | Hole=Hole komm.svg | Ilinden=Coat of arms of Ilinden Municipality, Macedonia.svg | Ingolstadt=Wappen Ingolstadt alt.svg | Ivano-Frankivsk=Ivano-Frankivsk coa.gif | Ixelles=Coat of arms of Ixelles.svg | Jakarta=Coat of arms of Jakarta.svg | Jena=Wappen Jena.png | Jette=Armoiries Jette.png | Kaliningrad=Kgd gerb.png | Kallithea= Emblem of Kallithea.svg | Karlsruhe=Coat of arms de-bw Karlsruhe.svg | Karposh=Coat of arms of Karpoš Municipality.svg | Kassel=Coat of arms of Kassel.svg | Katowice=Katowice Herb.svg | Kaunas=KNS Coa.svg | Kazan=Coat of Arms of Kazan (Tatarstan) (2004).png | Kemi=Kemi.vaakuna.svg | Kiel=Wappen Kiel.svg | Kiev=COA of Kyiv Kurovskyi.svg | Kyiv=COA of Kyiv Kurovskyi.svg | Kisela Voda=Coat of arms of Kisela Voda Municipality (2015).svg | Koblenz=Wappen Koblenz.svg | Kočani=Coat of arms of Kočani Municipality.svg | Koekelberg=Coat of arms of Koekelberg (escutcheon).svg | Kostroma=Coat of Arms of Kostroma.svg | Košice=Coat of Arms of Košice.svg | Kotka=Kotka.vaakuna.svg | Kraków=PB Kraków CoA.png | Kratovo=Coat of arms of Kratovo Municipality.svg | Krefeld=DEU Krefeld COA.svg | Kriva Palanka=Coat of arms of Kriva Palanka Municipality.svg | Kryvyi Rih=Ua Kr Rig g.gif | Kumanovo=Coat of arms of Kumanovo Municipality.svg | La Paz=Coat of arms of La Paz.png | Las Palmas=Arms of Las Palmas de Gran Canaria.svg | Leeds=Leeds Bridge arms MF.jpg | Leicester=Leicester CoA.png | Leipzig=Coat of arms of Leipzig.svg | Leverkusen=DEU Leverkusen COA.svg | Liège=Blason liege.svg | Lille=Blason ville fr Lille (Nord).svg | Lima=Coat of arms of Lima.svg | Limoges=Heraldique blason ville fr Limoges.svg | Lipkovo=Coat of arms of Lipkovo Municipality.jpg | Lisbon=Insigne Olipsionis.svg | Liverpool=Coat of arms of Liverpool City Council.png | Ljubljana=Insigne Aemonae.svg | Łódź=POL Łódź COA.svg | London=Insigne Loninii.svg | Los Angeles=Arms of Seal of Los Angeles, California.svg | Lübeck=Wappen Lübeck (Alt).svg | Lublin=POL Lublin COA 1.svg | Lubumbashi=Lubumbashi coat of arms.svg | Ludwigshafen am Rhein=DEU Ludwigshafen COA.svg | Luleå=Luleå vapen.svg | Luxembourg (city)= | Lyon=Blason Ville fr Lyon.svg | Maastricht=Blason ville nl Maastricht(Limburg).svg | Madrid=Arms of Madrid City.svg | Magdeburg=Wappen Magdeburg.svg | Mainz=Coat of arms of Mainz-2008 new.svg | Makedonska Kamenica=Coat of arms of Makedonska Kamenica Municipality.svg | Makedonski Brod=Coat of arms of Makedonski Brod Municipality (2012).svg | Málaga=Escudo de Málaga.svg | Malmö=Malmö vapen.svg | Managua=Arms of Managua.svg | Manchester=Coat of arms of Manchester City Council.png | Manila=Arms of the Seal of Manila, Philippines.svg | Mannheim=Wappen Mannheim.svg | Marseille=Blason Marseille.svg | Mazarrón=Escudo de Mazarrón.svg | Metz=Blason Metz 57.svg | Mexico City=Coat of arms of Mexican Federal District.svg | Milan=Milano-Stemma 2.svg | Minsk=Coat of arms of Minsk.svg | Mirandela=MDL1.png | Moers=DEU Moers COA.svg | Molenbeek-Saint-Jean=Saint-Jean-de-Molenbeek.jpg | Mönchengladbach=DEU_Moenchengladbach_COA.svg | Mondorf-les-Bains=Coat of arms mondorf les bains luxbrg.png | Monschau=DEU Monschau COA.svg | Montevideo=Arms of Montevideo.svg | Montpellier=Blason ville fr Montpellier.svg | Montreal=Blason ville ca Montreal (Quebec).svg | Moscow=Coat of Arms of Moscow.svg | Mülheim an der Ruhr=DEU Muelheim an der Ruhr COA.svg | Munich=Muenchen Kleines Stadtwappen.svg | Münster=Wappen Münster Westfalen.svg | Murmansk=RUS Murmansk COA.svg | Nancy, France=Blason Nancy 54.svg | Nantes=Blason Nantes.svg | Naples=CoA Città di Napoli 2.svg | Naumburg (Saale)=Stadtwappen Naumburg (Saale).svg | Neuss=DEU Neuss COA.svg | New York City=Arms of New York City.svg | Nice=Nice Arms.svg | Nicosia =Coat of Arms of Nicosia.svg | Nicosia, Sicily=Arms of Nicosia, Sicily.svg | Nitra=Coat of Arms of Nitra.svg | Nizhny Novgorod=Coat of arms Nizhny Novgorod.png | Norberg Municipality=Norberg vapen.svg | Novosibirsk=Coat of Arms of Novosibirsk.svg | Nuremberg=DEU Nürnberg COA (klein).svg | Nuuk=Nuuk Coat of Arms.gif | Oberhausen=DEU Oberhausen COA.svg | Oberwart=Coat of arms of Oberwart.svg | Odessa=Arms of Odessa.svg | Offenbach am Main=Wappen Offenbach am Main.svg | Oldenburg=Wappen oldenburg.png | Omsk=Omsk coat of arms 2014.png | Orléans=Blason Orléans.svg | Oslo=Insigne Anslogae.svg | Osnabrück=Osnabrück Wappen.svg | Ostrava=Ostrava CoA CZ.svg | Paderborn=DEU_Paderborn_COA.svg | Padua=Insigne Mediolani.svg | Palaio Faliro=Palaio Faliro Emblem.svg | Palermo=Palermo-Stemma da Il blasone in Sicilia (Tav 82).png | Palma de Mallorca=Blasó de Mallorca.png | Panama City=Arms of Panama City.svg | Paris=Insigne Lutetiae.svg | Parma=Coat of arms of Parma.svg | Pas-de-Calais=Pas de Calais Arms.svg | Patras= Emblem of Patra.svg | Pehčevo=Coat of arms of Pehčevo Municipality.svg | Pforzheim=Wappen Pforzheim.svg | Piraeus= Seal of Peiraeus.svg | Pisa=Shield of the Republic of Pisa.svg | Pleven=Pleven-coat-of-arms.svg | Plovdiv=Plovdiv-coat-of-arms.svg | Plzeň=Plzen small CoA.png | Podgorica=Insigne Birziminii.svg | Poitiers=Blason ville fr Poitiers (Vienne).svg | Porto=PRT.png | Potsdam=Coat of arms of Potsdam.svg | Poznań=Poznan-herb-old.gif | Prague=Insigne Pragae.svg | Prešov=Coat of Arms of Prešov.svg | Prilep=Coat of arms of Prilep Municipality.svg | Probištip|Coat of arms of Probištip Municipality.svg | Quetzaltenango=Coat of arms of Quetzaltenango.svg | Quito=Escudo de Quito.svg | Rabat=Arms of Rabat.png | Rankovce=Coat of arms of Rankovce Municipality.svg | Recklinghausen=DEU Recklinghausen COA.svg | Regensburg=Wappen Regensburg.svg | Reims=Blason Reims 51.svg | Remich=Remich coat of arms.png | Remscheid=DEU Remscheid COA.svg | Rennes=Blason Rennes.svg | Reutlingen=Wappen Stadt Reutlingen.svg | Reykjavík=Reykjavik Coat of Arms.svg | Riga=Insigne Rigae.svg | Rio de Janeiro=Arms of Rio de Janeiro.svg | Roetgen=DEU Roetgen COA.svg | Rome=Insigne Romanum.svg | Rosh HaAyin=Coat of arms of Rosh HaAyin.png | Rosoman=Coat of arms of Rosoman Municipality.svg | Rostock=Rostock Wappen.svg | Rotterdam =Rotterdam wapen klein.svg | Rouen=Blason Rouen 76.svg | Saarbrücken=DEU Saarbruecken COA.svg | Saint Petersburg=Coat of Arms of St Petersburg (1780).png | Saint-Étienne-du-Rouvray=Blason Saint-étienne-du-Rouvray.svg | Saint-Gilles=Coat of arms of Saint-Gilles.svg | Saint-Josse-ten-Noode=Coat of arm Municipality be Saint-Josse-ten-Noode.svg | Saint-Quentin-Fallavier=Blason ville fr Saint-Quentin-Fallavier 38.svg | Salzburg=Wappen at salzburg stadt.png | Salzgitter=Coat of arms of Salzgitter.svg | Samara=Coat of Arms of Samara (Samara oblast).png | San José=Blason Ville cr San-Jose.svg | San Juan=Arms of San Juan.svg | San Miguel, El Salvador=Escudo de la ciudad de San miguel.gif | Santiago=Arms of Santiago.svg | Santo Domingo=Arms of Santo Domingo.svg | São Paulo=Arms of São Paulo.svg | Saraj=Coat of arms of Saraj Municipality.svg | Sarajevo=Coat of arms of Sarajevo.svg | Schaerbeek=Blason Schaerbeek.svg | Schwerin=Wappen Schwerin.svg | Sevastopol=Sevastopol-COA.png | Seville=Arms of Seville.svg | Sheffield=Coat of arms of Sheffield City Council.png | Siegen=Wappen Siegen.svg | Siena=Stemma Repubblica di Siena.svg | Simmerath=DEU Simmerath COA.svg | Sint-Jans-Molenbeek=Blason Molenbeek Saint Jean.svg | Skopje=Insigne Scopiae.svg | Sofia=Insigne Serdicae.svg | Solingen=Solingen wappen.svg | Staro Nagoričane=Coat of arms of Staro Nagoričane.svg | Štip=Coat of arms of Štip Municipality.svg | Stockholm=Insigne Holmiae.svg | Stolberg (Rhineland)=DEU Stolberg (Rhld) COA.svg | Stralsund=DEU Stralsund COA.svg | Strasbourg=Insigne Argentorati.svg | Strumica=Coat of arms of Strumica Municipality.svg | Stuttgart=Coat of arms of Stuttgart.svg | Šuto Orizari=Coat of arms of Šuto Orizari Municipality.svg | Sydney=Arms of Sydney.svg | Syracuse=Coat of arms of Syracuse.svg | Szczecin=POL Szczecin COA.svg | Szeged=Szeged COA.png | Tallinn=Coat of arms of Tallinn.svg | Tangerang=Lambang Kota Tangerang.png | Tegucigalpa=Arms of Tegucigalpa.svg | Tel Aviv=Arms of Tel Aviv.svg | Telšiai=Telsiai COA.gif | The Hague=Blason Ville La Haye.svg | Thessaloniki= Thessaloniki seal.svg | Tilburg=Coat of arms of Tilburg.png | Timișoara=ROU TM Timisoara CoA1.png | Tirana=Insigne Tyranae.svg | Toledo=Escudo de Toledo.svg | Toronto=Arms of Toronto.svg | Tórshavn=Coat of arms of Tórshavn.svg | Toulouse=Blason ville fr Toulouse (Haute-Garonne).svg | Tours=Blason tours 37.svg | Trelleborg=Trelleborg vapen.svg | Trenčín=Coat of Arms of Trenčín.svg | Trier=Coat_of_arms_of_Trier.svg | Trieste=Free Territory of Trieste coat of arms.svg | Trnava=Coat of Arms of Trnava.svg | Trollhättan=Trollhättan vapen.svg | Tromso=Tromsø komm.svg | Turin=Insigne Augustae Taurinorum.svg | Uccle=Uccle Blason.png | Ulm=Coat of arms of Ulm.svg | Vaduz=Vaduz.png | Valence=Blason ville fr Valence (Drome).png | Valencia=Arms of the Pyrénées-Orientales.svg | Valenciennes=Blason valenciennes.svg | Valladolid=Coat of Arms of Valladolid.svg | Valletta=Insigne Valettae.svg | Vantaa=Vantaa.vaakuna.svg | Varna=Gerb varna.jpg | Veles=Coat of arms of Veles Municipality.svg | Veliko Tarnovo=Veliko-Tarnovo-coat-of-arms.svg | Venice=StemmaVene.PNG | Vienna=Insigne Vindobonae.svg | Vigo=Arms of Vigo.svg | Vilnius=Coat of arms of Vilnius Gold.png | Vinica=Coat of arms of Vinica Municipality.png | Volgograd=Coat of Arms of Volgograd.png | Wakefield=Coat of arms of Wakefield City Council.png | Warsaw=Insigne Varsoviae.svg | Washington, D.C.=COA George Washington.svg | Watermael-Boitsfort=Watermaalbosvoordewapen.gif | Wiesbaden=Wappen_Wiesbaden.svg | Windhoek=Wappen Windhuk - Namibia.jpg | Winnipeg=Blason ville ca Winnipeg (Manitoba).svg | Wirral=Coat of arms of Wirral Metropolitan Borough Council.png | Wolfsburg=Wappen Wolfsburg.svg | Woluwe-Saint-Lambert=Coat of arms of Woluwe-Saint-Pierre.svg | Woluwe-Saint-Pierre=Greater Coat of arms Woluwe-Saint-Pierre.svg | Wrocław=Herb wroclaw.svg | Wuppertal=DEU Wuppertal COA.svg | Würselen=DEU Würselen COA.svg | Würzburg=Wappen von Wuerzburg.svg | Yekaterinburg=Coat of Arms of Yekaterinburg (Sverdlovsk oblast).svg | Yerevan=Yerevan seal.png | Zagreb=Insigne Zagrabiae.svg | Zaragoza=Escudo municipal de Zaragoza.svg | Zevenaar=Arms of Zevenaar.svg | Zrnovci=Coat of arms of Zrnovci Municipality.jpg | Žilina=Coat of Arms of Žilina.svg <!-- | Cluj-Napoca=ROU CJ Cluj-Napoca CoA.png Deleted from commons 2 June 2015 --> <!-- Deleted file: | Macclesfield=Arms of Macclesfield.svg --> <!-- Deleted file: | San Salvador=Escudo San Salvador.jpg --> <!-- Non-existing file: | Arlington County, Virginia=ArlingtonCountySeal.png --> <!-- Non-free file: | Gaza=Gaza coat.png --> <!-- Non-free file: | Kinshasa=Kinshasa arms.jpg --> <!--- 4. SUB-NATIONAL REGIONS ---> <!--- 4.alb ALBANIA ---> <!--- 4.alb.1 ALBANIAN COUNTIES [QARQE]: ---> | Shkodër County=Stema e Qarkut Shkodër.svg <!--- 4.aut AUSTRIA ---> <!--- 4.aut.1 AUSTRIAN STATES [LÄNDER]: ---> | Burgenland=Burgenland Wappen.svg | Carinthia=Kaernten CoA.svg | Lower Austria=Niederösterreich CoA.svg <!-- | Salzburg=Salzburg Wappen.svg --> | Styria=Steiermark Wappen.svg | Tyrol=AUT Tirol COA.svg | Upper Austria=Oberoesterreich Wappen.svg <!-- | Vienna=Wien 3 Wappen.svg --> | Vorarlberg=Voraralberg Wappen.svg <!--- 4.bel BELGIUM ---> <!--- 4.bel.1 BELGIAN REGIONS: ---> <!--- 4.bel.2 BELGIAN PROVINCES: ---> | Antwerp (province)=Coat of arms of Antwerp.svg | East Flanders=Wapen van Oost-Vlaanderen.svg | Flemish Brabant=Coat of arms of Flemish Brabant.svg | Hainaut (province)=Hainaut Modern Arms.svg | Liège (province)=Armoiries Principauté de Liège.svg | Limburg (Belgium)=Blason Limburg province Belgique.svg | Luxembourg (Belgium)=Armoiries Luxembourg province.svg | Namur (province)=Blason namur prov.svg | Walloon Brabant=Coat of arms of Walloon Brabant.svg | West Flanders=Klein wapen van West-Vlaanderen.svg <!--- 4.chi CHILE ---> <!--- 4.chi.1 CHILEAN REGIONS AND AUTONOMOUS TERRITORIES: ---> | Easter Island=Emblem of Easter Island.svg <!--- 4.cze CZECH REPUBLIC ---> <!--- 4.cze.1 CZECH REGIONS [KRAJE]: ---> | Central Bohemian Region=Central Bohemian Region CoA CZ.svg | South Bohemian Region=South Bohemian Region CoA CZ.svg | Plzeň Region=Plzen Region CoA CZ.svg | Karlovy Vary Region=Karlovy Vary Region CoA CZ.svg | Ústí nad Labem Region=Usti nad Labem Region CoA CZ.svg | Liberec Region=Liberec Region CoA CZ.svg | Hradec Králové Region=Hradec Kralove Region CoA CZ.svg | Pardubice Region=Pardubice Region CoA CZ.svg | Olomouc Region=Olomouc Region CoA CZ.svg | Moravian-Silesian Region=Moravian-Silesian Region CoA CZ.svg | South Moravian Region=South Moravian Region CoA CZ.svg | Zlín Region=Zlin Region CoA CZ.svg | Vysočina Region=Vysocina Region CoA CZ.svg <!--- IRELAND ---> |Connacht=Coat of arms of Connacht.svg |Leinster=Coat of arms of Leinster.svg |Munster=Coat of arms of Munster.svg |Ulster=Coat of arms of Ulster.svg <!--- 4.esp SPAIN ---> <!--- 4.esp.1 SPANISH AUTONOMOUS COMMUNITIES and CITIES [COMUNIDADES y CIUDADES AUTÓNOMAS]: ---> | Andalusia=Escudo heráldico de Andalucía.svg | Aragon=Shield of Aragon.svg | Asturias=Arms of Asturias.svg | Balearic Islands=Balearic Islands Arms.svg | Basque Country=Arms of the Basque Country.svg | Canary Islands=Arms of the Canary Islands.svg | Cantabria=Arms of Cantabria.svg | Castile–La Mancha=Arms of Castile-La Mancha.svg | Castile and León=Arms of Castile and Leon.svg | Catalonia=Arms of the Former Crown of Aragon-Coat of Arms of Spain Template.svg | Extremadura=Arms of Extremadura.svg | Galicia=Arms of Galicia (Spain).svg | La Rioja=Arms of La Rioja (Spain).svg | Community of Madrid=Arms of the Community of Madrid.svg | Murcia=Arms of the Spanish Region of Murcia.svg | Navarre=Arms of Navarre-Coat of Arms of Spain Template.svg | Valencian Community=Arms of the Former Crown of Aragon-Coat of Arms of Spain Template.svg | Ceuta=Arms of Ceuta.svg | Melilla=Arms of Melilla.svg <!--- 4.est ESTONIA ---> <!--- 4.est.1 ESTONIAN COUNTIES [MAAKONNAD]: ---> |Harju County=Et-Harju maakond-coa.svg |Hiiu County=Hiiumaa_vapp.svg |Ida-Viru County=Ida-Virumaa_vapp.svg |Jõgeva County=Jõgevamaa_vapp.svg |Järva County=Et-Järva_maakond-coa.svg |Lääne County=Läänemaa_vapp.svg |Lääne-Viru County=Lääne-Virumaa_vapp.svg |Põlva County=Põlvamaa_vapp.svg |Pärnu County=Et-Pärnu_maakond-coa.svg |Rapla County=Raplamaa_vapp.svg |Saare County=Saaremaa_vapp.svg |Tartu County=Tartumaa_vapp.svg |Valga County=Valgamaa_vapp.svg |Viljandi County=Viljandimaa_vapp.svg |Võru County=Võrumaa vapp.svg <!--- 4.est.2 ESTONIAN MUNICIPALITIES ---> |Alutaguse Parish=Alutaguse_valla_vapp.svg |Anija Parish=Anija_valla_vapp.svg |Antsla Parish=Antsla_valla_vapp.svg |Elva Parish=Elva_valla_vapp.svg |Haapsalu=Haapsalu_vapp.svg |Haljala Parish=Haljala_valla_vapp.svg |Harku Parish=Harku_valla_vapp.svg |Hiiumaa Parish=Coat_of_arms_of_Hiiumaa_Parish.svg |Häädemeeste Parish=Häädemeeste_valla_vapp.svg |Järva Parish=Järva_valla_vapp.svg |Jõelähtme Parish=Jõelähtme_valla_vapp.svg |Jõgeva Parish=Jõgeva_valla_vapp.svg |Jõhvi Parish=Jõhvi_valla_vapp.svg |Kadrina Parish=Kadrina_valla_vapp.svg |Kambja Parish=Kambja_valla_vapp_2020.svg |Kanepi Parish=Kanepi_valla_vapp.svg |Kastre Parish=Kastre_valla_vapp.svg |Kehtna Parish=Kehtna_valla_vapp.svg |Keila=Keila_vapp.svg |Kihnu Parish=Kihnu_vapp.svg |Kiili Parish=Kiili_coat_of_arms.svg |Kohila Parish=Kohila_valla_vapp.svg |Kohtla-Järve=Coat of arms of Kohtla-Jarve.svg |Kose Parish=Kose_valla_vapp.svg |Kuusalu Parish=Kuusalu_Parish_coat_of_arms.svg |Loksa=Loksa_vapp.svg |Luunja Parish=Luunja_valla_vapp.svg |Lääne-Harju Parish=Lääne-Harju_valla_vapp.svg |Lääne-Nigula Parish=Lääne-Nigula_valla_vapp.svg |Lääneranna Parish=Lääneranna_valla_vapp.svg |Lüganuse Parish=Lüganuse_valla_vapp.svg |Maardu=Maardu_vapp.svg |Muhu Parish=Muhu_Valla_vapp.svg |Mulgi Parish=Mulgi_valla_vapp.svg |Mustvee Parish=Mustvee_valla_vapp.svg |Märjamaa Parish=Märjamaa_Parish_Coat_of_Arms.svg |Narva-Jõesuu=Narva-Jõesuu_vapp.svg |Narva=Narva_vapp.svg |Nõo Parish=Nõo_valla_vapp.gif |Otepää Parish=Coat_of_arms_of_Otepää_Parish.svg |Paide=Paide_vapp.svg |Peipsiääre Parish=Peipsiääre_valla_vapp.svg |Pärnu=Et-Parnu_coa.svg |Põhja-Pärnumaa Parish=Põhja-Pärnumaa_valla_vapp.svg |Põhja-Sakala Parish=Suure-Jaani_valla_vapp.svg |Põltsamaa Parish=Põltsamaa_valla_vapp.svg |Põlva Parish=Põlva_valla_vapp.svg |Raasiku Parish=Raasiku_valla_vapp.svg |Rae Parish=Rae_valla_vapp.svg |Rakvere Parish=Rakvere_valla_vapp.svg |Rakvere=Rakvere_vapp.svg |Rapla Parish=Rapla_valla_vapp.svg |Ruhnu Parish=Ruhnu_valla_vapp.svg |Räpina Parish=Räpina_valla_vapp.svg |Rõuge Parish=Rõuge_valla_vapp.svg |Saarde Parish=Saarde_valla_vapp.svg |Saaremaa Parish=Saaremaa-valla-vapp.svg |Saku Parish=Saku_valla_vapp.svg |Saue Parish=Saue_valla_vapp.svg |Setomaa Parish=Setomaa_valla_vapp.svg |Sillamäe=Sillamäe_vapp.svg |Tallinn=Coat_of_arms_of_Tallinn_(small).svg |Tapa Parish=Tapa_valla_vapp_2017.svg |Tartu Parish=Tartu_valla_vapp.svg |Tartu=Tartu_coat_of_arms.svg |Toila Parish=Toila_valla_vapp.svg |Tori Parish=Tori_valla_vapp.svg |Tõrva Parish=Tõrva_valla_vapp.svg |Türi Parish=Türi_valla_vapp.svg |Valga Parish=Valga_valla_vapp.svg |Viimsi Parish=Viimsi_valla_vapp.svg |Viljandi Parish=Viljandi_valla_vapp.svg |Viljandi=Et-Viljandi_coa.svg |Vinni Parish=Vinni_valla_vapp.svg |Viru-Nigula Parish=Viru-Nigula_valla_vapp.svg |Vormsi Parish=VormsiParishCoatOfArms.svg |Väike-Maarja Parish=Väike-Maarja_valla_vapp.svg |Võru Parish=Võru_valla_vapp_2017.svg |Võru=Võru_vapp.svg <!--- 4.fin FINLAND ---> <!--- 4.fin.1 FINNISH REGIONS [MAAKUNTA]: ---> | Lapland (Finland)=Lapin maakunnan vaakuna.svg | Northern Ostrobothnia=Pohjois-Pohjanmaan vaakuna.svg | Kainuu=Kainuu.vaakuna.svg | North Karelia=Pohjois-Karjala.vaakuna.svg | Northern Savonia=Pohjois-Savo.vaakuna.svg | Southern Savonia=Etelä-Savo.vaakuna.svg | Southern Ostrobothnia=Etelä-Pohjanmaan maakunnan vaakuna.svg | Ostrobothnia (administrative region)=Pohjanmaan maakunnan vaakuna.svg | Pirkanmaa=Pirkanmaa.vaakuna.svg | Satakunta=Satakunta.vaakuna.svg | Central Ostrobothnia=Keski-Pohjanmaa.vaakuna.svg | Central Finland=Keski-Suomi Coat of Arms.svg | Southwest Finland=Varsinais-Suomen.vaakuna.svg | Finland Proper=Varsinais-Suomen.vaakuna.svg | South Karelia=Etelä-Karjala.vaakuna.svg | Päijänne Tavastia=Päijät-Häme.vaakuna.svg | Tavastia Proper=Kanta-Häme.vaakuna.svg | Uusimaa=Uusimaa.vaakuna.svg | Kymenlaakso=Kymenlaakson maakunnan vaakuna.svg | Åland=Coat of arms of Åland.svg <!--- 4.fra FRANCE ---> <!--- 4.fra.1 FRENCH REGIONS [RÉGIONS]: ---> | Brittany=COA fr BRE.svg | Centre=Blason_Centre.svg | Centre (French region)=Blason_Centre.svg | Corsica=Coat_of_Arms_of_Corsica.svg | Île-de-France=France moderne.svg | Île-de-France (region)=France moderne.svg | Pays de la Loire=Blason région fr Pays-de-la-Loire.svg | Provence-Alpes-Côte d'Azur=Blason région fr Provence-Alpes-Côte d'Azur.svg <!--- 4.ger GERMANY ---> <!--- 4.ger.1 GERMAN STATES [LÄNDER]: ---> | Lower Saxony=Coat of arms of Lower Saxony.svg | Free Hanseatic City of Bremen=Bremen Wappen.svg <!-- | Hamburg=Coat of arms of Hamburg.svg --> | Mecklenburg-Vorpommern=Coat of arms of Mecklenburg-Western Pomerania (great).svg | Saxony-Anhalt=Wappen Sachsen-Anhalt.svg | Saxony=Coat of arms of Saxony.svg | Brandenburg=Brandenburg Wappen.svg | Thuringia=Coat of arms of Thuringia.svg | Hesse=Coat of arms of Hesse.svg | North Rhine-Westphalia=Coat of arms of North Rhine-Westfalia.svg | Rhineland-Palatinate=Coat of arms of Rhineland-Palatinate.svg | Bavaria=Arms of the Free State of Bavaria.svg | Baden-Württemberg=Coat of arms of Baden-Württemberg (lesser).svg | Saarland=Wappen des Saarlands.svg | Schleswig-Holstein=DEU Schleswig-Holstein COA.svg <!--- 4.ina INDONESIA: ---> <!--- 4.ina.1 INDONESIAN PROVINCES [PROVINSI]: ---> | Aceh=Coat of arms of Aceh.svg | North Sumatra=Coat of arms of North Sumatra.svg | West Sumatra=Coat of arms of West Sumatra.svg | Riau=Coat of arms of Riau.svg | Riau Islands=Coat of arms of Riau Islands.png | Jambi=Coat of arms of Jambi.svg | South Sumatra=Coat of arms of South Sumatra.svg | Bangka Belitung Islands=Coat of arms of Bangka Belitung Islands.svg | Bengkulu=Coat of arms of Bengkulu.png | Lampung=Coat of arms of Lampung.svg | Banten=Coat of arms of Banten.png <!-- | Jakarta=Coat of arms of Jakarta.svg --> | West Java=Coat of arms of West Java.svg | Central Java=Coat of arms of Central Java.svg | Special Region of Yogyakarta=Coat of arms of Yogyakarta.svg | East Java=Coat of arms of East Java.svg | West Kalimantan=Coat of arms of West Kalimantan.svg | Central Kalimantan=Coat of arms of Central Kalimantan.png | South Kalimantan=Lambang Provinsi Kalimantan Selatan.gif | East Kalimantan=Coat of arms of East Kalimantan.svg | North Kalimantan=Emblem of North Kalimantan.png | Bali=Coat of arms of Bali.svg | West Nusa Tenggara=Coat of arms of West Nusa Tenggara.svg | East Nusa Tenggara=Coat of arms of East Nusa Tenggara.svg | West Sulawesi=Coat of arms of West Sulawesi.png | South Sulawesi=Coat of arms of South Sulawesi.svg | Central Sulawesi=Coat of arms of Central Sulawesi.png | Gorontalo=Coat of arms of Gorontalo.png | Southeast Sulawesi=Coat of arms of Southeast Sulawesi.svg | North Sulawesi=Coat of arms of North Sulawesi.svg | North Maluku=Coat of arms of North Maluku.png | Maluku=Coat of arms of Maluku.svg | West Papua=Coat of arms of West Papua.svg | Papua=Coat of arms of Papua 2.svg <!--- 4.ind INDIA ---> <!--- 4.ind INDIAN STATES and UNION TERRITORIES ---> | Tamil Nadu=TamilNadu Logo.svg | Uttar Pradesh = Seal of Uttar Pradesh.png <!--- 4.irl IRELAND ---> <!--- 4.irl.1 IRISH COUNTIES ---> |County Offaly=Offaly crest.svg <!--- Irish Provinces (all of these are already listed above) |Connacht=Coat of arms of Connacht.svg |Leinster=Coat of arms of Leinster.svg |Munster=Coat of arms of Munster.svg |Ulster=Coat of arms of Ulster.svg ---> <!--- 4.ita ITALY ---> <!--- 4.ita.1 ITALIAN REGIONS [REGIONI]: ---> | Abruzzo=Regione-Abruzzo-Stemma.svg | Aosta Valley=Valle d'Aosta-Stemma.svg | Apulia=Coat of Arms of Apulia.svg | Basilicata=Regione-Basilicata-Stemma.svg | Calabria=Coat of arms of Calabria.svg | Campania=Regione-Campania-Stemma.svg | Emilia-Romagna=Regione-Emilia-Romagna-Stemma.svg | Friuli Venezia Giulia | Friuli-Venezia Giulia=CoA of Friuli-Venezia Giulia.svg | Lazio=Lazio Coat of Arms.svg | Liguria=Coat of arms of Liguria.svg | Lombardy=Flag of Lombardy square.svg | Marche=Coat of arms of Marche.svg | Molise=Regione-Molise-Stemma.svg | Piedmont=Regione-Piemonte-Stemma.svg | Sardinia=Sardegna-Stemma.svg | Sicily=Coat of arms of Sicily.svg | Trentino-Alto Adige/Südtirol=Coat of arms of Trentino-South Tyrol.svg | Tuscany=Coat of arms of Tuscany.svg | Umbria=Regione-Umbria-Stemma.svg | Veneto=Coat of Arms of Veneto.png <!--- 4.ita.2 ITALIAN PROVINCES [PROVINCE]: ---> | Bolzano=Suedtirol CoA.svg | Reggio Calabria=Coat of Arms of the Province of Reggio-Calabria.svg <!-- Non-free file: | Bologna=Bologna-Stemma.png--> <!-- Non-free file: | Brescia=Brescia-Stemma.png --> | South Tyrol=Suedtirol CoA.svg | Trentino=Trentino CoA.svg | Trento=Trentino CoA.svg <!--- 4.lux LUXEMBOURG ---> <!--- 4.lux.1 LUXEMBOURGISH CANTONS [KANTOUNEN]: ---> | Remich (canton)=Remich (canton) coat of arms.png <!--- 4.mkd MACEDONIA ---> <!--- 4.mkd.1 MACEDONIAN STATISTICAL REGIONS [STATISTICHKI REGIONI]: ---> | Polog Statistical Region=Logo of Polog Region.svg | Pelagonia Statistical Region=Logo of Pelagonia Region.svg | Skopje Statistical Region=Logo of Skopje Region.svg | Southwestern Statistical Region=Logo of Southwestern Region, Macedonia.svg | Northeastern Statistical Region=Logo of Northeastern Region, Macedonia.svg | Vardar Statistical Region=Logo of Vardar Region.svg | Eastern Statistical Region=Logo of Eastern Region, Macedonia.svg <!--- 4.ned NETHERLANDS ---> <!--- 4.ned.1 DUTCH PROVINCES [PROVINCIES]: ---> | Drenthe=Drenthe wapen.svg | Flevoland=Flevoland wapen.svg | Friesland=Friesland wapen.svg | Gelderland=Gelderland wapen.svg | Groningen=Groningen coa.svg | Limburg=Limburg-nl-wapen.svg | North Brabant=Noord-Brabant wapen.svg | North Holland=Wapen van Noord-Holland.svg | Overijssel=Overijssel wapen.svg | South Holland=Zuid-holland wapen.svg | Utrecht=Utrecht provincie wapen.svg | Zeeland=Zeeland wapen.svg <!--- 4.nor NORWAY ---> <!--- 4.nor.1 NORWEGIAN COUNTIES [FYLKER]: ---> | Agder=Agder våpen.svg | Innlandet=Innlandet våpen.svg | Møre og Romsdal=Møre og Romsdal våpen.svg | Nordland=Nordland våpen.svg | Rogaland=Rogaland våpen.svg | Trøndelag=Trøndelag våpen.svg | Vestland=Vestland våpen.svg | Vestfold og Telemark=Vestfold og Telemark våpen.svg | Viken=Viken våpen.svg | Viken (county)=Viken våpen.svg | Troms og Finnmark=Coat of arms of Finnmark county and Troms county.svg <!--- 4.pol POLAND ---> <!--- 4.pol.1 POLISH VOIVODESHIPS [WOJEWÓDZTWA] ---> | West Pomeranian Voivodeship=POL województwo zachodniopomorskie COA.svg | Pomeranian Voivodeship=POL województwo pomorskie COA.svg | Warmian-Masurian Voivodeship=Warminsko-mazurskie herb.svg | Podlaskie Voivodeship=POL województwo podlaskie COA.svg | Lubusz Voivodeship=POL województwo lubuskie COA.svg | Greater Poland Voivodeship=POL województwo wielkopolskie COA.svg | Kuyavian-Pomeranian Voivodeship=POL województwo kujawsko-pomorskie COA.svg | Lower Silesian Voivodeship=POL województwo dolnośląskie COA.svg | Opole Voivodeship=POL województwo opolskie COA.svg | Silesian Voivodeship=POL_województwo_śląskie_COA.svg | Świętokrzyskie Voivodeship=POL wojewodztwo świętokrzyskie COA.svg | Łódź Voivodeship=POL województwo łódzkie COA.svg | Masovian Voivodeship=POL województwo mazowieckie COA.svg | Lublin Voivodeship=POL województwo lubelskie COA.svg | Lesser Poland Voivodeship=POL województwo małopolskie COA.svg | Subcarpathian Voivodeship=POL województwo podkarpackie COA.svg <!--- 4.rou ROMANIA ---> <!--- 4.rou.1 ROMANIAN COUNTIES [JUDEȚE]: ---> | Cluj County=Actual Cluj county CoA.png | Dolj County=Stema judetului Dolj.svg <!-- 4.rsa SOUTH AFRICA ---> <!-- 4.rsa.1 SOUTH AFRICAN PROVINCES: ---> | Gauteng=Gauteng arms.svg | Western Cape = Coat of arms of the Western Cape.png <!--- 4.sui SWITZERLAND ---> <!--- 4.sui.1 SWISS CANTONS: ---> | Canton of Bern=Wappen Bern matt.svg | Canton of Basel-Stadt=Wappen Basel-Stadt matt.svg | Basel-Stadt=Wappen Basel-Stadt matt.svg | Canton of Geneva=Wappen Genf matt.svg | Canton of Schaffhausen=Wappen Schaffhausen matt.svg | Schaffhausen=Wappen Schaffhausen matt.svg | Canton of Ticino=Wappen Tessin matt.svg | Canton of Vaud=Wappen Waadt matt.svg <!--- 4.svk SLOVAKIA ---> <!--- 4.svk.1 SLOVAK REGIONS [KRAJE]: ---> | Bratislava Region=Coat of Arms of Bratislava Region.svg | Trnava Region=Coat of Arms of Trnava Region.svg | Trenčín Region=Coat of Arms of Trenčín Region.svg | Nitra Region=Coat of Arms of Nitra Region.svg | Žilina Region=Coat of Arms of Žilina Region.svg | Banská Bystrica Region=Coat of Arms of Banská Bystrica Region.svg | Prešov Region=Coat of Arms of Prešov Region.svg | Košice Region=Coat of Arms of Košice Region.svg <!--- 4.swe SWEDEN ---> <!--- 4.swe.1 SWEDISH COUNTIES [LÄN]: ---> | Blekinge County=Blekinge vapen.svg | Dalarna County=Dalarna vapen.svg | Gävleborg County=Gävleborg län vapen.svg | Gotland County=Gotland vapen.svg | Halland County=Halland vapen.svg | Jämtland County=Jämtland län vapen.svg | Jönköping County=Jönköping län vapen.svg | Kalmar County=Kalmars läns vapen.svg | Kronoberg County=Kronoberg vapen.svg | Norrbotten County=Norrbotten län vapen.svg | Örebro County=Örebro län vapen.svg | Östergötland County=Östergötland vapen.svg | Skåne County=Skåne länsvapen - Riksarkivet Sverige.png | Södermanland County=Södermanlands vapen.svg | Stockholm County=Stockholm län vapen b.svg | Uppsala County=Uppland vapen.svg | Värmland County=Värmland vapen.svg | Västerbotten County=Västerbotten län vapen.svg | Västernorrland County=Västernorrland län vapen.svg | Västmanland County=Västmanland vapen.svg | Västra Götaland County=Västra Götalands läns vapen.svg <!--- 4.ukr UKRAINE ---> <!--- 4.ukr.1 UKRAINIAN OBLASTS [OBLASTI]: ---> | Volyn Oblast=Volyn coat of arms.svg | Rivne Oblast=Rivne Oblast coat of arms.svg | Zhytomyr Oblast=Coat of Arms of Zhytomyr Oblast.png | Kiev Oblast=Herb Kyivskoi oblasti 1.svg | Kyiv Oblast=Herb Kyivskoi oblasti 1.svg | Khmelnytskyi Oblast=Coat of Arms of Khmelnytskyi Oblast.svg | Ternopil Oblast=Coat of Arms of Ternopil Oblast.svg | Ivano-Frankivsk Oblast=Coat of Arms of Ivano-Frankivsk Oblast.svg | Zakarpattia Oblast=Karptska Ukraina-2 COA.svg | Chernivtsi Oblast=Coat of Arms of Chernivtsi Oblast .svg | Vinnytsia Oblast=Coat of Arms of Vinnytsa Oblast.svg | Cherkasy Oblast=Coat of Arms of Cherkasy Oblast .svg | Kirovohrad Oblast=Coat of Arms of Kirovohrad Oblast.svg | Mykolaiv Oblast=Coat of Arms of Mykolaiv Oblast.svg | Poltava Oblast=Coat of Arms of Poltava Oblast.svg | Chernihiv Oblast=Coat of Arms of Chernihiv Oblast.svg | Sumy Oblast=Coat_of_Arms_of_Sumy_Oblast.svg | Kharkiv Oblast=Kharkiv-town-herb.svg | Dnipropetrovsk Oblast=Herb Dnipropetrovskoyi oblasti.svg | Odessa Oblast=Coat of Arms of Odesa Oblast .svg | Odesa Oblast=Coat of Arms of Odesa Oblast .svg | Kherson Oblast=Coat of Arms of Kherson Oblast .svg | Zaporizhia Oblast=Coat of Arms of Zaporizhzhya Oblast.png | Zaporizhzhia Oblast=Coat of Arms of Zaporizhzhya Oblast.png | Donetsk Oblast=Lesser CoA of the Donets Basin (Spanish Shield).svg | Autonomous Republic of Crimea=Emblem of Crimea.svg | Luhansk Oblast=Coat of Arms Luhansk Oblast.svg | Lviv Oblast=Coat of Arms of Lviv Oblast.png <!--- 4.usa UNITED STATES of AMERICA ---> <!--- 4.usa.1 UNITED STATES of AMERICA STATES: ---> | Hawaii = Insigne Havaii.svg | Massachusetts = Coat of arms of Massachusetts.svg <!--- 5. HISTORICAL SUB-NATIONAL UNITS: ---> <!--- 5.cze CZECH LANDS: ---> | Bohemia=Small coat of arms of the Czech Republic.svg | Moravia=Znak Moravy.svg | Czech Silesia=Znak Slezska.svg <!--- 5.fr FRENCH REPUBLIC: ---> | Alsace=Blason région fr Alsace.svg | Aquitaine=Blason de l'Aquitaine et de la Guyenne.svg | Auvergne=Blason de l'Auvergne.svg | Auvergne (region)=Blason de l'Auvergne.svg | Basse-Normandie=Arms of William the Conqueror (1066-1087).svg | Lower Normandy=Arms of William the Conqueror (1066-1087).svg | Bourgogne=Blason fr Bourgogne.svg | Burgundy (French region)=Blason fr Bourgogne.svg | Champagne-Ardenne=Arms of the French Region of Champagne-Ardenne.svg | Franche-Comté=Blason fr Franche-Comté.svg | Haute-Normandie=Blason region fr Normandie.svg | Upper Normandy=Blason region fr Normandie.svg | Languedoc-Roussillon=Arms of the French Region of Languedoc-Roussillon.svg | Limousin=Blason région fr Limousin.svg | Limousin (region)=Blason région fr Limousin.svg | Lorraine=Blason Lorraine.svg | Lorraine (region)=Blason Lorraine.svg | Midi-Pyrénées=Blason_Languedoc.svg | Nord-Pas-de-Calais=Blason Nord-Pas-De-Calais.svg | Picardie=Blason_région_fr_Picardie.svg | Picardy=Blason_région_fr_Picardie.svg | Poitou-Charentes=Poitou-Charentes blason.svg | Rhône-Alpes=Blason Rhône-Alpes Gendarmerie.svg <!--- 5.hre HOLY ROMAN EMPIRE: ---> | Baden=Coat of arms of Baden.svg | Holstein=Holstein Arms.svg <!--- 5.kof KINGDOM of FRANCE: ---> | County of Flanders=Blason Nord-Pas-De-Calais.svg | Normandy=Blason duche fr Normandie.svg <!--- 5.kon KINGDOM of NORWAY: ---> | Akershus=Akershus våpen.svg | Aust-Agder=Aust-Agder vapen.svg | Buskerud=Buskerud våpen.svg | Finnmark=Finnmark våpen.svg | Hedmark=Hedmark våpen.svg | Hordaland=Hordaland vapen.svg | Nord-Trøndelag=Nord-Trøndelag våpen.svg | Oppland=Oppland våpen.svg | Sogn og Fjordane=Sogn og Fjordane våpen.svg | Sør-Trøndelag=Sør-Trøndelag våpen.svg | Telemark=Telemark våpen.svg | Troms=Troms våpen.svg | Vest-Agder=Vest-Agder våpen.svg | Vestfold=Vestfold våpen.svg | Østfold=Østfold våpen.svg <!--- 5.kop KINGDOM of PRUSSIA: ---> | Westphalia=Wappen des Landschaftsverbandes Westfalen-Lippe.svg <!--- 5.kos KINGDOM of SWEDEN: ---> | Scania=Skåne vapen.svg <!--- 5.sfry SOCIALIST FEDERAL REPUBLIC of YUGOSLAVIA: ---> | PR Macedonia=Coat of arms of the PR of Macedonia.svg <!--- 6. MILITARY and POLICE UNITS: ---> | Knights Templar=Crusades TF.JPG | Nordic Battle Group=Coat of Arms of the Nordic Battlegroup.svg | European Union Military Committee=Coat of arms of the European Union Military Committee.svg | European Union Military Staff=Coat of arms of the European Union Military Staff.svg | Teutonic Knights=Insignia Germany Order Teutonic.svg | European Corps=Coat of arms of Eurocorps.svg | European Rapid Operational Force=Coat of arms of Eurofor.svg | European Gendarmerie Force=Arms of the European Gendarmerie Force.svg | European Air Transport Command=Coat of arms of the European Air Transport Command.svg | European Air Group=Coat of arms of the European Air Group.svg | European Maritime Force=Coat of arms of Euromarfor.svg | Movement Coordination Centre Europe=Coat of arms of Movement Coordination Centre Europe.svg | Finabel=Arms of Finabel.svg | Army of the Republic of Macedonia=MacedonianArmyLogo.svg | Law enforcement in the Republic of Macedonia=Macedonian Police insignia.png | Supreme Headquarters Allied Powers Europe=Coat of arms of Supreme Headquarters Allied Powers Europe.svg | Chairman of the NATO Military Committee=Coat of arms of the Chairman of the NATO Military Committee.svg | Deputy Chairman of the NATO Military Committee=Coat of arms of the Deputy Chairman of the NATO Military Committee.svg | NATO Communication and Information Systems Group=Coat of arms of the NATO Communication and Information Systems Group.svg | International Military Staff=Coat of arms of the International Military Staff.svg | Allied Joint Force Command Brunssum=Coat of arms of Allied Joint Force Command Brunssum.svg | Allied Joint Force Command Naples=Coat of arms of Allied Joint Force Command Naples.svg | Allied Air Command=Coat of arms of the Allied Air Command.svg | Allied Land Command=Coat of arms of the Allied Land Command.svg | Allied Maritime Command=Coat of arms of the Allied Maritime Command.svg | Joint Warfare Centre=Coat of arms of the Joint Warfare Centre.svg | Joint Analysis and Lessons Learned Centre=Coat of arms of the Joint Analysis and Lessons Learned Centre.svg | Joint Force Training Centre=Coat of arms of the Joint Force Training Centre.svg <!--- 7. RELIGIOUS ENTITIES: ---> | Ecumenical Patriarch of Constantinople=Constantinople coat of arms.PNG | Serbian Orthodox Church=Coat of arms of Serbian Orthodox Church.png | Macedonian Orthodox Church=Coat of arms of the Macedonian Orthodox Church.svg <!--- 8. EDUCATIONAL ENTITIES: ---> | Keenan Hall=Keenan.svg | University of Notre Dame=Notre dame coat of arms.png <!--- 9. CORPORATE and ECONOMIC ENTITIES: ---> | International Monetary Fund=Coat of arms of the International Monetary Fund.svg <!--- 10. ETHNIC and TRIBAL GROUPS: ---> | Albanians=AlbanieWapen.svg | Macedonians=Macedonian lion, 1620, stylized.png <!--- 11. DEFAULT: ---> |#default=Insigne incognitum.svg }}<!--- --->|link={{{link|{{ #if: {{{text|}}}| {{{1}}}}}}}}|alt={{{link|{{ #if: {{{text|}}}| {{{1}}}}}}}}|{{ #if: {{{size|}}}| {{{size}}}|20px}}]]{{ #if: {{{text|}}}| {{#switch: {{{text}}} | none=|&nbsp;{{{text}}}}}|&nbsp;[[{{{1}}}{{ #if: {{{2|}}}|{{!}}{{{2}}}}}]]}}<noinclude>{{documentation}}</noinclude> o53twdho1xb9t61ua8924ibq991xpgo 72915 72914 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Coat_of_arms]] 72914 wikitext text/x-wiki [[File:<!--- --->{{#switch: {{{1}}} <!--- TABLE of CONTENTS: 1. PRESENT-DAY SOVEREIGN COUNTRIES and NON-SOVEREIGN ENTITIES 2. HISTORICAL SOVEREIGN ENTITIES 3. CITIES 4. SUB-NATIONAL REGIONS 4.alb Albania: 4.alb.1 Albanian Counties [Qarqe] 4.aut Austria: 4.aut.1 Austrian States [Länder] 4.bel Belgium: 4.bel.1 Belgian Regions 4.bel.2 Belgian Provinces 4.cze Czech Republic: 4.cze.1 Czech Regions [Kraje] 4.esp Spain: 4.esp.1 Spanish Autonomous Communities and Cities [Comunidades y Ciudades Autónomas] 4.est Estonia: 4.est.1 Estonian Counties [Maakonnad] 4.est.2 Estonian Municipalities 4.fin Finland: 4.fin.1 Finnish Regions [Maakunta] 4.fra.France: 4.fra.1 ruh Regions [Régions] 4.ger Germany: 4.ger.1 German States [Länder] 4.ina Indonesia: 4.ina.1 Indonesian Provinces [Provinsi] 4.ind India: 4.ind.1 Indian States and Union Territories 4.irl Ireland: 4.irl.1 Irish Counties 4.ita Italy: 4.ita.1 Italian Regions [Regioni] 4.ita.2 Italian Provinces [Province] 4.lux Luxembourg: 4.lux.1 Luxembourgish Cantons [Kantounen] 4.mkd Macedonia: 4.mkd.1 Macedonian Statistical Regions [Statistichi Regioni] 4.ned Netherlands: 4.ned.1 Dutch Provinces [Provincies] 4.nor Norway: 4.nor.1 Norwegian Counties [Fylker] 4.pol Poland: 4.pol.1 Polish Voivodeships [Województwo] 4.rou Romania: 4.rou.1 Romanian Counties [Județe] 4.rsa South Africa: 4.rsa.1 South African Provinces 4.sui Switzerland: 4.sui.1 Swiss Cantons 4.svk Slovakia: 4.svk.1 Slovak Regions [Kraje] 4.swe Sweden: 4.swe.1 Swedish Counties [Län] 4.ukr Ukraine: 4.ukr.1 Ukrainian Oblasts [Oblasti] 4.usa United States: 4.usa.1 United States of America States 5. HISTORICAL SUB-NATIONAL REGIONS 5.cze Czech Lands 5.fr French Republic 5.hre Holy Roman Empire 5.kof Kingdom of France 5.kon Kingdom of Norway 5.kop Kingdom of Prussia 5.kos Kingdom of Sweden 5.sfry Socialist Federal Republic of Yugoslavia 6. MILITARY and POLICE UNITS 7. RELIGIOUS ENTITIES 8. EDUCATIONAL ENTITIES 9. CORPORATE and ECONOMIC ENTITIES 10. ETHNIC and TRIBAL GROUPS 11. DEFAULT ---> <!--- 1. PRESENT-DAY SOVEREIGN COUNTRIES and NON-SOVEREIGN ENTITIES: ---> | England=Royal Arms of England.svg | Alderney=Coat of Arms of Alderney.svg | Abkhazia=Coat of arms of Abkhazia.svg | Albania=Coat of arms of Albania.svg | Andorra=Arms of Andorra.svg | Anguilla=Coat of arms of Anguilla.svg | Antigua and Barbuda = Insigne Antiquae et Barbudae.svg | Argentina=Insigne Argentinum.svg | Armenia=Arms of Armenia.svg | Aruba = Insigne Arubae.svg | Australia=Shield of arms of Australia.svg | Austria=Austria coat of arms official.svg | Azerbaijan=Emblem of Azerbaijan.svg | Bahamas = Insigne Bahamarum.svg | Bahrain = Arms of Bahrain.png | Bailiwick of Guernsey = Coat of arms of Guernsey.svg | Barbados = Insigne Barbatae.svg | Belarus = Coat of arms of Belarus (2020–present).svg | Belgium=Royal Arms of Belgium.svg | Belize = Insigne Belizae.svg | Benin = Insigne Benini.svg | Bermuda = Insigne Bermudae.svg | Bolivia=Insigne Bolivicus.svg | Bonaire = Insigne Insulae Boni Aëris.svg | Bosnia and Herzegovina=Coat of arms of Bosnia and Herzegovina.svg | Botswana = Insigne Botswanae.svg | Brazil=Insigne Brasilicum.svg | British Indian Ocean Territory = Shield of the British Indian Ocean Territory.svg | British Virgin Islands = Insigne Insularum Virginis Britannicae.svg | Bulgaria=Coat of arms of Bulgaria (version by constitution).svg | Burkina Faso=Coat of arms of Burkina Faso.svg | Burundi = Insigne Burundiae.svg | Cambodia=Arms of Cambodia.svg | Cameroon = Insigne Cammaruniae.svg | Canada=Arms of Canada.svg | Cayman Islands = Insigne Insularum Caimanenses.svg | Central African Republic = Insigne rei publicae Africae Mediae.svg | Chad = Insigne Tzadiae.svg | Chile=Chilean Air Force roundel.svg | Christmas Island=Coat of Arms of Christmas Island.svg | Cocos (Keeling) Islands = Insigne Insularum Cocos seu Keeling.svg | Colombia=Insigne Columbum.svg | Cook Islands = Insigne Insularum de Cook.svg | Costa Rica=Insigne Costaricum.svg | Cote d'Ivoire = Insigne Litoris Eburnei.svg | Côte d'Ivoire = Insigne Litoris Eburnei.svg | Croatia=Coat of arms of Croatia.svg | Cuba=Insigne Cubicum.svg | Curaçao=Blason an Curaçao.svg | Cyprus=Arms of Cyprus.svg | Czech Republic=Small coat of arms of the Czech Republic.svg | Czechia=Small coat of arms of the Czech Republic.svg | Democratic Republic of Congo = Coat_of_arms_of_the_Democratic_Republic_of_the_Congo.svg | Democratic Republic of the Congo = Coat of arms of the Democratic Republic of the Congo.svg | Denmark=National Coat of arms of Denmark no crown.svg | Djibouti = Insigne Gibuti.svg | Dominica = Insigne Dominicae.svg | Dominican Republic=Insigne Dominicum.svg | East Timor=Shield Coat of arms of East Timor.png | Ecuador=Insigne Aequatorium.svg | Egypt=Insigne Aegyptium.svg | El Salvador=Insigne Salvatoriae.svg | Eritrea = Insigne Erythraeae.svg | Equatorial Guinea = Insigne Guineae Aequinoctialis.svg | Estonia=Small coat of arms of Estonia.svg | eSwatini = Insigne Swaziae.svg | Eswatini = Insigne Swaziae.svg | Ethiopia = Emblem of Ethiopia.svg | European Union=Coat of arms of Europe.svg | Falkland Islands = Insigne Falklandiae.svg | Faroe Islands=Coat of arms of the Faroe Islands.svg | Fiji=Arms of Fiji.svg | Finland=Coat of Arms of Finland Alternative style.svg | France=Arms of the French Republic.svg | French Guiana=BlasonGuyane.svg | French Polynesia=Coat of arms of French Polynesia.svg | French Southern and Antarctic Lands=Armoiries Terres australes et antarctiques françaises.svg | Gabon = Insigne Gabonis.svg | Gambia = Insigne Gambiae.svg | Georgia (country)=Arms of Georgia.svg | Georgia=Arms of Georgia.svg | Germany=Coat of arms of Germany.svg | Ghana = Insigne Ganae.svg | Gibraltar=Arms of Gibraltar (Variant).svg | Greece=Lesser coat of arms of Greece.svg | Greenland=Coat of arms of Greenland.svg | Grenada = Insigne Granatae.png | Guadeloupe=BlasonGuadeloupe.svg | Guam=Coat of arms of Guam.svg | Guernsey=Coat of arms of Guernsey.svg | Guinea = Insigne rei publicae Guineae.svg | Guinea-Bissau = Emblem of Guinea-Bissau.svg | Guyana = Insigne Guianae.svg | Honduras=Insigne Honduriae.svg | Hungary=Arms of Hungary.svg | Iceland=Arms of Iceland.svg | India=Emblem of India.svg | Indonesia=Pancasila Perisai.svg | Iraq=Arms of Iraq.svg | Ireland=Arms of the Republic of Ireland.svg | Isle of Man=Coat of arms of Isle of Man.svg | Israel=Emblem of Israel.svg | Italy=Emblem of Italy.svg | Ivory Coast = Insigne Litoris Eburnei.svg | Jamaica = Insigne Iamaicae.svg | Japan = Imperial Seal of Japan.svg | Jersey=Jersey coa.svg | Jordan=Arms of Jordan.svg | Kazakhstan=Emblem of Kazakhstan latin.svg | Kenya = Insigne Keniae.svg | Kingdom of the Netherlands=Royal Arms of the Netherlands.svg | Kiribati=Insigne Kiribatum.svg | Kosovo=Coat of arms of Kosovo.svg | Kuwait = Insigne Cuvaiti.svg | Laos=Emblem of Laos.png | Latvia=Latvijas Republikas mazais ģerbonis.svg | Lebanon=Coat of arms of Lebanon.svg | Lesotho = Insigne Lesothi.svg | Liberia=Insigne Liberiae.svg | Liechtenstein=Lesser arms of Liechtenstein.svg | Lithuania=Coat of arms of Lithuania.svg | Luxembourg=EU Member States' CoA Series- Luxembourg.svg | Madeira=Insigne Insularum Materiae.svg | Malawi = Insigne Malaviae.svg | Malaysia=Coat of arms of Malaysia.svg | Mali = Coat_of_arms_of_Mali.svg | Malta=Arms of Malta.svg | Martinique=BlasonMartinique.svg | Mauritius = Insigne Mauritiae.svg | Mayotte = BlasonMayotte.svg | Mexico=Coat of arms of Mexico.svg | Moldova=Arms of Moldova.svg | Monaco=Blason pays Monaco.svg | Montenegro=Arms of Montenegro.svg | Montserrat=Coat of arms of Montserrat.svg | Morocco=Insigne Maroci.svg | Myanmar=Insigne Birmaniae.svg | Nagorno-Karabakh=Arms of Nagorno-Karabakh.svg | Namibia=Insigne Namibiae.svg | NATO=Coat of arms of the Chairman of the NATO Military Committee.svg | Nauru=Insigne Naurunum.svg | Netherlands=Royal Arms of the Netherlands.svg | New Zealand=Arms of New Zealand.svg | Nicaragua=Insigne Nicaraguae.svg | Niger = Insigne Nigritanum.svg | Nigeria = Insigne Nigeriae.svg | Norfolk Island = Insigne Insulae Norfolciae.svg | North Atlantic Treaty Organisation=Coat of arms of the Chairman of the NATO Military Committee.svg | North Macedonia=Coat of arms of North Macedonia.svg | Northern Cyprus=Arms of the Turkish Republic of Northern Cyprus.svg | Northern Ireland=NI shield.svg | Norway=Blason Norvège.svg | Pakistan=Arms of Pakistan.svg | Palestine=Insigne Palaestinae.svg | Panama=Insigne Panamae.svg | People's Republic of China=National Emblem of the People's Republic of China.svg | Peru=Insigne Peruviae.svg | Philippines=Arms of the Philippines.svg | Pitcairn Islands = Insigne Insularum Pitcairn.svg | Poland=Herb Polski.svg | Portugal=Shield of the Kingdom of Portugal (1481-1910).png | Puerto Rico = Insigne Portus divitis.svg | Republic of Macedonia=Coat of arms of North Macedonia.svg | Republic of the Congo = Insigne rei publicae Congensis.svg | Réunion=BlasonRéunion.svg | Romania=Coat of arms of Romania.svg | Russia=Coat of Arms of the Russian Federation.svg | Rwanda=Coat of arms of Rwanda.svg | Saba = Insigne Sabae.svg | Saba (island) = Insigne Sabae.svg | Saint Barthélemy=BlasonSaintBarthelemy.svg | Saint Kitts and Nevis=Insigne Sancti Christophori et Nivium.svg | Saint Lucia = Insigne Sanctae Luciae.svg | Collectivity of Saint Martin = Insigne Insulae Sancti Martini (Francia).svg | Saint Pierre and Miquelon=BlasonSaintPierreetMiquelon.svg | Saint Vincent and the Grenadines = Insigne Sancti Vincenti et Granatinae.svg | Saint-Denis, Seine-Saint-Denis=Blason_de_Saint-Denis.svg | Samoa = Insigne Samoae.svg | San Marino=Insigne Sancti Marini.svg | São Tomé and Príncipe = Insigne Insularum Sancti Thomae et Principis.png | Scotland=Royal Arms of the Kingdom of Scotland.svg | Senegal = Insigne Senegaliae.svg | Serbia=Coat of arms of Serbia small.svg | Seychelles = Insigne Insularum Seisellensium.svg | Sierra Leone = Insigne Montis Leonini.svg | Singapore=Blason Singapour.svg | Sint Eustatius = Insigne Insulae Eustathii.svg | Sint Maarten = Insigne Insulae Sancti Martini (Nederlandia).svg | Slovakia=Coat of arms of Slovakia.svg | Slovenia=Coat of arms of Slovenia.svg | Solomon Islands = Insigne Insularum Salomonis.svg | Somalia = Insigne Somaliae.svg <!--| South Africa=Insigne Africae australis.svg--> | South Georgia and the South Sandwich Islands = Insigne Georgiae Australis et Insularum Sandvich Australium.svg | South Ossetia=Coat of arms of South Ossetia.svg | South Sudan=Blason imaginaire de Guiron le Courtois.svg | Spain=Arms of Spain.svg | Sudan = Insigne Sudaniae.svg | Suriname = Insigne Surinamiae.svg | Swaziland = Insigne Swaziae.svg | Sweden=Shield of arms of Sweden.svg | Switzerland=Coat of Arms of Switzerland (Pantone).svg | Syria=Escutcheon of the Coat of arms of Syria true vector.svg | Tanzania = Insigne Tanzaniae.svg | Thailand=Emblem of Thailand.svg | The Gambia=Insigne Gambiae.svg | Timor-Leste=Shield Coat of arms of East Timor.png | Togo=Coat of arms of Togo.svg | Tonga=Insigne Tongae.svg | Transnistria=Coat of arms of Transnistria.svg | Trinidad and Tobago = Insigne Trinitatis et Tobaci.svg | Tunisia = Insigne Tunesiae.svg | Turks and Caicos Islands=Coat of arms of the Turks and Caicos Islands.svg | Tuvalu=Insigne Tuvalum.svg | Uganda = Insigne Ugandae.svg | Ukraine=Lesser Coat of Arms of Ukraine.svg | United Arab Emirates=Arms of the United Arab Emirates.svg | United Kingdom=Arms of the United Kingdom.svg | United States=Coat of arms of the United States.svg | Uruguay=Insigne Uraquariae.svg | Uzbekistan = Emblem of Uzbekistan.svg | Vatican City=Coat of arms of Vatican City State - 2023 version.svg | Venezuela=Insigne Venetiolae.svg | Vietnam=Emblem of Vietnam.svg | Wallis and Futuna=Coat of arms of Wallis and Futuna.svg | Yemen = Insigne Iemeniae.svg | Zambia = Insigne Zambiae.svg | Zimbabwe = Insigne Zimbabuae.svg <!--- 2. HISTORICAL SOVEREIGN ENTITIES: ---> | Armenian Kingdom of Cilicia=Armoiries Héthoumides.svg | Armenian Principality of Cilicia=Armoiries Héthoumides.svg | Austria-Hungary=Wappen Österreich-Ungarn 1916 (Klein).png | Brandenburg-Prussia=POL Prusy książęce COA.svg | Brunswick-Lüneburg=Coat of Arms of Brunswick-Lüneburg.svg | Byzantium = Palaiologos-Dynasty-Eagle.svg | Byzantine = Palaiologos-Dynasty-Eagle.svg | Byzantine Empire = Palaiologos-Dynasty-Eagle.svg | County of Apulia=Blason sicile famille Hauteville.svg | Cilicia=Armoiries Héthoumides.svg | Czechoslovak Socialist Republic=Coat of arms of Czechoslovakia (1961-1989).svg | Duchy of Apulia=Blason sicile famille Hauteville.svg | Duchy of Brunswick-Lüneburg=Coat of Arms of Brunswick-Lüneburg.svg | Duchy of Carinthia = Kaernten shield CoA.svg | Duchy of Carniola = Carniola Arms.svg | Duchy of Normandy=Blason duche fr Normandie.svg | Duchy of Prussia=POL Prusy książęce COA.svg | Duchy of Saxe-Lauenburg = COA family de Sachsen-Lauenburg.svg | Duchy of Styria = Wappen Gemeinde Steyr.svg | Dutch Republic=Arms of the united provinces.svg | East Germany=Coat of arms of East Germany.svg | Electorate of Bavaria=Bayern-1.PNG | Electorate of Cologne=COA_Kurkoeln.svg | Electorate of Saxony=Blason Jean-Georges IV de Saxe.svg | Electoral Palatinate=Arms of the Palatinate (Bavaria-Palatinate).svg | Burgundian Netherlands=Arms of the Duke of Burgundy (1364-1404).svg | Duchy of Brabant=Royal Arms of Belgium.svg | France Ancient=Arms of the Kings of France (France Ancien).svg | France Modern=Arms of France (France Moderne).svg | First French Empire=Arms of the French Empire.svg | Second French Empire=Arms of the French Empire.svg | French Empire=Arms of the French Empire.svg | Austrian Netherlands=Coat of arms of the Austrian Netherlands.svg | French First Republic=Coat of arms of the French First Republic.svg | Free City of Lübeck=Wappen Lübeck (Alt).svg | German Empire=Wappen Deutsches Reich - Reichsadler 1889.svg | Holy Roman Empire=Generic Arms of the Holy Roman Emperor (after 1433).svg | Hungarian People's Republic=Coat of arms of Hungary (1957-1990).svg | Kingdom of Bohemia=Blason Boheme.svg | Kingdom of Cilicia=Armoiries Héthoumides.svg | Kingdom of England = Royal Arms of England (1198-1340).svg | Wales =Arms of Wales.svg | Kingdom of France=Insigne modernum Francum.svg | Kingdom of Galicia–Volhynia=Alex K Halych-Volhynia.svg | Kingdom of Greece=Coat of arms of Greece (1924–1935).svg | Kingdom of Hanover = Royal Arms of the Kingdom of Hanover.svg | Kingdom of Hungary=EU Member States' CoA Series- Hungary.svg | Kingdom of Italy=Blason duche fr Savoie.svg | Kingdom of Scotland=Royal Arms of the Kingdom of Scotland.svg | Kingdom of Spain=Lesser Royal Arms of the Spanish Monarch (c.1504-1700).svg | Kingdom of Serbia=Royal Coat of arms of Serbia (1882–1918).svg | Kingdom of Württemberg = Blason Royaume de Wurtemberg.svg | Margraviate of Meissen = Wappen Landkreis Meissen.svg | Moldavia=Coat of arms of Moldavia.svg | Nassau=Wapen Nassauw.svg | Nazi Germany=Reichsadler der Deutsches Reich (1933–1945).svg | Papal States = CoA Pontifical States 02.svg | People's Republic of Bulgaria=Coat of arms of Bulgaria (1971-1990).svg | Polish-Lithuanian Commonwealth=COA polish king Jagellon.svg | Polish People's Republic = Coat of arms of Poland (1955-1980).svg | Principality of Brunswick-Wolfenbüttel=Wappen Brunswick-Wolfenbüttel.svg | Principality of Cilicia=Armoiries Héthoumides.svg | Prussia=Wappen Preußen.png | Revolutionary Serbia=FLAG_Topola.gif | Royal Prussia = COA_of_Prussia_(1466-1772)_Lob.svg | Russian Empire=Gerb rossii2.svg | Savoy=Blason duche fr Savoie.svg | Saxe-Lauenburg = COA family de Sachsen-Lauenburg.svg | Second Bulgarian Empire=Coat of arms of the Second Bulgarian Empire.svg | Silesia=Wappen Schlesiens.png | Socialist Republic of Romania=Coat of arms of the Socialist Republic of Romania.svg | South Baden=Coat of arms of Baden.svg | Soviet Union=State Emblem of the Soviet Union.svg | Swabia=Arms of Swabia.svg | Tzar Samuil=Tzar Samuil of Bulgaria coat of arms.jpg | United Kingdom (1801-1816)=Royal Arms of United Kingdom (1801-1816).svg | USSR=State Emblem of the Soviet Union.svg | Wallachia=Stema TR.png | West Germany=Coat of arms of Germany.svg | Württemberg-Hohenzollern=Wappen Wuerttemberg-Hohenzollern.svg | Württemberg-Baden=Wappen Wuerttemberg-Baden.svg | Yugoslavia=Lesser Coat of Arms of the Kingdom of Yugoslavia.png <!--- 3. CITIES: ---> | Aachen=Stadtwappen der kreisfreien Stadt Aachen.svg | Ajaccio=Blason ville fr Ajaccio.svg | Alfaz del Pi=Escudo de Alfàs del Pi (1965).svg | Algiers=Blason-alger.gif | Alicante=Arms of Alicante City.svg | Almaty=Coat of arms of Almaty.svg | Alsdorf=DEU Alsdorf COA.svg | Amiens=Blason fr ville Amiens.svg | Amsterdam=Insigne Amstelodamensis.svg | Anderlecht=Anderlecht.jpg | Angers=Blason d'Angers.svg | Ankara=Insigne Ancyrae.png | Ansbach=Wappen_von_Ansbach.svg | Antwerp=AntwerpenSchild.gif | Apeldoorn=Wapenapeldoorn.JPG | Aračinovo=Coat of arms of Aračinovo Municipality.svg | Arequipa=Arms of Arequipa.svg | Arkhangelsk=Coat of Arms of Arkhangelsk.svg | Asmara=Arms of Asmara.svg | Asunción=Escudo de Asunción (Paraguay).svg | Athens=Insigne Athenarum.svg | Auderghem=Auderghem.jpg | Augsburg=DEU Augsburg COA 1811.svg | Avignon=Blason ville fr Avignon (Vaucluse).svg | Baesweiler=DEU Baesweiler COA.svg | Baku=WP baku siegel.png | Banská Bystrica=Coat of Arms of Banská Bystrica.svg | Barcelona=Arms of Barcelona.svg | Bari=Bari-Stemma.png | Basel=Wappen Basel-Stadt matt.svg | Bassano del Grappa=Coat of arms of Bassano del Grappa.svg | Bassum=DEU Bassum COA.svg | Beirut=Arms of Beirut.svg | Belgrade=Insigne Belogradi.svg | Benidorm=Escut de Benidorm.svg | Berchem-Sainte-Agathe=Blason Berchem-Sainte-Agathe.svg | Bergen=Bergen komm.png | Bergisch Gladbach=DEU_Bergisch_Gladbach_COA.svg | Berlin=Country_symbol_of_Berlin_color.svg | Bern=Wappen Bern matt.svg | Berovo=Coat of arms of Berovo Municipality.svg | Besançon=Blason ville fr Besançon (Doubs).svg | Bielefeld=DEU Bielefeld COA.svg | Bilbao=Arms of Bilbao.svg | Birmingham=Arms of Birmingham.svg | Bochum=Stadtwappen der kreisfreien Stadt Bochum.svg | Bogotá=Bogota (escudo).svg | Bonn=Wappen-stadt-bonn.svg | Bordeaux=Arms of the city of Bordeaux (Gironde).svg | Bottrop=DEU_Bottrop_COA.svg | Bradford=Coat of arms of Bradford City Council.png | Brasília=Brasão do Distrito Federal (Brasil).svg | Bratislava=Coat of Arms of Bratislava.svg | Braunschweig=DEU Braunschweig COA.svg | Breda=Breda Wappen klein.PNG | Bremen (state)=Bremen Wappen(Mittel).svg | Bremen=Bremen Wappen.svg | Bremerhaven=Wappen Bremerhaven.svg | Bristol=Bristol arms cropped.jpg | Brno=Brno (znak).svg | Brussels=Coat of Arms of Brussels.svg | Bucharest=Arms of Bucharest.svg | Budapest=Insigne Budapestini.svg | Buenos Aires=Escudo de la Ciudad de Buenos Aires.png | Burgas=Coat of arms of Burgas.svg | Bydgoszcz=POL Bydgoszcz COA.svg | Caen=Blason ville fr Caen (Calvados)2.svg | Čair=Coat of arms of Čair Municipality.svg | Cali=Escudo de Santiago de Cali.svg | Cape Town=Capetown coa.jpg | Caracas=Caracas escudo.svg | Cardiff=Cardiffcoatofarms.JPG | Cesenatico=Cesenatico stemma.png | Češinovo-Obleševo=Coat of arms of Češinovo-Obleševo Municipality.svg | Châlons-en-Champagne=Blason Chalons-en-Champagne.svg | Charleroi=Héraldique Ville BE Charleroi.svg | Chemnitz=Coat of arms of Chemnitz.svg | Chicago=Coat of arms of Chicago.svg | City of Brussels=Coat of Arms of Brussels.svg | City of London=Insigne Loninii.svg<!-- This coat of arms is only for the [[City of London]], not [[London]] more generally. --> | Luxembourg City= | Ciudad Juárez=Arms of Ciudad Juárez.svg | Clermont-Ferrand=Blason ville fr ClermontFerrand (PuyDome).svg | Cluj-Napoca=ROU CJ Cluj-Napoca CoA.png | Cologne=Wappen Koeln.svg | Copenhagen=Coat of arms of Copenhagen.svg | Córdoba=COA Córdoba, Spain.svg | Cottbus=Wappen Cottbus.png | County of Provence=Armoiries Provence.svg | Coventry=Coat of arms of Coventry City Council.png | Coyoacán=Escudo Villa de Coyoacan.svg | Čučer Sandevo=Čučer Sandevo grb so boi.JPG | Cusco=Arms of Cusco.svg | Darmstadt=Kleines Stadtwappen Darmstadt.svg | Delčevo=Coat of arms of Delčevo Municipality.svg | Deuil-la-Barre=Blason ville fr Deuil-la-Barre(Val-d'Oise).svg | Dijon=Blason Dijon-(LdH).svg | Dojran=Coat of arms of Dojran Municipality.svg | Dolneni=Coat of arms of Dolneni Municipality.svg | Dortmund=Coat of arms of Dortmund.svg | Drammen=Drammen komm.svg | Dresden=Dresden Stadtwappen.svg | Dublin=Insigne Eblanae.svg | Duisburg=Stadtwappen der Stadt Duisburg.svg | Düsseldorf=Wappen der Landeshauptstadt Duesseldorf.svg | East Berlin=Coat of arms of Berlin (1935).svg | Edinburgh=Arms of Edinburgh.png | Erfurt=Wappen Erfurt.svg | Erlangen=Erlangen.jpg | Esch-sur-Alzette=Coat of arms esch alzette luxbrg.png | Eschweiler=DEU Eschweiler COA.svg | Essen=DEU Essen COA.svg | Etterbeek=Coat of arms of Etterbeek.svg | Evere=Evere-Blason-1828.png | Fellbach=Wappen Fellbach.svg | Florence=FlorenceCoA.svg | Forest=Armoiries Forest.png | Frankfurt=Insigne Francofurti.svg | Frankfurt am Main=Insigne Francofurti.svg | Freiburg im Breisgau=Wappen Freiburg im Breisgau.svg | Fresnay-sur-Sarthe=Blason Fresnay sur Sarthe.svg | Fürth=Wappen Fürth.svg | Ganshoren=Ganshorenwapen.gif | Gdańsk=Gdansk COA.svg | Gdynia=POL Gdynia COA.svg | Gelsenkirchen=DEU Gelsenkirchen COA.svg | Geneva=Wappen Genf matt.svg | Genoa=Insigne Mediolani.svg | Ghent=Blason ville be Gand (Flandre-Orientale).svg | Glasgow=Glasgow Coat of Arms.png | Gostivar=Coat of arms of Gostivar Municipality.svg | Gothenburg=Göteborg vapen.svg | Göttingen=Stadtwappen Goettingen.PNG | Grodno=Coat of arms of Hrodna.svg <!-- | Groningen=Escudo de Groniga 1581.svg --> | Guadalajara=Arms of Guadalajara.svg | Guatemala City=Escudo de Armas Ciudad de Guatemala.jpg | Hagen=Stadtwappen der Stadt Hagen.svg | Halle (Saale)=Coat of arms of Halle (Saale).svg | Hamburg=Coat of arms of Hamburg.svg | Hamm=Wappen Hamm.svg | Hanover=Coat of arms of Hannover.svg | Havana=Arms of the City of Havana Cuba.png | Heidelberg=Wappen Heidelberg.svg | Heilbronn=Wappen Heilbronn.svg | Helsinki=Helsinki.vaakuna.svg | Heraklion=Seal of Heraklion.svg | Herceg Novi=Grb HN.svg | Herne, Germany=Herne Coat of Arms.svg | Herzogenrath=DEU Herzogenrath COA.svg | Hildesheim=Wappen Hildesheim.svg | Hole=Hole komm.svg | Ilinden=Coat of arms of Ilinden Municipality, Macedonia.svg | Ingolstadt=Wappen Ingolstadt alt.svg | Ivano-Frankivsk=Ivano-Frankivsk coa.gif | Ixelles=Coat of arms of Ixelles.svg | Jakarta=Coat of arms of Jakarta.svg | Jena=Wappen Jena.png | Jette=Armoiries Jette.png | Kaliningrad=Kgd gerb.png | Kallithea= Emblem of Kallithea.svg | Karlsruhe=Coat of arms de-bw Karlsruhe.svg | Karposh=Coat of arms of Karpoš Municipality.svg | Kassel=Coat of arms of Kassel.svg | Katowice=Katowice Herb.svg | Kaunas=KNS Coa.svg | Kazan=Coat of Arms of Kazan (Tatarstan) (2004).png | Kemi=Kemi.vaakuna.svg | Kiel=Wappen Kiel.svg | Kiev=COA of Kyiv Kurovskyi.svg | Kyiv=COA of Kyiv Kurovskyi.svg | Kisela Voda=Coat of arms of Kisela Voda Municipality (2015).svg | Koblenz=Wappen Koblenz.svg | Kočani=Coat of arms of Kočani Municipality.svg | Koekelberg=Coat of arms of Koekelberg (escutcheon).svg | Kostroma=Coat of Arms of Kostroma.svg | Košice=Coat of Arms of Košice.svg | Kotka=Kotka.vaakuna.svg | Kraków=PB Kraków CoA.png | Kratovo=Coat of arms of Kratovo Municipality.svg | Krefeld=DEU Krefeld COA.svg | Kriva Palanka=Coat of arms of Kriva Palanka Municipality.svg | Kryvyi Rih=Ua Kr Rig g.gif | Kumanovo=Coat of arms of Kumanovo Municipality.svg | La Paz=Coat of arms of La Paz.png | Las Palmas=Arms of Las Palmas de Gran Canaria.svg | Leeds=Leeds Bridge arms MF.jpg | Leicester=Leicester CoA.png | Leipzig=Coat of arms of Leipzig.svg | Leverkusen=DEU Leverkusen COA.svg | Liège=Blason liege.svg | Lille=Blason ville fr Lille (Nord).svg | Lima=Coat of arms of Lima.svg | Limoges=Heraldique blason ville fr Limoges.svg | Lipkovo=Coat of arms of Lipkovo Municipality.jpg | Lisbon=Insigne Olipsionis.svg | Liverpool=Coat of arms of Liverpool City Council.png | Ljubljana=Insigne Aemonae.svg | Łódź=POL Łódź COA.svg | London=Insigne Loninii.svg | Los Angeles=Arms of Seal of Los Angeles, California.svg | Lübeck=Wappen Lübeck (Alt).svg | Lublin=POL Lublin COA 1.svg | Lubumbashi=Lubumbashi coat of arms.svg | Ludwigshafen am Rhein=DEU Ludwigshafen COA.svg | Luleå=Luleå vapen.svg | Luxembourg (city)= | Lyon=Blason Ville fr Lyon.svg | Maastricht=Blason ville nl Maastricht(Limburg).svg | Madrid=Arms of Madrid City.svg | Magdeburg=Wappen Magdeburg.svg | Mainz=Coat of arms of Mainz-2008 new.svg | Makedonska Kamenica=Coat of arms of Makedonska Kamenica Municipality.svg | Makedonski Brod=Coat of arms of Makedonski Brod Municipality (2012).svg | Málaga=Escudo de Málaga.svg | Malmö=Malmö vapen.svg | Managua=Arms of Managua.svg | Manchester=Coat of arms of Manchester City Council.png | Manila=Arms of the Seal of Manila, Philippines.svg | Mannheim=Wappen Mannheim.svg | Marseille=Blason Marseille.svg | Mazarrón=Escudo de Mazarrón.svg | Metz=Blason Metz 57.svg | Mexico City=Coat of arms of Mexican Federal District.svg | Milan=Milano-Stemma 2.svg | Minsk=Coat of arms of Minsk.svg | Mirandela=MDL1.png | Moers=DEU Moers COA.svg | Molenbeek-Saint-Jean=Saint-Jean-de-Molenbeek.jpg | Mönchengladbach=DEU_Moenchengladbach_COA.svg | Mondorf-les-Bains=Coat of arms mondorf les bains luxbrg.png | Monschau=DEU Monschau COA.svg | Montevideo=Arms of Montevideo.svg | Montpellier=Blason ville fr Montpellier.svg | Montreal=Blason ville ca Montreal (Quebec).svg | Moscow=Coat of Arms of Moscow.svg | Mülheim an der Ruhr=DEU Muelheim an der Ruhr COA.svg | Munich=Muenchen Kleines Stadtwappen.svg | Münster=Wappen Münster Westfalen.svg | Murmansk=RUS Murmansk COA.svg | Nancy, France=Blason Nancy 54.svg | Nantes=Blason Nantes.svg | Naples=CoA Città di Napoli 2.svg | Naumburg (Saale)=Stadtwappen Naumburg (Saale).svg | Neuss=DEU Neuss COA.svg | New York City=Arms of New York City.svg | Nice=Nice Arms.svg | Nicosia =Coat of Arms of Nicosia.svg | Nicosia, Sicily=Arms of Nicosia, Sicily.svg | Nitra=Coat of Arms of Nitra.svg | Nizhny Novgorod=Coat of arms Nizhny Novgorod.png | Norberg Municipality=Norberg vapen.svg | Novosibirsk=Coat of Arms of Novosibirsk.svg | Nuremberg=DEU Nürnberg COA (klein).svg | Nuuk=Nuuk Coat of Arms.gif | Oberhausen=DEU Oberhausen COA.svg | Oberwart=Coat of arms of Oberwart.svg | Odessa=Arms of Odessa.svg | Offenbach am Main=Wappen Offenbach am Main.svg | Oldenburg=Wappen oldenburg.png | Omsk=Omsk coat of arms 2014.png | Orléans=Blason Orléans.svg | Oslo=Insigne Anslogae.svg | Osnabrück=Osnabrück Wappen.svg | Ostrava=Ostrava CoA CZ.svg | Paderborn=DEU_Paderborn_COA.svg | Padua=Insigne Mediolani.svg | Palaio Faliro=Palaio Faliro Emblem.svg | Palermo=Palermo-Stemma da Il blasone in Sicilia (Tav 82).png | Palma de Mallorca=Blasó de Mallorca.png | Panama City=Arms of Panama City.svg | Paris=Insigne Lutetiae.svg | Parma=Coat of arms of Parma.svg | Pas-de-Calais=Pas de Calais Arms.svg | Patras= Emblem of Patra.svg | Pehčevo=Coat of arms of Pehčevo Municipality.svg | Pforzheim=Wappen Pforzheim.svg | Piraeus= Seal of Peiraeus.svg | Pisa=Shield of the Republic of Pisa.svg | Pleven=Pleven-coat-of-arms.svg | Plovdiv=Plovdiv-coat-of-arms.svg | Plzeň=Plzen small CoA.png | Podgorica=Insigne Birziminii.svg | Poitiers=Blason ville fr Poitiers (Vienne).svg | Porto=PRT.png | Potsdam=Coat of arms of Potsdam.svg | Poznań=Poznan-herb-old.gif | Prague=Insigne Pragae.svg | Prešov=Coat of Arms of Prešov.svg | Prilep=Coat of arms of Prilep Municipality.svg | Probištip|Coat of arms of Probištip Municipality.svg | Quetzaltenango=Coat of arms of Quetzaltenango.svg | Quito=Escudo de Quito.svg | Rabat=Arms of Rabat.png | Rankovce=Coat of arms of Rankovce Municipality.svg | Recklinghausen=DEU Recklinghausen COA.svg | Regensburg=Wappen Regensburg.svg | Reims=Blason Reims 51.svg | Remich=Remich coat of arms.png | Remscheid=DEU Remscheid COA.svg | Rennes=Blason Rennes.svg | Reutlingen=Wappen Stadt Reutlingen.svg | Reykjavík=Reykjavik Coat of Arms.svg | Riga=Insigne Rigae.svg | Rio de Janeiro=Arms of Rio de Janeiro.svg | Roetgen=DEU Roetgen COA.svg | Rome=Insigne Romanum.svg | Rosh HaAyin=Coat of arms of Rosh HaAyin.png | Rosoman=Coat of arms of Rosoman Municipality.svg | Rostock=Rostock Wappen.svg | Rotterdam =Rotterdam wapen klein.svg | Rouen=Blason Rouen 76.svg | Saarbrücken=DEU Saarbruecken COA.svg | Saint Petersburg=Coat of Arms of St Petersburg (1780).png | Saint-Étienne-du-Rouvray=Blason Saint-étienne-du-Rouvray.svg | Saint-Gilles=Coat of arms of Saint-Gilles.svg | Saint-Josse-ten-Noode=Coat of arm Municipality be Saint-Josse-ten-Noode.svg | Saint-Quentin-Fallavier=Blason ville fr Saint-Quentin-Fallavier 38.svg | Salzburg=Wappen at salzburg stadt.png | Salzgitter=Coat of arms of Salzgitter.svg | Samara=Coat of Arms of Samara (Samara oblast).png | San José=Blason Ville cr San-Jose.svg | San Juan=Arms of San Juan.svg | San Miguel, El Salvador=Escudo de la ciudad de San miguel.gif | Santiago=Arms of Santiago.svg | Santo Domingo=Arms of Santo Domingo.svg | São Paulo=Arms of São Paulo.svg | Saraj=Coat of arms of Saraj Municipality.svg | Sarajevo=Coat of arms of Sarajevo.svg | Schaerbeek=Blason Schaerbeek.svg | Schwerin=Wappen Schwerin.svg | Sevastopol=Sevastopol-COA.png | Seville=Arms of Seville.svg | Sheffield=Coat of arms of Sheffield City Council.png | Siegen=Wappen Siegen.svg | Siena=Stemma Repubblica di Siena.svg | Simmerath=DEU Simmerath COA.svg | Sint-Jans-Molenbeek=Blason Molenbeek Saint Jean.svg | Skopje=Insigne Scopiae.svg | Sofia=Insigne Serdicae.svg | Solingen=Solingen wappen.svg | Staro Nagoričane=Coat of arms of Staro Nagoričane.svg | Štip=Coat of arms of Štip Municipality.svg | Stockholm=Insigne Holmiae.svg | Stolberg (Rhineland)=DEU Stolberg (Rhld) COA.svg | Stralsund=DEU Stralsund COA.svg | Strasbourg=Insigne Argentorati.svg | Strumica=Coat of arms of Strumica Municipality.svg | Stuttgart=Coat of arms of Stuttgart.svg | Šuto Orizari=Coat of arms of Šuto Orizari Municipality.svg | Sydney=Arms of Sydney.svg | Syracuse=Coat of arms of Syracuse.svg | Szczecin=POL Szczecin COA.svg | Szeged=Szeged COA.png | Tallinn=Coat of arms of Tallinn.svg | Tangerang=Lambang Kota Tangerang.png | Tegucigalpa=Arms of Tegucigalpa.svg | Tel Aviv=Arms of Tel Aviv.svg | Telšiai=Telsiai COA.gif | The Hague=Blason Ville La Haye.svg | Thessaloniki= Thessaloniki seal.svg | Tilburg=Coat of arms of Tilburg.png | Timișoara=ROU TM Timisoara CoA1.png | Tirana=Insigne Tyranae.svg | Toledo=Escudo de Toledo.svg | Toronto=Arms of Toronto.svg | Tórshavn=Coat of arms of Tórshavn.svg | Toulouse=Blason ville fr Toulouse (Haute-Garonne).svg | Tours=Blason tours 37.svg | Trelleborg=Trelleborg vapen.svg | Trenčín=Coat of Arms of Trenčín.svg | Trier=Coat_of_arms_of_Trier.svg | Trieste=Free Territory of Trieste coat of arms.svg | Trnava=Coat of Arms of Trnava.svg | Trollhättan=Trollhättan vapen.svg | Tromso=Tromsø komm.svg | Turin=Insigne Augustae Taurinorum.svg | Uccle=Uccle Blason.png | Ulm=Coat of arms of Ulm.svg | Vaduz=Vaduz.png | Valence=Blason ville fr Valence (Drome).png | Valencia=Arms of the Pyrénées-Orientales.svg | Valenciennes=Blason valenciennes.svg | Valladolid=Coat of Arms of Valladolid.svg | Valletta=Insigne Valettae.svg | Vantaa=Vantaa.vaakuna.svg | Varna=Gerb varna.jpg | Veles=Coat of arms of Veles Municipality.svg | Veliko Tarnovo=Veliko-Tarnovo-coat-of-arms.svg | Venice=StemmaVene.PNG | Vienna=Insigne Vindobonae.svg | Vigo=Arms of Vigo.svg | Vilnius=Coat of arms of Vilnius Gold.png | Vinica=Coat of arms of Vinica Municipality.png | Volgograd=Coat of Arms of Volgograd.png | Wakefield=Coat of arms of Wakefield City Council.png | Warsaw=Insigne Varsoviae.svg | Washington, D.C.=COA George Washington.svg | Watermael-Boitsfort=Watermaalbosvoordewapen.gif | Wiesbaden=Wappen_Wiesbaden.svg | Windhoek=Wappen Windhuk - Namibia.jpg | Winnipeg=Blason ville ca Winnipeg (Manitoba).svg | Wirral=Coat of arms of Wirral Metropolitan Borough Council.png | Wolfsburg=Wappen Wolfsburg.svg | Woluwe-Saint-Lambert=Coat of arms of Woluwe-Saint-Pierre.svg | Woluwe-Saint-Pierre=Greater Coat of arms Woluwe-Saint-Pierre.svg | Wrocław=Herb wroclaw.svg | Wuppertal=DEU Wuppertal COA.svg | Würselen=DEU Würselen COA.svg | Würzburg=Wappen von Wuerzburg.svg | Yekaterinburg=Coat of Arms of Yekaterinburg (Sverdlovsk oblast).svg | Yerevan=Yerevan seal.png | Zagreb=Insigne Zagrabiae.svg | Zaragoza=Escudo municipal de Zaragoza.svg | Zevenaar=Arms of Zevenaar.svg | Zrnovci=Coat of arms of Zrnovci Municipality.jpg | Žilina=Coat of Arms of Žilina.svg <!-- | Cluj-Napoca=ROU CJ Cluj-Napoca CoA.png Deleted from commons 2 June 2015 --> <!-- Deleted file: | Macclesfield=Arms of Macclesfield.svg --> <!-- Deleted file: | San Salvador=Escudo San Salvador.jpg --> <!-- Non-existing file: | Arlington County, Virginia=ArlingtonCountySeal.png --> <!-- Non-free file: | Gaza=Gaza coat.png --> <!-- Non-free file: | Kinshasa=Kinshasa arms.jpg --> <!--- 4. SUB-NATIONAL REGIONS ---> <!--- 4.alb ALBANIA ---> <!--- 4.alb.1 ALBANIAN COUNTIES [QARQE]: ---> | Shkodër County=Stema e Qarkut Shkodër.svg <!--- 4.aut AUSTRIA ---> <!--- 4.aut.1 AUSTRIAN STATES [LÄNDER]: ---> | Burgenland=Burgenland Wappen.svg | Carinthia=Kaernten CoA.svg | Lower Austria=Niederösterreich CoA.svg <!-- | Salzburg=Salzburg Wappen.svg --> | Styria=Steiermark Wappen.svg | Tyrol=AUT Tirol COA.svg | Upper Austria=Oberoesterreich Wappen.svg <!-- | Vienna=Wien 3 Wappen.svg --> | Vorarlberg=Voraralberg Wappen.svg <!--- 4.bel BELGIUM ---> <!--- 4.bel.1 BELGIAN REGIONS: ---> <!--- 4.bel.2 BELGIAN PROVINCES: ---> | Antwerp (province)=Coat of arms of Antwerp.svg | East Flanders=Wapen van Oost-Vlaanderen.svg | Flemish Brabant=Coat of arms of Flemish Brabant.svg | Hainaut (province)=Hainaut Modern Arms.svg | Liège (province)=Armoiries Principauté de Liège.svg | Limburg (Belgium)=Blason Limburg province Belgique.svg | Luxembourg (Belgium)=Armoiries Luxembourg province.svg | Namur (province)=Blason namur prov.svg | Walloon Brabant=Coat of arms of Walloon Brabant.svg | West Flanders=Klein wapen van West-Vlaanderen.svg <!--- 4.chi CHILE ---> <!--- 4.chi.1 CHILEAN REGIONS AND AUTONOMOUS TERRITORIES: ---> | Easter Island=Emblem of Easter Island.svg <!--- 4.cze CZECH REPUBLIC ---> <!--- 4.cze.1 CZECH REGIONS [KRAJE]: ---> | Central Bohemian Region=Central Bohemian Region CoA CZ.svg | South Bohemian Region=South Bohemian Region CoA CZ.svg | Plzeň Region=Plzen Region CoA CZ.svg | Karlovy Vary Region=Karlovy Vary Region CoA CZ.svg | Ústí nad Labem Region=Usti nad Labem Region CoA CZ.svg | Liberec Region=Liberec Region CoA CZ.svg | Hradec Králové Region=Hradec Kralove Region CoA CZ.svg | Pardubice Region=Pardubice Region CoA CZ.svg | Olomouc Region=Olomouc Region CoA CZ.svg | Moravian-Silesian Region=Moravian-Silesian Region CoA CZ.svg | South Moravian Region=South Moravian Region CoA CZ.svg | Zlín Region=Zlin Region CoA CZ.svg | Vysočina Region=Vysocina Region CoA CZ.svg <!--- IRELAND ---> |Connacht=Coat of arms of Connacht.svg |Leinster=Coat of arms of Leinster.svg |Munster=Coat of arms of Munster.svg |Ulster=Coat of arms of Ulster.svg <!--- 4.esp SPAIN ---> <!--- 4.esp.1 SPANISH AUTONOMOUS COMMUNITIES and CITIES [COMUNIDADES y CIUDADES AUTÓNOMAS]: ---> | Andalusia=Escudo heráldico de Andalucía.svg | Aragon=Shield of Aragon.svg | Asturias=Arms of Asturias.svg | Balearic Islands=Balearic Islands Arms.svg | Basque Country=Arms of the Basque Country.svg | Canary Islands=Arms of the Canary Islands.svg | Cantabria=Arms of Cantabria.svg | Castile–La Mancha=Arms of Castile-La Mancha.svg | Castile and León=Arms of Castile and Leon.svg | Catalonia=Arms of the Former Crown of Aragon-Coat of Arms of Spain Template.svg | Extremadura=Arms of Extremadura.svg | Galicia=Arms of Galicia (Spain).svg | La Rioja=Arms of La Rioja (Spain).svg | Community of Madrid=Arms of the Community of Madrid.svg | Murcia=Arms of the Spanish Region of Murcia.svg | Navarre=Arms of Navarre-Coat of Arms of Spain Template.svg | Valencian Community=Arms of the Former Crown of Aragon-Coat of Arms of Spain Template.svg | Ceuta=Arms of Ceuta.svg | Melilla=Arms of Melilla.svg <!--- 4.est ESTONIA ---> <!--- 4.est.1 ESTONIAN COUNTIES [MAAKONNAD]: ---> |Harju County=Et-Harju maakond-coa.svg |Hiiu County=Hiiumaa_vapp.svg |Ida-Viru County=Ida-Virumaa_vapp.svg |Jõgeva County=Jõgevamaa_vapp.svg |Järva County=Et-Järva_maakond-coa.svg |Lääne County=Läänemaa_vapp.svg |Lääne-Viru County=Lääne-Virumaa_vapp.svg |Põlva County=Põlvamaa_vapp.svg |Pärnu County=Et-Pärnu_maakond-coa.svg |Rapla County=Raplamaa_vapp.svg |Saare County=Saaremaa_vapp.svg |Tartu County=Tartumaa_vapp.svg |Valga County=Valgamaa_vapp.svg |Viljandi County=Viljandimaa_vapp.svg |Võru County=Võrumaa vapp.svg <!--- 4.est.2 ESTONIAN MUNICIPALITIES ---> |Alutaguse Parish=Alutaguse_valla_vapp.svg |Anija Parish=Anija_valla_vapp.svg |Antsla Parish=Antsla_valla_vapp.svg |Elva Parish=Elva_valla_vapp.svg |Haapsalu=Haapsalu_vapp.svg |Haljala Parish=Haljala_valla_vapp.svg |Harku Parish=Harku_valla_vapp.svg |Hiiumaa Parish=Coat_of_arms_of_Hiiumaa_Parish.svg |Häädemeeste Parish=Häädemeeste_valla_vapp.svg |Järva Parish=Järva_valla_vapp.svg |Jõelähtme Parish=Jõelähtme_valla_vapp.svg |Jõgeva Parish=Jõgeva_valla_vapp.svg |Jõhvi Parish=Jõhvi_valla_vapp.svg |Kadrina Parish=Kadrina_valla_vapp.svg |Kambja Parish=Kambja_valla_vapp_2020.svg |Kanepi Parish=Kanepi_valla_vapp.svg |Kastre Parish=Kastre_valla_vapp.svg |Kehtna Parish=Kehtna_valla_vapp.svg |Keila=Keila_vapp.svg |Kihnu Parish=Kihnu_vapp.svg |Kiili Parish=Kiili_coat_of_arms.svg |Kohila Parish=Kohila_valla_vapp.svg |Kohtla-Järve=Coat of arms of Kohtla-Jarve.svg |Kose Parish=Kose_valla_vapp.svg |Kuusalu Parish=Kuusalu_Parish_coat_of_arms.svg |Loksa=Loksa_vapp.svg |Luunja Parish=Luunja_valla_vapp.svg |Lääne-Harju Parish=Lääne-Harju_valla_vapp.svg |Lääne-Nigula Parish=Lääne-Nigula_valla_vapp.svg |Lääneranna Parish=Lääneranna_valla_vapp.svg |Lüganuse Parish=Lüganuse_valla_vapp.svg |Maardu=Maardu_vapp.svg |Muhu Parish=Muhu_Valla_vapp.svg |Mulgi Parish=Mulgi_valla_vapp.svg |Mustvee Parish=Mustvee_valla_vapp.svg |Märjamaa Parish=Märjamaa_Parish_Coat_of_Arms.svg |Narva-Jõesuu=Narva-Jõesuu_vapp.svg |Narva=Narva_vapp.svg |Nõo Parish=Nõo_valla_vapp.gif |Otepää Parish=Coat_of_arms_of_Otepää_Parish.svg |Paide=Paide_vapp.svg |Peipsiääre Parish=Peipsiääre_valla_vapp.svg |Pärnu=Et-Parnu_coa.svg |Põhja-Pärnumaa Parish=Põhja-Pärnumaa_valla_vapp.svg |Põhja-Sakala Parish=Suure-Jaani_valla_vapp.svg |Põltsamaa Parish=Põltsamaa_valla_vapp.svg |Põlva Parish=Põlva_valla_vapp.svg |Raasiku Parish=Raasiku_valla_vapp.svg |Rae Parish=Rae_valla_vapp.svg |Rakvere Parish=Rakvere_valla_vapp.svg |Rakvere=Rakvere_vapp.svg |Rapla Parish=Rapla_valla_vapp.svg |Ruhnu Parish=Ruhnu_valla_vapp.svg |Räpina Parish=Räpina_valla_vapp.svg |Rõuge Parish=Rõuge_valla_vapp.svg |Saarde Parish=Saarde_valla_vapp.svg |Saaremaa Parish=Saaremaa-valla-vapp.svg |Saku Parish=Saku_valla_vapp.svg |Saue Parish=Saue_valla_vapp.svg |Setomaa Parish=Setomaa_valla_vapp.svg |Sillamäe=Sillamäe_vapp.svg |Tallinn=Coat_of_arms_of_Tallinn_(small).svg |Tapa Parish=Tapa_valla_vapp_2017.svg |Tartu Parish=Tartu_valla_vapp.svg |Tartu=Tartu_coat_of_arms.svg |Toila Parish=Toila_valla_vapp.svg |Tori Parish=Tori_valla_vapp.svg |Tõrva Parish=Tõrva_valla_vapp.svg |Türi Parish=Türi_valla_vapp.svg |Valga Parish=Valga_valla_vapp.svg |Viimsi Parish=Viimsi_valla_vapp.svg |Viljandi Parish=Viljandi_valla_vapp.svg |Viljandi=Et-Viljandi_coa.svg |Vinni Parish=Vinni_valla_vapp.svg |Viru-Nigula Parish=Viru-Nigula_valla_vapp.svg |Vormsi Parish=VormsiParishCoatOfArms.svg |Väike-Maarja Parish=Väike-Maarja_valla_vapp.svg |Võru Parish=Võru_valla_vapp_2017.svg |Võru=Võru_vapp.svg <!--- 4.fin FINLAND ---> <!--- 4.fin.1 FINNISH REGIONS [MAAKUNTA]: ---> | Lapland (Finland)=Lapin maakunnan vaakuna.svg | Northern Ostrobothnia=Pohjois-Pohjanmaan vaakuna.svg | Kainuu=Kainuu.vaakuna.svg | North Karelia=Pohjois-Karjala.vaakuna.svg | Northern Savonia=Pohjois-Savo.vaakuna.svg | Southern Savonia=Etelä-Savo.vaakuna.svg | Southern Ostrobothnia=Etelä-Pohjanmaan maakunnan vaakuna.svg | Ostrobothnia (administrative region)=Pohjanmaan maakunnan vaakuna.svg | Pirkanmaa=Pirkanmaa.vaakuna.svg | Satakunta=Satakunta.vaakuna.svg | Central Ostrobothnia=Keski-Pohjanmaa.vaakuna.svg | Central Finland=Keski-Suomi Coat of Arms.svg | Southwest Finland=Varsinais-Suomen.vaakuna.svg | Finland Proper=Varsinais-Suomen.vaakuna.svg | South Karelia=Etelä-Karjala.vaakuna.svg | Päijänne Tavastia=Päijät-Häme.vaakuna.svg | Tavastia Proper=Kanta-Häme.vaakuna.svg | Uusimaa=Uusimaa.vaakuna.svg | Kymenlaakso=Kymenlaakson maakunnan vaakuna.svg | Åland=Coat of arms of Åland.svg <!--- 4.fra FRANCE ---> <!--- 4.fra.1 FRENCH REGIONS [RÉGIONS]: ---> | Brittany=COA fr BRE.svg | Centre=Blason_Centre.svg | Centre (French region)=Blason_Centre.svg | Corsica=Coat_of_Arms_of_Corsica.svg | Île-de-France=France moderne.svg | Île-de-France (region)=France moderne.svg | Pays de la Loire=Blason région fr Pays-de-la-Loire.svg | Provence-Alpes-Côte d'Azur=Blason région fr Provence-Alpes-Côte d'Azur.svg <!--- 4.ger GERMANY ---> <!--- 4.ger.1 GERMAN STATES [LÄNDER]: ---> | Lower Saxony=Coat of arms of Lower Saxony.svg | Free Hanseatic City of Bremen=Bremen Wappen.svg <!-- | Hamburg=Coat of arms of Hamburg.svg --> | Mecklenburg-Vorpommern=Coat of arms of Mecklenburg-Western Pomerania (great).svg | Saxony-Anhalt=Wappen Sachsen-Anhalt.svg | Saxony=Coat of arms of Saxony.svg | Brandenburg=Brandenburg Wappen.svg | Thuringia=Coat of arms of Thuringia.svg | Hesse=Coat of arms of Hesse.svg | North Rhine-Westphalia=Coat of arms of North Rhine-Westfalia.svg | Rhineland-Palatinate=Coat of arms of Rhineland-Palatinate.svg | Bavaria=Arms of the Free State of Bavaria.svg | Baden-Württemberg=Coat of arms of Baden-Württemberg (lesser).svg | Saarland=Wappen des Saarlands.svg | Schleswig-Holstein=DEU Schleswig-Holstein COA.svg <!--- 4.ina INDONESIA: ---> <!--- 4.ina.1 INDONESIAN PROVINCES [PROVINSI]: ---> | Aceh=Coat of arms of Aceh.svg | North Sumatra=Coat of arms of North Sumatra.svg | West Sumatra=Coat of arms of West Sumatra.svg | Riau=Coat of arms of Riau.svg | Riau Islands=Coat of arms of Riau Islands.png | Jambi=Coat of arms of Jambi.svg | South Sumatra=Coat of arms of South Sumatra.svg | Bangka Belitung Islands=Coat of arms of Bangka Belitung Islands.svg | Bengkulu=Coat of arms of Bengkulu.png | Lampung=Coat of arms of Lampung.svg | Banten=Coat of arms of Banten.png <!-- | Jakarta=Coat of arms of Jakarta.svg --> | West Java=Coat of arms of West Java.svg | Central Java=Coat of arms of Central Java.svg | Special Region of Yogyakarta=Coat of arms of Yogyakarta.svg | East Java=Coat of arms of East Java.svg | West Kalimantan=Coat of arms of West Kalimantan.svg | Central Kalimantan=Coat of arms of Central Kalimantan.png | South Kalimantan=Lambang Provinsi Kalimantan Selatan.gif | East Kalimantan=Coat of arms of East Kalimantan.svg | North Kalimantan=Emblem of North Kalimantan.png | Bali=Coat of arms of Bali.svg | West Nusa Tenggara=Coat of arms of West Nusa Tenggara.svg | East Nusa Tenggara=Coat of arms of East Nusa Tenggara.svg | West Sulawesi=Coat of arms of West Sulawesi.png | South Sulawesi=Coat of arms of South Sulawesi.svg | Central Sulawesi=Coat of arms of Central Sulawesi.png | Gorontalo=Coat of arms of Gorontalo.png | Southeast Sulawesi=Coat of arms of Southeast Sulawesi.svg | North Sulawesi=Coat of arms of North Sulawesi.svg | North Maluku=Coat of arms of North Maluku.png | Maluku=Coat of arms of Maluku.svg | West Papua=Coat of arms of West Papua.svg | Papua=Coat of arms of Papua 2.svg <!--- 4.ind INDIA ---> <!--- 4.ind INDIAN STATES and UNION TERRITORIES ---> | Tamil Nadu=TamilNadu Logo.svg | Uttar Pradesh = Seal of Uttar Pradesh.png <!--- 4.irl IRELAND ---> <!--- 4.irl.1 IRISH COUNTIES ---> |County Offaly=Offaly crest.svg <!--- Irish Provinces (all of these are already listed above) |Connacht=Coat of arms of Connacht.svg |Leinster=Coat of arms of Leinster.svg |Munster=Coat of arms of Munster.svg |Ulster=Coat of arms of Ulster.svg ---> <!--- 4.ita ITALY ---> <!--- 4.ita.1 ITALIAN REGIONS [REGIONI]: ---> | Abruzzo=Regione-Abruzzo-Stemma.svg | Aosta Valley=Valle d'Aosta-Stemma.svg | Apulia=Coat of Arms of Apulia.svg | Basilicata=Regione-Basilicata-Stemma.svg | Calabria=Coat of arms of Calabria.svg | Campania=Regione-Campania-Stemma.svg | Emilia-Romagna=Regione-Emilia-Romagna-Stemma.svg | Friuli Venezia Giulia | Friuli-Venezia Giulia=CoA of Friuli-Venezia Giulia.svg | Lazio=Lazio Coat of Arms.svg | Liguria=Coat of arms of Liguria.svg | Lombardy=Flag of Lombardy square.svg | Marche=Coat of arms of Marche.svg | Molise=Regione-Molise-Stemma.svg | Piedmont=Regione-Piemonte-Stemma.svg | Sardinia=Sardegna-Stemma.svg | Sicily=Coat of arms of Sicily.svg | Trentino-Alto Adige/Südtirol=Coat of arms of Trentino-South Tyrol.svg | Tuscany=Coat of arms of Tuscany.svg | Umbria=Regione-Umbria-Stemma.svg | Veneto=Coat of Arms of Veneto.png <!--- 4.ita.2 ITALIAN PROVINCES [PROVINCE]: ---> | Bolzano=Suedtirol CoA.svg | Reggio Calabria=Coat of Arms of the Province of Reggio-Calabria.svg <!-- Non-free file: | Bologna=Bologna-Stemma.png--> <!-- Non-free file: | Brescia=Brescia-Stemma.png --> | South Tyrol=Suedtirol CoA.svg | Trentino=Trentino CoA.svg | Trento=Trentino CoA.svg <!--- 4.lux LUXEMBOURG ---> <!--- 4.lux.1 LUXEMBOURGISH CANTONS [KANTOUNEN]: ---> | Remich (canton)=Remich (canton) coat of arms.png <!--- 4.mkd MACEDONIA ---> <!--- 4.mkd.1 MACEDONIAN STATISTICAL REGIONS [STATISTICHKI REGIONI]: ---> | Polog Statistical Region=Logo of Polog Region.svg | Pelagonia Statistical Region=Logo of Pelagonia Region.svg | Skopje Statistical Region=Logo of Skopje Region.svg | Southwestern Statistical Region=Logo of Southwestern Region, Macedonia.svg | Northeastern Statistical Region=Logo of Northeastern Region, Macedonia.svg | Vardar Statistical Region=Logo of Vardar Region.svg | Eastern Statistical Region=Logo of Eastern Region, Macedonia.svg <!--- 4.ned NETHERLANDS ---> <!--- 4.ned.1 DUTCH PROVINCES [PROVINCIES]: ---> | Drenthe=Drenthe wapen.svg | Flevoland=Flevoland wapen.svg | Friesland=Friesland wapen.svg | Gelderland=Gelderland wapen.svg | Groningen=Groningen coa.svg | Limburg=Limburg-nl-wapen.svg | North Brabant=Noord-Brabant wapen.svg | North Holland=Wapen van Noord-Holland.svg | Overijssel=Overijssel wapen.svg | South Holland=Zuid-holland wapen.svg | Utrecht=Utrecht provincie wapen.svg | Zeeland=Zeeland wapen.svg <!--- 4.nor NORWAY ---> <!--- 4.nor.1 NORWEGIAN COUNTIES [FYLKER]: ---> | Agder=Agder våpen.svg | Innlandet=Innlandet våpen.svg | Møre og Romsdal=Møre og Romsdal våpen.svg | Nordland=Nordland våpen.svg | Rogaland=Rogaland våpen.svg | Trøndelag=Trøndelag våpen.svg | Vestland=Vestland våpen.svg | Vestfold og Telemark=Vestfold og Telemark våpen.svg | Viken=Viken våpen.svg | Viken (county)=Viken våpen.svg | Troms og Finnmark=Coat of arms of Finnmark county and Troms county.svg <!--- 4.pol POLAND ---> <!--- 4.pol.1 POLISH VOIVODESHIPS [WOJEWÓDZTWA] ---> | West Pomeranian Voivodeship=POL województwo zachodniopomorskie COA.svg | Pomeranian Voivodeship=POL województwo pomorskie COA.svg | Warmian-Masurian Voivodeship=Warminsko-mazurskie herb.svg | Podlaskie Voivodeship=POL województwo podlaskie COA.svg | Lubusz Voivodeship=POL województwo lubuskie COA.svg | Greater Poland Voivodeship=POL województwo wielkopolskie COA.svg | Kuyavian-Pomeranian Voivodeship=POL województwo kujawsko-pomorskie COA.svg | Lower Silesian Voivodeship=POL województwo dolnośląskie COA.svg | Opole Voivodeship=POL województwo opolskie COA.svg | Silesian Voivodeship=POL_województwo_śląskie_COA.svg | Świętokrzyskie Voivodeship=POL wojewodztwo świętokrzyskie COA.svg | Łódź Voivodeship=POL województwo łódzkie COA.svg | Masovian Voivodeship=POL województwo mazowieckie COA.svg | Lublin Voivodeship=POL województwo lubelskie COA.svg | Lesser Poland Voivodeship=POL województwo małopolskie COA.svg | Subcarpathian Voivodeship=POL województwo podkarpackie COA.svg <!--- 4.rou ROMANIA ---> <!--- 4.rou.1 ROMANIAN COUNTIES [JUDEȚE]: ---> | Cluj County=Actual Cluj county CoA.png | Dolj County=Stema judetului Dolj.svg <!-- 4.rsa SOUTH AFRICA ---> <!-- 4.rsa.1 SOUTH AFRICAN PROVINCES: ---> | Gauteng=Gauteng arms.svg | Western Cape = Coat of arms of the Western Cape.png <!--- 4.sui SWITZERLAND ---> <!--- 4.sui.1 SWISS CANTONS: ---> | Canton of Bern=Wappen Bern matt.svg | Canton of Basel-Stadt=Wappen Basel-Stadt matt.svg | Basel-Stadt=Wappen Basel-Stadt matt.svg | Canton of Geneva=Wappen Genf matt.svg | Canton of Schaffhausen=Wappen Schaffhausen matt.svg | Schaffhausen=Wappen Schaffhausen matt.svg | Canton of Ticino=Wappen Tessin matt.svg | Canton of Vaud=Wappen Waadt matt.svg <!--- 4.svk SLOVAKIA ---> <!--- 4.svk.1 SLOVAK REGIONS [KRAJE]: ---> | Bratislava Region=Coat of Arms of Bratislava Region.svg | Trnava Region=Coat of Arms of Trnava Region.svg | Trenčín Region=Coat of Arms of Trenčín Region.svg | Nitra Region=Coat of Arms of Nitra Region.svg | Žilina Region=Coat of Arms of Žilina Region.svg | Banská Bystrica Region=Coat of Arms of Banská Bystrica Region.svg | Prešov Region=Coat of Arms of Prešov Region.svg | Košice Region=Coat of Arms of Košice Region.svg <!--- 4.swe SWEDEN ---> <!--- 4.swe.1 SWEDISH COUNTIES [LÄN]: ---> | Blekinge County=Blekinge vapen.svg | Dalarna County=Dalarna vapen.svg | Gävleborg County=Gävleborg län vapen.svg | Gotland County=Gotland vapen.svg | Halland County=Halland vapen.svg | Jämtland County=Jämtland län vapen.svg | Jönköping County=Jönköping län vapen.svg | Kalmar County=Kalmars läns vapen.svg | Kronoberg County=Kronoberg vapen.svg | Norrbotten County=Norrbotten län vapen.svg | Örebro County=Örebro län vapen.svg | Östergötland County=Östergötland vapen.svg | Skåne County=Skåne länsvapen - Riksarkivet Sverige.png | Södermanland County=Södermanlands vapen.svg | Stockholm County=Stockholm län vapen b.svg | Uppsala County=Uppland vapen.svg | Värmland County=Värmland vapen.svg | Västerbotten County=Västerbotten län vapen.svg | Västernorrland County=Västernorrland län vapen.svg | Västmanland County=Västmanland vapen.svg | Västra Götaland County=Västra Götalands läns vapen.svg <!--- 4.ukr UKRAINE ---> <!--- 4.ukr.1 UKRAINIAN OBLASTS [OBLASTI]: ---> | Volyn Oblast=Volyn coat of arms.svg | Rivne Oblast=Rivne Oblast coat of arms.svg | Zhytomyr Oblast=Coat of Arms of Zhytomyr Oblast.png | Kiev Oblast=Herb Kyivskoi oblasti 1.svg | Kyiv Oblast=Herb Kyivskoi oblasti 1.svg | Khmelnytskyi Oblast=Coat of Arms of Khmelnytskyi Oblast.svg | Ternopil Oblast=Coat of Arms of Ternopil Oblast.svg | Ivano-Frankivsk Oblast=Coat of Arms of Ivano-Frankivsk Oblast.svg | Zakarpattia Oblast=Karptska Ukraina-2 COA.svg | Chernivtsi Oblast=Coat of Arms of Chernivtsi Oblast .svg | Vinnytsia Oblast=Coat of Arms of Vinnytsa Oblast.svg | Cherkasy Oblast=Coat of Arms of Cherkasy Oblast .svg | Kirovohrad Oblast=Coat of Arms of Kirovohrad Oblast.svg | Mykolaiv Oblast=Coat of Arms of Mykolaiv Oblast.svg | Poltava Oblast=Coat of Arms of Poltava Oblast.svg | Chernihiv Oblast=Coat of Arms of Chernihiv Oblast.svg | Sumy Oblast=Coat_of_Arms_of_Sumy_Oblast.svg | Kharkiv Oblast=Kharkiv-town-herb.svg | Dnipropetrovsk Oblast=Herb Dnipropetrovskoyi oblasti.svg | Odessa Oblast=Coat of Arms of Odesa Oblast .svg | Odesa Oblast=Coat of Arms of Odesa Oblast .svg | Kherson Oblast=Coat of Arms of Kherson Oblast .svg | Zaporizhia Oblast=Coat of Arms of Zaporizhzhya Oblast.png | Zaporizhzhia Oblast=Coat of Arms of Zaporizhzhya Oblast.png | Donetsk Oblast=Lesser CoA of the Donets Basin (Spanish Shield).svg | Autonomous Republic of Crimea=Emblem of Crimea.svg | Luhansk Oblast=Coat of Arms Luhansk Oblast.svg | Lviv Oblast=Coat of Arms of Lviv Oblast.png <!--- 4.usa UNITED STATES of AMERICA ---> <!--- 4.usa.1 UNITED STATES of AMERICA STATES: ---> | Hawaii = Insigne Havaii.svg | Massachusetts = Coat of arms of Massachusetts.svg <!--- 5. HISTORICAL SUB-NATIONAL UNITS: ---> <!--- 5.cze CZECH LANDS: ---> | Bohemia=Small coat of arms of the Czech Republic.svg | Moravia=Znak Moravy.svg | Czech Silesia=Znak Slezska.svg <!--- 5.fr FRENCH REPUBLIC: ---> | Alsace=Blason région fr Alsace.svg | Aquitaine=Blason de l'Aquitaine et de la Guyenne.svg | Auvergne=Blason de l'Auvergne.svg | Auvergne (region)=Blason de l'Auvergne.svg | Basse-Normandie=Arms of William the Conqueror (1066-1087).svg | Lower Normandy=Arms of William the Conqueror (1066-1087).svg | Bourgogne=Blason fr Bourgogne.svg | Burgundy (French region)=Blason fr Bourgogne.svg | Champagne-Ardenne=Arms of the French Region of Champagne-Ardenne.svg | Franche-Comté=Blason fr Franche-Comté.svg | Haute-Normandie=Blason region fr Normandie.svg | Upper Normandy=Blason region fr Normandie.svg | Languedoc-Roussillon=Arms of the French Region of Languedoc-Roussillon.svg | Limousin=Blason région fr Limousin.svg | Limousin (region)=Blason région fr Limousin.svg | Lorraine=Blason Lorraine.svg | Lorraine (region)=Blason Lorraine.svg | Midi-Pyrénées=Blason_Languedoc.svg | Nord-Pas-de-Calais=Blason Nord-Pas-De-Calais.svg | Picardie=Blason_région_fr_Picardie.svg | Picardy=Blason_région_fr_Picardie.svg | Poitou-Charentes=Poitou-Charentes blason.svg | Rhône-Alpes=Blason Rhône-Alpes Gendarmerie.svg <!--- 5.hre HOLY ROMAN EMPIRE: ---> | Baden=Coat of arms of Baden.svg | Holstein=Holstein Arms.svg <!--- 5.kof KINGDOM of FRANCE: ---> | County of Flanders=Blason Nord-Pas-De-Calais.svg | Normandy=Blason duche fr Normandie.svg <!--- 5.kon KINGDOM of NORWAY: ---> | Akershus=Akershus våpen.svg | Aust-Agder=Aust-Agder vapen.svg | Buskerud=Buskerud våpen.svg | Finnmark=Finnmark våpen.svg | Hedmark=Hedmark våpen.svg | Hordaland=Hordaland vapen.svg | Nord-Trøndelag=Nord-Trøndelag våpen.svg | Oppland=Oppland våpen.svg | Sogn og Fjordane=Sogn og Fjordane våpen.svg | Sør-Trøndelag=Sør-Trøndelag våpen.svg | Telemark=Telemark våpen.svg | Troms=Troms våpen.svg | Vest-Agder=Vest-Agder våpen.svg | Vestfold=Vestfold våpen.svg | Østfold=Østfold våpen.svg <!--- 5.kop KINGDOM of PRUSSIA: ---> | Westphalia=Wappen des Landschaftsverbandes Westfalen-Lippe.svg <!--- 5.kos KINGDOM of SWEDEN: ---> | Scania=Skåne vapen.svg <!--- 5.sfry SOCIALIST FEDERAL REPUBLIC of YUGOSLAVIA: ---> | PR Macedonia=Coat of arms of the PR of Macedonia.svg <!--- 6. MILITARY and POLICE UNITS: ---> | Knights Templar=Crusades TF.JPG | Nordic Battle Group=Coat of Arms of the Nordic Battlegroup.svg | European Union Military Committee=Coat of arms of the European Union Military Committee.svg | European Union Military Staff=Coat of arms of the European Union Military Staff.svg | Teutonic Knights=Insignia Germany Order Teutonic.svg | European Corps=Coat of arms of Eurocorps.svg | European Rapid Operational Force=Coat of arms of Eurofor.svg | European Gendarmerie Force=Arms of the European Gendarmerie Force.svg | European Air Transport Command=Coat of arms of the European Air Transport Command.svg | European Air Group=Coat of arms of the European Air Group.svg | European Maritime Force=Coat of arms of Euromarfor.svg | Movement Coordination Centre Europe=Coat of arms of Movement Coordination Centre Europe.svg | Finabel=Arms of Finabel.svg | Army of the Republic of Macedonia=MacedonianArmyLogo.svg | Law enforcement in the Republic of Macedonia=Macedonian Police insignia.png | Supreme Headquarters Allied Powers Europe=Coat of arms of Supreme Headquarters Allied Powers Europe.svg | Chairman of the NATO Military Committee=Coat of arms of the Chairman of the NATO Military Committee.svg | Deputy Chairman of the NATO Military Committee=Coat of arms of the Deputy Chairman of the NATO Military Committee.svg | NATO Communication and Information Systems Group=Coat of arms of the NATO Communication and Information Systems Group.svg | International Military Staff=Coat of arms of the International Military Staff.svg | Allied Joint Force Command Brunssum=Coat of arms of Allied Joint Force Command Brunssum.svg | Allied Joint Force Command Naples=Coat of arms of Allied Joint Force Command Naples.svg | Allied Air Command=Coat of arms of the Allied Air Command.svg | Allied Land Command=Coat of arms of the Allied Land Command.svg | Allied Maritime Command=Coat of arms of the Allied Maritime Command.svg | Joint Warfare Centre=Coat of arms of the Joint Warfare Centre.svg | Joint Analysis and Lessons Learned Centre=Coat of arms of the Joint Analysis and Lessons Learned Centre.svg | Joint Force Training Centre=Coat of arms of the Joint Force Training Centre.svg <!--- 7. RELIGIOUS ENTITIES: ---> | Ecumenical Patriarch of Constantinople=Constantinople coat of arms.PNG | Serbian Orthodox Church=Coat of arms of Serbian Orthodox Church.png | Macedonian Orthodox Church=Coat of arms of the Macedonian Orthodox Church.svg <!--- 8. EDUCATIONAL ENTITIES: ---> | Keenan Hall=Keenan.svg | University of Notre Dame=Notre dame coat of arms.png <!--- 9. CORPORATE and ECONOMIC ENTITIES: ---> | International Monetary Fund=Coat of arms of the International Monetary Fund.svg <!--- 10. ETHNIC and TRIBAL GROUPS: ---> | Albanians=AlbanieWapen.svg | Macedonians=Macedonian lion, 1620, stylized.png <!--- 11. DEFAULT: ---> |#default=Insigne incognitum.svg }}<!--- --->|link={{{link|{{ #if: {{{text|}}}| {{{1}}}}}}}}|alt={{{link|{{ #if: {{{text|}}}| {{{1}}}}}}}}|{{ #if: {{{size|}}}| {{{size}}}|20px}}]]{{ #if: {{{text|}}}| {{#switch: {{{text}}} | none=|&nbsp;{{{text}}}}}|&nbsp;[[{{{1}}}{{ #if: {{{2|}}}|{{!}}{{{2}}}}}]]}}<noinclude>{{documentation}}</noinclude> o53twdho1xb9t61ua8924ibq991xpgo Template:Country data European Union 10 8185 72916 2022-04-18T01:09:30Z en>Paine Ellsworth 0 per edit request on talk page - remove shortname alias 72916 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = European Union | flag alias = Flag of Europe.svg | size = {{{size|}}} | name = {{{name|}}} <noinclude> | redir1 = EU | related1 = Europe </noinclude> }} irlx0dojs0bl6i4y45h5kh1hppscczb 72917 72916 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_European_Union]] 72916 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = European Union | flag alias = Flag of Europe.svg | size = {{{size|}}} | name = {{{name|}}} <noinclude> | redir1 = EU | related1 = Europe </noinclude> }} irlx0dojs0bl6i4y45h5kh1hppscczb Template:Country data Nepal 10 8186 72918 2025-10-04T02:39:10Z en>Paine Ellsworth 0 flag variants in chronological order 72918 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = Nepal | flag alias = Flag of Nepal.svg | flag alias-old = Flag of Nepal (1775–1962).svg | flag alias-1768 = Flag of Nepal (19th century).svg | flag alias-1856 = Flag of Nepal (1856-c.1930).svg | flag alias-1930 = Flag of Nepal (1743–1962).svg | flag alias-army = Flag of Nepal Army.jpg | link alias-army = Nepali Army | link alias-air force = Nepalese Army Air Service | link alias-military = Nepalese Armed Forces | border = | size = {{{size|}}} | size flag alias = 24x20px | size flag alias-old = 24x20px | size flag alias-1930 = 24x20px | size flag alias-1768 = 24px | size flag alias-1856 = 24x20px | sizebig flag alias = x27px | sizebig flag alias-old = x27px | sizebig flag alias-1930 = x27px | sizebig flag alias-1768 = x30px | sizebig flag alias-1856 = x27px | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = old | var2 = 1768 | var3 = 1856 | var4 = 1930 | redir1 = NPL | redir2 = NEP | redir3 = Federal Democratic Republic of Nepal </noinclude> }}<noinclude> <!-- INTERWIKIS GO TO WIKIDATA, THANK YOU! --> </noinclude> pngqyfx9117qlpc78upv3q2senlk782 72919 72918 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_Nepal]] 72918 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = Nepal | flag alias = Flag of Nepal.svg | flag alias-old = Flag of Nepal (1775–1962).svg | flag alias-1768 = Flag of Nepal (19th century).svg | flag alias-1856 = Flag of Nepal (1856-c.1930).svg | flag alias-1930 = Flag of Nepal (1743–1962).svg | flag alias-army = Flag of Nepal Army.jpg | link alias-army = Nepali Army | link alias-air force = Nepalese Army Air Service | link alias-military = Nepalese Armed Forces | border = | size = {{{size|}}} | size flag alias = 24x20px | size flag alias-old = 24x20px | size flag alias-1930 = 24x20px | size flag alias-1768 = 24px | size flag alias-1856 = 24x20px | sizebig flag alias = x27px | sizebig flag alias-old = x27px | sizebig flag alias-1930 = x27px | sizebig flag alias-1768 = x30px | sizebig flag alias-1856 = x27px | name = {{{name|}}} | altlink = {{{altlink|}}} | variant = {{{variant|}}} <noinclude> | var1 = old | var2 = 1768 | var3 = 1856 | var4 = 1930 | redir1 = NPL | redir2 = NEP | redir3 = Federal Democratic Republic of Nepal </noinclude> }}<noinclude> <!-- INTERWIKIS GO TO WIKIDATA, THANK YOU! --> </noinclude> pngqyfx9117qlpc78upv3q2senlk782 Template:Country data Canada 10 8187 72920 2025-06-17T01:04:10Z en>CommonsDelinker 0 Replacing Naval_Ensign_of_the_United_Kingdom.svg with [[File:Naval_ensign_of_the_United_Kingdom.svg]] (by [[commons:User:CommonsDelinker|CommonsDelinker]] because: [[:c:COM:FR|File renamed]]: [[:c:COM:FR#FR6|Criterion 6]]). 72920 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = Canada | flag alias = Flag of Canada (Pantone).svg | flag alias-1867-official = Flag of the United Kingdom.svg | flag alias-1868 = Canadian Red Ensign (1868–1921).svg | flag alias-1905 = Canadian Red Ensign (1905–1922).svg | flag alias-1907 = Canadian Red Ensign (1907–1921).png | flag alias-1921 = Canadian Red Ensign (1921–1957).svg | flag alias-1957 = Canadian Red Ensign (1957–1965).svg | flag alias-1964 = Flag of Canada (1964).svg | flag alias-1965 = Flag of Canada (WFB 2000).png | flag alias-2004 = Flag of Canada (WFB 2004).gif | flag alias-armed forces = Canadian Forces Flag.svg | link alias-armed forces = Canadian Armed Forces | flag alias-naval = Naval ensign of Canada.svg | link alias-naval = Royal Canadian Navy | flag alias-naval-1868 = Blue Ensign of Canada (1868–1921).svg | flag alias-naval-1911 = Naval ensign of the United Kingdom.svg | flag alias-naval-1921 = Canadian Blue Ensign (1921–1957).svg | flag alias-naval-1957 = Canadian Blue Ensign (1957–1965).svg | flag alias-naval-1965 = Flag of Canada (Pantone).svg | flag alias-coast guard = Coastguard Flag of Canada.svg | link alias-coast guard = Canadian Coast Guard | flag alias-air force = Royal Canadian Air Force ensign.svg | flag alias-air force-1924 = Ensign of the Royal Canadian Air Force.svg | link alias-air force = Royal Canadian Air Force | flag alias-army-1939 = Flag of the Canadian Army (1939–1944).svg | flag alias-army-1968 = Flag of the Canadian Army (1968–1998).svg | flag alias-army-1989 = Flag of the Canadian Army (1968–1998).svg | flag alias-army-2013 = Flag of the Canadian Army (2013–2016).svg | flag alias-army = Flag of the Canadian Army.svg | link alias-army = Canadian Army | flag alias-military = Flag of the Canadian Forces.svg | link alias-military = Canadian Armed Forces | flag alias-navy = Naval ensign of Canada.svg | link alias-navy = Royal Canadian Navy | link alias-football = Canada {{{mw|men's}}} national {{{age|}}} soccer team | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1867-official | var2 = 1868 | var3 = 1905 | var4 = 1907 | var5 = 1921 | var6 = 1957 | var7 = 1964 | var8 = 1965 | var9 = 2004 | var10 = naval-1868 | var11 = naval-1911 | var12 = naval-1921 | var13 = naval-1957 | var14= naval-1965 | var15 = air force-1924 | var16 = army-1939 | var17 = army-1968 | var18 = army-1989 | var19 = army-2013 | redir1 = CAN | redir2 = Province of Canada | redir3 = Dominion of Canada </noinclude> }} awr420gzn5jixr8celeebrtykx2b328 72921 72920 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_Canada]] 72920 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = Canada | flag alias = Flag of Canada (Pantone).svg | flag alias-1867-official = Flag of the United Kingdom.svg | flag alias-1868 = Canadian Red Ensign (1868–1921).svg | flag alias-1905 = Canadian Red Ensign (1905–1922).svg | flag alias-1907 = Canadian Red Ensign (1907–1921).png | flag alias-1921 = Canadian Red Ensign (1921–1957).svg | flag alias-1957 = Canadian Red Ensign (1957–1965).svg | flag alias-1964 = Flag of Canada (1964).svg | flag alias-1965 = Flag of Canada (WFB 2000).png | flag alias-2004 = Flag of Canada (WFB 2004).gif | flag alias-armed forces = Canadian Forces Flag.svg | link alias-armed forces = Canadian Armed Forces | flag alias-naval = Naval ensign of Canada.svg | link alias-naval = Royal Canadian Navy | flag alias-naval-1868 = Blue Ensign of Canada (1868–1921).svg | flag alias-naval-1911 = Naval ensign of the United Kingdom.svg | flag alias-naval-1921 = Canadian Blue Ensign (1921–1957).svg | flag alias-naval-1957 = Canadian Blue Ensign (1957–1965).svg | flag alias-naval-1965 = Flag of Canada (Pantone).svg | flag alias-coast guard = Coastguard Flag of Canada.svg | link alias-coast guard = Canadian Coast Guard | flag alias-air force = Royal Canadian Air Force ensign.svg | flag alias-air force-1924 = Ensign of the Royal Canadian Air Force.svg | link alias-air force = Royal Canadian Air Force | flag alias-army-1939 = Flag of the Canadian Army (1939–1944).svg | flag alias-army-1968 = Flag of the Canadian Army (1968–1998).svg | flag alias-army-1989 = Flag of the Canadian Army (1968–1998).svg | flag alias-army-2013 = Flag of the Canadian Army (2013–2016).svg | flag alias-army = Flag of the Canadian Army.svg | link alias-army = Canadian Army | flag alias-military = Flag of the Canadian Forces.svg | link alias-military = Canadian Armed Forces | flag alias-navy = Naval ensign of Canada.svg | link alias-navy = Royal Canadian Navy | link alias-football = Canada {{{mw|men's}}} national {{{age|}}} soccer team | size = {{{size|}}} | name = {{{name|}}} | altlink = {{{altlink|}}} | altvar = {{{altvar|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1867-official | var2 = 1868 | var3 = 1905 | var4 = 1907 | var5 = 1921 | var6 = 1957 | var7 = 1964 | var8 = 1965 | var9 = 2004 | var10 = naval-1868 | var11 = naval-1911 | var12 = naval-1921 | var13 = naval-1957 | var14= naval-1965 | var15 = air force-1924 | var16 = army-1939 | var17 = army-1968 | var18 = army-1989 | var19 = army-2013 | redir1 = CAN | redir2 = Province of Canada | redir3 = Dominion of Canada </noinclude> }} awr420gzn5jixr8celeebrtykx2b328 Template:Country data Texas 10 8188 72922 2018-03-06T01:11:56Z en>Illegitimate Barrister 0 72922 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = Texas | flag alias = Flag of Texas.svg | link alias-army = Texas Army National Guard | link alias-air force = Texas Air National Guard | flag alias-naval = Flag of the United States.svg | link alias-naval = Texas State Guard Maritime Regiment | link alias-navy = Texas State Guard Maritime Regiment | variant = {{{variant|}}} | size = {{{size|}}} | name = {{{name|}}} <noinclude> | related1 = Republic of Texas </noinclude> }} s2l7ceirzjuwttn5r872eymnz958yf3 72923 72922 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_Texas]] 72922 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = Texas | flag alias = Flag of Texas.svg | link alias-army = Texas Army National Guard | link alias-air force = Texas Air National Guard | flag alias-naval = Flag of the United States.svg | link alias-naval = Texas State Guard Maritime Regiment | link alias-navy = Texas State Guard Maritime Regiment | variant = {{{variant|}}} | size = {{{size|}}} | name = {{{name|}}} <noinclude> | related1 = Republic of Texas </noinclude> }} s2l7ceirzjuwttn5r872eymnz958yf3 Template:Country data EU 10 8189 72924 2017-04-07T20:08:10Z en>Jo-Jo Eumerus 0 Changed protection level for "[[Template:Country data EU]]": Matching redirect target ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)) 72924 wikitext text/x-wiki #REDIRECT [[Template:Country data European Union]]<noinclude>[[Category: Country data redirects|EU]]</noinclude> 40onsr5vafjix5wrbpd9phz32ifs20x 72925 72924 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_EU]] 72924 wikitext text/x-wiki #REDIRECT [[Template:Country data European Union]]<noinclude>[[Category: Country data redirects|EU]]</noinclude> 40onsr5vafjix5wrbpd9phz32ifs20x Template:Country data CAN 10 8190 72926 2017-04-07T19:43:38Z en>Jo-Jo Eumerus 0 Changed protection level for "[[Template:Country data CAN]]": Matching redirect target ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)) 72926 wikitext text/x-wiki #REDIRECT [[Template:Country data Canada]] [[Category:Country data redirects|CAN]] is7e063noqylbk9q8dnj707v02uisvr 72927 72926 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_CAN]] 72926 wikitext text/x-wiki #REDIRECT [[Template:Country data Canada]] [[Category:Country data redirects|CAN]] is7e063noqylbk9q8dnj707v02uisvr Template:Country data DEU 10 8191 72928 2017-04-07T20:08:10Z en>Jo-Jo Eumerus 0 Changed protection level for "[[Template:Country data DEU]]": Matching redirect target ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)) 72928 wikitext text/x-wiki #REDIRECT [[Template:Country data Germany]] [[category:country data redirects|DEU]] iwalgn3n9wph79qkjdcnjjv03td49ai 72929 72928 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_DEU]] 72928 wikitext text/x-wiki #REDIRECT [[Template:Country data Germany]] [[category:country data redirects|DEU]] iwalgn3n9wph79qkjdcnjjv03td49ai Template:Flagu 10 8192 72930 2015-09-01T15:08:38Z en>SiBr4 0 Is there a reason this is the only major flag template to not have a {{{name}}} parameter? 72930 wikitext text/x-wiki {{country data {{{1|}}}|flagu/core|name={{{name|{{{1|}}}}}}|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude>{{documentation}}</noinclude> 91w5yqf3n98hlblaoccspqac86ri2w9 72931 72930 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Flagu]] 72930 wikitext text/x-wiki {{country data {{{1|}}}|flagu/core|name={{{name|{{{1|}}}}}}|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude>{{documentation}}</noinclude> 91w5yqf3n98hlblaoccspqac86ri2w9 Template:Flagu/core 10 8193 72932 2023-09-04T21:37:59Z en>Pppery 0 Per edit request 72932 wikitext text/x-wiki <span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]]&nbsp;{{#switch:{{{flag alias}}}|Flag of Switzerland.svg|Flag of the Vatican City.svg|Flag of Switzerland (Pantone).svg|Flag of Vatican City State - 2023 version.svg=&nbsp;}}{{#ifeq:{{{alias}}}|Nepal|&nbsp;&nbsp;}}</span>{{{name}}}<noinclude> {{documentation|Template:Flagu/doc}} [[Category:Flag template system cores]]</noinclude> 7r3kb1gewnlyugpm4xev5e49i95gmlv 72933 72932 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Flagu/core]] 72932 wikitext text/x-wiki <span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]]&nbsp;{{#switch:{{{flag alias}}}|Flag of Switzerland.svg|Flag of the Vatican City.svg|Flag of Switzerland (Pantone).svg|Flag of Vatican City State - 2023 version.svg=&nbsp;}}{{#ifeq:{{{alias}}}|Nepal|&nbsp;&nbsp;}}</span>{{{name}}}<noinclude> {{documentation|Template:Flagu/doc}} [[Category:Flag template system cores]]</noinclude> 7r3kb1gewnlyugpm4xev5e49i95gmlv Template:Country data British Columbia 10 8194 72934 2024-08-05T18:06:56Z en>Paine Ellsworth 0 per edit request on talk page - update 72934 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = British Columbia | flag alias = Flag of British Columbia.svg | flag alias-1870 = Flag of the Colony of British Columbia.svg | flag alias-1871 = Flag of Canada (1868–1921).svg | flag alias-1921 = Flag of Canada (1921–1957).svg | flag alias-1957 = Flag of Canada (1957–1965).svg | size = {{{size|}}} | name = {{{name|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1870 | var2 = 1871 | var3 = 1921 | var4 = 1957 </noinclude> }} 4dce15u8rue7wyx6cbgp18myc334ix5 72935 72934 2026-07-01T05:32:16Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data_British_Columbia]] 72934 wikitext text/x-wiki {{ {{{1<noinclude>|country showdata</noinclude>}}} | alias = British Columbia | flag alias = Flag of British Columbia.svg | flag alias-1870 = Flag of the Colony of British Columbia.svg | flag alias-1871 = Flag of Canada (1868–1921).svg | flag alias-1921 = Flag of Canada (1921–1957).svg | flag alias-1957 = Flag of Canada (1957–1965).svg | size = {{{size|}}} | name = {{{name|}}} | variant = {{{variant|}}} <noinclude> | var1 = 1870 | var2 = 1871 | var3 = 1921 | var4 = 1957 </noinclude> }} 4dce15u8rue7wyx6cbgp18myc334ix5 Template:Country data 10 8195 72936 2022-03-29T12:30:30Z en>Paine Ellsworth 0 add [[WP:RCAT|rcat template]] 72936 wikitext text/x-wiki #REDIRECT [[Template:Flag data]] {{Rcat shell| {{R from move}} {{R from template shortcut}} }} 5mo75bhkgzt697p660fpqchnvfxa79y 72937 72936 2026-07-01T05:32:17Z Robertsky 10424 1 versaun husi [[:en:Template:Country_data]] 72936 wikitext text/x-wiki #REDIRECT [[Template:Flag data]] {{Rcat shell| {{R from move}} {{R from template shortcut}} }} 5mo75bhkgzt697p660fpqchnvfxa79y Template:Flag data 10 8196 72938 2024-04-15T02:40:15Z en>Pppery 0 Use if statement per request 72938 wikitext text/x-wiki {{ {{{1}}} | alias = | flag alias = Flag placeholder.svg | name = {{{name|}}} | size = {{#if:{{{size|}}}|{{{size}}}|25x17px}} | border= | altlink = {{{altlink|}}} }}<noinclude> {{documentation}} </noinclude> pnihc4o776asqih6dfw0lhfmu1fbho9 72939 72938 2026-07-01T05:32:17Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_data]] 72938 wikitext text/x-wiki {{ {{{1}}} | alias = | flag alias = Flag placeholder.svg | name = {{{name|}}} | size = {{#if:{{{size|}}}|{{{size}}}|25x17px}} | border= | altlink = {{{altlink|}}} }}<noinclude> {{documentation}} </noinclude> pnihc4o776asqih6dfw0lhfmu1fbho9 Template:Flaglist 10 8197 72940 2025-11-03T22:07:56Z en>Ahecht 0 Ahecht moved page [[Template:Flaglist]] to [[Template:Flag list]]: Expand template name per [[WP:TPN]] 72940 wikitext text/x-wiki #REDIRECT [[Template:Flag list]] {{Redirect category shell| {{R from move}} }} co80y8gqjwtvs7z0y4h37yryrl5xgw2 72941 72940 2026-07-01T05:32:17Z Robertsky 10424 1 versaun husi [[:en:Template:Flaglist]] 72940 wikitext text/x-wiki #REDIRECT [[Template:Flag list]] {{Redirect category shell| {{R from move}} }} co80y8gqjwtvs7z0y4h37yryrl5xgw2 Template:Flaglist/core 10 8198 72942 2025-11-03T22:07:57Z en>Ahecht 0 Ahecht moved page [[Template:Flaglist/core]] to [[Template:Flag list/core]]: Expand template name per [[WP:TPN]] 72942 wikitext text/x-wiki #REDIRECT [[Template:Flag list/core]] {{Redirect category shell| {{R from move}} }} 7eb1qeiz93gsk3y6w3rfg44vo5mi54q 72943 72942 2026-07-01T05:32:17Z Robertsky 10424 1 versaun husi [[:en:Template:Flaglist/core]] 72942 wikitext text/x-wiki #REDIRECT [[Template:Flag list/core]] {{Redirect category shell| {{R from move}} }} 7eb1qeiz93gsk3y6w3rfg44vo5mi54q Template:Flag icon 10 8199 72944 2025-09-14T14:00:12Z en>Jonesey95 0 add preview warning to help with [[:Category:Flag icons missing country data templates]], especially pages with hundreds of flags 72944 wikitext text/x-wiki <includeonly>{{safesubst<noinclude />:#ifeq: {{Yesno-no|{{{noredlink|}}}}}|yes<noinclude><!-- --></noinclude>|<noinclude><!-- #Check for existence of Template: Country data foo before invoking it --></noinclude>{{safesubst<noinclude />:#ifexist: Template: Country data {{{1|}}}<noinclude><!-- --></noinclude>|<noinclude><!-- # It exists, so proceed --></noinclude>{{country data {{{1|}}}|flag icon/core|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude><!-- --></noinclude>|<noinclude><!-- # It doesn't exist, so do nothing --></noinclude>}}<noinclude><!-- --></noinclude>|<noinclude><!-- # DEFAULT call Template: Country data {{{1|}}} # with no prior checks --></noinclude>{{country data {{{1|}}}|flag icon/core|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude><!-- # Track use where "Template:Country data Foo" does not exist --></noinclude>{{safesubst<noinclude />:#ifexist: Template:Country data {{{1|}}}||{{safesubst<noinclude />:namespace detect showall | 1 = | 2 = [[Category:Flag icons missing country data templates]]{{Preview warning|unrecognized country in Template:flag icon}} | user = 1 | talk = 1 | other = 2 }}}}<noinclude><!-- --></noinclude>}}</includeonly>{{safesubst<noinclude />:#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using flag icon template with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Flag icon]] with unknown parameter "_VALUE_"|ignoreblank=y| 1 | 2 | noredlink | size | variant }}<noinclude> {{Documentation}} </noinclude> jcd45vylbucuxzqh7jihrecibwwtjm0 72945 72944 2026-07-01T05:32:17Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_icon]] 72944 wikitext text/x-wiki <includeonly>{{safesubst<noinclude />:#ifeq: {{Yesno-no|{{{noredlink|}}}}}|yes<noinclude><!-- --></noinclude>|<noinclude><!-- #Check for existence of Template: Country data foo before invoking it --></noinclude>{{safesubst<noinclude />:#ifexist: Template: Country data {{{1|}}}<noinclude><!-- --></noinclude>|<noinclude><!-- # It exists, so proceed --></noinclude>{{country data {{{1|}}}|flag icon/core|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude><!-- --></noinclude>|<noinclude><!-- # It doesn't exist, so do nothing --></noinclude>}}<noinclude><!-- --></noinclude>|<noinclude><!-- # DEFAULT call Template: Country data {{{1|}}} # with no prior checks --></noinclude>{{country data {{{1|}}}|flag icon/core|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude><!-- # Track use where "Template:Country data Foo" does not exist --></noinclude>{{safesubst<noinclude />:#ifexist: Template:Country data {{{1|}}}||{{safesubst<noinclude />:namespace detect showall | 1 = | 2 = [[Category:Flag icons missing country data templates]]{{Preview warning|unrecognized country in Template:flag icon}} | user = 1 | talk = 1 | other = 2 }}}}<noinclude><!-- --></noinclude>}}</includeonly>{{safesubst<noinclude />:#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using flag icon template with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Flag icon]] with unknown parameter "_VALUE_"|ignoreblank=y| 1 | 2 | noredlink | size | variant }}<noinclude> {{Documentation}} </noinclude> jcd45vylbucuxzqh7jihrecibwwtjm0 Template:Country flagbio 10 8200 72946 2019-12-23T01:17:42Z en>S.A. Julio 0 allow for custom size parameter 72946 wikitext text/x-wiki <span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]]&nbsp;</span>{{{name}}}&nbsp;<span style="font-size:90%;">(<abbr title="{{#if: {{{shortname alias|}}} | {{{shortname alias}}} | {{{alias}}} }}">{{{size}}}</abbr>)</span><noinclude>{{documentation}}</noinclude> h40f9uprdr8t26whzliem2loexs4bwb 72947 72946 2026-07-01T05:32:17Z Robertsky 10424 1 versaun husi [[:en:Template:Country_flagbio]] 72946 wikitext text/x-wiki <span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]]&nbsp;</span>{{{name}}}&nbsp;<span style="font-size:90%;">(<abbr title="{{#if: {{{shortname alias|}}} | {{{shortname alias}}} | {{{alias}}} }}">{{{size}}}</abbr>)</span><noinclude>{{documentation}}</noinclude> h40f9uprdr8t26whzliem2loexs4bwb Template:Flag country 10 8201 72948 2024-07-28T10:36:18Z en>Danny 1994 0 Updated flag template name to avoid the template redirect. 72948 wikitext text/x-wiki {{country data {{{1}}}|flag country/core|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}|name={{{name|}}}}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using flagcountry template with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Flagcountry]] with unknown parameter "_VALUE_"|ignoreblank=y| 1 | 2 | name | size | variant }}<noinclude>{{documentation}}</noinclude> 5ttzf95ic6p5x1uyrlml6fbk6xi6ij9 72949 72948 2026-07-01T05:32:17Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_country]] 72948 wikitext text/x-wiki {{country data {{{1}}}|flag country/core|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}|name={{{name|}}}}}{{#invoke:Check for unknown parameters|check|unknown={{main other|[[Category:Pages using flagcountry template with unknown parameters|_VALUE_{{PAGENAME}}]]}}|preview=Page using [[Template:Flagcountry]] with unknown parameter "_VALUE_"|ignoreblank=y| 1 | 2 | name | size | variant }}<noinclude>{{documentation}}</noinclude> 5ttzf95ic6p5x1uyrlml6fbk6xi6ij9 Módulo:Transclusion count/data/F 828 8202 72950 2026-06-28T05:09:50Z en>Ahechtbot 0 [[Wikipedia:BOT|Bot]]: Updated page. 72950 Scribunto text/plain return { ["F1"] = 5300, ["FA-Class"] = 16000, ["FAA-airport"] = 3800, ["FACClosed"] = 6400, ["FAC_link"] = 118000, ["FAR_link"] = 118000, ["FCC-LMS-Facility"] = 5800, ["FCC_Licensing_and_Management_System_facility"] = 16000, ["FCCdata"] = 2600, ["FFU"] = 2000, ["FIDE"] = 2500, ["FIFA_player"] = 10000, ["FIG_country_code"] = 2600, ["FIN"] = 9900, ["FIPS"] = 2400, ["FJC_Bio"] = 4000, ["FL-Class"] = 13000, ["FLCClosed"] = 3600, ["FLC_link"] = 118000, ["FM-Class"] = 4300, ["FMA"] = 3400, ["FMARB"] = 8900, ["FM_station_data"] = 8500, ["FPCnom/VotingEnds"] = 12000, ["FPCresult"] = 18000, ["FRA"] = 21000, ["FRG"] = 3800, ["FTE"] = 3200, ["FULLBASEPAGENAME"] = 357000, ["FULLROOTPAGENAME"] = 3780000, ["FXL"] = 2200, ["FYI"] = 2100, ["Fa_bottom"] = 3500, ["Fa_top"] = 3400, ["Facebook"] = 14000, ["Facepalm"] = 2900, ["Facl"] = 118000, ["Fact"] = 38000, ["FadedPage"] = 2700, ["FailedGA"] = 3800, ["Failed_verification"] = 18000, ["Fake_heading"] = 2200, ["Fake_heading/styles.css"] = 2200, ["Fake_link/styles.css"] = 2000, ["Family_name_explanation"] = 98000, ["Family_name_explanation/core"] = 98000, ["Family_name_footnote"] = 2200, ["Family_name_hatnote"] = 95000, ["Farl"] = 118000, ["Fb"] = 31000, ["Fb-rt"] = 6300, ["Fb_cs_footer"] = 3300, ["Fb_gd"] = 11000, ["Fb_overview"] = 6200, ["Fb_overview2"] = 5400, ["Fb_rs"] = 11000, ["Fb_rs_footer"] = 11000, ["Fba/core"] = 9000, ["Fba/list"] = 11000, ["Fbaicon"] = 11000, ["Fbaicon/core"] = 11000, ["Fbicon"] = 3600, ["Fbu"] = 4000, ["Fbu-rt"] = 2600, ["Fbw"] = 6100, ["Fdacite"] = 14000, ["Fdate"] = 2900, ["FeaturedPicture"] = 7400, ["Featured_article"] = 7300, ["Featured_article_tools"] = 12000, ["Featured_list"] = 4900, ["Featured_picture"] = 8800, ["Featured_topic_box"] = 3700, ["Featured_topic_box/styles.css"] = 3700, ["Feedback_link"] = 4600, ["Fiction-based_redirects_to_list_entries_category_handler"] = 3300, ["Fictional_character_redirect"] = 3900, ["File-Class"] = 13000, ["File_other"] = 995000, ["Filipino_name"] = 4400, ["Film_date"] = 166000, ["Filter_category_by_topic"] = 2800, ["Find"] = 8500, ["FindYDCportal"] = 222000, ["Find_a_Grave"] = 24000, ["Find_country"] = 44000, ["Find_demonym"] = 38000, ["Find_general_sources"] = 917000, ["Find_medical_sources"] = 8200, ["Find_page_text"] = 2790000, ["Find_sources"] = 623000, ["Find_sources/proj/is_biography"] = 608000, ["Find_sources/proj/is_med"] = 623000, ["Find_sources/proj/is_video"] = 615000, ["Find_sources/top_proj"] = 623000, ["Find_sources_AFD"] = 261000, ["Find_sources_mainspace"] = 714000, ["Find_video_game_sources"] = 6900, ["Find_video_game_sources_short"] = 3100, ["Findsources"] = 42000, ["First_word"] = 679000, ["FishBase"] = 20000, ["FishBase_genus"] = 4200, ["Fix"] = 1050000, ["Fix-span"] = 64000, ["Fix/category"] = 1020000, ["Fix_comma_category"] = 597000, ["Fixed"] = 10000, ["Fl."] = 3800, ["Flag"] = 345000, ["Flag/core"] = 345000, ["FlagCGFathlete"] = 2200, ["FlagIOC"] = 10000, ["FlagIOC2"] = 4700, ["FlagIOC2athlete"] = 6800, ["FlagIOC2team"] = 2900, ["FlagIOCathlete"] = 11000, ["FlagIPC"] = 3300, ["FlagPASO"] = 2100, ["FlagPASOathlete"] = 3300, ["Flag_CGF_athlete"] = 2400, ["Flag_IOC"] = 13000, ["Flag_IOC_2"] = 18000, ["Flag_IOC_2_athlete"] = 15000, ["Flag_IOC_2_medalist"] = 5000, ["Flag_IOC_2_team"] = 4400, ["Flag_IOC_athlete"] = 13000, ["Flag_IPC"] = 4000, ["Flag_PASO"] = 3000, ["Flag_PASO_athlete"] = 3500, ["Flag_athlete"] = 39000, ["Flag_country"] = 41000, ["Flag_country/core"] = 41000, ["Flag_data"] = 12000, ["Flag_decoration"] = 95000, ["Flag_decoration/core"] = 95000, ["Flag_icon"] = 616000, ["Flag_icon/core"] = 616000, ["Flag_icon/nt"] = 9700, ["Flag_link"] = 2100, ["Flag_link/core"] = 87000, ["Flag_medalist"] = 2800, ["Flag_medalist/core"] = 2800, ["Flag_team"] = 2900, ["Flagathlete"] = 31000, ["Flagbig"] = 5100, ["Flagbig/core"] = 8900, ["Flagcountry"] = 26000, ["Flagdeco"] = 61000, ["Flagg"] = 23000, ["Flagicon"] = 460000, ["Flagicon_image"] = 52000, ["Flagmedalist"] = 2800, ["Flagright/core"] = 26000, ["Flagteam"] = 2500, ["Flagu"] = 32000, ["Flagu/core"] = 32000, ["Flat_list"] = 7700, ["Flatlist"] = 2650000, ["Flcl"] = 118000, ["FloraBase"] = 6100, ["Floruit"] = 7700, ["Fmbox"] = 25000, ["FoP-USonly"] = 5200, ["Font"] = 12000, ["Font_color"] = 52000, ["Fontcolor"] = 6900, ["Fooian_companies_established_in_the_year"] = 5500, ["Fooian_expatriate_sportspeople_in_Bar_cat"] = 11000, ["Fooian_expatriate_sportspeople_in_Bar_cat/core"] = 11000, ["Fooian_expatriate_sportspeople_in_Bar_cat/sortname"] = 11000, ["Fooian_fooers"] = 14000, ["FootballFacts.ru"] = 6000, ["Football_box"] = 29000, ["Football_box_collapsible"] = 30000, ["Football_box_collapsible/styles.css"] = 30000, ["Football_kit"] = 54000, ["Football_manager_history"] = 23000, ["Football_squad"] = 45000, ["Football_squad2_player"] = 49000, ["Football_squad_end"] = 22000, ["Football_squad_manager"] = 46000, ["Football_squad_mid"] = 19000, ["Football_squad_player"] = 22000, ["Football_squad_player/role"] = 8200, ["Football_squad_player/styles.css"] = 22000, ["Football_squad_start"] = 22000, ["Footballbox"] = 5800, ["Footballbox_collapsible"] = 9000, ["Footballstats"] = 4100, ["Foo–Bar_relations_category"] = 6300, ["Foo–Bar_relations_category/core"] = 6300, ["Foo–Bar_relations_category/countrynamesortfix"] = 6300, ["Foo–Bar_relations_category/fixcountryname"] = 6300, ["Foo–Bar_relations_category/inner_core"] = 6300, ["Foo–Bar_relations_category/mapname"] = 6300, ["For"] = 209000, ["For-multi"] = 13000, ["For_loop"] = 1170000, ["For_multi"] = 7100, ["For_nowiki"] = 9500, ["ForaDeJogo"] = 4100, ["Force_plural"] = 17000, ["Force_singular"] = 2800, ["Format_link"] = 12000, ["Format_linkr"] = 7200, ["Format_numeric_span"] = 3800, ["Format_price"] = 8800, ["Format_price/digits"] = 8600, ["Formatprice"] = 4000, ["Fossil_range"] = 14000, ["Fossil_range/bar"] = 25000, ["Fossilrange"] = 6700, ["Foundational_Model_of_Anatomy"] = 3400, ["Frac"] = 35000, ["Fraction"] = 41000, ["Fraction/styles.css"] = 107000, ["France_metadata_Wikidata"] = 36000, ["Free_access"] = 5300, ["Free_in_US_media"] = 23000, ["Free_media"] = 138000, ["Freedom_of_panorama_(US_only)"] = 5300, ["Frequency"] = 7700, ["Friday"] = 2800, ["Fs_end"] = 20000, ["Fs_mid"] = 18000, ["Fs_player"] = 20000, ["Fs_start"] = 20000, ["Full-time_equivalent"] = 3200, ["Full_citation_needed"] = 10000, ["Full_party_name_with_color"] = 6200, ["Fullurl"] = 7000, ["Fullurl:"] = 6800, ["Further"] = 76000, ["Further_information"] = 2500, ["Fussballdaten"] = 4200, ["Module:Fb_overview"] = 6400, ["Module:Fba"] = 18000, ["Module:Fba/list"] = 36000, ["Module:FeaturedTopicSum"] = 6900, ["Module:Fedi-share"] = 3900, ["Module:Fiction-based_redirects_to_list_entries_category_handler"] = 3300, ["Module:Fiction-based_redirects_to_list_entries_category_handler/RedirectType"] = 3300, ["Module:Fiction_redirect_category_handler"] = 5200, ["Module:File_link"] = 89000, ["Module:FindYDCportal"] = 396000, ["Module:Find_country"] = 44000, ["Module:Find_demonym"] = 38000, ["Module:Find_sources"] = 1640000, ["Module:Find_sources/config"] = 1640000, ["Module:Find_sources/links"] = 1640000, ["Module:Find_sources/templates/Find_general_sources"] = 917000, ["Module:Find_sources/templates/Find_sources_mainspace"] = 714000, ["Module:Find_sources/templates/Find_sources_medical"] = 8300, ["Module:Find_sources/templates/Find_sources_video_games"] = 6900, ["Module:Flag"] = 373000, ["Module:Flag_list"] = 11000, ["Module:Flagg"] = 454000, ["Module:Flagg/Altvar_data"] = 33000, ["Module:Football_box"] = 30000, ["Module:Football_box/styles.css"] = 30000, ["Module:Football_box_collapsible"] = 30000, ["Module:Football_event"] = 55000, ["Module:Football_manager_history"] = 24000, ["Module:Football_squad"] = 46000, ["Module:Footballer_positions"] = 218000, ["Module:Footnotes"] = 364000, ["Module:Footnotes/anchor_id_list"] = 270000, ["Module:Footnotes/anchor_id_list/data"] = 270000, ["Module:Footnotes/whitelist"] = 270000, ["Module:For"] = 210000, ["Module:For_loop"] = 1170000, ["Module:For_nowiki"] = 9500, ["Module:Format_link"] = 1500000, ["Module:Formatted_appearance"] = 6000, } 9895ihguxef31te48b3rb2oeiiuilbc 72951 72950 2026-07-01T05:32:17Z Robertsky 10424 1 versaun husi [[:en:Module:Transclusion_count/data/F]] 72950 Scribunto text/plain return { ["F1"] = 5300, ["FA-Class"] = 16000, ["FAA-airport"] = 3800, ["FACClosed"] = 6400, ["FAC_link"] = 118000, ["FAR_link"] = 118000, ["FCC-LMS-Facility"] = 5800, ["FCC_Licensing_and_Management_System_facility"] = 16000, ["FCCdata"] = 2600, ["FFU"] = 2000, ["FIDE"] = 2500, ["FIFA_player"] = 10000, ["FIG_country_code"] = 2600, ["FIN"] = 9900, ["FIPS"] = 2400, ["FJC_Bio"] = 4000, ["FL-Class"] = 13000, ["FLCClosed"] = 3600, ["FLC_link"] = 118000, ["FM-Class"] = 4300, ["FMA"] = 3400, ["FMARB"] = 8900, ["FM_station_data"] = 8500, ["FPCnom/VotingEnds"] = 12000, ["FPCresult"] = 18000, ["FRA"] = 21000, ["FRG"] = 3800, ["FTE"] = 3200, ["FULLBASEPAGENAME"] = 357000, ["FULLROOTPAGENAME"] = 3780000, ["FXL"] = 2200, ["FYI"] = 2100, ["Fa_bottom"] = 3500, ["Fa_top"] = 3400, ["Facebook"] = 14000, ["Facepalm"] = 2900, ["Facl"] = 118000, ["Fact"] = 38000, ["FadedPage"] = 2700, ["FailedGA"] = 3800, ["Failed_verification"] = 18000, ["Fake_heading"] = 2200, ["Fake_heading/styles.css"] = 2200, ["Fake_link/styles.css"] = 2000, ["Family_name_explanation"] = 98000, ["Family_name_explanation/core"] = 98000, ["Family_name_footnote"] = 2200, ["Family_name_hatnote"] = 95000, ["Farl"] = 118000, ["Fb"] = 31000, ["Fb-rt"] = 6300, ["Fb_cs_footer"] = 3300, ["Fb_gd"] = 11000, ["Fb_overview"] = 6200, ["Fb_overview2"] = 5400, ["Fb_rs"] = 11000, ["Fb_rs_footer"] = 11000, ["Fba/core"] = 9000, ["Fba/list"] = 11000, ["Fbaicon"] = 11000, ["Fbaicon/core"] = 11000, ["Fbicon"] = 3600, ["Fbu"] = 4000, ["Fbu-rt"] = 2600, ["Fbw"] = 6100, ["Fdacite"] = 14000, ["Fdate"] = 2900, ["FeaturedPicture"] = 7400, ["Featured_article"] = 7300, ["Featured_article_tools"] = 12000, ["Featured_list"] = 4900, ["Featured_picture"] = 8800, ["Featured_topic_box"] = 3700, ["Featured_topic_box/styles.css"] = 3700, ["Feedback_link"] = 4600, ["Fiction-based_redirects_to_list_entries_category_handler"] = 3300, ["Fictional_character_redirect"] = 3900, ["File-Class"] = 13000, ["File_other"] = 995000, ["Filipino_name"] = 4400, ["Film_date"] = 166000, ["Filter_category_by_topic"] = 2800, ["Find"] = 8500, ["FindYDCportal"] = 222000, ["Find_a_Grave"] = 24000, ["Find_country"] = 44000, ["Find_demonym"] = 38000, ["Find_general_sources"] = 917000, ["Find_medical_sources"] = 8200, ["Find_page_text"] = 2790000, ["Find_sources"] = 623000, ["Find_sources/proj/is_biography"] = 608000, ["Find_sources/proj/is_med"] = 623000, ["Find_sources/proj/is_video"] = 615000, ["Find_sources/top_proj"] = 623000, ["Find_sources_AFD"] = 261000, ["Find_sources_mainspace"] = 714000, ["Find_video_game_sources"] = 6900, ["Find_video_game_sources_short"] = 3100, ["Findsources"] = 42000, ["First_word"] = 679000, ["FishBase"] = 20000, ["FishBase_genus"] = 4200, ["Fix"] = 1050000, ["Fix-span"] = 64000, ["Fix/category"] = 1020000, ["Fix_comma_category"] = 597000, ["Fixed"] = 10000, ["Fl."] = 3800, ["Flag"] = 345000, ["Flag/core"] = 345000, ["FlagCGFathlete"] = 2200, ["FlagIOC"] = 10000, ["FlagIOC2"] = 4700, ["FlagIOC2athlete"] = 6800, ["FlagIOC2team"] = 2900, ["FlagIOCathlete"] = 11000, ["FlagIPC"] = 3300, ["FlagPASO"] = 2100, ["FlagPASOathlete"] = 3300, ["Flag_CGF_athlete"] = 2400, ["Flag_IOC"] = 13000, ["Flag_IOC_2"] = 18000, ["Flag_IOC_2_athlete"] = 15000, ["Flag_IOC_2_medalist"] = 5000, ["Flag_IOC_2_team"] = 4400, ["Flag_IOC_athlete"] = 13000, ["Flag_IPC"] = 4000, ["Flag_PASO"] = 3000, ["Flag_PASO_athlete"] = 3500, ["Flag_athlete"] = 39000, ["Flag_country"] = 41000, ["Flag_country/core"] = 41000, ["Flag_data"] = 12000, ["Flag_decoration"] = 95000, ["Flag_decoration/core"] = 95000, ["Flag_icon"] = 616000, ["Flag_icon/core"] = 616000, ["Flag_icon/nt"] = 9700, ["Flag_link"] = 2100, ["Flag_link/core"] = 87000, ["Flag_medalist"] = 2800, ["Flag_medalist/core"] = 2800, ["Flag_team"] = 2900, ["Flagathlete"] = 31000, ["Flagbig"] = 5100, ["Flagbig/core"] = 8900, ["Flagcountry"] = 26000, ["Flagdeco"] = 61000, ["Flagg"] = 23000, ["Flagicon"] = 460000, ["Flagicon_image"] = 52000, ["Flagmedalist"] = 2800, ["Flagright/core"] = 26000, ["Flagteam"] = 2500, ["Flagu"] = 32000, ["Flagu/core"] = 32000, ["Flat_list"] = 7700, ["Flatlist"] = 2650000, ["Flcl"] = 118000, ["FloraBase"] = 6100, ["Floruit"] = 7700, ["Fmbox"] = 25000, ["FoP-USonly"] = 5200, ["Font"] = 12000, ["Font_color"] = 52000, ["Fontcolor"] = 6900, ["Fooian_companies_established_in_the_year"] = 5500, ["Fooian_expatriate_sportspeople_in_Bar_cat"] = 11000, ["Fooian_expatriate_sportspeople_in_Bar_cat/core"] = 11000, ["Fooian_expatriate_sportspeople_in_Bar_cat/sortname"] = 11000, ["Fooian_fooers"] = 14000, ["FootballFacts.ru"] = 6000, ["Football_box"] = 29000, ["Football_box_collapsible"] = 30000, ["Football_box_collapsible/styles.css"] = 30000, ["Football_kit"] = 54000, ["Football_manager_history"] = 23000, ["Football_squad"] = 45000, ["Football_squad2_player"] = 49000, ["Football_squad_end"] = 22000, ["Football_squad_manager"] = 46000, ["Football_squad_mid"] = 19000, ["Football_squad_player"] = 22000, ["Football_squad_player/role"] = 8200, ["Football_squad_player/styles.css"] = 22000, ["Football_squad_start"] = 22000, ["Footballbox"] = 5800, ["Footballbox_collapsible"] = 9000, ["Footballstats"] = 4100, ["Foo–Bar_relations_category"] = 6300, ["Foo–Bar_relations_category/core"] = 6300, ["Foo–Bar_relations_category/countrynamesortfix"] = 6300, ["Foo–Bar_relations_category/fixcountryname"] = 6300, ["Foo–Bar_relations_category/inner_core"] = 6300, ["Foo–Bar_relations_category/mapname"] = 6300, ["For"] = 209000, ["For-multi"] = 13000, ["For_loop"] = 1170000, ["For_multi"] = 7100, ["For_nowiki"] = 9500, ["ForaDeJogo"] = 4100, ["Force_plural"] = 17000, ["Force_singular"] = 2800, ["Format_link"] = 12000, ["Format_linkr"] = 7200, ["Format_numeric_span"] = 3800, ["Format_price"] = 8800, ["Format_price/digits"] = 8600, ["Formatprice"] = 4000, ["Fossil_range"] = 14000, ["Fossil_range/bar"] = 25000, ["Fossilrange"] = 6700, ["Foundational_Model_of_Anatomy"] = 3400, ["Frac"] = 35000, ["Fraction"] = 41000, ["Fraction/styles.css"] = 107000, ["France_metadata_Wikidata"] = 36000, ["Free_access"] = 5300, ["Free_in_US_media"] = 23000, ["Free_media"] = 138000, ["Freedom_of_panorama_(US_only)"] = 5300, ["Frequency"] = 7700, ["Friday"] = 2800, ["Fs_end"] = 20000, ["Fs_mid"] = 18000, ["Fs_player"] = 20000, ["Fs_start"] = 20000, ["Full-time_equivalent"] = 3200, ["Full_citation_needed"] = 10000, ["Full_party_name_with_color"] = 6200, ["Fullurl"] = 7000, ["Fullurl:"] = 6800, ["Further"] = 76000, ["Further_information"] = 2500, ["Fussballdaten"] = 4200, ["Module:Fb_overview"] = 6400, ["Module:Fba"] = 18000, ["Module:Fba/list"] = 36000, ["Module:FeaturedTopicSum"] = 6900, ["Module:Fedi-share"] = 3900, ["Module:Fiction-based_redirects_to_list_entries_category_handler"] = 3300, ["Module:Fiction-based_redirects_to_list_entries_category_handler/RedirectType"] = 3300, ["Module:Fiction_redirect_category_handler"] = 5200, ["Module:File_link"] = 89000, ["Module:FindYDCportal"] = 396000, ["Module:Find_country"] = 44000, ["Module:Find_demonym"] = 38000, ["Module:Find_sources"] = 1640000, ["Module:Find_sources/config"] = 1640000, ["Module:Find_sources/links"] = 1640000, ["Module:Find_sources/templates/Find_general_sources"] = 917000, ["Module:Find_sources/templates/Find_sources_mainspace"] = 714000, ["Module:Find_sources/templates/Find_sources_medical"] = 8300, ["Module:Find_sources/templates/Find_sources_video_games"] = 6900, ["Module:Flag"] = 373000, ["Module:Flag_list"] = 11000, ["Module:Flagg"] = 454000, ["Module:Flagg/Altvar_data"] = 33000, ["Module:Football_box"] = 30000, ["Module:Football_box/styles.css"] = 30000, ["Module:Football_box_collapsible"] = 30000, ["Module:Football_event"] = 55000, ["Module:Football_manager_history"] = 24000, ["Module:Football_squad"] = 46000, ["Module:Footballer_positions"] = 218000, ["Module:Footnotes"] = 364000, ["Module:Footnotes/anchor_id_list"] = 270000, ["Module:Footnotes/anchor_id_list/data"] = 270000, ["Module:Footnotes/whitelist"] = 270000, ["Module:For"] = 210000, ["Module:For_loop"] = 1170000, ["Module:For_nowiki"] = 9500, ["Module:Format_link"] = 1500000, ["Module:Formatted_appearance"] = 6000, } 9895ihguxef31te48b3rb2oeiiuilbc Template:Flag/doc 10 8203 72952 2026-02-11T01:56:03Z en>Zowayix001 0 /* See also */ 72952 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} This template is used to display a small flag icon next to a wikilinked country name. It is related to the {{template link|flag icon}}, {{template link|flag country}} and {{template link|flagu}} templates, but offers more options in terms of the text string displayed. See [[Wikipedia:WikiProject Flag Template]] for the main documentation/discussion page for the flag templates system. ==Usage== '''<nowiki>{{flag|</nowiki>'''''country identifier'''''&#124;'''''optional variant'''''&#124;'''name=''alternative text string'''''&#124;'''size=''maximum width and/or height of the flag image'''''<nowiki>}}</nowiki>''' * ''country identifier'' is the common name of the country (e.g. "United States"), a common alias (e.g. "US"), or a standard country code such as those listed at [[ISO 3166-1 alpha-3]] * ''variant'' is an optional second parameter that can be used to display a flag variation, such as a historical flag. The list of variants for each country is documented on the appropriate template page, such as [[:Template:Country data Germany]] * ''alternative text string'', this optional value, specified by the '''name''' parameter, is used to display alternative text * ''size'', this optional value is specified by the '''size''' parameter, and is used to specify the maximum width and/or height of the flag image. This parameter is specified using standard [[Wikipedia:Extended image syntax|image syntax]]. See <span class="plainlinks">[https://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Country+data&namespace=10 the prefix index]</span> for the templates latently called by this one. ==Examples== {| class="wikitable" ! Wiki markup !! Displays !! Notes |- | <code><nowiki>{{flag|United States}}</nowiki></code> || {{nowrap| {{flag|United States}}}} || rowspan=3 | Note that all instances link to [[United States]]. |- | <code><nowiki>{{flag|US}}</nowiki></code> || {{flag|US}} |- | <code><nowiki>{{flag|USA}}</nowiki></code> || {{flag|USA}} |- | <code><nowiki>{{flag|Germany}}</nowiki></code> || {{flag|Germany}} || rowspan=3 | All three instances link to [[Germany]].<br />In addition to the ISO country codes, those used by [[FIFA]], [[IOC]], etc. are also supported. |- | <code><nowiki>{{flag|DEU}}</nowiki></code> || {{flag|DEU}} |- | <code><nowiki>{{flag|GER}}</nowiki></code> || {{flag|GER}} |- | <code><nowiki>{{flag|Germany|empire}}</nowiki></code> || {{flag|Germany|empire}} || rowspan=2 | Flag variations can be used with either country names or country codes. |- | <code><nowiki>{{flag|DEU|empire}}</nowiki></code> || {{flag|DEU|empire}} |- | <code><nowiki>{{flag|CAN|name=Canadian}}</nowiki></code> || {{flag|CAN|name=Canadian}} || The name parameter can be used to change the display string but keep the link to the correct article. |- | <code><nowiki>{{flag|Canada|1957|name=Canadian}}</nowiki></code> || {{flag|Canada|1957|name=Canadian}} || The name parameter can also be used when flag variants are specified. |- | <code><nowiki>{{flag|Texas}}</nowiki></code> || {{flag|Texas}} || rowspan=3 | Flags are also available for several sub-national and multi-national entities such as US states, Canadian provinces, and the [[European Union]].<br />A complete list can be found at [[:Category:Country data templates]]. |- | <code><nowiki>{{flag|British Columbia|name=BC}}</nowiki></code> || {{flag|British Columbia|name=BC}} |- | <code><nowiki>{{flag|EU}}</nowiki></code> || {{flag|EU}} |- | <code><nowiki>{{flag|Switzerland|size=14px}}</nowiki></code> || {{flag|Switzerland|size=14px}} || rowspan=2 | The size parameter can be used to control the image dimensions.<br />23×15px is the default size for most countries ([[:Category:Country data templates with distinct default size|some entities]] have a different default size). |- | <code><nowiki>{{flag|Switzerland|size=28px}}</nowiki></code> || {{flag|Switzerland|size=28px}} |- | <code><nowiki>{{flag|Nepal}}</nowiki></code> || {{flag|Nepal}} || Some flags are [[List of non-quadrilateral flags|non-quadrilateral]]. |} ==Alternatives to avoid Wikipedia's [[WP:PEIS|Post-expand include size]] limit== Pages with many flags may come close to or exceed Wikipedia's [[WP:PEIS|Post-expand include size]] limit. In these cases consider using modules or module-wrapper templates instead: * For many countries, using the country code as the template name will act as a wrapper for [[Module:Flagg]]: For example, <code><nowiki>{{flag|''USA''}}</nowiki></code> can be replaced with <code><nowiki>{{USA}}</nowiki></code>, which has an include size that is about 15% smaller. * {{module link|flag|{{!}}}} is a wrapper for [[Module:Flagg]] that can further reduce sizes when invoked directly. For basic use, <code><nowiki>{{flag|</nowiki>''country''<nowiki>}}</nowiki></code> can be replaced with <code><nowiki>{{#invoke:flag||</nowiki>''country''<nowiki>}}</nowiki></code> which has an include size that is about half. ==TemplateData== {{TemplateData header}} <TemplateData> { "description": "This template displays a small flag icon next to a wikilinked country name", "params": { "1": { "label": "Country identifier", "description": "Common name of the country (e.g. 'United States'), a common alias (e.g. 'US'), or a standard country code", "type": "string", "required": true }, "2": { "label": "Variant", "description": "Identifies a flag variant to be used instead of the standard flag, e.g. 1815", "type": "string", "required": false, "aliases": [ "variant" ] }, "name": { "label": "Alternative text", "description": "Display alternative text instead of the standard country name", "type": "string", "required": false }, "size": { "label": "Maximum dimension", "description": "The maximum width or height, specified via standard 'extended image syntax' (e.g. x30px)", "type": "string", "required": false } }, "format": "inline" } </TemplateData> See: [[Wikipedia:Extended image syntax]]. ==See also== {| class="wikitable" ! Template !! Description !! Example |- | style="white-space:nowrap" | {{template link|Coat of arms}} || displays coat of arms image || {{Coat of arms|Canada}} |- | {{template link|Flag country}} || always expands the link text to the full country name || {{Flag country|Germany}} |- | {{template link|Flagu}} || does not link the country name || {{Flagu|Germany}} |- | {{template link|Flag icon}} || displays the flag only, linked to the country name || {{Flag icon|Germany}} |- | {{template link|Flag decoration}} || displays an unlinked flag icon only || {{Flag decoration|Germany}} |- | {{template link|Flagc}} || links the flag image to its description page || {{Flagc|Germany}} |- | {{template link|Flaglist}} || aligns country names correctly in vertical lists (see that template's documentation) || {{Flaglist|Germany}} |- | {{template link|Flagwrap}} || allows the space after the flag icon to wrap (see that template's documentation) || {{Flagwrap|Germany}} |- | {{template link|Flag team}} || adds country code in parentheses after linked country name || {{Flag team|GER}} |- | {{template link|Flag athlete}} || displays the flag and another name, followed country name or code || style="white-space:nowrap" | {{Flag athlete|[[Dirk Nowitzki]]|GER}} |- | {{template link|Flag medalist}} || displays the flag and a name, above linked country name and code || {{Flag medalist|[[Dirk Nowitzki]]|GER}} |} See [[Wikipedia:WikiProject Flag Template#List]] for a longer list of flag templates. ===Multi-sport templates=== {{flag templates}} ===See also=== Module-based versions which can be used to reduce the [[WP:PEIS|post-expand include size]] on pages that are near or exceed the limit. * [[Template:Flagg]] a version which implements [[Module:Flagg]] * [[Module:Flag]] also works with [[Module:Flagg]] <includeonly>{{Sandbox other|| [[Category:Flag template system]] }}</includeonly> 0eopoac03x1sd3ijq71odhbwxtyaxau 72953 72952 2026-07-01T05:32:17Z Robertsky 10424 1 versaun husi [[:en:Template:Flag/doc]] 72952 wikitext text/x-wiki {{Documentation subpage}} {{High-use}} This template is used to display a small flag icon next to a wikilinked country name. It is related to the {{template link|flag icon}}, {{template link|flag country}} and {{template link|flagu}} templates, but offers more options in terms of the text string displayed. See [[Wikipedia:WikiProject Flag Template]] for the main documentation/discussion page for the flag templates system. ==Usage== '''<nowiki>{{flag|</nowiki>'''''country identifier'''''&#124;'''''optional variant'''''&#124;'''name=''alternative text string'''''&#124;'''size=''maximum width and/or height of the flag image'''''<nowiki>}}</nowiki>''' * ''country identifier'' is the common name of the country (e.g. "United States"), a common alias (e.g. "US"), or a standard country code such as those listed at [[ISO 3166-1 alpha-3]] * ''variant'' is an optional second parameter that can be used to display a flag variation, such as a historical flag. The list of variants for each country is documented on the appropriate template page, such as [[:Template:Country data Germany]] * ''alternative text string'', this optional value, specified by the '''name''' parameter, is used to display alternative text * ''size'', this optional value is specified by the '''size''' parameter, and is used to specify the maximum width and/or height of the flag image. This parameter is specified using standard [[Wikipedia:Extended image syntax|image syntax]]. See <span class="plainlinks">[https://en.wikipedia.org/w/index.php?title=Special%3APrefixindex&from=Country+data&namespace=10 the prefix index]</span> for the templates latently called by this one. ==Examples== {| class="wikitable" ! Wiki markup !! Displays !! Notes |- | <code><nowiki>{{flag|United States}}</nowiki></code> || {{nowrap| {{flag|United States}}}} || rowspan=3 | Note that all instances link to [[United States]]. |- | <code><nowiki>{{flag|US}}</nowiki></code> || {{flag|US}} |- | <code><nowiki>{{flag|USA}}</nowiki></code> || {{flag|USA}} |- | <code><nowiki>{{flag|Germany}}</nowiki></code> || {{flag|Germany}} || rowspan=3 | All three instances link to [[Germany]].<br />In addition to the ISO country codes, those used by [[FIFA]], [[IOC]], etc. are also supported. |- | <code><nowiki>{{flag|DEU}}</nowiki></code> || {{flag|DEU}} |- | <code><nowiki>{{flag|GER}}</nowiki></code> || {{flag|GER}} |- | <code><nowiki>{{flag|Germany|empire}}</nowiki></code> || {{flag|Germany|empire}} || rowspan=2 | Flag variations can be used with either country names or country codes. |- | <code><nowiki>{{flag|DEU|empire}}</nowiki></code> || {{flag|DEU|empire}} |- | <code><nowiki>{{flag|CAN|name=Canadian}}</nowiki></code> || {{flag|CAN|name=Canadian}} || The name parameter can be used to change the display string but keep the link to the correct article. |- | <code><nowiki>{{flag|Canada|1957|name=Canadian}}</nowiki></code> || {{flag|Canada|1957|name=Canadian}} || The name parameter can also be used when flag variants are specified. |- | <code><nowiki>{{flag|Texas}}</nowiki></code> || {{flag|Texas}} || rowspan=3 | Flags are also available for several sub-national and multi-national entities such as US states, Canadian provinces, and the [[European Union]].<br />A complete list can be found at [[:Category:Country data templates]]. |- | <code><nowiki>{{flag|British Columbia|name=BC}}</nowiki></code> || {{flag|British Columbia|name=BC}} |- | <code><nowiki>{{flag|EU}}</nowiki></code> || {{flag|EU}} |- | <code><nowiki>{{flag|Switzerland|size=14px}}</nowiki></code> || {{flag|Switzerland|size=14px}} || rowspan=2 | The size parameter can be used to control the image dimensions.<br />23×15px is the default size for most countries ([[:Category:Country data templates with distinct default size|some entities]] have a different default size). |- | <code><nowiki>{{flag|Switzerland|size=28px}}</nowiki></code> || {{flag|Switzerland|size=28px}} |- | <code><nowiki>{{flag|Nepal}}</nowiki></code> || {{flag|Nepal}} || Some flags are [[List of non-quadrilateral flags|non-quadrilateral]]. |} ==Alternatives to avoid Wikipedia's [[WP:PEIS|Post-expand include size]] limit== Pages with many flags may come close to or exceed Wikipedia's [[WP:PEIS|Post-expand include size]] limit. In these cases consider using modules or module-wrapper templates instead: * For many countries, using the country code as the template name will act as a wrapper for [[Module:Flagg]]: For example, <code><nowiki>{{flag|''USA''}}</nowiki></code> can be replaced with <code><nowiki>{{USA}}</nowiki></code>, which has an include size that is about 15% smaller. * {{module link|flag|{{!}}}} is a wrapper for [[Module:Flagg]] that can further reduce sizes when invoked directly. For basic use, <code><nowiki>{{flag|</nowiki>''country''<nowiki>}}</nowiki></code> can be replaced with <code><nowiki>{{#invoke:flag||</nowiki>''country''<nowiki>}}</nowiki></code> which has an include size that is about half. ==TemplateData== {{TemplateData header}} <TemplateData> { "description": "This template displays a small flag icon next to a wikilinked country name", "params": { "1": { "label": "Country identifier", "description": "Common name of the country (e.g. 'United States'), a common alias (e.g. 'US'), or a standard country code", "type": "string", "required": true }, "2": { "label": "Variant", "description": "Identifies a flag variant to be used instead of the standard flag, e.g. 1815", "type": "string", "required": false, "aliases": [ "variant" ] }, "name": { "label": "Alternative text", "description": "Display alternative text instead of the standard country name", "type": "string", "required": false }, "size": { "label": "Maximum dimension", "description": "The maximum width or height, specified via standard 'extended image syntax' (e.g. x30px)", "type": "string", "required": false } }, "format": "inline" } </TemplateData> See: [[Wikipedia:Extended image syntax]]. ==See also== {| class="wikitable" ! Template !! Description !! Example |- | style="white-space:nowrap" | {{template link|Coat of arms}} || displays coat of arms image || {{Coat of arms|Canada}} |- | {{template link|Flag country}} || always expands the link text to the full country name || {{Flag country|Germany}} |- | {{template link|Flagu}} || does not link the country name || {{Flagu|Germany}} |- | {{template link|Flag icon}} || displays the flag only, linked to the country name || {{Flag icon|Germany}} |- | {{template link|Flag decoration}} || displays an unlinked flag icon only || {{Flag decoration|Germany}} |- | {{template link|Flagc}} || links the flag image to its description page || {{Flagc|Germany}} |- | {{template link|Flaglist}} || aligns country names correctly in vertical lists (see that template's documentation) || {{Flaglist|Germany}} |- | {{template link|Flagwrap}} || allows the space after the flag icon to wrap (see that template's documentation) || {{Flagwrap|Germany}} |- | {{template link|Flag team}} || adds country code in parentheses after linked country name || {{Flag team|GER}} |- | {{template link|Flag athlete}} || displays the flag and another name, followed country name or code || style="white-space:nowrap" | {{Flag athlete|[[Dirk Nowitzki]]|GER}} |- | {{template link|Flag medalist}} || displays the flag and a name, above linked country name and code || {{Flag medalist|[[Dirk Nowitzki]]|GER}} |} See [[Wikipedia:WikiProject Flag Template#List]] for a longer list of flag templates. ===Multi-sport templates=== {{flag templates}} ===See also=== Module-based versions which can be used to reduce the [[WP:PEIS|post-expand include size]] on pages that are near or exceed the limit. * [[Template:Flagg]] a version which implements [[Module:Flagg]] * [[Module:Flag]] also works with [[Module:Flagg]] <includeonly>{{Sandbox other|| [[Category:Flag template system]] }}</includeonly> 0eopoac03x1sd3ijq71odhbwxtyaxau Template:Flag templates 10 8204 72954 2025-09-08T07:25:23Z en>45dogs 0 vandalism 72954 wikitext text/x-wiki <div style="position:absolute; float:left;">{{navbar|Flag templates|text=This template:}}</div> {| class="wikitable" |+ Flag templates ! scope="row" | Output style → ! scope="col" | Country name ! scope="col" | Country name (code) ! scope="col" | Athlete (country code) ! scope="col" | Athlete Country Name ! scope="col" | Country code |- ! scope="row" | Olympic Games | {{tlg|Flag IOC}} || {{tlg|Flag IOC team}} || {{tlg|Flag IOC athlete}} || {{tlg|Flag IOC medalist}} || {{tlg|Flag IOC short}} |- ! scope="row" | Other games | {{tlg|Flag IOC 2}} || {{tlg|Flag IOC 2 team}} || {{tlg|Flag IOC 2 athlete}} || {{tlg|Flag IOC 2 medalist}} || {{tlg|Flag IOC 2 short}} |- ! scope="row" | Paralympic Games | {{tlg|Flag IPC}} || {{tlg|Flag IPC team}} || {{tlg|Flag IPC athlete}} || {{tlg|Flag IPC medalist}} || {{tlg|Flag IPC short}} |- ! scope="row" | Pan American | {{tlg|Flag PASO}} || || {{tlg|Flag PASO athlete}} || {{tlg|Flag PASO medalist}} || |- ! scope="row" | Parapan American | {{tlg|Flag PPASO}} || || || || |- ! scope="row" | Commonwealth | {{tlg|Flag CGF}} || || {{tlg|Flag CGF athlete}} || {{tlg|Flag CGF medalist}} || |- ! scope="row" | Southeast Asian | {{tlg|Flag SEAGF}} || {{tlg|Flag SEAGF team}} || {{tlg|Flag SEAGF athlete}} || {{tlg|Flag SEAGF medalist}} || |- ! scope="row" | World Games | {{tlg|Flag IWGA}} || || || || |- ! scope="row" | Central American and Caribbean Games | {{tlg|Flag CAC}} || || || || |- ! scope="row" | Asian Games | {{tlg|Flag OCA}} || || || || |- ! scope="row" | European Games | {{tlg|Flag EOC}} || || || || |- ! scope="row" | African Games | {{tlg|Flag AFOC}} || || || || |- ! scope="row" | Mediterranean Games | {{tlg|Flag CIJM}} || || || || |- ! scope="row" | Summer Universiade | {{tlg|Flag FISU}} || || || || |- ! scope="row" | "Nation at Championships"-style | || {{tlg|Flag link team}} || || || |- ! scope="row" | Generic | {{t|Flag}} || {{tlg|Flag team}} || {{tlg|Flag athlete}} || {{tlg|Flag medalist}} || |- ! scope="row" | Generic (variant) | {{tlg|Flag link}} || || {{tlg|Flag link athlete}} || {{tlg|Flag link medalist}} || |}<noinclude>{{documentation}}</noinclude> naxa0ucaylpi1rvp4av26bcxmtg5wm4 72955 72954 2026-07-01T05:32:17Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_templates]] 72954 wikitext text/x-wiki <div style="position:absolute; float:left;">{{navbar|Flag templates|text=This template:}}</div> {| class="wikitable" |+ Flag templates ! scope="row" | Output style → ! scope="col" | Country name ! scope="col" | Country name (code) ! scope="col" | Athlete (country code) ! scope="col" | Athlete Country Name ! scope="col" | Country code |- ! scope="row" | Olympic Games | {{tlg|Flag IOC}} || {{tlg|Flag IOC team}} || {{tlg|Flag IOC athlete}} || {{tlg|Flag IOC medalist}} || {{tlg|Flag IOC short}} |- ! scope="row" | Other games | {{tlg|Flag IOC 2}} || {{tlg|Flag IOC 2 team}} || {{tlg|Flag IOC 2 athlete}} || {{tlg|Flag IOC 2 medalist}} || {{tlg|Flag IOC 2 short}} |- ! scope="row" | Paralympic Games | {{tlg|Flag IPC}} || {{tlg|Flag IPC team}} || {{tlg|Flag IPC athlete}} || {{tlg|Flag IPC medalist}} || {{tlg|Flag IPC short}} |- ! scope="row" | Pan American | {{tlg|Flag PASO}} || || {{tlg|Flag PASO athlete}} || {{tlg|Flag PASO medalist}} || |- ! scope="row" | Parapan American | {{tlg|Flag PPASO}} || || || || |- ! scope="row" | Commonwealth | {{tlg|Flag CGF}} || || {{tlg|Flag CGF athlete}} || {{tlg|Flag CGF medalist}} || |- ! scope="row" | Southeast Asian | {{tlg|Flag SEAGF}} || {{tlg|Flag SEAGF team}} || {{tlg|Flag SEAGF athlete}} || {{tlg|Flag SEAGF medalist}} || |- ! scope="row" | World Games | {{tlg|Flag IWGA}} || || || || |- ! scope="row" | Central American and Caribbean Games | {{tlg|Flag CAC}} || || || || |- ! scope="row" | Asian Games | {{tlg|Flag OCA}} || || || || |- ! scope="row" | European Games | {{tlg|Flag EOC}} || || || || |- ! scope="row" | African Games | {{tlg|Flag AFOC}} || || || || |- ! scope="row" | Mediterranean Games | {{tlg|Flag CIJM}} || || || || |- ! scope="row" | Summer Universiade | {{tlg|Flag FISU}} || || || || |- ! scope="row" | "Nation at Championships"-style | || {{tlg|Flag link team}} || || || |- ! scope="row" | Generic | {{t|Flag}} || {{tlg|Flag team}} || {{tlg|Flag athlete}} || {{tlg|Flag medalist}} || |- ! scope="row" | Generic (variant) | {{tlg|Flag link}} || || {{tlg|Flag link athlete}} || {{tlg|Flag link medalist}} || |}<noinclude>{{documentation}}</noinclude> naxa0ucaylpi1rvp4av26bcxmtg5wm4 Template:Flagc 10 8205 72956 2022-03-16T19:33:36Z en>Jonesey95 0 Reverted 1 edit by [[Special:Contributions/Big Worth|Big Worth]] ([[User talk:Big Worth|talk]]) to last revision by Patrick 72956 wikitext text/x-wiki {{country data {{{1|}}}|flagc/1|name={{{name|{{{1|}}}}}}|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude>{{documentation}}</noinclude> 6s1tkpkyzebudegu83ggu0wzzdvpw03 72957 72956 2026-07-01T05:32:17Z Robertsky 10424 1 versaun husi [[:en:Template:Flagc]] 72956 wikitext text/x-wiki {{country data {{{1|}}}|flagc/1|name={{{name|{{{1|}}}}}}|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude>{{documentation}}</noinclude> 6s1tkpkyzebudegu83ggu0wzzdvpw03 Template:Flagc/1 10 8206 72958 2019-10-22T23:25:46Z en>S.A. Julio 0 /* top */adjusting for improved method to define custom flag sizes 72958 wikitext text/x-wiki <span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|{{{{{|safesubst:}}}#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{{{|safesubst:}}}#if:{{{border-{{{variant}}}|{{{border|border}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}}{{!}}}}alt=flag]]&nbsp;</span>[[{{{alias}}}|{{{name}}}]]<noinclude>{{documentation}}</noinclude> 6j5zfieoea1he7pack2b3opgpqhebbi 72959 72958 2026-07-01T05:32:17Z Robertsky 10424 1 versaun husi [[:en:Template:Flagc/1]] 72958 wikitext text/x-wiki <span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|{{{{{|safesubst:}}}#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{{{|safesubst:}}}#if:{{{border-{{{variant}}}|{{{border|border}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}}{{!}}}}alt=flag]]&nbsp;</span>[[{{{alias}}}|{{{name}}}]]<noinclude>{{documentation}}</noinclude> 6j5zfieoea1he7pack2b3opgpqhebbi Template:Flag athlete 10 8207 72960 2025-02-04T08:24:44Z en>Danny 1994 0 Undid my own edit as this does not work for all countries. 72960 wikitext text/x-wiki {{country data {{{2|}}} | country flagbio | name = {{{1|}}} <!-- using this parameter for person's name --> | variant = {{{variant|{{{3|}}}}}} | size = {{{code|{{{2|}}}}}} <!-- using this parameter for the country code --> }}<noinclude>{{documentation}}</noinclude> the5do82d4iln8tr6rg7qcs677yhou0 72961 72960 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_athlete]] 72960 wikitext text/x-wiki {{country data {{{2|}}} | country flagbio | name = {{{1|}}} <!-- using this parameter for person's name --> | variant = {{{variant|{{{3|}}}}}} | size = {{{code|{{{2|}}}}}} <!-- using this parameter for the country code --> }}<noinclude>{{documentation}}</noinclude> the5do82d4iln8tr6rg7qcs677yhou0 Template:Flag medalist 10 8208 72962 2025-05-31T18:00:21Z en>MusikBot II 0 Changed protection settings for "[[Template:Flag medalist]]": [[Wikipedia:High-risk templates|High-risk template or module]]: 2502 transclusions ([[User:MusikBot II/TemplateProtector|more info]]) ([Edit=Require extended confirmed access] (indefinite) [Move=Require extended confirmed access] (indefinite)) 72962 wikitext text/x-wiki {{country data {{{2|}}} | flag medalist/core | name = {{{1|}}} <!-- using this parameter for person's name --> | variant = {{{variant|{{{3|}}}}}} | size = {{{code|{{{2|}}}}}} <!-- using this parameter for the country code --> }}<noinclude>{{documentation}}</noinclude> 52oozm1emgq69e8p9p3w3blf5st95ly 72963 72962 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_medalist]] 72962 wikitext text/x-wiki {{country data {{{2|}}} | flag medalist/core | name = {{{1|}}} <!-- using this parameter for person's name --> | variant = {{{variant|{{{3|}}}}}} | size = {{{code|{{{2|}}}}}} <!-- using this parameter for the country code --> }}<noinclude>{{documentation}}</noinclude> 52oozm1emgq69e8p9p3w3blf5st95ly Template:Flag medalist/core 10 8209 72964 2025-05-31T18:00:22Z en>MusikBot II 0 Changed protection settings for "[[Template:Flag medalist/core]]": [[Wikipedia:High-risk templates|High-risk template or module]]: 2501 transclusions ([[User:MusikBot II/TemplateProtector|more info]]) ([Edit=Require extended confirmed access] (indefinite) [Move=Require extended confirmed access] (indefinite)) 72964 wikitext text/x-wiki {{{name}}}<br/><span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]]&nbsp;</span>[[{{{alias}}}|{{{shortname alias|{{{alias}}}}}}]]<noinclude>{{Documentation}}</noinclude> 8ew3i5dht058sikak9d1x36sulqp34l 72965 72964 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_medalist/core]] 72964 wikitext text/x-wiki {{{name}}}<br/><span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]]&nbsp;</span>[[{{{alias}}}|{{{shortname alias|{{{alias}}}}}}]]<noinclude>{{Documentation}}</noinclude> 8ew3i5dht058sikak9d1x36sulqp34l Template:Flag team 10 8210 72966 2024-07-29T20:45:54Z en>Danny 1994 0 Updated flag template name to avoid the template redirect. 72966 wikitext text/x-wiki {{flag country|{{{1}}}|{{{2|}}}}}&nbsp;<span style="font-size:90%;">({{{code|{{{1}}}}}})</span><noinclude>{{documentation}}</noinclude> 6d8epupqisiiyoluj8mpw11lqm9yuod 72967 72966 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_team]] 72966 wikitext text/x-wiki {{flag country|{{{1}}}|{{{2|}}}}}&nbsp;<span style="font-size:90%;">({{{code|{{{1}}}}}})</span><noinclude>{{documentation}}</noinclude> 6d8epupqisiiyoluj8mpw11lqm9yuod Template:Flag decoration 10 8211 72968 2025-05-08T09:35:50Z en>Gonnym 0 there is no reason to allow transclusions of non-existing templates. Add all usages to error category and add a small error message to usage to let the editor know it does not exist 72968 wikitext text/x-wiki <includeonly><!-- #Check for existence of Template: Country data foo before invoking it -->{{#ifexist: Template:Country data {{{1|}}}<!-- -->|<!-- # It exists, so proceed -->{{country data {{{1|}}}|flag decoration/core|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<!-- -->|<!--# It doesn't exist, add to error category --><small>Error: [[Template:Country data {{{1|}}}]] does not exist</small> {{namespace detect showall | 1 = | 2 = [[Category:Flag decoration missing country data templates]] | user = 1 | talk = 1 | other = 2 }}<!-- -->}}<!-- --></includeonly><noinclude> {{Documentation}} </noinclude> kn2ztqhlrmbf5xtulkgnj10htt0nw38 72969 72968 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_decoration]] 72968 wikitext text/x-wiki <includeonly><!-- #Check for existence of Template: Country data foo before invoking it -->{{#ifexist: Template:Country data {{{1|}}}<!-- -->|<!-- # It exists, so proceed -->{{country data {{{1|}}}|flag decoration/core|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<!-- -->|<!--# It doesn't exist, add to error category --><small>Error: [[Template:Country data {{{1|}}}]] does not exist</small> {{namespace detect showall | 1 = | 2 = [[Category:Flag decoration missing country data templates]] | user = 1 | talk = 1 | other = 2 }}<!-- -->}}<!-- --></includeonly><noinclude> {{Documentation}} </noinclude> kn2ztqhlrmbf5xtulkgnj10htt0nw38 Template:Flag decoration/core 10 8212 72970 2024-05-28T16:39:05Z en>Robertsky 0 Robertsky moved page [[Template:Flagdeco/core]] to [[Template:Flag decoration/core]]: [[Special:Permalink/1226112640|Requested]] by HouseBlaster at [[WP:RM/TR]]: Expand template name per [[WP:TPN]] 72970 wikitext text/x-wiki <span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]]</span><noinclude>{{documentation}}</noinclude> 7t7813aaoxgt6vjgep7irvtso61yks1 72971 72970 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_decoration/core]] 72970 wikitext text/x-wiki <span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]]</span><noinclude>{{documentation}}</noinclude> 7t7813aaoxgt6vjgep7irvtso61yks1 Template:Flag icon/core 10 8213 72972 2024-05-28T16:39:40Z en>Robertsky 0 Robertsky moved page [[Template:Flagicon/core]] to [[Template:Flag icon/core]]: [[Special:Permalink/1226112640|Requested]] by HouseBlaster at [[WP:RM/TR]]: Expand template name per [[WP:TPN]] 72972 wikitext text/x-wiki <span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{safesubst<noinclude />:#if:{{{flag alias|}}}|{{{flag alias}}}|Flag placeholder.svg}}}}}|{{safesubst<noinclude />:#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{safesubst<noinclude />:#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt={{{alias}}}|link={{{alias}}}]]</span><noinclude>{{documentation}}</noinclude> 2dsxrtbk8pyp3hir055ul09zqp8qif2 72973 72972 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_icon/core]] 72972 wikitext text/x-wiki <span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{safesubst<noinclude />:#if:{{{flag alias|}}}|{{{flag alias}}}|Flag placeholder.svg}}}}}|{{safesubst<noinclude />:#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{safesubst<noinclude />:#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt={{{alias}}}|link={{{alias}}}]]</span><noinclude>{{documentation}}</noinclude> 2dsxrtbk8pyp3hir055ul09zqp8qif2 Template:Flag country/core 10 8214 72974 2024-08-08T22:59:28Z en>Izno 0 remove unnecessary class 72974 wikitext text/x-wiki <span data-sort-value="{{{sortkey|{{{shortname alias|{{{alias}}}}}}}}}"><!-- --><span class="flagicon"><!-- -->[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|<!-- -->{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|<!-- -->{{{border-{{{variant}}}|{{{border|border}}}}}} |<!-- -->alt=|<!-- -->link=]]&nbsp;<!-- -->{{#switch:{{{flag alias}}}|Flag of Switzerland.svg|Flag of the Vatican City.svg|Flag of Switzerland (Pantone).svg|Flag of Vatican City State - 2023 version.svg=&nbsp;}}<!-- -->{{#ifeq:{{{alias}}}|Nepal|&nbsp;&nbsp;}}<!-- --></span>[[{{{link alias-{{{variant}}}|{{{alias}}}}}}|<!-- -->{{#if:{{{name|}}}|{{{name}}}|{{{shortname alias|{{{alias}}}}}}}}]]<!-- --></span><noinclude>{{documentation}}</noinclude> co3j4nf6rqoykj0gi5vzyvsrk0pmul7 72975 72974 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_country/core]] 72974 wikitext text/x-wiki <span data-sort-value="{{{sortkey|{{{shortname alias|{{{alias}}}}}}}}}"><!-- --><span class="flagicon"><!-- -->[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|<!-- -->{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|<!-- -->{{{border-{{{variant}}}|{{{border|border}}}}}} |<!-- -->alt=|<!-- -->link=]]&nbsp;<!-- -->{{#switch:{{{flag alias}}}|Flag of Switzerland.svg|Flag of the Vatican City.svg|Flag of Switzerland (Pantone).svg|Flag of Vatican City State - 2023 version.svg=&nbsp;}}<!-- -->{{#ifeq:{{{alias}}}|Nepal|&nbsp;&nbsp;}}<!-- --></span>[[{{{link alias-{{{variant}}}|{{{alias}}}}}}|<!-- -->{{#if:{{{name|}}}|{{{name}}}|{{{shortname alias|{{{alias}}}}}}}}]]<!-- --></span><noinclude>{{documentation}}</noinclude> co3j4nf6rqoykj0gi5vzyvsrk0pmul7 Template:Flag list 10 8215 72976 2025-11-03T22:07:56Z en>Ahecht 0 Ahecht moved page [[Template:Flaglist]] to [[Template:Flag list]]: Expand template name per [[WP:TPN]] 72976 wikitext text/x-wiki <includeonly>{{#ifexist:Template:country data {{{1|}}} |{{country data {{{1|}}}|flaglist/core{{#ifeq:{{{table|}}}|yes|table}}|name={{#ifeq:{{{short|}}}|yes|<!--empty to signal usage of shortname alias-->|{{#if:{{{name|}}}|{{{name}}}|{{{1|}}}}}<!--if name is given but left empty then use 1-->}}|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<!-- -->|{{flaglist/core{{#ifeq:{{{table|}}}|yes|table}}|alias={{{1|}}}|name={{{name|{{{1|}}}}}}|size={{{size|}}}|flag alias=Flag placeholder.svg|border=}}}}</includeonly><noinclude> {{documentation}}</noinclude> 70py3xsaekl8jyi9kikaa7j4nq9omvj 72977 72976 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_list]] 72976 wikitext text/x-wiki <includeonly>{{#ifexist:Template:country data {{{1|}}} |{{country data {{{1|}}}|flaglist/core{{#ifeq:{{{table|}}}|yes|table}}|name={{#ifeq:{{{short|}}}|yes|<!--empty to signal usage of shortname alias-->|{{#if:{{{name|}}}|{{{name}}}|{{{1|}}}}}<!--if name is given but left empty then use 1-->}}|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<!-- -->|{{flaglist/core{{#ifeq:{{{table|}}}|yes|table}}|alias={{{1|}}}|name={{{name|{{{1|}}}}}}|size={{{size|}}}|flag alias=Flag placeholder.svg|border=}}}}</includeonly><noinclude> {{documentation}}</noinclude> 70py3xsaekl8jyi9kikaa7j4nq9omvj Template:Flag list/core 10 8216 72978 2025-11-03T22:09:13Z en>Ahecht 0 expand template name per WP:TPN 72978 wikitext text/x-wiki <span class="flagicon" style="display:inline-block;width:{{#invoke:Flag list|width|{{{size|}}}}}px;">[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]]</span>&nbsp;[[{{{alias}}}|{{#if:{{{name|}}}|{{{name}}}|{{{shortname alias|{{{alias}}}}}}}}]]<noinclude>{{documentation}}</noinclude> jm8weopaxofrucnpxk1zweuozu2lup6 72979 72978 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Template:Flag_list/core]] 72978 wikitext text/x-wiki <span class="flagicon" style="display:inline-block;width:{{#invoke:Flag list|width|{{{size|}}}}}px;">[[File:{{{flag alias-{{{variant}}}|{{{flag alias}}}}}}|{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]]</span>&nbsp;[[{{{alias}}}|{{#if:{{{name|}}}|{{{name}}}|{{{shortname alias|{{{alias}}}}}}}}]]<noinclude>{{documentation}}</noinclude> jm8weopaxofrucnpxk1zweuozu2lup6 Módulo:Flag list 828 8217 72980 2025-11-03T22:08:56Z en>Ahecht 0 Ahecht moved page [[Module:Flaglist]] to [[Module:Flag list]]: expand module name per [[WP:TPN]] 72980 Scribunto text/plain -- Calculates the width of the span box for [[Template:Flaglist]] -- based on the specified image size local p = {} function p.luawidth(size) --For use within Lua local w if string.find(size,"^%d+x%d+px$") then -- width and height (eg. 20x10px) -- use specified width w = tonumber(string.match(size,"(%d+)x%d+px")) + 2 -- (2px for borders) elseif string.find(size,"^%d+px$") then -- width only (eg. 20px) -- use specified width w = tonumber(string.match(size,"(%d+)px")) + 2 elseif string.find(size,"^x%d+px$") then -- height only (eg. x10px) -- assume a width based on the height local h = tonumber(string.match(size,"x(%d+)px")) w = h * 2.2 w = math.floor(w+0.5) -- round to integer else -- empty or invalid input w = 25 -- default width for flagicons including borders end return tostring(w) end function p.width(frame) --For external use return p.luawidth(frame.args[1]) end return p lt6szodeyazyqkibqhqd7ue95aoijjb 72981 72980 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Module:Flag_list]] 72980 Scribunto text/plain -- Calculates the width of the span box for [[Template:Flaglist]] -- based on the specified image size local p = {} function p.luawidth(size) --For use within Lua local w if string.find(size,"^%d+x%d+px$") then -- width and height (eg. 20x10px) -- use specified width w = tonumber(string.match(size,"(%d+)x%d+px")) + 2 -- (2px for borders) elseif string.find(size,"^%d+px$") then -- width only (eg. 20px) -- use specified width w = tonumber(string.match(size,"(%d+)px")) + 2 elseif string.find(size,"^x%d+px$") then -- height only (eg. x10px) -- assume a width based on the height local h = tonumber(string.match(size,"x(%d+)px")) w = h * 2.2 w = math.floor(w+0.5) -- round to integer else -- empty or invalid input w = 25 -- default width for flagicons including borders end return tostring(w) end function p.width(frame) --For external use return p.luawidth(frame.args[1]) end return p lt6szodeyazyqkibqhqd7ue95aoijjb Template:Flagwrap/core 10 8218 72982 2026-02-11T01:01:36Z en>Zowayix001 0 [[WP:AES|←]]Created page with '<span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{#if:{{{flag alias|}}}|{{{flag alias}}}|Flag placeholder.svg}}}}}|{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]] {{#switch:{{{flag alias}}}|Flag of Switzerland.svg|Flag of the Vatican City.svg|Flag of Switzerland (Pantone).svg|Flag of Vatican City State - 2023...' 72982 wikitext text/x-wiki <span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{#if:{{{flag alias|}}}|{{{flag alias}}}|Flag placeholder.svg}}}}}|{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]] {{#switch:{{{flag alias}}}|Flag of Switzerland.svg|Flag of the Vatican City.svg|Flag of Switzerland (Pantone).svg|Flag of Vatican City State - 2023 version.svg=&nbsp;}}{{#ifeq:{{{alias}}}|Nepal|&nbsp;&nbsp;}}</span>[[{{{alias}}}|{{{name}}}]]<noinclude>{{documentation}}</noinclude> 9c6j5fq2battutfwkyo0gdm79nabp2u 72983 72982 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Template:Flagwrap/core]] 72982 wikitext text/x-wiki <span class="flagicon">[[File:{{{flag alias-{{{variant}}}|{{#if:{{{flag alias|}}}|{{{flag alias}}}|Flag placeholder.svg}}}}}|{{#if:{{{size|}}}|{{{size}}}|{{{size flag alias-{{{variant}}}|{{#if:{{{variant|}}}|23x15px|{{{size flag alias|23x15px}}}}}}}}}}|{{{border-{{{variant}}}|{{{border|border}}}}}} |alt=|link=]] {{#switch:{{{flag alias}}}|Flag of Switzerland.svg|Flag of the Vatican City.svg|Flag of Switzerland (Pantone).svg|Flag of Vatican City State - 2023 version.svg=&nbsp;}}{{#ifeq:{{{alias}}}|Nepal|&nbsp;&nbsp;}}</span>[[{{{alias}}}|{{{name}}}]]<noinclude>{{documentation}}</noinclude> 9c6j5fq2battutfwkyo0gdm79nabp2u Template:Flagwrap 10 8219 72984 2026-02-11T01:02:24Z en>Zowayix001 0 [[WP:AES|←]]Created page with '{{country data {{{1|}}}|flagwrap/core|name={{{name|{{{1|}}}}}}|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude>{{documentation}}</noinclude>' 72984 wikitext text/x-wiki {{country data {{{1|}}}|flagwrap/core|name={{{name|{{{1|}}}}}}|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude>{{documentation}}</noinclude> d1iu77zeoutfd2n5mqql6hyuarvhvq4 72985 72984 2026-07-01T05:32:18Z Robertsky 10424 1 versaun husi [[:en:Template:Flagwrap]] 72984 wikitext text/x-wiki {{country data {{{1|}}}|flagwrap/core|name={{{name|{{{1|}}}}}}|variant={{{variant|{{{2|}}}}}}|size={{{size|}}}}}<noinclude>{{documentation}}</noinclude> d1iu77zeoutfd2n5mqql6hyuarvhvq4